Skip to content

Instantly share code, notes, and snippets.

@mejedi
Created January 15, 2024 13:18
Show Gist options
  • Save mejedi/557f18460dec54994a2b0e24a2c15f91 to your computer and use it in GitHub Desktop.
Save mejedi/557f18460dec54994a2b0e24a2c15f91 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="806" onload="init(evt)" viewBox="0 0 1200 806" 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="806.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="789" > </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="789" > </text>
<g id="frames">
<g >
<title>clear_page_erms (9,977,719 samples, 0.07%)</title><rect x="1109.6" y="261" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1112.64" y="271.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (2,040,094 samples, 0.01%)</title><rect x="1060.3" y="325" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1063.31" y="335.5" ></text>
</g>
<g >
<title>node_tag_clear (1,514,335 samples, 0.01%)</title><rect x="1135.4" y="405" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1138.40" y="415.5" ></text>
</g>
<g >
<title>__sys_bpf (2,214,645 samples, 0.01%)</title><rect x="777.6" y="485" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="780.64" y="495.5" ></text>
</g>
<g >
<title>unmap_page_range (1,338,851 samples, 0.01%)</title><rect x="257.2" y="437" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="260.21" y="447.5" ></text>
</g>
<g >
<title>record_times (1,660,850 samples, 0.01%)</title><rect x="926.4" y="293" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="929.36" y="303.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (13,901,615 samples, 0.09%)</title><rect x="47.9" y="405" width="1.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="50.93" y="415.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (14,805,023 samples, 0.10%)</title><rect x="322.0" y="277" width="1.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="324.98" y="287.5" ></text>
</g>
<g >
<title>__queue_work (219,266,287 samples, 1.45%)</title><rect x="913.6" y="389" width="17.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="916.65" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,273,780 samples, 0.01%)</title><rect x="1047.6" y="229" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1050.65" y="239.5" ></text>
</g>
<g >
<title>update_load_avg (5,759,924 samples, 0.04%)</title><rect x="950.5" y="341" width="0.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="953.52" y="351.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (10,746,712 samples, 0.07%)</title><rect x="26.2" y="533" width="0.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="29.19" y="543.5" ></text>
</g>
<g >
<title>new_slab (27,742,276 samples, 0.18%)</title><rect x="1101.7" y="341" width="2.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1104.67" y="351.5" ></text>
</g>
<g >
<title>__calc_delta (3,294,133 samples, 0.02%)</title><rect x="315.4" y="245" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="318.42" y="255.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (440,196,728 samples, 2.90%)</title><rect x="660.9" y="373" width="34.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="663.87" y="383.5" >bp..</text>
</g>
<g >
<title>new_slab (6,161,042 samples, 0.04%)</title><rect x="1099.9" y="309" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1102.94" y="319.5" ></text>
</g>
<g >
<title>folio_add_lru (1,521,347 samples, 0.01%)</title><rect x="406.1" y="37" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="409.11" y="47.5" ></text>
</g>
<g >
<title>runtime.unlock2 (2,760,418 samples, 0.02%)</title><rect x="264.5" y="533" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="267.50" y="543.5" ></text>
</g>
<g >
<title>handle_mm_fault (9,235,634 samples, 0.06%)</title><rect x="1026.7" y="373" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1029.72" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (4,582,349 samples, 0.03%)</title><rect x="1019.1" y="485" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1022.06" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,328,961 samples, 0.02%)</title><rect x="1021.0" y="421" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1023.95" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,185,374 samples, 0.01%)</title><rect x="935.5" y="389" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="938.45" y="399.5" ></text>
</g>
<g >
<title>perf_ctx_enable (1,533,010 samples, 0.01%)</title><rect x="20.7" y="421" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="23.73" y="431.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (15,033,904 samples, 0.10%)</title><rect x="741.2" y="597" width="1.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="744.17" y="607.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (9,161,058 samples, 0.06%)</title><rect x="879.0" y="565" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="882.02" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,809,316 samples, 0.03%)</title><rect x="750.7" y="485" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="753.65" y="495.5" ></text>
</g>
<g >
<title>runtime.memmove (28,874,437 samples, 0.19%)</title><rect x="700.9" y="581" width="2.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="703.94" y="591.5" ></text>
</g>
<g >
<title>allocate_slab (12,173,584 samples, 0.08%)</title><rect x="794.3" y="309" width="1.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="797.31" y="319.5" ></text>
</g>
<g >
<title>ttwu_do_activate (137,817,906 samples, 0.91%)</title><rect x="310.4" y="325" width="10.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="313.40" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,089,602 samples, 0.04%)</title><rect x="1188.3" y="645" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1191.33" y="655.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (2,113,730 samples, 0.01%)</title><rect x="21.3" y="421" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="24.33" y="431.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (2,578,201 samples, 0.02%)</title><rect x="876.3" y="597" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="879.30" y="607.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,680,285 samples, 0.02%)</title><rect x="334.2" y="277" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="337.20" y="287.5" ></text>
</g>
<g >
<title>__update_load_avg_se (2,317,546 samples, 0.02%)</title><rect x="31.5" y="453" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="34.55" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="373" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1083.14" y="383.5" ></text>
</g>
<g >
<title>rmqueue (1,551,534 samples, 0.01%)</title><rect x="1100.2" y="229" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1103.24" y="239.5" ></text>
</g>
<g >
<title>resched_curr (4,247,231 samples, 0.03%)</title><rect x="312.0" y="277" width="0.3" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="315.00" y="287.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (10,828,547 samples, 0.07%)</title><rect x="269.4" y="549" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="272.35" y="559.5" ></text>
</g>
<g >
<title>handle_pte_fault (17,781,229 samples, 0.12%)</title><rect x="1038.8" y="341" width="1.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1041.78" y="351.5" ></text>
</g>
<g >
<title>runtime.casgstatus (3,076,162 samples, 0.02%)</title><rect x="769.5" y="517" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="772.52" y="527.5" ></text>
</g>
<g >
<title>__hrtimer_init (1,950,552 samples, 0.01%)</title><rect x="25.6" y="565" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="28.63" y="575.5" ></text>
</g>
<g >
<title>runtime.lock2 (1,887,484 samples, 0.01%)</title><rect x="873.6" y="533" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="876.57" y="543.5" ></text>
</g>
<g >
<title>runtime.memmove (23,771,849 samples, 0.16%)</title><rect x="992.1" y="421" width="1.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="995.13" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (4,444,437 samples, 0.03%)</title><rect x="1007.8" y="373" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1010.80" y="383.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="389" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1010.57" y="399.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (1,805,584 samples, 0.01%)</title><rect x="266.8" y="581" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="269.78" y="591.5" ></text>
</g>
<g >
<title>reweight_entity (2,765,629 samples, 0.02%)</title><rect x="19.0" y="389" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="22.00" y="399.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (2,990,464 samples, 0.02%)</title><rect x="388.5" y="341" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="391.52" y="351.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (4,876,300 samples, 0.03%)</title><rect x="926.6" y="245" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="929.57" y="255.5" ></text>
</g>
<g >
<title>x86_pmu_disable (32,213,728 samples, 0.21%)</title><rect x="953.3" y="325" width="2.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="956.26" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (1,527,921 samples, 0.01%)</title><rect x="384.0" y="293" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="387.03" y="303.5" ></text>
</g>
<g >
<title>error_entry (1,535,349 samples, 0.01%)</title><rect x="10.1" y="613" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.06" y="623.5" ></text>
</g>
<g >
<title>__radix_tree_delete (4,292,323 samples, 0.03%)</title><rect x="302.9" y="357" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="305.89" y="367.5" ></text>
</g>
<g >
<title>shuffle_freelist (1,546,924 samples, 0.01%)</title><rect x="1123.8" y="229" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1126.83" y="239.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (5,337,489 samples, 0.04%)</title><rect x="1080.1" y="517" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1083.08" y="527.5" ></text>
</g>
<g >
<title>__fput (969,165,619 samples, 6.39%)</title><rect x="293.2" y="437" width="75.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="296.21" y="447.5" >__fput</text>
</g>
<g >
<title>entry_SYSCALL_64 (35,481,514 samples, 0.23%)</title><rect x="770.7" y="517" width="2.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="773.70" y="527.5" ></text>
</g>
<g >
<title>runtime.interequal (1,529,941 samples, 0.01%)</title><rect x="1035.2" y="437" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1038.24" y="447.5" ></text>
</g>
<g >
<title>allocate_slab (13,738,484 samples, 0.09%)</title><rect x="1109.5" y="325" width="1.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1112.53" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2,689,139 samples, 0.02%)</title><rect x="308.0" y="325" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="310.97" y="335.5" ></text>
</g>
<g >
<title>d_instantiate (6,122,235 samples, 0.04%)</title><rect x="800.3" y="389" width="0.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="803.26" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (6,657,868 samples, 0.04%)</title><rect x="251.6" y="645" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="254.61" y="655.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,477,276 samples, 0.02%)</title><rect x="250.9" y="581" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="253.90" y="591.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (18,644,946 samples, 0.12%)</title><rect x="785.1" y="325" width="1.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="788.13" y="335.5" ></text>
</g>
<g >
<title>update_process_times (1,287,538 samples, 0.01%)</title><rect x="940.7" y="261" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="943.68" y="271.5" ></text>
</g>
<g >
<title>runtime.typehash (2,321,581 samples, 0.02%)</title><rect x="1037.0" y="421" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1039.98" y="431.5" ></text>
</g>
<g >
<title>wp_page_copy (6,052,459 samples, 0.04%)</title><rect x="1001.4" y="309" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1004.42" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,427,236 samples, 0.01%)</title><rect x="962.5" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="965.48" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mheap).initSpan (1,487,791 samples, 0.01%)</title><rect x="1045.3" y="309" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1048.31" y="319.5" ></text>
</g>
<g >
<title>runtime.gopreempt_m (1,655,602 samples, 0.01%)</title><rect x="1189.4" y="693" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1192.36" y="703.5" ></text>
</g>
<g >
<title>psi_task_change (1,539,612 samples, 0.01%)</title><rect x="334.0" y="197" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="337.05" y="207.5" ></text>
</g>
<g >
<title>wake_up_process (7,653,308 samples, 0.05%)</title><rect x="940.1" y="277" width="0.6" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="943.06" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (6,951,051 samples, 0.05%)</title><rect x="1021.8" y="421" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1024.80" y="431.5" ></text>
</g>
<g >
<title>__mutex_init (1,522,063 samples, 0.01%)</title><rect x="783.5" y="357" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="786.55" y="367.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (1,328,572 samples, 0.01%)</title><rect x="972.2" y="453" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="975.16" y="463.5" ></text>
</g>
<g >
<title>runtime.GC (6,891,478 samples, 0.05%)</title><rect x="867.6" y="661" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="870.59" y="671.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3,985,145 samples, 0.03%)</title><rect x="21.0" y="437" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="23.98" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (2,326,113 samples, 0.02%)</title><rect x="1026.1" y="389" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1029.06" y="399.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,548,576 samples, 0.01%)</title><rect x="347.0" y="309" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="350.05" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_futex (23,782,697 samples, 0.16%)</title><rect x="11.4" y="549" width="1.9" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="14.44" y="559.5" ></text>
</g>
<g >
<title>runtime.mallocgc (8,381,725 samples, 0.06%)</title><rect x="984.4" y="421" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="987.43" y="431.5" ></text>
</g>
<g >
<title>runtime.scanblock (1,536,134 samples, 0.01%)</title><rect x="1185.3" y="405" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1188.26" y="415.5" ></text>
</g>
<g >
<title>enqueue_task_fair (11,250,332 samples, 0.07%)</title><rect x="18.5" y="421" width="0.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="21.47" y="431.5" ></text>
</g>
<g >
<title>runtime.greyobject (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="277" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1014.74" y="287.5" ></text>
</g>
<g >
<title>wp_page_copy (4,757,663 samples, 0.03%)</title><rect x="1042.9" y="357" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1045.90" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (13,737,524 samples, 0.09%)</title><rect x="724.3" y="453" width="1.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="727.32" y="463.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (41,823,760 samples, 0.28%)</title><rect x="728.4" y="565" width="3.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="731.42" y="575.5" ></text>
</g>
<g >
<title>psi_task_switch (3,087,490 samples, 0.02%)</title><rect x="12.9" y="453" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="15.88" y="463.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (8,104,640 samples, 0.05%)</title><rect x="927.9" y="309" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="930.86" y="319.5" ></text>
</g>
<g >
<title>collapse_huge_page (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="501" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1192.69" y="511.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,183,107 samples, 0.03%)</title><rect x="1057.3" y="405" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1060.26" y="415.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (33,241,354 samples, 0.22%)</title><rect x="11.2" y="597" width="2.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="14.20" y="607.5" ></text>
</g>
<g >
<title>os.(*File).Read (68,696,941 samples, 0.45%)</title><rect x="1067.5" y="581" width="5.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1070.52" y="591.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (871,505,329 samples, 5.75%)</title><rect x="431.7" y="597" width="67.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="434.69" y="607.5" >encodin..</text>
</g>
<g >
<title>asm_exc_page_fault (2,267,467 samples, 0.01%)</title><rect x="1018.2" y="389" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1021.17" y="399.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (3,007,310 samples, 0.02%)</title><rect x="383.0" y="405" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="385.96" y="415.5" ></text>
</g>
<g >
<title>__dentry_kill (77,874,726 samples, 0.51%)</title><rect x="358.3" y="405" width="6.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="361.33" y="415.5" ></text>
</g>
<g >
<title>runtime.greyobject (10,426,409 samples, 0.07%)</title><rect x="1048.5" y="293" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1051.46" y="303.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,266,919 samples, 0.01%)</title><rect x="387.4" y="405" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="390.35" y="415.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,297,294 samples, 0.02%)</title><rect x="1013.4" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1016.39" y="399.5" ></text>
</g>
<g >
<title>available_idle_cpu (2,602,465 samples, 0.02%)</title><rect x="918.1" y="325" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="921.06" y="335.5" ></text>
</g>
<g >
<title>check_preempt_curr (18,342,923 samples, 0.12%)</title><rect x="918.9" y="325" width="1.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="921.92" y="335.5" ></text>
</g>
<g >
<title>runtime.lock2 (4,533,831 samples, 0.03%)</title><rect x="1183.0" y="501" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1186.01" y="511.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (10,015,067 samples, 0.07%)</title><rect x="1072.0" y="405" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1074.97" y="415.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (8,173,199 samples, 0.05%)</title><rect x="1014.8" y="325" width="0.6" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1017.75" y="335.5" ></text>
</g>
<g >
<title>update_cfs_group (3,560,183 samples, 0.02%)</title><rect x="18.9" y="405" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="21.94" y="415.5" ></text>
</g>
<g >
<title>__calc_delta (3,852,276 samples, 0.03%)</title><rect x="341.1" y="309" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="344.06" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (8,282,854 samples, 0.05%)</title><rect x="1005.0" y="421" width="0.7" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1008.04" y="431.5" ></text>
</g>
<g >
<title>sched_clock (10,207,839 samples, 0.07%)</title><rect x="929.2" y="309" width="0.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="932.24" y="319.5" ></text>
</g>
<g >
<title>rb_insert_color (1,945,370 samples, 0.01%)</title><rect x="345.7" y="341" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="348.74" y="351.5" ></text>
</g>
<g >
<title>enqueue_entity (37,598,711 samples, 0.25%)</title><rect x="313.7" y="277" width="2.9" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="316.71" y="287.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (2,310,096 samples, 0.02%)</title><rect x="412.6" y="277" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="415.64" y="287.5" ></text>
</g>
<g >
<title>cpuacct_charge (4,976,905 samples, 0.03%)</title><rect x="946.2" y="325" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="949.16" y="335.5" ></text>
</g>
<g >
<title>folio_add_lru (2,036,114 samples, 0.01%)</title><rect x="1060.5" y="309" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1063.47" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (14,167,828 samples, 0.09%)</title><rect x="333.7" y="325" width="1.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="336.68" y="335.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (3,029,072 samples, 0.02%)</title><rect x="231.1" y="517" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="234.11" y="527.5" ></text>
</g>
<g >
<title>wp_page_copy (14,860,459 samples, 0.10%)</title><rect x="996.2" y="309" width="1.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="999.17" y="319.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (3,023,647 samples, 0.02%)</title><rect x="728.2" y="549" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="731.18" y="559.5" ></text>
</g>
<g >
<title>madvise_collapse (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="533" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1192.69" y="543.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,148,146 samples, 0.01%)</title><rect x="612.7" y="357" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="615.68" y="367.5" ></text>
</g>
<g >
<title>____fput (1,297,755 samples, 0.01%)</title><rect x="291.7" y="469" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="294.74" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (17,804,988 samples, 0.12%)</title><rect x="403.9" y="453" width="1.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="406.94" y="463.5" ></text>
</g>
<g >
<title>runtime.interhash (3,785,063 samples, 0.02%)</title><rect x="392.2" y="437" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="395.23" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (4,639,924 samples, 0.03%)</title><rect x="1021.9" y="293" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1024.92" y="303.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,951,051 samples, 0.05%)</title><rect x="1021.8" y="405" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1024.80" y="415.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (1,383,154 samples, 0.01%)</title><rect x="1054.1" y="309" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1057.11" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,532,309 samples, 0.03%)</title><rect x="1006.0" y="357" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1008.98" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (17,520,049 samples, 0.12%)</title><rect x="471.7" y="565" width="1.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="474.67" y="575.5" ></text>
</g>
<g >
<title>get_page_from_freelist (33,220,912 samples, 0.22%)</title><rect x="806.4" y="277" width="2.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="809.38" y="287.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (425,274,545 samples, 2.81%)</title><rect x="1150.7" y="517" width="33.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1153.74" y="527.5" >ru..</text>
</g>
<g >
<title>__x64_sys_futex (36,496,674 samples, 0.24%)</title><rect x="253.2" y="501" width="2.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="256.16" y="511.5" ></text>
</g>
<g >
<title>runtime.casgstatus (2,289,097 samples, 0.02%)</title><rect x="769.0" y="501" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="771.99" y="511.5" ></text>
</g>
<g >
<title>do_tkill (7,186,315 samples, 0.05%)</title><rect x="22.5" y="549" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="25.50" y="559.5" ></text>
</g>
<g >
<title>__free_slab (2,830,292 samples, 0.02%)</title><rect x="963.2" y="293" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="966.17" y="303.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,408,145 samples, 0.04%)</title><rect x="402.3" y="325" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="405.26" y="335.5" ></text>
</g>
<g >
<title>wake_up_process (3,650,516 samples, 0.02%)</title><rect x="148.0" y="533" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="151.04" y="543.5" ></text>
</g>
<g >
<title>do_syscall_64 (54,147,845 samples, 0.36%)</title><rect x="17.5" y="549" width="4.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="20.53" y="559.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).scavenge.func1 (8,189,365 samples, 0.05%)</title><rect x="256.7" y="613" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="259.70" y="623.5" ></text>
</g>
<g >
<title>runtime.findObject (7,505,205 samples, 0.05%)</title><rect x="381.6" y="357" width="0.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="384.62" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,154,062 samples, 0.04%)</title><rect x="1027.0" y="309" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1029.96" y="319.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,455,732 samples, 0.01%)</title><rect x="148.5" y="581" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="151.54" y="591.5" ></text>
</g>
<g >
<title>runtime.lock (1,528,870 samples, 0.01%)</title><rect x="252.0" y="613" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="255.01" y="623.5" ></text>
</g>
<g >
<title>handle_pte_fault (15,721,044 samples, 0.10%)</title><rect x="992.5" y="325" width="1.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="995.48" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="501" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1191.33" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,778,029 samples, 0.04%)</title><rect x="14.1" y="613" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="17.12" y="623.5" ></text>
</g>
<g >
<title>select_task_rq_fair (16,267,453 samples, 0.11%)</title><rect x="917.4" y="341" width="1.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="920.37" y="351.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1,467,716 samples, 0.01%)</title><rect x="1006.2" y="261" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1009.22" y="271.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (9,120,102 samples, 0.06%)</title><rect x="1016.5" y="341" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1019.52" y="351.5" ></text>
</g>
<g >
<title>runtime.typehash (5,405,002 samples, 0.04%)</title><rect x="525.5" y="549" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="528.52" y="559.5" ></text>
</g>
<g >
<title>runtime.retake (85,108,692 samples, 0.56%)</title><rect x="16.6" y="645" width="6.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="19.57" y="655.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,532,309 samples, 0.03%)</title><rect x="1006.0" y="373" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1008.98" y="383.5" ></text>
</g>
<g >
<title>runtime.casgstatus (1,618,833 samples, 0.01%)</title><rect x="1084.1" y="533" width="0.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1087.12" y="543.5" ></text>
</g>
<g >
<title>handle_pte_fault (17,114,220 samples, 0.11%)</title><rect x="996.1" y="341" width="1.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="999.05" y="351.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).scavengeOne (8,189,365 samples, 0.05%)</title><rect x="256.7" y="597" width="0.6" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="259.70" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (2,299,077 samples, 0.02%)</title><rect x="1186.1" y="629" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1189.09" y="639.5" ></text>
</g>
<g >
<title>fput (3,297,762 samples, 0.02%)</title><rect x="281.9" y="469" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="284.88" y="479.5" ></text>
</g>
<g >
<title>lapic_next_deadline (2,793,619 samples, 0.02%)</title><rect x="27.5" y="485" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="30.52" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,273,780 samples, 0.01%)</title><rect x="1047.6" y="261" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1050.65" y="271.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (1,553,574 samples, 0.01%)</title><rect x="795.8" y="341" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="798.84" y="351.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (17,535,367 samples, 0.12%)</title><rect x="547.8" y="389" width="1.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="550.81" y="399.5" ></text>
</g>
<g >
<title>runtime.slicebytetostring (13,660,745 samples, 0.09%)</title><rect x="1017.5" y="421" width="1.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1020.52" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (10,005,659 samples, 0.07%)</title><rect x="1026.7" y="405" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1029.72" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.copyTypes (312,467,113 samples, 2.06%)</title><rect x="378.9" y="469" width="24.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="381.90" y="479.5" >g..</text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (3,023,647 samples, 0.02%)</title><rect x="728.2" y="517" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="731.18" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (19,151,883 samples, 0.13%)</title><rect x="760.5" y="437" width="1.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="763.49" y="447.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (22,408,144 samples, 0.15%)</title><rect x="1068.3" y="389" width="1.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1071.30" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (7,591,050 samples, 0.05%)</title><rect x="148.7" y="629" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="151.66" y="639.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (23,513,540 samples, 0.16%)</title><rect x="735.0" y="613" width="1.9" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="738.04" y="623.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (9,066,558 samples, 0.06%)</title><rect x="1187.2" y="597" width="0.7" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1190.19" y="607.5" ></text>
</g>
<g >
<title>runtime.deferprocStack (2,853,609 samples, 0.02%)</title><rect x="866.5" y="613" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="869.46" y="623.5" ></text>
</g>
<g >
<title>runtime.bgscavenge (65,467,665 samples, 0.43%)</title><rect x="252.2" y="693" width="5.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="255.24" y="703.5" ></text>
</g>
<g >
<title>runtime.growslice (2,261,701 samples, 0.01%)</title><rect x="1074.0" y="629" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1077.01" y="639.5" ></text>
</g>
<g >
<title>cache_from_obj (5,791,493 samples, 0.04%)</title><rect x="361.0" y="357" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="363.98" y="367.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,379,640 samples, 0.01%)</title><rect x="283.7" y="517" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="286.69" y="527.5" ></text>
</g>
<g >
<title>handle_mm_fault (32,068,149 samples, 0.21%)</title><rect x="1054.0" y="389" width="2.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1056.96" y="399.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (2,274,812 samples, 0.02%)</title><rect x="194.8" y="597" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="197.79" y="607.5" ></text>
</g>
<g >
<title>close_fd (1,742,336 samples, 0.01%)</title><rect x="892.4" y="533" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="895.42" y="543.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (1,528,049 samples, 0.01%)</title><rect x="698.5" y="357" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="701.50" y="367.5" ></text>
</g>
<g >
<title>file_free_rcu (7,402,867 samples, 0.05%)</title><rect x="334.9" y="229" width="0.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="337.89" y="239.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,408,145 samples, 0.04%)</title><rect x="402.3" y="357" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="405.26" y="367.5" ></text>
</g>
<g >
<title>anon_inode_getfd (282,923,276 samples, 1.87%)</title><rect x="782.0" y="437" width="22.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="784.95" y="447.5" >a..</text>
</g>
<g >
<title>futex_wake (28,958,459 samples, 0.19%)</title><rect x="17.7" y="501" width="2.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="20.68" y="511.5" ></text>
</g>
<g >
<title>flush_tlb_func (3,029,072 samples, 0.02%)</title><rect x="231.1" y="533" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="234.11" y="543.5" ></text>
</g>
<g >
<title>do_check_common (3,848,681 samples, 0.03%)</title><rect x="412.5" y="341" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="415.52" y="351.5" ></text>
</g>
<g >
<title>psi_flags_change (1,506,302 samples, 0.01%)</title><rect x="318.2" y="277" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="321.19" y="287.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (74,790,330 samples, 0.49%)</title><rect x="371.5" y="549" width="5.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="374.52" y="559.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,317,499 samples, 0.02%)</title><rect x="795.7" y="341" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="798.66" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,683,703 samples, 0.02%)</title><rect x="1008.6" y="373" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1011.56" y="383.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (59,896,254 samples, 0.40%)</title><rect x="520.9" y="549" width="4.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="523.86" y="559.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2,016,002 samples, 0.01%)</title><rect x="13.6" y="581" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="16.63" y="591.5" ></text>
</g>
<g >
<title>futex_wait_queue (34,403,347 samples, 0.23%)</title><rect x="253.2" y="453" width="2.7" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="256.24" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).nextSpanForSweep (1,407,922 samples, 0.01%)</title><rect x="867.9" y="629" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="870.86" y="639.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,538,764 samples, 0.01%)</title><rect x="1143.5" y="517" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1146.53" y="527.5" ></text>
</g>
<g >
<title>runtime.mcall (1,734,894 samples, 0.01%)</title><rect x="244.4" y="661" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="247.42" y="671.5" ></text>
</g>
<g >
<title>__slab_free (12,222,320 samples, 0.08%)</title><rect x="962.6" y="373" width="0.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="965.59" y="383.5" ></text>
</g>
<g >
<title>select_task_rq_fair (1,771,428 samples, 0.01%)</title><rect x="18.0" y="453" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="21.04" y="463.5" ></text>
</g>
<g >
<title>testing.(*B).launch (7,840,389,570 samples, 51.72%)</title><rect x="257.9" y="693" width="610.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="260.87" y="703.5" >testing.(*B).launch</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (43,364,372 samples, 0.29%)</title><rect x="253.0" y="533" width="3.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="255.98" y="543.5" ></text>
</g>
<g >
<title>__get_random_u32_below (1,525,639 samples, 0.01%)</title><rect x="1103.6" y="293" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1106.59" y="303.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="357" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1010.57" y="367.5" ></text>
</g>
<g >
<title>runtime.schedule (57,278,300 samples, 0.38%)</title><rect x="252.2" y="613" width="4.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="255.24" y="623.5" ></text>
</g>
<g >
<title>anon_inode_getfd (300,251,716 samples, 1.98%)</title><rect x="1095.4" y="453" width="23.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1098.39" y="463.5" >a..</text>
</g>
<g >
<title>runtime.mapassign (100,766,655 samples, 0.66%)</title><rect x="1049.8" y="469" width="7.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1052.80" y="479.5" ></text>
</g>
<g >
<title>runtime.makemap (48,799,747 samples, 0.32%)</title><rect x="1046.0" y="469" width="3.8" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1049.01" y="479.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (34,542,626 samples, 0.23%)</title><rect x="985.4" y="293" width="2.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="988.38" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (3,032,056 samples, 0.02%)</title><rect x="750.7" y="453" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="753.71" y="463.5" ></text>
</g>
<g >
<title>clear_page_erms (3,401,288 samples, 0.02%)</title><rect x="1061.5" y="261" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1064.46" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (11,391,864 samples, 0.08%)</title><rect x="746.5" y="581" width="0.9" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="749.48" y="591.5" ></text>
</g>
<g >
<title>dput (1,862,268 samples, 0.01%)</title><rect x="368.8" y="437" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="371.76" y="447.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (5,968,927 samples, 0.04%)</title><rect x="1098.6" y="341" width="0.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1101.64" y="351.5" ></text>
</g>
<g >
<title>alloc_fd (9,970,901 samples, 0.07%)</title><rect x="1118.0" y="421" width="0.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1120.98" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (8,454,039 samples, 0.06%)</title><rect x="1000.8" y="277" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1003.76" y="287.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,568,275 samples, 0.02%)</title><rect x="991.4" y="389" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="994.38" y="399.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (1,496,441 samples, 0.01%)</title><rect x="388.3" y="389" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="391.34" y="399.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,080,199 samples, 0.02%)</title><rect x="1015.4" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1018.39" y="399.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (8,651,164 samples, 0.06%)</title><rect x="959.1" y="309" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="962.14" y="319.5" ></text>
</g>
<g >
<title>runtime.mallocgc (17,664,768 samples, 0.12%)</title><rect x="405.4" y="437" width="1.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="408.45" y="447.5" ></text>
</g>
<g >
<title>apparmor_capable (2,982,130 samples, 0.02%)</title><rect x="813.8" y="405" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="816.80" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (9,110,533 samples, 0.06%)</title><rect x="388.8" y="405" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="391.75" y="415.5" ></text>
</g>
<g >
<title>runtime.memmove (2,286,343 samples, 0.02%)</title><rect x="400.5" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="403.48" y="431.5" ></text>
</g>
<g >
<title>x86_pmu_disable (34,275,021 samples, 0.23%)</title><rect x="350.0" y="309" width="2.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="352.96" y="319.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (3,064,778 samples, 0.02%)</title><rect x="1185.7" y="613" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1188.73" y="623.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (555,062,270 samples, 3.66%)</title><rect x="655.2" y="389" width="43.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="658.23" y="399.5" >bpf_..</text>
</g>
<g >
<title>_raw_spin_lock_irq (3,478,248 samples, 0.02%)</title><rect x="972.6" y="469" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="975.59" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (6,862,748 samples, 0.05%)</title><rect x="406.1" y="309" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="409.11" y="319.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (2,063,295 samples, 0.01%)</title><rect x="12.4" y="373" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="15.45" y="383.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (32,290,566 samples, 0.21%)</title><rect x="910.7" y="389" width="2.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="913.73" y="399.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,037,930,584 samples, 6.85%)</title><rect x="289.8" y="501" width="80.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="292.78" y="511.5" >exit_to_u..</text>
</g>
<g >
<title>asm_exc_page_fault (2,662,350 samples, 0.02%)</title><rect x="250.9" y="629" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="253.90" y="639.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (117,310,521 samples, 0.77%)</title><rect x="804.6" y="421" width="9.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="807.61" y="431.5" ></text>
</g>
<g >
<title>runtime.gcenable.func2 (65,467,665 samples, 0.43%)</title><rect x="252.2" y="709" width="5.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="255.24" y="719.5" ></text>
</g>
<g >
<title>__x64_sys_close (4,648,685 samples, 0.03%)</title><rect x="887.3" y="549" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="890.26" y="559.5" ></text>
</g>
<g >
<title>free_unref_page_commit (1,466,924 samples, 0.01%)</title><rect x="46.6" y="437" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="49.61" y="447.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (18,400,295 samples, 0.12%)</title><rect x="475.6" y="565" width="1.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="478.60" y="575.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (4,940,099 samples, 0.03%)</title><rect x="969.0" y="437" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="971.98" y="447.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (1,543,381 samples, 0.01%)</title><rect x="1000.6" y="309" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1003.64" y="319.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (5,714,293 samples, 0.04%)</title><rect x="926.6" y="261" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="929.56" y="271.5" ></text>
</g>
<g >
<title>__free_slab (2,116,132 samples, 0.01%)</title><rect x="360.5" y="277" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="363.54" y="287.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (1,548,505 samples, 0.01%)</title><rect x="791.9" y="357" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="794.90" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,613,478 samples, 0.02%)</title><rect x="916.3" y="341" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="919.33" y="351.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (3,795,882 samples, 0.03%)</title><rect x="799.6" y="325" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="802.61" y="335.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3,174,763 samples, 0.02%)</title><rect x="31.3" y="453" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="34.30" y="463.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries.func1 (1,541,596,579 samples, 10.17%)</title><rect x="257.9" y="645" width="120.0" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="260.88" y="655.5" >github.com/EMn..</text>
</g>
<g >
<title>syscall.Syscall (1,336,062,430 samples, 8.81%)</title><rect x="876.6" y="597" width="104.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="879.61" y="607.5" >syscall.Sysc..</text>
</g>
<g >
<title>exc_page_fault (6,874,582 samples, 0.05%)</title><rect x="750.5" y="581" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="753.47" y="591.5" ></text>
</g>
<g >
<title>pick_next_task_fair (12,666,431 samples, 0.08%)</title><rect x="254.4" y="389" width="1.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="257.39" y="399.5" ></text>
</g>
<g >
<title>runtime.pcvalue (1,533,881 samples, 0.01%)</title><rect x="747.6" y="453" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="750.61" y="463.5" ></text>
</g>
<g >
<title>put_prev_entity (101,939,015 samples, 0.67%)</title><rect x="337.6" y="341" width="7.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="340.59" y="351.5" ></text>
</g>
<g >
<title>memchr_inv (4,577,127 samples, 0.03%)</title><rect x="1135.8" y="469" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1138.82" y="479.5" ></text>
</g>
<g >
<title>runtime.makeBucketArray (13,918,169 samples, 0.09%)</title><rect x="401.8" y="437" width="1.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="404.83" y="447.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,533,678 samples, 0.01%)</title><rect x="407.5" y="325" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="410.48" y="335.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (8,420,898 samples, 0.06%)</title><rect x="1010.9" y="357" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1013.91" y="367.5" ></text>
</g>
<g >
<title>sync_regs (1,546,325 samples, 0.01%)</title><rect x="997.7" y="421" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1000.68" y="431.5" ></text>
</g>
<g >
<title>__cond_resched (349,116,326 samples, 2.30%)</title><rect x="933.5" y="421" width="27.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="936.47" y="431.5" >_..</text>
</g>
<g >
<title>update_curr (1,971,257 samples, 0.01%)</title><rect x="18.7" y="389" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="21.67" y="399.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (3,817,140 samples, 0.03%)</title><rect x="747.6" y="501" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="750.61" y="511.5" ></text>
</g>
<g >
<title>syscall.Close (1,561,550 samples, 0.01%)</title><rect x="742.3" y="517" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="745.34" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (27,090,119 samples, 0.18%)</title><rect x="34.5" y="453" width="2.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="37.51" y="463.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,051,736 samples, 0.02%)</title><rect x="1104.7" y="341" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1107.66" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*copier).copy (286,288,415 samples, 1.89%)</title><rect x="379.4" y="453" width="22.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="382.43" y="463.5" >g..</text>
</g>
<g >
<title>runtime.mProf_Malloc (1,499,683 samples, 0.01%)</title><rect x="389.3" y="373" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="392.28" y="383.5" ></text>
</g>
<g >
<title>psi_group_change (1,848,755 samples, 0.01%)</title><rect x="940.4" y="197" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="943.44" y="207.5" ></text>
</g>
<g >
<title>__mod_memcg_state (1,541,119 samples, 0.01%)</title><rect x="1127.5" y="325" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1130.45" y="335.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (2,519,785 samples, 0.02%)</title><rect x="914.4" y="357" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="917.42" y="367.5" ></text>
</g>
<g >
<title>mod_objcg_state (2,947,743 samples, 0.02%)</title><rect x="791.3" y="325" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="794.31" y="335.5" ></text>
</g>
<g >
<title>runtime.pcvalue (1,523,444 samples, 0.01%)</title><rect x="731.7" y="437" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="734.67" y="447.5" ></text>
</g>
<g >
<title>ptep_clear_flush (2,776,369 samples, 0.02%)</title><rect x="1043.0" y="341" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1046.01" y="351.5" ></text>
</g>
<g >
<title>release_pages (13,901,615 samples, 0.09%)</title><rect x="47.9" y="389" width="1.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="50.93" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,056,445 samples, 0.02%)</title><rect x="1185.2" y="501" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1188.20" y="511.5" ></text>
</g>
<g >
<title>mntput (7,109,906 samples, 0.05%)</title><rect x="968.4" y="437" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="971.39" y="447.5" ></text>
</g>
<g >
<title>runtime.findObject (1,479,428 samples, 0.01%)</title><rect x="1013.2" y="277" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1016.22" y="287.5" ></text>
</g>
<g >
<title>__folio_alloc (19,151,883 samples, 0.13%)</title><rect x="760.5" y="469" width="1.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="763.49" y="479.5" ></text>
</g>
<g >
<title>runtime.interhash (1,465,138 samples, 0.01%)</title><rect x="1053.2" y="453" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1056.25" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,378,571 samples, 0.04%)</title><rect x="732.7" y="533" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="735.75" y="543.5" ></text>
</g>
<g >
<title>amd_clear_divider (1,526,459 samples, 0.01%)</title><rect x="1137.1" y="501" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1140.07" y="511.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (1,462,694 samples, 0.01%)</title><rect x="1126.9" y="325" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1129.92" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,528,329 samples, 0.01%)</title><rect x="1114.0" y="325" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1116.99" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="485" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1191.33" y="495.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (5,009,867 samples, 0.03%)</title><rect x="367.3" y="405" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="370.25" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (2,978,944 samples, 0.02%)</title><rect x="826.4" y="517" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="829.39" y="527.5" ></text>
</g>
<g >
<title>security_file_free (3,062,644 samples, 0.02%)</title><rect x="972.3" y="453" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="975.31" y="463.5" ></text>
</g>
<g >
<title>os.(*File).Close (1,561,550 samples, 0.01%)</title><rect x="742.3" y="597" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="745.34" y="607.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (19,939,186 samples, 0.13%)</title><rect x="1117.2" y="437" width="1.6" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1120.20" y="447.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (1,970,016 samples, 0.01%)</title><rect x="783.9" y="341" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="786.94" y="351.5" ></text>
</g>
<g >
<title>runtime.gcMarkTermination (5,239,325 samples, 0.03%)</title><rect x="50.0" y="677" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="53.02" y="687.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (2,883,554 samples, 0.02%)</title><rect x="324.8" y="373" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="327.80" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit (1,351,678 samples, 0.01%)</title><rect x="147.9" y="597" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="150.89" y="607.5" ></text>
</g>
<g >
<title>__folio_alloc (6,414,762 samples, 0.04%)</title><rect x="993.2" y="261" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="996.21" y="271.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (8,482,989 samples, 0.06%)</title><rect x="254.5" y="293" width="0.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="257.48" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (4,639,924 samples, 0.03%)</title><rect x="1021.9" y="309" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1024.92" y="319.5" ></text>
</g>
<g >
<title>reflect.Value.Field (1,533,154 samples, 0.01%)</title><rect x="1072.9" y="613" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="1075.93" y="623.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,811,703 samples, 0.03%)</title><rect x="388.8" y="357" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="391.81" y="367.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (15,352,131 samples, 0.10%)</title><rect x="965.6" y="373" width="1.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="968.57" y="383.5" ></text>
</g>
<g >
<title>security_file_alloc (28,242,726 samples, 0.19%)</title><rect x="1098.2" y="357" width="2.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1101.22" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,715,322 samples, 0.27%)</title><rect x="253.1" y="517" width="3.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="256.14" y="527.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (1,405,892 samples, 0.01%)</title><rect x="12.8" y="421" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="15.77" y="431.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (12,962,969 samples, 0.09%)</title><rect x="333.7" y="309" width="1.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="336.71" y="319.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (18,536,222 samples, 0.12%)</title><rect x="296.7" y="421" width="1.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="299.74" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (9,247,937 samples, 0.06%)</title><rect x="1028.5" y="421" width="0.7" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1031.52" y="431.5" ></text>
</g>
<g >
<title>runtime.growslice (19,820,894 samples, 0.13%)</title><rect x="746.5" y="613" width="1.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="749.48" y="623.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,020,984 samples, 0.02%)</title><rect x="386.5" y="405" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="389.53" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (2,318,970 samples, 0.02%)</title><rect x="1028.3" y="437" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1031.28" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,486,357,085 samples, 16.40%)</title><rect x="50.9" y="693" width="193.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="53.89" y="703.5" >runtime.systemstack.abi0</text>
</g>
<g >
<title>native_write_msr (2,607,385 samples, 0.02%)</title><rect x="33.4" y="437" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="36.44" y="447.5" ></text>
</g>
<g >
<title>runtime.notesleep (47,283,133 samples, 0.31%)</title><rect x="252.9" y="565" width="3.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="255.88" y="575.5" ></text>
</g>
<g >
<title>switch_fpu_return (5,994,001 samples, 0.04%)</title><rect x="370.1" y="485" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="373.08" y="495.5" ></text>
</g>
<g >
<title>update_curr (28,389,877 samples, 0.19%)</title><rect x="340.1" y="325" width="2.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="343.12" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,863,154 samples, 0.01%)</title><rect x="352.6" y="325" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="355.63" y="335.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (6,862,748 samples, 0.05%)</title><rect x="406.1" y="133" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="409.11" y="143.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (26,803,625 samples, 0.18%)</title><rect x="34.5" y="437" width="2.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="37.53" y="447.5" ></text>
</g>
<g >
<title>runtime.findObject (1,491,333 samples, 0.01%)</title><rect x="388.6" y="325" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="391.63" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (3,053,219 samples, 0.02%)</title><rect x="406.4" y="53" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="409.40" y="63.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,363,713 samples, 0.02%)</title><rect x="1056.5" y="389" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1059.45" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,809,386 samples, 0.03%)</title><rect x="1024.4" y="421" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1027.38" y="431.5" ></text>
</g>
<g >
<title>mod_objcg_state (1,526,312 samples, 0.01%)</title><rect x="1105.9" y="357" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1108.91" y="367.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (17,627,435 samples, 0.12%)</title><rect x="498.2" y="581" width="1.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="501.16" y="591.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (3,100,388 samples, 0.02%)</title><rect x="767.4" y="565" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="770.36" y="575.5" ></text>
</g>
<g >
<title>runtime.makeslice (9,236,679 samples, 0.06%)</title><rect x="1073.1" y="613" width="0.7" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1076.05" y="623.5" ></text>
</g>
<g >
<title>pick_next_task_fair (54,072,943 samples, 0.36%)</title><rect x="34.1" y="501" width="4.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="37.07" y="511.5" ></text>
</g>
<g >
<title>schedule (16,393,955 samples, 0.11%)</title><rect x="20.4" y="485" width="1.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="23.38" y="495.5" ></text>
</g>
<g >
<title>newidle_balance (10,682,705 samples, 0.07%)</title><rect x="254.5" y="373" width="0.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="257.46" y="383.5" ></text>
</g>
<g >
<title>dentry_free (1,653,631 samples, 0.01%)</title><rect x="364.9" y="405" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="367.86" y="415.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (3,192,136 samples, 0.02%)</title><rect x="45.7" y="565" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="48.69" y="575.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (4,643,914 samples, 0.03%)</title><rect x="804.2" y="421" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="807.25" y="431.5" ></text>
</g>
<g >
<title>_compound_head (9,289,822 samples, 0.06%)</title><rect x="46.9" y="453" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="49.89" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadKernelSpec (490,022,731 samples, 3.23%)</title><rect x="980.9" y="485" width="38.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="983.92" y="495.5" >git..</text>
</g>
<g >
<title>rmqueue (2,293,626 samples, 0.02%)</title><rect x="761.8" y="421" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="764.80" y="431.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (12,060,987 samples, 0.08%)</title><rect x="653.6" y="341" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="656.58" y="351.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,297,313 samples, 0.01%)</title><rect x="371.0" y="533" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="374.00" y="543.5" ></text>
</g>
<g >
<title>update_load_avg (9,961,368 samples, 0.07%)</title><rect x="31.0" y="469" width="0.7" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="33.95" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/link.(*Iter).Open (2,262,711 samples, 0.01%)</title><rect x="742.5" y="613" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="745.47" y="623.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,002,354 samples, 0.02%)</title><rect x="1110.6" y="357" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1113.60" y="367.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,296,413 samples, 0.02%)</title><rect x="1002.0" y="373" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1004.95" y="383.5" ></text>
</g>
<g >
<title>clear_page_erms (4,620,066 samples, 0.03%)</title><rect x="1151.4" y="325" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1154.40" y="335.5" ></text>
</g>
<g >
<title>runtime.park_m (2,278,783 samples, 0.02%)</title><rect x="50.7" y="661" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="53.72" y="671.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (1,578,035 samples, 0.01%)</title><rect x="1128.5" y="405" width="0.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="1131.46" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (199,420,352 samples, 1.32%)</title><rect x="1000.2" y="437" width="15.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1003.22" y="447.5" ></text>
</g>
<g >
<title>runtime.newobject (24,188,051 samples, 0.16%)</title><rect x="1013.9" y="421" width="1.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1016.86" y="431.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (48,673,776 samples, 0.32%)</title><rect x="1068.2" y="405" width="3.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1071.18" y="415.5" ></text>
</g>
<g >
<title>psi_task_switch (23,379,459 samples, 0.15%)</title><rect x="39.5" y="517" width="1.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="42.52" y="527.5" ></text>
</g>
<g >
<title>update_load_avg (4,502,182 samples, 0.03%)</title><rect x="347.4" y="341" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="350.39" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,328,961 samples, 0.02%)</title><rect x="1021.0" y="453" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1023.95" y="463.5" ></text>
</g>
<g >
<title>mod_memcg_state (1,541,119 samples, 0.01%)</title><rect x="1127.5" y="341" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1130.45" y="351.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="341" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1010.57" y="351.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,496,153 samples, 0.01%)</title><rect x="230.8" y="533" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="233.84" y="543.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,306,277 samples, 0.01%)</title><rect x="1054.6" y="293" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1057.59" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,534,451 samples, 0.01%)</title><rect x="1103.8" y="357" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1106.82" y="367.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,319,788 samples, 0.02%)</title><rect x="406.6" y="421" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="409.64" y="431.5" ></text>
</g>
<g >
<title>flush_tlb_func (1,530,946 samples, 0.01%)</title><rect x="996.6" y="261" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="999.57" y="271.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (2,314,876 samples, 0.02%)</title><rect x="1080.7" y="549" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1083.68" y="559.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,065,145 samples, 0.04%)</title><rect x="1047.5" y="293" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1050.47" y="303.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (8,189,365 samples, 0.05%)</title><rect x="256.7" y="581" width="0.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="259.70" y="591.5" ></text>
</g>
<g >
<title>runtime.memmove (11,535,906 samples, 0.08%)</title><rect x="1023.8" y="437" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1026.78" y="447.5" ></text>
</g>
<g >
<title>available_idle_cpu (1,860,297 samples, 0.01%)</title><rect x="918.5" y="309" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="921.49" y="319.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (3,048,889 samples, 0.02%)</title><rect x="257.0" y="437" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="259.97" y="447.5" ></text>
</g>
<g >
<title>runtime.findObject (1,391,899 samples, 0.01%)</title><rect x="1057.5" y="357" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1060.48" y="367.5" ></text>
</g>
<g >
<title>bpf_check (3,848,681 samples, 0.03%)</title><rect x="412.5" y="357" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="415.52" y="367.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (181,890,178 samples, 1.20%)</title><rect x="620.4" y="357" width="14.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="623.41" y="367.5" ></text>
</g>
<g >
<title>gosave_systemstack_switch (1,292,707 samples, 0.01%)</title><rect x="871.2" y="597" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="874.23" y="607.5" ></text>
</g>
<g >
<title>exc_page_fault (28,309,512 samples, 0.19%)</title><rect x="760.0" y="581" width="2.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="762.95" y="591.5" ></text>
</g>
<g >
<title>__alloc_pages (3,410,867 samples, 0.02%)</title><rect x="1056.1" y="277" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1059.08" y="287.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (1,527,921 samples, 0.01%)</title><rect x="384.0" y="357" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="387.03" y="367.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,470,399 samples, 0.06%)</title><rect x="148.0" y="629" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="151.00" y="639.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,515,061 samples, 0.01%)</title><rect x="1187.5" y="501" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1190.49" y="511.5" ></text>
</g>
<g >
<title>syscall.Syscall (861,242,389 samples, 5.68%)</title><rect x="1082.9" y="565" width="67.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1085.92" y="575.5" >syscall..</text>
</g>
<g >
<title>syscall_exit_to_user_mode (77,737,083 samples, 0.51%)</title><rect x="1137.4" y="501" width="6.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1140.37" y="511.5" ></text>
</g>
<g >
<title>ptep_clear_flush (6,031,388 samples, 0.04%)</title><rect x="1061.0" y="325" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1063.99" y="335.5" ></text>
</g>
<g >
<title>dentry_free (1,589,674 samples, 0.01%)</title><rect x="967.4" y="421" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="970.42" y="431.5" ></text>
</g>
<g >
<title>put_cpu_partial (3,525,380 samples, 0.02%)</title><rect x="360.4" y="341" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="363.44" y="351.5" ></text>
</g>
<g >
<title>select_idle_sibling (4,701,202 samples, 0.03%)</title><rect x="918.3" y="325" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="921.27" y="335.5" ></text>
</g>
<g >
<title>vfs_read (4,627,248 samples, 0.03%)</title><rect x="1011.0" y="245" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1014.03" y="255.5" ></text>
</g>
<g >
<title>__collapse_huge_page_copy.isra.0 (1,516,736 samples, 0.01%)</title><rect x="1189.7" y="485" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="1192.69" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (24,499,023 samples, 0.16%)</title><rect x="880.6" y="565" width="1.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="883.58" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="421" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1066.20" y="431.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (2,238,810 samples, 0.01%)</title><rect x="1007.3" y="357" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1010.34" y="367.5" ></text>
</g>
<g >
<title>psi_task_change (2,964,997 samples, 0.02%)</title><rect x="940.4" y="213" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="943.38" y="223.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (1,724,071 samples, 0.01%)</title><rect x="365.0" y="405" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="367.99" y="415.5" ></text>
</g>
<g >
<title>encoding/binary.Read (4,040,117,281 samples, 26.65%)</title><rect x="420.3" y="613" width="314.5" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="423.34" y="623.5" >encoding/binary.Read</text>
</g>
<g >
<title>hook_file_alloc_security (2,183,262 samples, 0.01%)</title><rect x="784.1" y="341" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="787.09" y="351.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,561,550 samples, 0.01%)</title><rect x="742.3" y="501" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="745.34" y="511.5" ></text>
</g>
<g >
<title>psi_group_change (12,926,918 samples, 0.09%)</title><rect x="39.8" y="501" width="1.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="42.81" y="511.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,747,745 samples, 0.02%)</title><rect x="388.5" y="373" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="391.46" y="383.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (5,083,413 samples, 0.03%)</title><rect x="46.5" y="517" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="49.50" y="527.5" ></text>
</g>
<g >
<title>unmap_single_vma (1,338,851 samples, 0.01%)</title><rect x="257.2" y="453" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="260.21" y="463.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (6,187,667 samples, 0.04%)</title><rect x="698.4" y="373" width="0.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="701.44" y="383.5" ></text>
</g>
<g >
<title>runtime.memmove (1,521,563 samples, 0.01%)</title><rect x="997.8" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1000.80" y="447.5" ></text>
</g>
<g >
<title>refill_obj_stock (2,854,452 samples, 0.02%)</title><rect x="361.8" y="341" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="364.77" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,830,568 samples, 0.03%)</title><rect x="1096.0" y="405" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1098.97" y="415.5" ></text>
</g>
<g >
<title>native_write_msr (15,109,281 samples, 0.10%)</title><rect x="938.2" y="309" width="1.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="941.22" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,107,954,636 samples, 7.31%)</title><rect x="887.6" y="549" width="86.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="890.62" y="559.5" >do_syscall..</text>
</g>
<g >
<title>update_rq_clock (2,014,926 samples, 0.01%)</title><rect x="323.4" y="341" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="326.38" y="351.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (1,877,441 samples, 0.01%)</title><rect x="946.0" y="325" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="948.98" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mspan).init (1,348,500 samples, 0.01%)</title><rect x="766.9" y="421" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="769.89" y="431.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,515,061 samples, 0.01%)</title><rect x="1187.5" y="453" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1190.49" y="463.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (12,211,202 samples, 0.08%)</title><rect x="497.2" y="581" width="1.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="500.20" y="591.5" ></text>
</g>
<g >
<title>allocate_slab (48,953,609 samples, 0.32%)</title><rect x="1120.8" y="341" width="3.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1123.85" y="351.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (2,238,810 samples, 0.01%)</title><rect x="1007.3" y="341" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1010.34" y="351.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).readUnlock (1,489,942 samples, 0.01%)</title><rect x="537.7" y="517" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="540.65" y="527.5" ></text>
</g>
<g >
<title>__schedule (388,400,326 samples, 2.56%)</title><rect x="327.6" y="389" width="30.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="330.59" y="399.5" >__..</text>
</g>
<g >
<title>do_user_addr_fault (6,841,572 samples, 0.05%)</title><rect x="1078.6" y="565" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1081.60" y="575.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (4,587,831 samples, 0.03%)</title><rect x="1185.1" y="533" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1188.08" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (583,117,309 samples, 3.85%)</title><rect x="1091.7" y="501" width="45.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1094.68" y="511.5" >__x6..</text>
</g>
<g >
<title>runtime.mapassign_faststr (67,611,230 samples, 0.45%)</title><rect x="1057.6" y="469" width="5.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1060.65" y="479.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (1,534,527 samples, 0.01%)</title><rect x="1026.7" y="309" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1029.72" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,540,120 samples, 0.01%)</title><rect x="1025.7" y="357" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1028.70" y="367.5" ></text>
</g>
<g >
<title>prepare_task_switch (52,571,892 samples, 0.35%)</title><rect x="951.8" y="389" width="4.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="954.77" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,523,800 samples, 0.03%)</title><rect x="1081.3" y="501" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1084.27" y="511.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (8,173,199 samples, 0.05%)</title><rect x="1014.8" y="373" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1017.75" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="565" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1191.33" y="575.5" ></text>
</g>
<g >
<title>clear_page_erms (6,035,466 samples, 0.04%)</title><rect x="794.4" y="245" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="797.37" y="255.5" ></text>
</g>
<g >
<title>set_next_buddy (1,621,540 samples, 0.01%)</title><rect x="312.4" y="293" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="315.37" y="303.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (6,172,776 samples, 0.04%)</title><rect x="1025.9" y="437" width="0.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1028.88" y="447.5" ></text>
</g>
<g >
<title>___slab_alloc (6,044,798 samples, 0.04%)</title><rect x="785.9" y="309" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="788.94" y="319.5" ></text>
</g>
<g >
<title>new_slab (3,104,310 samples, 0.02%)</title><rect x="1123.7" y="261" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1126.70" y="271.5" ></text>
</g>
<g >
<title>map_create (506,953,168 samples, 3.34%)</title><rect x="780.5" y="453" width="39.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="783.50" y="463.5" >map..</text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (2,412,784 samples, 0.02%)</title><rect x="1188.0" y="645" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1191.02" y="655.5" ></text>
</g>
<g >
<title>try_charge_memcg (1,555,391 samples, 0.01%)</title><rect x="812.3" y="341" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="815.32" y="351.5" ></text>
</g>
<g >
<title>vfs_read (2,055,307,097 samples, 13.56%)</title><rect x="539.5" y="421" width="160.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="542.54" y="431.5" >vfs_read</text>
</g>
<g >
<title>wp_page_copy (22,928,936 samples, 0.15%)</title><rect x="1060.2" y="341" width="1.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1063.21" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (29,950,435 samples, 0.20%)</title><rect x="11.3" y="581" width="2.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.28" y="591.5" ></text>
</g>
<g >
<title>runtime.greyobject (1,502,659 samples, 0.01%)</title><rect x="985.7" y="277" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="988.73" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (456,534,310 samples, 3.01%)</title><rect x="1150.0" y="581" width="35.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1152.96" y="591.5" >git..</text>
</g>
<g >
<title>runtime.mallocgc (23,413,787 samples, 0.15%)</title><rect x="1013.9" y="405" width="1.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1016.86" y="415.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (1,467,716 samples, 0.01%)</title><rect x="1006.2" y="229" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1009.22" y="239.5" ></text>
</g>
<g >
<title>__kmalloc_node (2,315,444 samples, 0.02%)</title><rect x="1128.6" y="421" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1131.59" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).copy (25,436,983 samples, 0.17%)</title><rect x="1025.7" y="453" width="2.0" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1028.70" y="463.5" ></text>
</g>
<g >
<title>enqueue_task (1,449,866 samples, 0.01%)</title><rect x="194.4" y="469" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="197.40" y="479.5" ></text>
</g>
<g >
<title>psi_flags_change (2,969,143 samples, 0.02%)</title><rect x="317.2" y="293" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="320.21" y="303.5" ></text>
</g>
<g >
<title>do_wp_page (4,757,663 samples, 0.03%)</title><rect x="1042.9" y="373" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1045.90" y="383.5" ></text>
</g>
<g >
<title>set_next_entity (15,564,394 samples, 0.10%)</title><rect x="346.0" y="341" width="1.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="348.96" y="351.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (1,411,644 samples, 0.01%)</title><rect x="816.5" y="421" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="819.48" y="431.5" ></text>
</g>
<g >
<title>__folio_alloc (6,167,768 samples, 0.04%)</title><rect x="1151.4" y="373" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1154.40" y="383.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (2,314,876 samples, 0.02%)</title><rect x="1080.7" y="501" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1083.68" y="511.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (14,345,441 samples, 0.09%)</title><rect x="810.6" y="357" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="813.61" y="367.5" ></text>
</g>
<g >
<title>runtime.findRunnable (39,265,102 samples, 0.26%)</title><rect x="10.8" y="645" width="3.0" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="13.79" y="655.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="517" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1192.69" y="527.5" ></text>
</g>
<g >
<title>security_capable (6,992,388 samples, 0.05%)</title><rect x="1129.1" y="421" width="0.5" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="1132.07" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9,235,634 samples, 0.06%)</title><rect x="1026.7" y="357" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1029.72" y="367.5" ></text>
</g>
<g >
<title>free_unref_page_commit (4,873,680 samples, 0.03%)</title><rect x="48.3" y="357" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="51.30" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (32,068,149 samples, 0.21%)</title><rect x="1054.0" y="405" width="2.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1056.96" y="415.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="293" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1066.20" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Enum).copy (8,236,242 samples, 0.05%)</title><rect x="382.6" y="437" width="0.6" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="385.61" y="447.5" ></text>
</g>
<g >
<title>mntput (3,282,910 samples, 0.02%)</title><rect x="971.9" y="453" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="974.86" y="463.5" ></text>
</g>
<g >
<title>dput (507,993,202 samples, 3.35%)</title><rect x="326.5" y="421" width="39.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="329.46" y="431.5" >dput</text>
</g>
<g >
<title>__fdget_pos (3,825,052 samples, 0.03%)</title><rect x="539.2" y="421" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="542.25" y="431.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (96,867,858 samples, 0.64%)</title><rect x="792.7" y="389" width="7.6" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="795.72" y="399.5" ></text>
</g>
<g >
<title>__kmalloc_node (6,934,466 samples, 0.05%)</title><rect x="1123.6" y="309" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1126.58" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,138,746 samples, 0.02%)</title><rect x="307.7" y="325" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="310.72" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (41,473,841 samples, 0.27%)</title><rect x="871.6" y="597" width="3.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="874.63" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfParams (3,795,153 samples, 0.03%)</title><rect x="1009.7" y="421" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1012.67" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,014,803 samples, 0.03%)</title><rect x="991.3" y="421" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="994.27" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (29,058,568 samples, 0.19%)</title><rect x="765.3" y="597" width="2.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="768.34" y="607.5" ></text>
</g>
<g >
<title>encoding/binary.Read (124,924,238 samples, 0.82%)</title><rect x="1064.0" y="629" width="9.8" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1067.05" y="639.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (278,647,052 samples, 1.84%)</title><rect x="1041.3" y="485" width="21.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1044.28" y="495.5" >g..</text>
</g>
<g >
<title>madvise_collapse (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="293" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1083.14" y="303.5" ></text>
</g>
<g >
<title>runtime.removefinalizer (1,692,920 samples, 0.01%)</title><rect x="874.7" y="581" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="877.73" y="591.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (1,365,796 samples, 0.01%)</title><rect x="251.0" y="453" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="253.95" y="463.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,001,614 samples, 0.02%)</title><rect x="386.9" y="389" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="389.88" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (1,636,074 samples, 0.01%)</title><rect x="1188.1" y="613" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1191.08" y="623.5" ></text>
</g>
<g >
<title>runtime.makeBucketArray (48,025,714 samples, 0.32%)</title><rect x="1046.0" y="453" width="3.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1049.01" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,058,388 samples, 0.02%)</title><rect x="1015.9" y="421" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1018.92" y="431.5" ></text>
</g>
<g >
<title>runtime.memmove (9,196,666 samples, 0.06%)</title><rect x="1188.2" y="661" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1191.21" y="671.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="389" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1083.14" y="399.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (2,949,386 samples, 0.02%)</title><rect x="964.5" y="373" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="967.47" y="383.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (9,602,007 samples, 0.06%)</title><rect x="768.5" y="517" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="771.47" y="527.5" ></text>
</g>
<g >
<title>bpf_seq_read (1,990,414,072 samples, 13.13%)</title><rect x="544.2" y="405" width="155.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="547.24" y="415.5" >bpf_seq_read</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readStringTable (37,252,703 samples, 0.25%)</title><rect x="1015.7" y="437" width="2.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1018.75" y="447.5" ></text>
</g>
<g >
<title>cpuacct_charge (2,934,016 samples, 0.02%)</title><rect x="339.9" y="325" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="342.90" y="335.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (1,593,362 samples, 0.01%)</title><rect x="41.6" y="469" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="44.56" y="479.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,533,678 samples, 0.01%)</title><rect x="407.5" y="309" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="410.48" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (25,007,518 samples, 0.16%)</title><rect x="939.8" y="373" width="2.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="942.84" y="383.5" ></text>
</g>
<g >
<title>runtime.unlock2 (2,321,013 samples, 0.02%)</title><rect x="1182.8" y="485" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1185.83" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (2,709,566 samples, 0.02%)</title><rect x="1056.1" y="245" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1059.14" y="255.5" ></text>
</g>
<g >
<title>encoding/binary.Read (6,932,257 samples, 0.05%)</title><rect x="412.8" y="629" width="0.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="415.82" y="639.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="453" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1066.20" y="463.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (18,031,916 samples, 0.12%)</title><rect x="695.1" y="373" width="1.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="698.13" y="383.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (1,513,701 samples, 0.01%)</title><rect x="390.0" y="389" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="393.05" y="399.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (2,314,876 samples, 0.02%)</title><rect x="1080.7" y="485" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1083.68" y="495.5" ></text>
</g>
<g >
<title>error_entry (1,509,527 samples, 0.01%)</title><rect x="231.5" y="613" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="234.52" y="623.5" ></text>
</g>
<g >
<title>irqentry_exit (1,455,732 samples, 0.01%)</title><rect x="148.5" y="597" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="151.54" y="607.5" ></text>
</g>
<g >
<title>psi_group_change (15,530,135 samples, 0.10%)</title><rect x="925.1" y="293" width="1.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="928.15" y="303.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (2,920,589 samples, 0.02%)</title><rect x="1098.9" y="325" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1101.88" y="335.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (1,480,199 samples, 0.01%)</title><rect x="325.0" y="389" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="328.02" y="399.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (7,832,722,228 samples, 51.67%)</title><rect x="257.9" y="661" width="609.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="260.87" y="671.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries</text>
</g>
<g >
<title>_raw_spin_lock_irqsave (4,398,620 samples, 0.03%)</title><rect x="910.2" y="405" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="913.20" y="415.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,093,695 samples, 0.02%)</title><rect x="1038.2" y="421" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1041.24" y="431.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2 (6,657,868 samples, 0.04%)</title><rect x="251.6" y="629" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="254.61" y="639.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (3,101,280 samples, 0.02%)</title><rect x="1114.8" y="341" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1117.83" y="351.5" ></text>
</g>
<g >
<title>runtime.lock2 (3,170,679 samples, 0.02%)</title><rect x="263.8" y="517" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="266.85" y="527.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (244,965,383 samples, 1.62%)</title><rect x="782.3" y="405" width="19.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="785.31" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.assignValues (448,160,715 samples, 2.96%)</title><rect x="377.9" y="581" width="34.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="380.94" y="591.5" >gi..</text>
</g>
<g >
<title>hook_file_alloc_security (4,628,348 samples, 0.03%)</title><rect x="1097.9" y="357" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1100.86" y="367.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.Close (1,350,754,771 samples, 8.91%)</title><rect x="875.5" y="629" width="105.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="878.47" y="639.5" >golang.org/x..</text>
</g>
<g >
<title>_raw_spin_lock (2,063,295 samples, 0.01%)</title><rect x="12.4" y="357" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="15.45" y="367.5" ></text>
</g>
<g >
<title>mod_objcg_state (3,771,408 samples, 0.02%)</title><rect x="1126.7" y="357" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1129.74" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).copy (33,515,451 samples, 0.22%)</title><rect x="384.6" y="437" width="2.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="387.62" y="447.5" ></text>
</g>
<g >
<title>security_bpf_map (1,549,134 samples, 0.01%)</title><rect x="1135.6" y="453" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1138.64" y="463.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (2,272,277 samples, 0.01%)</title><rect x="384.4" y="341" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="387.45" y="351.5" ></text>
</g>
<g >
<title>idr_get_free (23,013,273 samples, 0.15%)</title><rect x="1133.4" y="421" width="1.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1136.43" y="431.5" ></text>
</g>
<g >
<title>__cond_resched (1,395,463 samples, 0.01%)</title><rect x="786.4" y="309" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="789.42" y="319.5" ></text>
</g>
<g >
<title>aeshashbody (3,077,876 samples, 0.02%)</title><rect x="983.0" y="437" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="986.00" y="447.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (34,627,434 samples, 0.23%)</title><rect x="748.4" y="613" width="2.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="751.37" y="623.5" ></text>
</g>
<g >
<title>clear_page_erms (2,306,541 samples, 0.02%)</title><rect x="785.9" y="213" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="788.94" y="223.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,458,747 samples, 0.02%)</title><rect x="330.4" y="341" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="333.42" y="351.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (13,115,924 samples, 0.09%)</title><rect x="325.4" y="405" width="1.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="328.42" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="517" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1066.20" y="527.5" ></text>
</g>
<g >
<title>unmap_vmas (28,034,050 samples, 0.18%)</title><rect x="46.9" y="517" width="2.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="49.89" y="527.5" ></text>
</g>
<g >
<title>reweight_entity (1,446,284 samples, 0.01%)</title><rect x="12.0" y="405" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="14.97" y="415.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (16,686,274 samples, 0.11%)</title><rect x="311.1" y="293" width="1.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="314.05" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (2,270,158 samples, 0.01%)</title><rect x="1001.7" y="277" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1004.72" y="287.5" ></text>
</g>
<g >
<title>runtime.entersyscall (12,073,978 samples, 0.08%)</title><rect x="877.0" y="581" width="1.0" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="880.03" y="591.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,419,841 samples, 0.01%)</title><rect x="863.9" y="469" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="866.92" y="479.5" ></text>
</g>
<g >
<title>wp_page_copy (29,384,561 samples, 0.19%)</title><rect x="1054.1" y="325" width="2.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1057.11" y="335.5" ></text>
</g>
<g >
<title>fput (2,994,006 samples, 0.02%)</title><rect x="890.6" y="485" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="893.61" y="495.5" ></text>
</g>
<g >
<title>wp_page_copy (1,347,761 samples, 0.01%)</title><rect x="50.2" y="405" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="53.20" y="415.5" ></text>
</g>
<g >
<title>rmqueue_bulk (1,513,437 samples, 0.01%)</title><rect x="761.8" y="389" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="764.80" y="399.5" ></text>
</g>
<g >
<title>vfs_read (5,338,161 samples, 0.04%)</title><rect x="1016.7" y="261" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1019.69" y="271.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,517,350 samples, 0.01%)</title><rect x="1004.9" y="389" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1007.86" y="399.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (1,563,689 samples, 0.01%)</title><rect x="244.4" y="565" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="247.43" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,347,397 samples, 0.01%)</title><rect x="16.3" y="597" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="19.32" y="607.5" ></text>
</g>
<g >
<title>handle_pte_fault (24,463,837 samples, 0.16%)</title><rect x="760.1" y="517" width="1.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="763.07" y="527.5" ></text>
</g>
<g >
<title>runtime.(*scavengerState).init.func2 (8,189,365 samples, 0.05%)</title><rect x="256.7" y="661" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="259.70" y="671.5" ></text>
</g>
<g >
<title>__unfreeze_partials (2,895,206 samples, 0.02%)</title><rect x="360.5" y="325" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="363.49" y="335.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (1,976,241 samples, 0.01%)</title><rect x="1062.1" y="405" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1065.09" y="415.5" ></text>
</g>
<g >
<title>perf_ctx_enable (5,928,359 samples, 0.04%)</title><rect x="33.2" y="485" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="36.18" y="495.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (3,056,445 samples, 0.02%)</title><rect x="1185.2" y="469" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1188.20" y="479.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="277" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1083.14" y="287.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (1,530,711 samples, 0.01%)</title><rect x="1014.6" y="389" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1017.63" y="399.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (19,193,520 samples, 0.13%)</title><rect x="731.8" y="581" width="1.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="734.79" y="591.5" ></text>
</g>
<g >
<title>do_send_sig_info (2,501,908 samples, 0.02%)</title><rect x="22.8" y="517" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="25.76" y="527.5" ></text>
</g>
<g >
<title>runtime.mallocgc (7,785,690 samples, 0.05%)</title><rect x="865.6" y="533" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="868.63" y="543.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (838,113,094 samples, 5.53%)</title><rect x="1084.7" y="549" width="65.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1087.72" y="559.5" >runtime..</text>
</g>
<g >
<title>dequeue_task (42,245,270 samples, 0.28%)</title><rect x="29.2" y="517" width="3.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="32.19" y="527.5" ></text>
</g>
<g >
<title>__schedule (334,634,080 samples, 2.21%)</title><rect x="934.1" y="405" width="26.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="937.05" y="415.5" >_..</text>
</g>
<g >
<title>get_page_from_freelist (3,859,120 samples, 0.03%)</title><rect x="402.4" y="229" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="405.38" y="239.5" ></text>
</g>
<g >
<title>update_sg_lb_stats (3,810,616 samples, 0.03%)</title><rect x="36.9" y="421" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="39.91" y="431.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (7,348,013 samples, 0.05%)</title><rect x="14.1" y="629" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="17.11" y="639.5" ></text>
</g>
<g >
<title>runtime.gcTrigger.test (1,349,195 samples, 0.01%)</title><rect x="15.0" y="661" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="17.99" y="671.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,064,593 samples, 0.02%)</title><rect x="1006.0" y="293" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1008.98" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (4,560,102 samples, 0.03%)</title><rect x="1078.7" y="469" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1081.72" y="479.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,848,681 samples, 0.03%)</title><rect x="412.5" y="453" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="415.52" y="463.5" ></text>
</g>
<g >
<title>runtime.ifaceeq (2,305,912 samples, 0.02%)</title><rect x="397.1" y="421" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="400.09" y="431.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (3,022,823 samples, 0.02%)</title><rect x="1049.3" y="293" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="1052.33" y="303.5" ></text>
</g>
<g >
<title>vma_alloc_folio (12,352,331 samples, 0.08%)</title><rect x="1039.2" y="293" width="1.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1042.20" y="303.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,271,873 samples, 0.01%)</title><rect x="1188.6" y="597" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1191.63" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (5,337,489 samples, 0.04%)</title><rect x="1080.1" y="469" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1083.08" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (117,959,432 samples, 0.78%)</title><rect x="403.2" y="469" width="9.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="406.22" y="479.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (28,850,843 samples, 0.19%)</title><rect x="362.1" y="389" width="2.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="365.07" y="399.5" ></text>
</g>
<g >
<title>native_write_msr (2,282,976 samples, 0.02%)</title><rect x="46.2" y="517" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="49.25" y="527.5" ></text>
</g>
<g >
<title>__do_softirq (8,641,153 samples, 0.06%)</title><rect x="941.1" y="309" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="944.07" y="319.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (2,086,617,642 samples, 13.76%)</title><rect x="538.5" y="501" width="162.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="541.53" y="511.5" >runtime/internal/sys..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.copyTypes (274,252,502 samples, 1.81%)</title><rect x="1019.9" y="485" width="21.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1022.93" y="495.5" >g..</text>
</g>
<g >
<title>runtime.(*mheap).setSpans (1,495,078 samples, 0.01%)</title><rect x="724.5" y="421" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="727.50" y="431.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (1,513,203 samples, 0.01%)</title><rect x="387.0" y="341" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="390.00" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,246,962 samples, 0.01%)</title><rect x="1049.6" y="405" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1052.57" y="415.5" ></text>
</g>
<g >
<title>do_exit (33,252,186 samples, 0.22%)</title><rect x="46.5" y="597" width="2.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="49.49" y="607.5" ></text>
</g>
<g >
<title>load_balance (9,623,095 samples, 0.06%)</title><rect x="254.5" y="357" width="0.7" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="257.47" y="367.5" ></text>
</g>
<g >
<title>mod_node_page_state (1,545,929 samples, 0.01%)</title><rect x="1103.4" y="309" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1106.41" y="319.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (10,849,285 samples, 0.07%)</title><rect x="1070.9" y="341" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1073.89" y="351.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (1,323,714 samples, 0.01%)</title><rect x="1060.5" y="293" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1063.53" y="303.5" ></text>
</g>
<g >
<title>runtime.newMarkBits (1,487,791 samples, 0.01%)</title><rect x="1045.3" y="293" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1048.31" y="303.5" ></text>
</g>
<g >
<title>__schedule (167,386,829 samples, 1.10%)</title><rect x="28.7" y="533" width="13.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="31.67" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).copy (30,836,796 samples, 0.20%)</title><rect x="1022.9" y="453" width="2.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1025.94" y="463.5" ></text>
</g>
<g >
<title>runtime.findRunnable (55,463,665 samples, 0.37%)</title><rect x="252.3" y="597" width="4.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="255.28" y="607.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (1,484,035 samples, 0.01%)</title><rect x="390.2" y="341" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="393.16" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (3,108,232 samples, 0.02%)</title><rect x="379.1" y="453" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="382.13" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_read (67,925,039 samples, 0.45%)</title><rect x="1067.5" y="469" width="5.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1070.52" y="479.5" ></text>
</g>
<g >
<title>___slab_alloc (1,549,836 samples, 0.01%)</title><rect x="795.0" y="245" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="797.96" y="255.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,023,647 samples, 0.02%)</title><rect x="728.2" y="533" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="731.18" y="543.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (25,007,518 samples, 0.16%)</title><rect x="939.8" y="357" width="2.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="942.84" y="367.5" ></text>
</g>
<g >
<title>switch_fpu_return (3,223,113 samples, 0.02%)</title><rect x="973.0" y="501" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="975.98" y="511.5" ></text>
</g>
<g >
<title>strcmp (1,546,171 samples, 0.01%)</title><rect x="1063.3" y="277" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1066.32" y="287.5" ></text>
</g>
<g >
<title>dput (455,176,451 samples, 3.00%)</title><rect x="932.9" y="437" width="35.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="935.90" y="447.5" >dput</text>
</g>
<g >
<title>__x64_sys_bpf (553,432,617 samples, 3.65%)</title><rect x="777.8" y="485" width="43.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="780.81" y="495.5" >__x6..</text>
</g>
<g >
<title>__handle_mm_fault (5,516,418 samples, 0.04%)</title><rect x="1042.8" y="405" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1045.84" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (8,462,295 samples, 0.06%)</title><rect x="1073.1" y="597" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1076.11" y="607.5" ></text>
</g>
<g >
<title>exc_page_fault (2,316,884 samples, 0.02%)</title><rect x="1034.8" y="421" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1037.82" y="431.5" ></text>
</g>
<g >
<title>runtime.casgstatus (3,147,155 samples, 0.02%)</title><rect x="268.0" y="533" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="270.95" y="543.5" ></text>
</g>
<g >
<title>__update_load_avg_se (2,907,480 samples, 0.02%)</title><rect x="316.4" y="245" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="319.37" y="255.5" ></text>
</g>
<g >
<title>check_preempt_curr (1,462,004 samples, 0.01%)</title><rect x="917.0" y="341" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="920.02" y="351.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (34,542,626 samples, 0.23%)</title><rect x="985.4" y="341" width="2.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="988.38" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (51,380,504 samples, 0.34%)</title><rect x="45.5" y="709" width="4.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="48.54" y="719.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (23,184,575 samples, 0.15%)</title><rect x="1070.2" y="389" width="1.8" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="1073.17" y="399.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (7,694,595 samples, 0.05%)</title><rect x="745.0" y="613" width="0.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="747.99" y="623.5" ></text>
</g>
<g >
<title>rep_movs_alternative (2,966,308 samples, 0.02%)</title><rect x="820.2" y="453" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="823.19" y="463.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (9,953,673 samples, 0.07%)</title><rect x="470.9" y="549" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="473.90" y="559.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="549" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1191.33" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,988,625 samples, 0.01%)</title><rect x="770.4" y="517" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="773.37" y="527.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (6,862,748 samples, 0.05%)</title><rect x="406.1" y="325" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="409.11" y="335.5" ></text>
</g>
<g >
<title>__switch_to_asm (4,138,206 samples, 0.03%)</title><rect x="45.1" y="725" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="48.14" y="735.5" ></text>
</g>
<g >
<title>internal/poll.(*fdMutex).rwlock (1,563,136 samples, 0.01%)</title><rect x="537.8" y="533" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="540.83" y="543.5" ></text>
</g>
<g >
<title>get_page_from_freelist (11,583,205 samples, 0.08%)</title><rect x="1039.2" y="245" width="0.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1042.20" y="255.5" ></text>
</g>
<g >
<title>runtime.scanobject (6,042,121 samples, 0.04%)</title><rect x="243.9" y="661" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="246.89" y="671.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,560,102 samples, 0.03%)</title><rect x="1078.7" y="485" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1081.72" y="495.5" ></text>
</g>
<g >
<title>__calc_delta (1,396,054 samples, 0.01%)</title><rect x="30.6" y="453" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="33.56" y="463.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (1,533,217 samples, 0.01%)</title><rect x="1015.4" y="373" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1018.45" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,519,643 samples, 0.01%)</title><rect x="983.2" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="986.24" y="415.5" ></text>
</g>
<g >
<title>runtime.efaceeq (7,710,895 samples, 0.05%)</title><rect x="520.3" y="533" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="523.26" y="543.5" ></text>
</g>
<g >
<title>exc_page_fault (2,283,842 samples, 0.02%)</title><rect x="50.1" y="501" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="53.13" y="511.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="469" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1066.20" y="479.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,028,307 samples, 0.02%)</title><rect x="1081.3" y="405" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1084.33" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4,349,560 samples, 0.03%)</title><rect x="952.4" y="357" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="955.36" y="367.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (17,589,439 samples, 0.12%)</title><rect x="1125.7" y="373" width="1.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1128.66" y="383.5" ></text>
</g>
<g >
<title>native_write_msr (13,234,665 samples, 0.09%)</title><rect x="332.2" y="293" width="1.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="335.15" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (1,542,052 samples, 0.01%)</title><rect x="867.4" y="645" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="870.41" y="655.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createMapGaugeEbpf (1,061,838,538 samples, 7.00%)</title><rect x="980.9" y="645" width="82.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="983.86" y="655.5" >github.co..</text>
</g>
<g >
<title>kmem_cache_alloc (63,682,504 samples, 0.42%)</title><rect x="786.9" y="357" width="4.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="789.88" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,481,794 samples, 0.01%)</title><rect x="1041.1" y="341" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1044.11" y="351.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (1,365,796 samples, 0.01%)</title><rect x="251.0" y="437" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="253.95" y="447.5" ></text>
</g>
<g >
<title>runtime.efaceeq (8,469,848 samples, 0.06%)</title><rect x="518.7" y="549" width="0.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="521.66" y="559.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (13,709,615 samples, 0.09%)</title><rect x="543.2" y="405" width="1.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="546.17" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (3,027,978 samples, 0.02%)</title><rect x="1045.3" y="373" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1048.31" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.applyRelocations (490,022,731 samples, 3.23%)</title><rect x="980.9" y="533" width="38.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="983.92" y="543.5" >git..</text>
</g>
<g >
<title>allocate_slab (1,549,836 samples, 0.01%)</title><rect x="795.0" y="213" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="797.96" y="223.5" ></text>
</g>
<g >
<title>runtime.memmove (1,541,256 samples, 0.01%)</title><rect x="389.6" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="392.63" y="431.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (5,438,082 samples, 0.04%)</title><rect x="14.2" y="565" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="17.19" y="575.5" ></text>
</g>
<g >
<title>runtime.memhash64 (31,725,723 samples, 0.21%)</title><rect x="522.5" y="533" width="2.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="525.52" y="543.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (6,342,512 samples, 0.04%)</title><rect x="46.0" y="677" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="48.99" y="687.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (5,708,614 samples, 0.04%)</title><rect x="366.4" y="421" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="369.38" y="431.5" ></text>
</g>
<g >
<title>update_process_times (2,379,460 samples, 0.02%)</title><rect x="334.3" y="245" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="337.30" y="255.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="581" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1191.33" y="591.5" ></text>
</g>
<g >
<title>runtime.interhash (3,028,591 samples, 0.02%)</title><rect x="400.2" y="421" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="403.24" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (1,518,883 samples, 0.01%)</title><rect x="243.7" y="613" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="246.66" y="623.5" ></text>
</g>
<g >
<title>do_check_common (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="357" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1066.20" y="367.5" ></text>
</g>
<g >
<title>aeshashbody (1,545,559 samples, 0.01%)</title><rect x="403.8" y="453" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="406.82" y="463.5" ></text>
</g>
<g >
<title>runtime.step (1,533,881 samples, 0.01%)</title><rect x="747.6" y="437" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="750.61" y="447.5" ></text>
</g>
<g >
<title>runtime.makeBucketArray (1,514,771 samples, 0.01%)</title><rect x="1040.5" y="453" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1043.46" y="463.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (1,502,947 samples, 0.01%)</title><rect x="387.1" y="405" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="390.12" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,504,936 samples, 0.01%)</title><rect x="387.7" y="389" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="390.70" y="399.5" ></text>
</g>
<g >
<title>runtime.sysmon (381,159,185 samples, 2.51%)</title><rect x="15.2" y="661" width="29.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="18.17" y="671.5" >ru..</text>
</g>
<g >
<title>task_work_run (2,302,442 samples, 0.02%)</title><rect x="49.4" y="645" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="52.36" y="655.5" ></text>
</g>
<g >
<title>runtime.interhash (1,555,395 samples, 0.01%)</title><rect x="410.1" y="437" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="413.06" y="447.5" ></text>
</g>
<g >
<title>allocate_slab (27,742,276 samples, 0.18%)</title><rect x="1101.7" y="325" width="2.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1104.67" y="335.5" ></text>
</g>
<g >
<title>runtime.mallocgc (21,273,011 samples, 0.14%)</title><rect x="1012.0" y="405" width="1.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1014.97" y="415.5" ></text>
</g>
<g >
<title>map_create (537,902,472 samples, 3.55%)</title><rect x="1094.0" y="469" width="41.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1096.95" y="479.5" >map..</text>
</g>
<g >
<title>__perf_event_task_sched_in (1,654,581 samples, 0.01%)</title><rect x="12.2" y="437" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="15.24" y="447.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,423,274,624 samples, 9.39%)</title><rect x="266.9" y="581" width="110.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="269.92" y="591.5" >syscall.Syscall</text>
</g>
<g >
<title>do_user_addr_fault (20,878,740 samples, 0.14%)</title><rect x="1038.6" y="389" width="1.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1041.60" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (5,293,642 samples, 0.03%)</title><rect x="1006.0" y="389" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1008.98" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (35,230,490 samples, 0.23%)</title><rect x="1059.8" y="453" width="2.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1062.78" y="463.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (13,640,155 samples, 0.09%)</title><rect x="809.5" y="357" width="1.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="812.49" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign.func1 (448,160,715 samples, 2.96%)</title><rect x="377.9" y="565" width="34.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="380.94" y="575.5" >gi..</text>
</g>
<g >
<title>idr_get_next_ul (6,164,837 samples, 0.04%)</title><rect x="654.5" y="357" width="0.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="657.52" y="367.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (18,488,694 samples, 0.12%)</title><rect x="20.3" y="517" width="1.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="23.31" y="527.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (1,556,262 samples, 0.01%)</title><rect x="1022.8" y="389" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1025.76" y="399.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (9,812,519 samples, 0.06%)</title><rect x="1056.8" y="437" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1059.83" y="447.5" ></text>
</g>
<g >
<title>rmqueue (2,267,945 samples, 0.01%)</title><rect x="1123.4" y="277" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1126.41" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.parseBTF (263,205,060 samples, 1.74%)</title><rect x="998.5" y="453" width="20.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1001.45" y="463.5" ></text>
</g>
<g >
<title>runtime.sweepone (98,091,224 samples, 0.65%)</title><rect x="244.6" y="677" width="7.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="247.61" y="687.5" ></text>
</g>
<g >
<title>clear_page_erms (3,066,220 samples, 0.02%)</title><rect x="1100.0" y="229" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1103.00" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (2,286,922 samples, 0.02%)</title><rect x="724.6" y="373" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="727.61" y="383.5" ></text>
</g>
<g >
<title>wp_page_copy (1,496,153 samples, 0.01%)</title><rect x="230.8" y="501" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="233.84" y="511.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,747,745 samples, 0.02%)</title><rect x="388.5" y="357" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="391.46" y="367.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,294,094 samples, 0.02%)</title><rect x="1015.9" y="341" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1018.92" y="351.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,292,860,264 samples, 8.53%)</title><rect x="879.9" y="581" width="100.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="882.86" y="591.5" >runtime/inte..</text>
</g>
<g >
<title>shuffle_freelist (4,627,913 samples, 0.03%)</title><rect x="789.6" y="293" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="792.62" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (21,649,657 samples, 0.14%)</title><rect x="1038.6" y="405" width="1.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1041.60" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,557,187 samples, 0.01%)</title><rect x="732.9" y="405" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="735.92" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,351,678 samples, 0.01%)</title><rect x="147.9" y="581" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="150.89" y="591.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="325" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1010.57" y="335.5" ></text>
</g>
<g >
<title>discard_slab (2,993,768 samples, 0.02%)</title><rect x="963.2" y="325" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="966.16" y="335.5" ></text>
</g>
<g >
<title>idr_get_next (3,885,896 samples, 0.03%)</title><rect x="698.6" y="357" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="701.62" y="367.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (1,298,959 samples, 0.01%)</title><rect x="935.1" y="389" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="938.13" y="399.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (7,389,782 samples, 0.05%)</title><rect x="61.2" y="645" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="64.24" y="655.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (8,020,308 samples, 0.05%)</title><rect x="38.8" y="485" width="0.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="41.80" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,803,741 samples, 0.01%)</title><rect x="328.7" y="373" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="331.69" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,305,695 samples, 0.02%)</title><rect x="1151.9" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1154.94" y="463.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (2,238,810 samples, 0.01%)</title><rect x="1007.3" y="309" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1010.34" y="319.5" ></text>
</g>
<g >
<title>mntput (3,821,201 samples, 0.03%)</title><rect x="366.1" y="421" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="369.07" y="431.5" ></text>
</g>
<g >
<title>update_curr (2,315,333 samples, 0.02%)</title><rect x="951.0" y="357" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="953.97" y="367.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (39,197,410 samples, 0.26%)</title><rect x="46.5" y="677" width="3.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="49.49" y="687.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (4,507,154 samples, 0.03%)</title><rect x="401.0" y="389" width="0.4" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="404.01" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (2,284,454 samples, 0.02%)</title><rect x="1012.5" y="373" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1015.51" y="383.5" ></text>
</g>
<g >
<title>syscall.pread (9,120,102 samples, 0.06%)</title><rect x="1016.5" y="357" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1019.52" y="367.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,510,646 samples, 0.01%)</title><rect x="724.7" y="341" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="727.67" y="351.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (9,043,260 samples, 0.06%)</title><rect x="1012.7" y="389" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1015.69" y="399.5" ></text>
</g>
<g >
<title>cap_capable (2,276,470 samples, 0.02%)</title><rect x="1130.5" y="437" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1133.51" y="447.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (18,783,230 samples, 0.12%)</title><rect x="927.5" y="341" width="1.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="930.46" y="351.5" ></text>
</g>
<g >
<title>pick_next_entity (2,512,718 samples, 0.02%)</title><rect x="942.1" y="373" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="945.06" y="383.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (10,732,338 samples, 0.07%)</title><rect x="1083.2" y="533" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1086.17" y="543.5" ></text>
</g>
<g >
<title>runtime.lock2 (5,548,897 samples, 0.04%)</title><rect x="872.0" y="549" width="0.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="875.03" y="559.5" ></text>
</g>
<g >
<title>runtime.makemap (13,918,169 samples, 0.09%)</title><rect x="401.8" y="453" width="1.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="404.83" y="463.5" ></text>
</g>
<g >
<title>memset_orig (1,519,835 samples, 0.01%)</title><rect x="795.1" y="261" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="798.08" y="271.5" ></text>
</g>
<g >
<title>put_prev_entity (1,542,702 samples, 0.01%)</title><rect x="951.6" y="373" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="954.56" y="383.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (19,775,844 samples, 0.13%)</title><rect x="519.3" y="549" width="1.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="522.32" y="559.5" ></text>
</g>
<g >
<title>runtime.growslice (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="421" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1014.74" y="431.5" ></text>
</g>
<g >
<title>handle_pte_fault (5,516,418 samples, 0.04%)</title><rect x="1042.8" y="389" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1045.84" y="399.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (16,794,163 samples, 0.11%)</title><rect x="20.3" y="501" width="1.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="23.35" y="511.5" ></text>
</g>
<g >
<title>exc_page_fault (3,568,275 samples, 0.02%)</title><rect x="991.4" y="405" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="994.38" y="415.5" ></text>
</g>
<g >
<title>bpf_map_put (3,997,002 samples, 0.03%)</title><rect x="905.9" y="437" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="908.91" y="447.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (6,841,842 samples, 0.05%)</title><rect x="929.5" y="261" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="932.49" y="271.5" ></text>
</g>
<g >
<title>__folio_alloc (3,064,593 samples, 0.02%)</title><rect x="1006.0" y="277" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1008.98" y="287.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (10,364,783 samples, 0.07%)</title><rect x="356.7" y="293" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="359.66" y="303.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1,541,436 samples, 0.01%)</title><rect x="1135.1" y="389" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1138.10" y="399.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (1,662,714 samples, 0.01%)</title><rect x="370.6" y="501" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="373.57" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (14,463,499 samples, 0.10%)</title><rect x="724.3" y="501" width="1.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="727.27" y="511.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (15,277,717 samples, 0.10%)</title><rect x="939.9" y="341" width="1.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="942.85" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (6,862,748 samples, 0.05%)</title><rect x="406.1" y="389" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="409.11" y="399.5" ></text>
</g>
<g >
<title>error_entry (1,523,167 samples, 0.01%)</title><rect x="1002.6" y="421" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1005.60" y="431.5" ></text>
</g>
<g >
<title>page_remove_rmap (2,150,152 samples, 0.01%)</title><rect x="47.8" y="437" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="50.76" y="447.5" ></text>
</g>
<g >
<title>check_preempt_curr (21,854,664 samples, 0.14%)</title><rect x="310.8" y="309" width="1.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="313.80" y="319.5" ></text>
</g>
<g >
<title>native_write_msr (5,546,988 samples, 0.04%)</title><rect x="38.9" y="437" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="41.93" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,087,294 samples, 0.04%)</title><rect x="1078.6" y="517" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1081.60" y="527.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (2,074,395 samples, 0.01%)</title><rect x="996.7" y="261" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="999.69" y="271.5" ></text>
</g>
<g >
<title>init_file (41,281,491 samples, 0.27%)</title><rect x="783.7" y="357" width="3.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="786.67" y="367.5" ></text>
</g>
<g >
<title>runtime.mcall (40,915,921 samples, 0.27%)</title><rect x="10.8" y="693" width="3.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="13.77" y="703.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (3,848,681 samples, 0.03%)</title><rect x="412.5" y="501" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="415.52" y="511.5" ></text>
</g>
<g >
<title>exc_page_fault (3,809,386 samples, 0.03%)</title><rect x="1024.4" y="405" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1027.38" y="415.5" ></text>
</g>
<g >
<title>gcWriteBarrier (1,504,936 samples, 0.01%)</title><rect x="387.7" y="421" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="390.70" y="431.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (4,183,107 samples, 0.03%)</title><rect x="1057.3" y="389" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1060.26" y="399.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).alloc (2,957,308 samples, 0.02%)</title><rect x="746.5" y="501" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="749.54" y="511.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (1,484,035 samples, 0.01%)</title><rect x="390.2" y="357" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="393.16" y="367.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,119,499,863 samples, 7.38%)</title><rect x="283.8" y="517" width="87.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="286.80" y="527.5" >syscall_ex..</text>
</g>
<g >
<title>syscall.RawSyscall6 (4,701,837 samples, 0.03%)</title><rect x="377.3" y="565" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="380.34" y="575.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (4,691,993 samples, 0.03%)</title><rect x="50.1" y="549" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="53.06" y="559.5" ></text>
</g>
<g >
<title>runtime.findObject (3,084,738 samples, 0.02%)</title><rect x="1150.4" y="549" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1153.43" y="559.5" ></text>
</g>
<g >
<title>runtime.scanobject (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="293" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1014.74" y="303.5" ></text>
</g>
<g >
<title>update_cfs_group (1,949,985 samples, 0.01%)</title><rect x="30.1" y="469" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="33.14" y="479.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (39,197,410 samples, 0.26%)</title><rect x="46.5" y="693" width="3.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="49.49" y="703.5" ></text>
</g>
<g >
<title>folio_add_lru (2,676,672 samples, 0.02%)</title><rect x="1054.3" y="293" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1057.27" y="303.5" ></text>
</g>
<g >
<title>x86_pmu_disable (5,701,988 samples, 0.04%)</title><rect x="38.9" y="453" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="41.91" y="463.5" ></text>
</g>
<g >
<title>perf_ctx_disable (6,469,932 samples, 0.04%)</title><rect x="38.9" y="469" width="0.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="41.85" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (43,502,873 samples, 0.29%)</title><rect x="724.1" y="565" width="3.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="727.10" y="575.5" ></text>
</g>
<g >
<title>select_idle_sibling (7,459,359 samples, 0.05%)</title><rect x="309.8" y="309" width="0.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="312.82" y="319.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (2,520,142 samples, 0.02%)</title><rect x="308.0" y="309" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="310.98" y="319.5" ></text>
</g>
<g >
<title>strings.LastIndex (12,084,742 samples, 0.08%)</title><rect x="1043.7" y="453" width="0.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1046.67" y="463.5" ></text>
</g>
<g >
<title>sched_clock_cpu (6,800,339 samples, 0.04%)</title><rect x="926.5" y="293" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="929.49" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (1,481,794 samples, 0.01%)</title><rect x="1041.1" y="277" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1044.11" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (1,391,892 samples, 0.01%)</title><rect x="866.4" y="613" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="869.35" y="623.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,455,732 samples, 0.01%)</title><rect x="148.5" y="565" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="151.54" y="575.5" ></text>
</g>
<g >
<title>error_entry (1,553,178 samples, 0.01%)</title><rect x="10.6" y="645" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.63" y="655.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast.func1 (3,152,989 samples, 0.02%)</title><rect x="269.8" y="517" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="272.80" y="527.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (10,215,197 samples, 0.07%)</title><rect x="927.7" y="325" width="0.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="930.70" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,733,450 samples, 0.02%)</title><rect x="746.5" y="549" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="749.48" y="559.5" ></text>
</g>
<g >
<title>runtime.newInlineUnwinder (2,283,259 samples, 0.02%)</title><rect x="747.7" y="485" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="750.73" y="495.5" ></text>
</g>
<g >
<title>x86_pmu_disable (2,509,029 samples, 0.02%)</title><rect x="33.0" y="469" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="35.99" y="479.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (1,449,317 samples, 0.01%)</title><rect x="46.7" y="453" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="49.72" y="463.5" ></text>
</g>
<g >
<title>error_entry (1,536,787 samples, 0.01%)</title><rect x="402.7" y="389" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="405.74" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_close (47,162,808 samples, 0.31%)</title><rect x="279.8" y="517" width="3.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="282.76" y="527.5" ></text>
</g>
<g >
<title>testing.(*M).Run (1,702,494 samples, 0.01%)</title><rect x="257.4" y="677" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="260.36" y="687.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).TypeName (1,534,285 samples, 0.01%)</title><rect x="378.6" y="469" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="381.60" y="479.5" ></text>
</g>
<g >
<title>psi_task_switch (58,349,448 samples, 0.38%)</title><rect x="353.0" y="373" width="4.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="356.05" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,181,572,729 samples, 7.79%)</title><rect x="279.0" y="533" width="91.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="281.97" y="543.5" >do_syscall..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Spec).Copy (444,312,034 samples, 2.93%)</title><rect x="377.9" y="485" width="34.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="380.94" y="495.5" >gi..</text>
</g>
<g >
<title>rw_verify_area (4,601,372 samples, 0.03%)</title><rect x="699.2" y="405" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="702.16" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (37,539,045 samples, 0.25%)</title><rect x="985.4" y="389" width="2.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="988.38" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (3,679,382 samples, 0.02%)</title><rect x="1007.9" y="357" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1010.86" y="367.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (8,308,896 samples, 0.05%)</title><rect x="1187.3" y="581" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1190.25" y="591.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (9,122,447 samples, 0.06%)</title><rect x="959.1" y="325" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="962.10" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (1,553,010 samples, 0.01%)</title><rect x="764.8" y="597" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="767.80" y="607.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,854,563 samples, 0.05%)</title><rect x="256.7" y="549" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="259.70" y="559.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (12,139,756 samples, 0.08%)</title><rect x="298.4" y="421" width="1.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="301.41" y="431.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (11,013,694 samples, 0.07%)</title><rect x="356.6" y="309" width="0.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="359.61" y="319.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (3,078,782 samples, 0.02%)</title><rect x="1071.7" y="357" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1074.73" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,144,275 samples, 0.04%)</title><rect x="1011.0" y="277" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1013.97" y="287.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (1,538,666 samples, 0.01%)</title><rect x="538.1" y="485" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="541.07" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (8,323,527 samples, 0.05%)</title><rect x="1006.4" y="389" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1009.39" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (5,337,489 samples, 0.04%)</title><rect x="1080.1" y="453" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1083.08" y="463.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.loadMgObjects (1,061,838,538 samples, 7.00%)</title><rect x="980.9" y="629" width="82.6" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="983.86" y="639.5" >github.co..</text>
</g>
<g >
<title>update_cfs_group (1,455,683 samples, 0.01%)</title><rect x="940.2" y="197" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="943.24" y="207.5" ></text>
</g>
<g >
<title>runtime.lock2 (5,331,354 samples, 0.04%)</title><rect x="1183.8" y="517" width="0.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1186.84" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func2 (43,661,159 samples, 0.29%)</title><rect x="1005.7" y="421" width="3.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1008.68" y="431.5" ></text>
</g>
<g >
<title>runtime.efaceeq (1,550,238 samples, 0.01%)</title><rect x="1066.8" y="549" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1069.80" y="559.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (1,546,202 samples, 0.01%)</title><rect x="1103.3" y="277" width="0.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="1106.29" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,515,061 samples, 0.01%)</title><rect x="1187.5" y="533" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1190.49" y="543.5" ></text>
</g>
<g >
<title>release_pages (5,083,413 samples, 0.03%)</title><rect x="46.5" y="469" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="49.50" y="479.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (214,541,054 samples, 1.42%)</title><rect x="25.4" y="581" width="16.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="28.36" y="591.5" ></text>
</g>
<g >
<title>futex_wait (36,113,508 samples, 0.24%)</title><rect x="253.2" y="469" width="2.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="256.17" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,167,768 samples, 0.04%)</title><rect x="1151.4" y="389" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1154.40" y="399.5" ></text>
</g>
<g >
<title>do_madvise (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="341" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1083.14" y="351.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (9,120,102 samples, 0.06%)</title><rect x="1016.5" y="389" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1019.52" y="399.5" ></text>
</g>
<g >
<title>runtime.memmove (3,842,788 samples, 0.03%)</title><rect x="10.0" y="629" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,001,614 samples, 0.02%)</title><rect x="386.9" y="357" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="389.88" y="367.5" ></text>
</g>
<g >
<title>do_wp_page (1,756,273 samples, 0.01%)</title><rect x="251.0" y="533" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="253.95" y="543.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,074,399,895 samples, 13.68%)</title><rect x="538.9" y="485" width="161.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="541.89" y="495.5" >entry_SYSCALL_64_aft..</text>
</g>
<g >
<title>get_page_from_freelist (1,481,794 samples, 0.01%)</title><rect x="1041.1" y="293" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1044.11" y="303.5" ></text>
</g>
<g >
<title>wp_page_copy (1,554,707 samples, 0.01%)</title><rect x="1021.0" y="341" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1024.01" y="351.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,606,588 samples, 0.01%)</title><rect x="930.0" y="357" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="933.04" y="367.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).put (2,194,746 samples, 0.01%)</title><rect x="231.6" y="613" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="234.64" y="623.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker (2,497,619,908 samples, 16.47%)</title><rect x="50.0" y="709" width="194.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="53.02" y="719.5" >runtime.gcBgMarkWorker</text>
</g>
<g >
<title>__update_load_avg_cfs_rq (13,357,151 samples, 0.09%)</title><rect x="343.5" y="309" width="1.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="346.53" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (11,583,205 samples, 0.08%)</title><rect x="1039.2" y="261" width="0.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1042.20" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.walkType (19,290,905 samples, 0.13%)</title><rect x="1027.8" y="453" width="1.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1030.80" y="463.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="389" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1014.74" y="399.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (3,054,893 samples, 0.02%)</title><rect x="1001.5" y="261" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1004.48" y="271.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast_pidle (2,459,319 samples, 0.02%)</title><rect x="879.4" y="517" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="882.43" y="527.5" ></text>
</g>
<g >
<title>runtime.growslice (19,984,013 samples, 0.13%)</title><rect x="405.3" y="453" width="1.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="408.32" y="463.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (1,544,545 samples, 0.01%)</title><rect x="1039.0" y="293" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1041.96" y="303.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (8,624,567 samples, 0.06%)</title><rect x="947.9" y="325" width="0.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="950.90" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,496,153 samples, 0.01%)</title><rect x="230.8" y="549" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="233.84" y="559.5" ></text>
</g>
<g >
<title>runtime.lock2 (1,776,308 samples, 0.01%)</title><rect x="22.2" y="629" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="25.20" y="639.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (87,598,685 samples, 0.58%)</title><rect x="793.1" y="357" width="6.9" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="796.14" y="367.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (1,543,381 samples, 0.01%)</title><rect x="1000.6" y="293" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1003.64" y="303.5" ></text>
</g>
<g >
<title>runtime.typehash (3,060,870 samples, 0.02%)</title><rect x="1037.2" y="437" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1040.16" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (1,675,224 samples, 0.01%)</title><rect x="871.9" y="549" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="874.90" y="559.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (7,626,807 samples, 0.05%)</title><rect x="1016.6" y="325" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1019.63" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,854,563 samples, 0.05%)</title><rect x="256.7" y="565" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="259.70" y="575.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (1,292,250 samples, 0.01%)</title><rect x="270.3" y="565" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="273.32" y="575.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (3,445,310 samples, 0.02%)</title><rect x="323.5" y="357" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="326.53" y="367.5" ></text>
</g>
<g >
<title>flush_tlb_func (2,898,119 samples, 0.02%)</title><rect x="256.7" y="373" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="259.75" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,410,867 samples, 0.02%)</title><rect x="1056.1" y="261" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1059.08" y="271.5" ></text>
</g>
<g >
<title>bpf_map_seq_start (6,187,667 samples, 0.04%)</title><rect x="698.4" y="389" width="0.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="701.44" y="399.5" ></text>
</g>
<g >
<title>__fget_light (3,825,052 samples, 0.03%)</title><rect x="539.2" y="405" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="542.25" y="415.5" ></text>
</g>
<g >
<title>prepare_task_switch (10,146,069 samples, 0.07%)</title><rect x="38.6" y="517" width="0.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="41.65" y="527.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (1,762,985 samples, 0.01%)</title><rect x="898.4" y="501" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="901.42" y="511.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (2,314,876 samples, 0.02%)</title><rect x="1080.7" y="517" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1083.68" y="527.5" ></text>
</g>
<g >
<title>runtime.pcdatavalue1 (1,525,271 samples, 0.01%)</title><rect x="747.8" y="469" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="750.79" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,103,462 samples, 0.04%)</title><rect x="750.5" y="533" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="753.47" y="543.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (45,004,142 samples, 0.30%)</title><rect x="1046.1" y="357" width="3.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1049.07" y="367.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (2,356,552 samples, 0.02%)</title><rect x="12.2" y="453" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="15.20" y="463.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,392,899 samples, 0.02%)</title><rect x="256.0" y="501" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="259.04" y="511.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (12,080,810 samples, 0.08%)</title><rect x="43.9" y="629" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="46.89" y="639.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (46,855,919 samples, 0.31%)</title><rect x="252.9" y="549" width="3.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="255.90" y="559.5" ></text>
</g>
<g >
<title>update_load_avg (1,839,586 samples, 0.01%)</title><rect x="317.0" y="277" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="320.04" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (1,338,646,726 samples, 8.83%)</title><rect x="763.0" y="645" width="104.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="765.97" y="655.5" >github.com/c..</text>
</g>
<g >
<title>x2apic_send_IPI (1,493,578 samples, 0.01%)</title><rect x="928.4" y="293" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="931.37" y="303.5" ></text>
</g>
<g >
<title>__handle_mm_fault (16,824,551 samples, 0.11%)</title><rect x="1000.6" y="357" width="1.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1003.58" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,557,187 samples, 0.01%)</title><rect x="732.9" y="453" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="735.92" y="463.5" ></text>
</g>
<g >
<title>runtime.interequal (3,870,696 samples, 0.03%)</title><rect x="1029.4" y="453" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1032.42" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (25,882,904 samples, 0.17%)</title><rect x="1003.0" y="405" width="2.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1005.96" y="415.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,709,826 samples, 0.01%)</title><rect x="950.8" y="325" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="953.84" y="335.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,205,815 samples, 0.01%)</title><rect x="41.5" y="501" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="44.53" y="511.5" ></text>
</g>
<g >
<title>runtime.casgstatus (3,407,303 samples, 0.02%)</title><rect x="877.6" y="549" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="880.64" y="559.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,527,921 samples, 0.01%)</title><rect x="384.0" y="309" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="387.03" y="319.5" ></text>
</g>
<g >
<title>clear_page_erms (3,867,425 samples, 0.03%)</title><rect x="1022.0" y="261" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1024.98" y="271.5" ></text>
</g>
<g >
<title>runtime.mcall (57,278,300 samples, 0.38%)</title><rect x="252.2" y="645" width="4.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="255.24" y="655.5" ></text>
</g>
<g >
<title>sched_clock_cpu (14,364,589 samples, 0.09%)</title><rect x="356.5" y="357" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="359.47" y="367.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (969,659,341 samples, 6.40%)</title><rect x="897.8" y="517" width="75.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="900.81" y="527.5" >exit_to_..</text>
</g>
<g >
<title>free_pcppages_bulk (1,466,924 samples, 0.01%)</title><rect x="46.6" y="421" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="49.61" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (6,040,325 samples, 0.04%)</title><rect x="231.0" y="613" width="0.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="234.05" y="623.5" ></text>
</g>
<g >
<title>alloc_pages (12,246,650 samples, 0.08%)</title><rect x="1109.5" y="309" width="1.0" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1112.53" y="319.5" ></text>
</g>
<g >
<title>runtime.procyield.abi0 (5,362,203 samples, 0.04%)</title><rect x="62.4" y="613" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="65.39" y="623.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,306,541 samples, 0.02%)</title><rect x="785.9" y="229" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="788.94" y="239.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,523,800 samples, 0.03%)</title><rect x="1081.3" y="517" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1084.27" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[go.shape.*uint8]).Grow (1,554,794 samples, 0.01%)</title><rect x="1029.1" y="405" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1032.12" y="415.5" ></text>
</g>
<g >
<title>shuffle_freelist (1,556,879 samples, 0.01%)</title><rect x="809.2" y="309" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="812.20" y="319.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (15,940,159 samples, 0.11%)</title><rect x="1010.5" y="421" width="1.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1013.50" y="431.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (2,543,235 samples, 0.02%)</title><rect x="46.2" y="533" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="49.23" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (4,077,643 samples, 0.03%)</title><rect x="369.5" y="453" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="372.51" y="463.5" ></text>
</g>
<g >
<title>bpf_seq_write (9,015,163 samples, 0.06%)</title><rect x="692.2" y="357" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="695.18" y="367.5" ></text>
</g>
<g >
<title>detach_tasks (1,459,062 samples, 0.01%)</title><rect x="36.6" y="453" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="39.63" y="463.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (1,705,938 samples, 0.01%)</title><rect x="357.6" y="373" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="360.62" y="383.5" ></text>
</g>
<g >
<title>psi_task_switch (1,622,531 samples, 0.01%)</title><rect x="358.0" y="389" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="361.03" y="399.5" ></text>
</g>
<g >
<title>psi_group_change (2,078,884 samples, 0.01%)</title><rect x="352.9" y="373" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="355.89" y="383.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (26,804,311 samples, 0.18%)</title><rect x="525.9" y="565" width="2.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="528.94" y="575.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (6,862,748 samples, 0.05%)</title><rect x="406.1" y="181" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="409.11" y="191.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (3,391,576 samples, 0.02%)</title><rect x="368.2" y="373" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="371.22" y="383.5" ></text>
</g>
<g >
<title>allocate_slab (1,541,436 samples, 0.01%)</title><rect x="1135.1" y="341" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1138.10" y="351.5" ></text>
</g>
<g >
<title>runtime.findObject (585,069,218 samples, 3.86%)</title><rect x="149.5" y="629" width="45.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="152.54" y="639.5" >runt..</text>
</g>
<g >
<title>runtime.sysmon (8,590,680 samples, 0.06%)</title><rect x="14.0" y="645" width="0.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="17.02" y="655.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,496,341 samples, 0.01%)</title><rect x="29.1" y="517" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="32.07" y="527.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,605,341 samples, 0.02%)</title><rect x="996.6" y="277" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="999.57" y="287.5" ></text>
</g>
<g >
<title>runtime.profilealloc (1,561,437 samples, 0.01%)</title><rect x="1074.1" y="597" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1077.06" y="607.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).free (2,632,784 samples, 0.02%)</title><rect x="251.7" y="597" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="254.71" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,247,633 samples, 0.01%)</title><rect x="1115.7" y="389" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1118.72" y="399.5" ></text>
</g>
<g >
<title>rcu_core_si (7,592,797 samples, 0.05%)</title><rect x="941.1" y="293" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="944.07" y="303.5" ></text>
</g>
<g >
<title>runtime.removespecial (21,068,839 samples, 0.14%)</title><rect x="262.6" y="533" width="1.6" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="265.55" y="543.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (6,128,942 samples, 0.04%)</title><rect x="1125.2" y="357" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1128.19" y="367.5" ></text>
</g>
<g >
<title>ksys_read (67,925,039 samples, 0.45%)</title><rect x="1067.5" y="453" width="5.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1070.52" y="463.5" ></text>
</g>
<g >
<title>runtime.wirep (1,919,257 samples, 0.01%)</title><rect x="270.0" y="533" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="273.05" y="543.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,519,643 samples, 0.01%)</title><rect x="983.2" y="357" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="986.24" y="367.5" ></text>
</g>
<g >
<title>release_pages (2,394,184 samples, 0.02%)</title><rect x="257.0" y="405" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="260.02" y="415.5" ></text>
</g>
<g >
<title>dequeue_entity (3,921,209 samples, 0.03%)</title><rect x="253.5" y="373" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="256.54" y="383.5" ></text>
</g>
<g >
<title>new_slab (26,301,627 samples, 0.17%)</title><rect x="787.9" y="325" width="2.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="790.93" y="335.5" ></text>
</g>
<g >
<title>runtime.deferreturn (5,424,302 samples, 0.04%)</title><rect x="866.7" y="613" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="869.68" y="623.5" ></text>
</g>
<g >
<title>security_file_alloc (1,372,844 samples, 0.01%)</title><rect x="792.2" y="357" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="795.19" y="367.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (8,515,364 samples, 0.06%)</title><rect x="906.2" y="437" width="0.7" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="909.23" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,328,961 samples, 0.02%)</title><rect x="1021.0" y="373" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1023.95" y="383.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,558,806 samples, 0.01%)</title><rect x="1187.9" y="645" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1190.90" y="655.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,283,842 samples, 0.02%)</title><rect x="50.1" y="437" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="53.13" y="447.5" ></text>
</g>
<g >
<title>do_wp_page (16,334,244 samples, 0.11%)</title><rect x="996.1" y="325" width="1.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="999.05" y="335.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (14,265,585 samples, 0.09%)</title><rect x="919.1" y="309" width="1.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="922.06" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (1,260,529,061 samples, 8.31%)</title><rect x="768.1" y="597" width="98.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="771.12" y="607.5" >github.com/..</text>
</g>
<g >
<title>bpf_map_put (289,684,482 samples, 1.91%)</title><rect x="909.2" y="421" width="22.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="912.21" y="431.5" >b..</text>
</g>
<g >
<title>__irqentry_text_end (2,291,699 samples, 0.02%)</title><rect x="1151.0" y="501" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1154.04" y="511.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,449,306 samples, 0.01%)</title><rect x="991.4" y="357" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="994.44" y="367.5" ></text>
</g>
<g >
<title>array_map_alloc_check (7,493,990 samples, 0.05%)</title><rect x="779.9" y="453" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="782.86" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (45,004,142 samples, 0.30%)</title><rect x="1046.1" y="373" width="3.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1049.07" y="383.5" ></text>
</g>
<g >
<title>do_check (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="341" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="1066.20" y="351.5" ></text>
</g>
<g >
<title>gcWriteBarrier (2,102,944 samples, 0.01%)</title><rect x="1043.4" y="469" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1046.39" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,283,842 samples, 0.02%)</title><rect x="50.1" y="469" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="53.13" y="479.5" ></text>
</g>
<g >
<title>try_to_wake_up (25,788,246 samples, 0.17%)</title><rect x="17.9" y="469" width="2.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="20.91" y="479.5" ></text>
</g>
<g >
<title>runtime.main (6,809,628 samples, 0.04%)</title><rect x="257.3" y="709" width="0.6" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="260.34" y="719.5" ></text>
</g>
<g >
<title>security_bpf (4,594,266 samples, 0.03%)</title><rect x="1136.5" y="469" width="0.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1139.54" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (3,700,625 samples, 0.02%)</title><rect x="1041.0" y="437" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1043.99" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (13,588,819 samples, 0.09%)</title><rect x="939.9" y="325" width="1.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="942.89" y="335.5" ></text>
</g>
<g >
<title>runtime.mallocgc (19,820,894 samples, 0.13%)</title><rect x="746.5" y="597" width="1.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="749.48" y="607.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,517,350 samples, 0.01%)</title><rect x="1004.9" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1007.86" y="383.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (23,121,025 samples, 0.15%)</title><rect x="878.0" y="581" width="1.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="880.97" y="591.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,516,418 samples, 0.04%)</title><rect x="1042.8" y="421" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1045.84" y="431.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (1,496,043 samples, 0.01%)</title><rect x="876.5" y="597" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="879.50" y="607.5" ></text>
</g>
<g >
<title>update_load_avg (1,395,463 samples, 0.01%)</title><rect x="786.4" y="229" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="789.42" y="239.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (8,482,989 samples, 0.06%)</title><rect x="254.5" y="325" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="257.48" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (23,698,592 samples, 0.16%)</title><rect x="473.8" y="565" width="1.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="476.76" y="575.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (3,539,481 samples, 0.02%)</title><rect x="784.8" y="325" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="787.80" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,314,876 samples, 0.02%)</title><rect x="1080.7" y="533" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1083.68" y="543.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (144,570,243 samples, 0.95%)</title><rect x="1063.5" y="645" width="11.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1066.50" y="655.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (1,501,982 samples, 0.01%)</title><rect x="1183.4" y="501" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1186.42" y="511.5" ></text>
</g>
<g >
<title>exc_page_fault (21,427,219 samples, 0.14%)</title><rect x="1000.5" y="405" width="1.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1003.46" y="415.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (1,365,796 samples, 0.01%)</title><rect x="251.0" y="469" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="253.95" y="479.5" ></text>
</g>
<g >
<title>runtime.profilealloc (1,523,444 samples, 0.01%)</title><rect x="731.7" y="565" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="734.67" y="575.5" ></text>
</g>
<g >
<title>lru_add_fn (2,015,777 samples, 0.01%)</title><rect x="1054.3" y="261" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1057.32" y="271.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3,042,236 samples, 0.02%)</title><rect x="928.7" y="325" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="931.69" y="335.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3,481,078 samples, 0.02%)</title><rect x="927.1" y="325" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="930.10" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,193,059 samples, 0.04%)</title><rect x="1021.8" y="357" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1024.80" y="367.5" ></text>
</g>
<g >
<title>handle_mm_fault (28,416,591 samples, 0.19%)</title><rect x="1059.9" y="405" width="2.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1062.88" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (1,450,103 samples, 0.01%)</title><rect x="1076.8" y="629" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1079.82" y="639.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (4,123,052,270 samples, 27.20%)</title><rect x="868.1" y="677" width="321.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="871.13" y="687.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge..</text>
</g>
<g >
<title>__check_object_size (3,019,545 samples, 0.02%)</title><rect x="547.5" y="389" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="550.46" y="399.5" ></text>
</g>
<g >
<title>runtime.notetsleep (1,315,478 samples, 0.01%)</title><rect x="16.5" y="645" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="19.47" y="655.5" ></text>
</g>
<g >
<title>aeshashbody (1,442,506 samples, 0.01%)</title><rect x="1042.7" y="469" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1045.68" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (8,327,250 samples, 0.05%)</title><rect x="794.3" y="277" width="0.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="797.31" y="287.5" ></text>
</g>
<g >
<title>idr_preload (2,220,616 samples, 0.01%)</title><rect x="819.5" y="437" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="822.54" y="447.5" ></text>
</g>
<g >
<title>get_signal (33,252,186 samples, 0.22%)</title><rect x="46.5" y="629" width="2.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="49.49" y="639.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,449,306 samples, 0.01%)</title><rect x="991.4" y="373" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="994.44" y="383.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (6,877,225 samples, 0.05%)</title><rect x="700.4" y="485" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="703.41" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="357" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1014.74" y="367.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (2,182,533 samples, 0.01%)</title><rect x="1008.7" y="357" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1011.67" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (243,524,932 samples, 1.61%)</title><rect x="24.8" y="613" width="18.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="27.79" y="623.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (2,015,777 samples, 0.01%)</title><rect x="1054.3" y="277" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1057.32" y="287.5" ></text>
</g>
<g >
<title>mntget (6,839,308 samples, 0.05%)</title><rect x="800.8" y="389" width="0.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="803.84" y="399.5" ></text>
</g>
<g >
<title>fput (2,211,844 samples, 0.01%)</title><rect x="891.6" y="501" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="894.65" y="511.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,561,122 samples, 0.01%)</title><rect x="747.5" y="565" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="750.49" y="575.5" ></text>
</g>
<g >
<title>__sys_bpf (548,836,836 samples, 3.62%)</title><rect x="777.9" y="469" width="42.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="780.93" y="479.5" >__sy..</text>
</g>
<g >
<title>runtime.(*mcache).refill (7,011,632 samples, 0.05%)</title><rect x="1080.1" y="549" width="0.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1083.08" y="559.5" ></text>
</g>
<g >
<title>syscall.Syscall (2,092,522,485 samples, 13.80%)</title><rect x="538.1" y="517" width="162.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="541.07" y="527.5" >syscall.Syscall</text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (11,997,225 samples, 0.08%)</title><rect x="387.8" y="405" width="1.0" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="390.82" y="415.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (1,534,900 samples, 0.01%)</title><rect x="1080.7" y="453" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1083.68" y="463.5" ></text>
</g>
<g >
<title>error_entry (2,318,031 samples, 0.02%)</title><rect x="1035.0" y="437" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1038.00" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (2,283,175 samples, 0.02%)</title><rect x="1080.3" y="229" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1083.31" y="239.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (1,312,878 samples, 0.01%)</title><rect x="265.5" y="581" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="268.54" y="591.5" ></text>
</g>
<g >
<title>native_write_msr (6,611,062 samples, 0.04%)</title><rect x="927.9" y="293" width="0.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="930.86" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (12,246,650 samples, 0.08%)</title><rect x="1109.5" y="277" width="1.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1112.53" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (8,323,527 samples, 0.05%)</title><rect x="1006.4" y="405" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1009.39" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_futex (5,840,582 samples, 0.04%)</title><rect x="45.5" y="693" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="48.54" y="703.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (3,056,445 samples, 0.02%)</title><rect x="1185.2" y="517" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1188.20" y="527.5" ></text>
</g>
<g >
<title>set_next_entity (11,889,041 samples, 0.08%)</title><rect x="950.0" y="357" width="1.0" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="953.04" y="367.5" ></text>
</g>
<g >
<title>zap_pte_range (18,744,228 samples, 0.12%)</title><rect x="47.6" y="453" width="1.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="50.61" y="463.5" ></text>
</g>
<g >
<title>runtime.lock2 (5,804,750 samples, 0.04%)</title><rect x="865.2" y="501" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="868.18" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (6,856,905 samples, 0.05%)</title><rect x="1007.0" y="405" width="0.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1010.04" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (19,151,883 samples, 0.13%)</title><rect x="760.5" y="485" width="1.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="763.49" y="495.5" ></text>
</g>
<g >
<title>rcu_core (7,096,891 samples, 0.05%)</title><rect x="941.1" y="277" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="944.07" y="287.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,833,199 samples, 0.05%)</title><rect x="1061.5" y="325" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1064.46" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (2,662,350 samples, 0.02%)</title><rect x="250.9" y="613" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="253.90" y="623.5" ></text>
</g>
<g >
<title>bpf_prog_load (3,848,681 samples, 0.03%)</title><rect x="412.5" y="373" width="0.3" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="415.52" y="383.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (2,336,459 samples, 0.02%)</title><rect x="1065.4" y="581" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1068.36" y="591.5" ></text>
</g>
<g >
<title>runtime.findObject (2,261,584 samples, 0.01%)</title><rect x="985.6" y="277" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="988.55" y="287.5" ></text>
</g>
<g >
<title>futex_wait (23,149,741 samples, 0.15%)</title><rect x="11.5" y="517" width="1.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="14.49" y="527.5" ></text>
</g>
<g >
<title>clear_page_erms (2,283,175 samples, 0.02%)</title><rect x="1080.3" y="197" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1083.31" y="207.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (3,695,239 samples, 0.02%)</title><rect x="41.0" y="469" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="44.04" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (8,394,439 samples, 0.06%)</title><rect x="923.0" y="277" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="925.98" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (17,829,899 samples, 0.12%)</title><rect x="788.2" y="245" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="791.23" y="255.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (1,554,823 samples, 0.01%)</title><rect x="1066.9" y="565" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1069.92" y="575.5" ></text>
</g>
<g >
<title>sched_clock (6,290,564 samples, 0.04%)</title><rect x="320.1" y="261" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="323.09" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (3,027,978 samples, 0.02%)</title><rect x="1045.3" y="437" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1048.31" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (4,691,993 samples, 0.03%)</title><rect x="50.1" y="565" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="53.06" y="575.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (1,496,153 samples, 0.01%)</title><rect x="230.8" y="421" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="233.84" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (254,418,079 samples, 1.68%)</title><rect x="24.0" y="629" width="19.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="27.04" y="639.5" ></text>
</g>
<g >
<title>runtime.mallocgc (8,834,960 samples, 0.06%)</title><rect x="733.5" y="597" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="736.52" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (2,333,783 samples, 0.02%)</title><rect x="1115.9" y="389" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1118.89" y="399.5" ></text>
</g>
<g >
<title>__sys_bpf (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="405" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1066.20" y="415.5" ></text>
</g>
<g >
<title>__slab_free (12,302,935 samples, 0.08%)</title><rect x="970.5" y="405" width="0.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="973.45" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (5,382,436 samples, 0.04%)</title><rect x="1099.9" y="261" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1102.94" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (51,380,504 samples, 0.34%)</title><rect x="45.5" y="725" width="4.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="48.54" y="735.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (1,529,913 samples, 0.01%)</title><rect x="1000.1" y="437" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1003.11" y="447.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (2,094,387 samples, 0.01%)</title><rect x="16.3" y="629" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="19.31" y="639.5" ></text>
</g>
<g >
<title>rep_movs_alternative (1,298,569 samples, 0.01%)</title><rect x="25.3" y="565" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="28.25" y="575.5" ></text>
</g>
<g >
<title>try_charge_memcg (1,383,154 samples, 0.01%)</title><rect x="1054.1" y="277" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1057.11" y="287.5" ></text>
</g>
<g >
<title>__slab_free (1,293,850 samples, 0.01%)</title><rect x="360.6" y="229" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="363.59" y="239.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,317,083 samples, 0.02%)</title><rect x="1023.6" y="405" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1026.60" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,636,074 samples, 0.01%)</title><rect x="1188.1" y="549" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1191.08" y="559.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (10,786,871 samples, 0.07%)</title><rect x="1066.3" y="581" width="0.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1069.26" y="591.5" ></text>
</g>
<g >
<title>capable (10,029,377 samples, 0.07%)</title><rect x="1128.8" y="437" width="0.8" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="1131.83" y="447.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (13,785,828 samples, 0.09%)</title><rect x="1111.0" y="357" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1114.01" y="367.5" ></text>
</g>
<g >
<title>exit_mmap (33,117,463 samples, 0.22%)</title><rect x="46.5" y="533" width="2.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="49.50" y="543.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (8,189,365 samples, 0.05%)</title><rect x="256.7" y="629" width="0.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="259.70" y="639.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (3,756,623 samples, 0.02%)</title><rect x="1090.9" y="517" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1093.92" y="527.5" ></text>
</g>
<g >
<title>do_send_specific (6,892,286 samples, 0.05%)</title><rect x="22.5" y="533" width="0.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="25.52" y="543.5" ></text>
</g>
<g >
<title>shuffle_freelist (3,738,257 samples, 0.02%)</title><rect x="786.1" y="261" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="789.12" y="271.5" ></text>
</g>
<g >
<title>psi_task_change (5,093,751 samples, 0.03%)</title><rect x="19.4" y="421" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="22.36" y="431.5" ></text>
</g>
<g >
<title>__collapse_huge_page_copy.isra.0 (3,044,780 samples, 0.02%)</title><rect x="406.1" y="101" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="409.11" y="111.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (2,283,951 samples, 0.02%)</title><rect x="256.8" y="357" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="259.80" y="367.5" ></text>
</g>
<g >
<title>runtime.procresize (4,691,993 samples, 0.03%)</title><rect x="50.1" y="613" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="53.06" y="623.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (7,310,153 samples, 0.05%)</title><rect x="929.5" y="277" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="932.45" y="287.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (1,389,020 samples, 0.01%)</title><rect x="290.6" y="485" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="293.57" y="495.5" ></text>
</g>
<g >
<title>runtime.mallocgc (14,439,865 samples, 0.10%)</title><rect x="1184.4" y="549" width="1.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1187.37" y="559.5" ></text>
</g>
<g >
<title>update_cfs_group (1,884,627 samples, 0.01%)</title><rect x="923.8" y="293" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="926.81" y="303.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (1,511,472 samples, 0.01%)</title><rect x="1123.5" y="261" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1126.47" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1,316,737 samples, 0.01%)</title><rect x="324.5" y="373" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="327.54" y="383.5" ></text>
</g>
<g >
<title>runtime.findObject (1,604,197 samples, 0.01%)</title><rect x="871.5" y="597" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="874.49" y="607.5" ></text>
</g>
<g >
<title>testing.(*B).run1.func1 (4,125,268,637 samples, 27.21%)</title><rect x="868.1" y="709" width="321.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="871.13" y="719.5" >testing.(*B).run1.func1</text>
</g>
<g >
<title>charge_memcg (1,534,680 samples, 0.01%)</title><rect x="760.2" y="469" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="763.19" y="479.5" ></text>
</g>
<g >
<title>runtime.notewakeup (66,744,724 samples, 0.44%)</title><rect x="16.9" y="597" width="5.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="19.93" y="607.5" ></text>
</g>
<g >
<title>runtime.casgstatus (4,631,160 samples, 0.03%)</title><rect x="1083.6" y="517" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1086.64" y="527.5" ></text>
</g>
<g >
<title>__schedule (2,803,068 samples, 0.02%)</title><rect x="966.9" y="421" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="969.95" y="431.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,294,094 samples, 0.02%)</title><rect x="1015.9" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1018.92" y="383.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (3,817,140 samples, 0.03%)</title><rect x="747.6" y="517" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="750.61" y="527.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,782,301 samples, 0.02%)</title><rect x="1001.4" y="277" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1004.42" y="287.5" ></text>
</g>
<g >
<title>update_curr (2,825,277 samples, 0.02%)</title><rect x="347.2" y="341" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="350.17" y="351.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (5,338,064 samples, 0.04%)</title><rect x="707.5" y="581" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="710.54" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.ProgLoad (3,848,681 samples, 0.03%)</title><rect x="412.5" y="517" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="415.52" y="527.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (2,140,821,180 samples, 14.12%)</title><rect x="534.3" y="581" width="166.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="537.31" y="591.5" >bufio.(*Reader).Read</text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (2,942,331 samples, 0.02%)</title><rect x="798.1" y="309" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="801.07" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,563,746 samples, 0.03%)</title><rect x="1103.9" y="357" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1106.94" y="367.5" ></text>
</g>
<g >
<title>runtime.gcStart (1,561,122 samples, 0.01%)</title><rect x="747.5" y="581" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="750.49" y="591.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,492,584 samples, 0.01%)</title><rect x="1018.2" y="309" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1021.23" y="319.5" ></text>
</g>
<g >
<title>alloc_file (143,554,494 samples, 0.95%)</title><rect x="1096.3" y="405" width="11.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="1099.33" y="415.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,015,368 samples, 0.02%)</title><rect x="323.9" y="373" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="326.85" y="383.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,193,059 samples, 0.04%)</title><rect x="1021.8" y="341" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1024.80" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,316,884 samples, 0.02%)</title><rect x="1034.8" y="437" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1037.82" y="447.5" ></text>
</g>
<g >
<title>available_idle_cpu (1,594,771 samples, 0.01%)</title><rect x="309.7" y="309" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="312.70" y="319.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (2,074,395 samples, 0.01%)</title><rect x="996.7" y="245" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="999.69" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,087,294 samples, 0.04%)</title><rect x="1078.6" y="549" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1081.60" y="559.5" ></text>
</g>
<g >
<title>perf_ctx_enable (3,274,288 samples, 0.02%)</title><rect x="46.2" y="565" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="49.17" y="575.5" ></text>
</g>
<g >
<title>idr_get_next_ul (12,385,017 samples, 0.08%)</title><rect x="1070.8" y="357" width="0.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1073.77" y="367.5" ></text>
</g>
<g >
<title>runtime.makeslice (4,469,040 samples, 0.03%)</title><rect x="748.0" y="613" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="751.03" y="623.5" ></text>
</g>
<g >
<title>runtime.newstack (2,564,504 samples, 0.02%)</title><rect x="1189.3" y="709" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1192.30" y="719.5" ></text>
</g>
<g >
<title>runtime.findObject (1,513,923 samples, 0.01%)</title><rect x="401.5" y="325" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="404.48" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (4,560,102 samples, 0.03%)</title><rect x="1078.7" y="453" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1081.72" y="463.5" ></text>
</g>
<g >
<title>___slab_alloc (52,004,759 samples, 0.34%)</title><rect x="1120.6" y="373" width="4.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1123.61" y="383.5" ></text>
</g>
<g >
<title>runtime.entersyscall (1,493,295 samples, 0.01%)</title><rect x="1016.5" y="325" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1019.52" y="335.5" ></text>
</g>
<g >
<title>load_balance (37,795,557 samples, 0.25%)</title><rect x="34.3" y="469" width="3.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="37.33" y="479.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (3,048,889 samples, 0.02%)</title><rect x="257.0" y="421" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="259.97" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,513,295 samples, 0.01%)</title><rect x="50.5" y="565" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="53.54" y="575.5" ></text>
</g>
<g >
<title>prepare_task_switch (57,469,559 samples, 0.38%)</title><rect x="348.3" y="373" width="4.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="351.32" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (19,328,711 samples, 0.13%)</title><rect x="996.1" y="389" width="1.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="999.05" y="399.5" ></text>
</g>
<g >
<title>rep_movs_alternative (2,337,006 samples, 0.02%)</title><rect x="699.0" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="701.98" y="399.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (1,499,683 samples, 0.01%)</title><rect x="389.3" y="325" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="392.28" y="335.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (4,472,264 samples, 0.03%)</title><rect x="930.4" y="373" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="933.37" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (1,674,143 samples, 0.01%)</title><rect x="1080.5" y="533" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="1083.49" y="543.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (725,782,393 samples, 4.79%)</title><rect x="1087.2" y="533" width="56.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1090.16" y="543.5" >entry..</text>
</g>
<g >
<title>init_file (42,776,583 samples, 0.28%)</title><rect x="1097.1" y="373" width="3.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1100.09" y="383.5" ></text>
</g>
<g >
<title>select_task_rq_fair (3,475,286 samples, 0.02%)</title><rect x="914.6" y="357" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="917.61" y="367.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (6,039,502 samples, 0.04%)</title><rect x="63.2" y="597" width="0.5" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="66.23" y="607.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (9,066,558 samples, 0.06%)</title><rect x="1187.2" y="613" width="0.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1190.19" y="623.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (6,724,636 samples, 0.04%)</title><rect x="767.6" y="597" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="770.60" y="607.5" ></text>
</g>
<g >
<title>__schedule (33,026,217 samples, 0.22%)</title><rect x="253.3" y="421" width="2.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="256.34" y="431.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (1,537,518 samples, 0.01%)</title><rect x="1026.2" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1029.24" y="399.5" ></text>
</g>
<g >
<title>prepare_task_switch (4,437,893 samples, 0.03%)</title><rect x="45.6" y="597" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="48.60" y="607.5" ></text>
</g>
<g >
<title>__d_alloc (99,529,276 samples, 0.66%)</title><rect x="1107.5" y="389" width="7.7" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1110.50" y="399.5" ></text>
</g>
<g >
<title>runtime.memmove (28,610,915 samples, 0.19%)</title><rect x="1038.1" y="437" width="2.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1041.12" y="447.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (13,039,324 samples, 0.09%)</title><rect x="1104.9" y="357" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1107.89" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (1,530,711 samples, 0.01%)</title><rect x="1014.6" y="373" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1017.63" y="383.5" ></text>
</g>
<g >
<title>runtime.memmove (14,632,823 samples, 0.10%)</title><rect x="1026.4" y="437" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1029.36" y="447.5" ></text>
</g>
<g >
<title>update_blocked_averages (8,299,378 samples, 0.05%)</title><rect x="37.4" y="469" width="0.6" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text x="40.35" y="479.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (1,545,254 samples, 0.01%)</title><rect x="1104.5" y="341" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1107.48" y="351.5" ></text>
</g>
<g >
<title>runtime.mapassign (33,150,264 samples, 0.22%)</title><rect x="407.6" y="453" width="2.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="410.60" y="463.5" ></text>
</g>
<g >
<title>lockref_put_return (10,834,581 samples, 0.07%)</title><rect x="365.2" y="405" width="0.8" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="368.16" y="415.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (1,374,420 samples, 0.01%)</title><rect x="1061.3" y="229" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1064.30" y="239.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="549" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1192.69" y="559.5" ></text>
</g>
<g >
<title>runtime.memmove (6,974,876 samples, 0.05%)</title><rect x="386.0" y="421" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="388.99" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (1,334,354,448 samples, 8.80%)</title><rect x="763.2" y="629" width="103.9" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="766.25" y="639.5" >github.com/c..</text>
</g>
<g >
<title>do_syscall_64 (67,925,039 samples, 0.45%)</title><rect x="1067.5" y="485" width="5.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1070.52" y="495.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (3,023,647 samples, 0.02%)</title><rect x="728.2" y="501" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="731.18" y="511.5" ></text>
</g>
<g >
<title>scheduler_tick (1,424,273 samples, 0.01%)</title><rect x="334.4" y="229" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="337.35" y="239.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (14,664,399 samples, 0.10%)</title><rect x="47.9" y="437" width="1.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="50.93" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (3,811,703 samples, 0.03%)</title><rect x="388.8" y="341" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="391.81" y="351.5" ></text>
</g>
<g >
<title>runtime.findRunnable (1,734,894 samples, 0.01%)</title><rect x="244.4" y="613" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="247.42" y="623.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (2,682,246 samples, 0.02%)</title><rect x="1054.5" y="309" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1057.48" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (38,299,412 samples, 0.25%)</title><rect x="724.2" y="549" width="3.0" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="727.21" y="559.5" ></text>
</g>
<g >
<title>sync.(*Map).LoadAndDelete (7,047,545 samples, 0.05%)</title><rect x="874.9" y="613" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="877.92" y="623.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="405" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1014.74" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (2,306,268 samples, 0.02%)</title><rect x="998.5" y="437" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1001.45" y="447.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4,047,567 samples, 0.03%)</title><rect x="20.5" y="437" width="0.4" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="23.55" y="447.5" ></text>
</g>
<g >
<title>file_free_rcu (5,264,515 samples, 0.03%)</title><rect x="941.1" y="245" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="944.13" y="255.5" ></text>
</g>
<g >
<title>update_curr (1,402,642 samples, 0.01%)</title><rect x="253.6" y="357" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="256.63" y="367.5" ></text>
</g>
<g >
<title>tick_sched_timer (1,596,413 samples, 0.01%)</title><rect x="940.7" y="293" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="943.66" y="303.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,991,824 samples, 0.01%)</title><rect x="1062.4" y="405" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1065.37" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,862,748 samples, 0.05%)</title><rect x="406.1" y="245" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="409.11" y="255.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (3,772,405 samples, 0.02%)</title><rect x="254.0" y="405" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="257.04" y="415.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (5,285,410 samples, 0.03%)</title><rect x="231.1" y="597" width="0.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="234.11" y="607.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (6,031,388 samples, 0.04%)</title><rect x="1061.0" y="309" width="0.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1063.99" y="319.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (3,515,090 samples, 0.02%)</title><rect x="1057.3" y="373" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1060.32" y="383.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,551,229 samples, 0.01%)</title><rect x="384.3" y="389" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="387.27" y="399.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (3,037,178 samples, 0.02%)</title><rect x="48.7" y="373" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="51.72" y="383.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (16,907,197 samples, 0.11%)</title><rect x="1113.5" y="341" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1116.51" y="351.5" ></text>
</g>
<g >
<title>allocate_slab (26,301,627 samples, 0.17%)</title><rect x="787.9" y="309" width="2.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="790.93" y="319.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (3,624,354 samples, 0.02%)</title><rect x="41.0" y="437" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="44.05" y="447.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (3,811,703 samples, 0.03%)</title><rect x="388.8" y="389" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="391.81" y="399.5" ></text>
</g>
<g >
<title>sched_clock_cpu (18,186,777 samples, 0.12%)</title><rect x="321.8" y="309" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="324.75" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (2,709,914 samples, 0.02%)</title><rect x="873.4" y="533" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="876.36" y="543.5" ></text>
</g>
<g >
<title>cache_from_obj (1,801,756 samples, 0.01%)</title><rect x="368.5" y="389" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="371.48" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (20,839,263 samples, 0.14%)</title><rect x="1101.7" y="293" width="1.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1104.67" y="303.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="309" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1010.57" y="319.5" ></text>
</g>
<g >
<title>call_rcu (11,023,206 samples, 0.07%)</title><rect x="932.0" y="437" width="0.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="935.04" y="447.5" ></text>
</g>
<g >
<title>irqentry_exit (2,296,413 samples, 0.02%)</title><rect x="1002.0" y="389" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1004.95" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,122,051 samples, 0.01%)</title><rect x="766.8" y="469" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="769.83" y="479.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (1,854,824 samples, 0.01%)</title><rect x="929.3" y="293" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="932.28" y="303.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (3,301,534 samples, 0.02%)</title><rect x="932.6" y="405" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="935.63" y="415.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (31,204,210 samples, 0.21%)</title><rect x="528.0" y="565" width="2.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="531.03" y="575.5" ></text>
</g>
<g >
<title>runtime.findObject (23,581,340 samples, 0.16%)</title><rect x="57.0" y="645" width="1.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="60.04" y="655.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).scavenge (8,189,365 samples, 0.05%)</title><rect x="256.7" y="645" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="259.70" y="655.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (2,136,653 samples, 0.01%)</title><rect x="931.5" y="389" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="934.50" y="399.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,148,146 samples, 0.01%)</title><rect x="612.7" y="325" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="615.68" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (5,337,489 samples, 0.04%)</title><rect x="1080.1" y="533" width="0.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1083.08" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_lock (5,374,348 samples, 0.04%)</title><rect x="802.9" y="405" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="805.91" y="415.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (39,412,709 samples, 0.26%)</title><rect x="330.1" y="357" width="3.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="333.15" y="367.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (1,552,430 samples, 0.01%)</title><rect x="1040.6" y="469" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1043.64" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,027,978 samples, 0.02%)</title><rect x="1045.3" y="341" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1048.31" y="351.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createMapGaugeEbpf (448,936,374 samples, 2.96%)</title><rect x="377.9" y="629" width="34.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="380.88" y="639.5" >gi..</text>
</g>
<g >
<title>do_user_addr_fault (6,103,462 samples, 0.04%)</title><rect x="750.5" y="565" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="753.47" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="533" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1191.33" y="543.5" ></text>
</g>
<g >
<title>alloc_empty_file (133,614,733 samples, 0.88%)</title><rect x="1096.6" y="389" width="10.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1099.62" y="399.5" ></text>
</g>
<g >
<title>runtime.pidleput (1,394,819 samples, 0.01%)</title><rect x="252.5" y="581" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="255.53" y="591.5" ></text>
</g>
<g >
<title>alloc_pages (5,382,436 samples, 0.04%)</title><rect x="1099.9" y="277" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1102.94" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (456,534,310 samples, 3.01%)</title><rect x="1150.0" y="597" width="35.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1152.96" y="607.5" >git..</text>
</g>
<g >
<title>__do_softirq (11,454,312 samples, 0.08%)</title><rect x="334.8" y="293" width="0.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="337.79" y="303.5" ></text>
</g>
<g >
<title>idr_get_free (30,137,485 samples, 0.20%)</title><rect x="816.9" y="405" width="2.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="819.91" y="415.5" ></text>
</g>
<g >
<title>do_futex (23,295,404 samples, 0.15%)</title><rect x="11.5" y="533" width="1.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="14.48" y="543.5" ></text>
</g>
<g >
<title>__rcu_read_lock (7,596,852 samples, 0.05%)</title><rect x="658.0" y="373" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="660.95" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,084,609 samples, 0.01%)</title><rect x="147.8" y="629" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="150.83" y="639.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (11,560,370 samples, 0.08%)</title><rect x="1066.2" y="613" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1069.20" y="623.5" ></text>
</g>
<g >
<title>newidle_balance (49,397,020 samples, 0.33%)</title><rect x="34.2" y="485" width="3.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="37.19" y="495.5" ></text>
</g>
<g >
<title>runtime.addspecial (397,089,023 samples, 2.62%)</title><rect x="833.7" y="485" width="30.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="836.74" y="495.5" >ru..</text>
</g>
<g >
<title>runtime.gcAssistAlloc (4,466,746 samples, 0.03%)</title><rect x="1008.1" y="357" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1011.15" y="367.5" ></text>
</g>
<g >
<title>error_entry (1,490,954 samples, 0.01%)</title><rect x="993.8" y="405" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="996.81" y="415.5" ></text>
</g>
<g >
<title>runtime.markroot (141,887,010 samples, 0.94%)</title><rect x="62.3" y="645" width="11.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="65.29" y="655.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (19,970,750 samples, 0.13%)</title><rect x="658.5" y="373" width="1.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="661.54" y="383.5" ></text>
</g>
<g >
<title>runtime.gopark (3,023,324 samples, 0.02%)</title><rect x="50.7" y="693" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="53.66" y="703.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,560,102 samples, 0.03%)</title><rect x="1078.7" y="437" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1081.72" y="447.5" ></text>
</g>
<g >
<title>__folio_alloc (6,154,062 samples, 0.04%)</title><rect x="1027.0" y="293" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1029.96" y="303.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).update (1,412,431 samples, 0.01%)</title><rect x="251.7" y="581" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="254.71" y="591.5" ></text>
</g>
<g >
<title>runtime.memmove (6,637,761 samples, 0.04%)</title><rect x="1074.2" y="629" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1077.24" y="639.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (1,522,327 samples, 0.01%)</title><rect x="1186.9" y="661" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1189.92" y="671.5" ></text>
</g>
<g >
<title>do_wp_page (1,467,716 samples, 0.01%)</title><rect x="1006.2" y="309" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1009.22" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,547,803 samples, 0.01%)</title><rect x="1027.6" y="405" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1030.56" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (10,005,659 samples, 0.07%)</title><rect x="1026.7" y="421" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1029.72" y="431.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,546,202 samples, 0.01%)</title><rect x="1103.3" y="293" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1106.29" y="303.5" ></text>
</g>
<g >
<title>runtime.scanobject (4,466,746 samples, 0.03%)</title><rect x="1008.1" y="277" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1011.15" y="287.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,324,687 samples, 0.02%)</title><rect x="1021.1" y="421" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1024.13" y="431.5" ></text>
</g>
<g >
<title>task_work_run (993,114,028 samples, 6.55%)</title><rect x="292.6" y="469" width="77.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="295.60" y="479.5" >task_wor..</text>
</g>
<g >
<title>runtime.scanblock (43,835,024 samples, 0.29%)</title><rect x="69.6" y="613" width="3.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="72.60" y="623.5" ></text>
</g>
<g >
<title>update_load_avg (2,985,543 samples, 0.02%)</title><rect x="924.0" y="293" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="927.02" y="303.5" ></text>
</g>
<g >
<title>__free_one_page (4,136,194 samples, 0.03%)</title><rect x="48.4" y="325" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="51.35" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,545,306 samples, 0.01%)</title><rect x="800.4" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="803.44" y="383.5" ></text>
</g>
<g >
<title>runtime.newobject (3,020,984 samples, 0.02%)</title><rect x="386.5" y="421" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="389.53" y="431.5" ></text>
</g>
<g >
<title>runtime.gopark (57,278,300 samples, 0.38%)</title><rect x="252.2" y="661" width="4.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="255.24" y="671.5" ></text>
</g>
<g >
<title>rmqueue (1,507,247 samples, 0.01%)</title><rect x="1079.0" y="421" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1081.96" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,294,094 samples, 0.02%)</title><rect x="1015.9" y="325" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1018.92" y="335.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (9,120,102 samples, 0.06%)</title><rect x="1016.5" y="405" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1019.52" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,920,907 samples, 0.02%)</title><rect x="194.3" y="565" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="197.35" y="575.5" ></text>
</g>
<g >
<title>ptep_clear_flush (1,496,153 samples, 0.01%)</title><rect x="230.8" y="485" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="233.84" y="495.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (2,898,119 samples, 0.02%)</title><rect x="256.7" y="421" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="259.75" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,419,000 samples, 0.02%)</title><rect x="269.8" y="533" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="272.78" y="543.5" ></text>
</g>
<g >
<title>testing.(*B).runN (4,125,268,637 samples, 27.21%)</title><rect x="868.1" y="693" width="321.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="871.13" y="703.5" >testing.(*B).runN</text>
</g>
<g >
<title>free_pages_and_swap_cache (5,083,413 samples, 0.03%)</title><rect x="46.5" y="485" width="0.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="49.50" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (1,517,832 samples, 0.01%)</title><rect x="1186.3" y="629" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1189.32" y="639.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).putBatch (2,271,856 samples, 0.01%)</title><rect x="1187.4" y="565" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1190.43" y="575.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast_pidle (3,001,008 samples, 0.02%)</title><rect x="269.8" y="501" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="272.80" y="511.5" ></text>
</g>
<g >
<title>___slab_alloc (6,916,170 samples, 0.05%)</title><rect x="1099.9" y="325" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1102.88" y="335.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (2,324,809 samples, 0.02%)</title><rect x="1127.7" y="389" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1130.69" y="399.5" ></text>
</g>
<g >
<title>rw_verify_area (1,556,183 samples, 0.01%)</title><rect x="1011.3" y="229" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="1014.27" y="239.5" ></text>
</g>
<g >
<title>kfree (1,634,408 samples, 0.01%)</title><rect x="360.6" y="261" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="363.58" y="271.5" ></text>
</g>
<g >
<title>sched_clock (3,096,654 samples, 0.02%)</title><rect x="321.5" y="309" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="324.51" y="319.5" ></text>
</g>
<g >
<title>runtime.newInlineUnwinder (1,523,444 samples, 0.01%)</title><rect x="731.7" y="469" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="734.67" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (17,781,229 samples, 0.12%)</title><rect x="1038.8" y="357" width="1.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1041.78" y="367.5" ></text>
</g>
<g >
<title>clockevents_program_event (13,857,397 samples, 0.09%)</title><rect x="27.3" y="501" width="1.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="30.34" y="511.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5,029,440 samples, 0.03%)</title><rect x="148.0" y="565" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="151.04" y="575.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (16,902,224 samples, 0.11%)</title><rect x="485.5" y="581" width="1.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="488.54" y="591.5" ></text>
</g>
<g >
<title>update_rq_clock (2,591,108 samples, 0.02%)</title><rect x="41.5" y="517" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="44.50" y="527.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,515,189 samples, 0.01%)</title><rect x="194.8" y="565" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="197.85" y="575.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (16,802,541 samples, 0.11%)</title><rect x="798.3" y="325" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="801.30" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,529,774 samples, 0.01%)</title><rect x="1112.9" y="341" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1115.92" y="351.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (9,474,531 samples, 0.06%)</title><rect x="38.7" y="501" width="0.7" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="41.68" y="511.5" ></text>
</g>
<g >
<title>rmqueue (2,372,733 samples, 0.02%)</title><rect x="1103.1" y="261" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1106.10" y="271.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (9,454,382 samples, 0.06%)</title><rect x="959.1" y="341" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="962.10" y="351.5" ></text>
</g>
<g >
<title>enqueue_task_fair (43,703,843 samples, 0.29%)</title><rect x="920.9" y="309" width="3.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="923.85" y="319.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (11,071,817 samples, 0.07%)</title><rect x="796.0" y="341" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="798.96" y="351.5" ></text>
</g>
<g >
<title>bufio.(*Scanner).Scan (13,691,287 samples, 0.09%)</title><rect x="1016.2" y="421" width="1.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1019.16" y="431.5" ></text>
</g>
<g >
<title>runtime.wbMove (3,030,511 samples, 0.02%)</title><rect x="384.4" y="421" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="387.39" y="431.5" ></text>
</g>
<g >
<title>memset_orig (3,828,060 samples, 0.03%)</title><rect x="786.6" y="325" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="789.58" y="335.5" ></text>
</g>
<g >
<title>d_instantiate (8,330,539 samples, 0.05%)</title><rect x="1115.5" y="405" width="0.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1118.48" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (2,326,113 samples, 0.02%)</title><rect x="1026.1" y="405" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1029.06" y="415.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (2,103,802 samples, 0.01%)</title><rect x="959.9" y="389" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="962.89" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (7,701,537 samples, 0.05%)</title><rect x="763.6" y="613" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="766.56" y="623.5" ></text>
</g>
<g >
<title>__calc_delta (3,917,648 samples, 0.03%)</title><rect x="945.7" y="325" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="948.67" y="335.5" ></text>
</g>
<g >
<title>try_to_wake_up (194,803,106 samples, 1.28%)</title><rect x="914.9" y="357" width="15.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="917.88" y="367.5" ></text>
</g>
<g >
<title>update_cfs_group (5,204,615 samples, 0.03%)</title><rect x="31.8" y="485" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="34.79" y="495.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (30,677,346 samples, 0.20%)</title><rect x="26.1" y="549" width="2.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="29.11" y="559.5" ></text>
</g>
<g >
<title>clear_page_erms (28,003,673 samples, 0.18%)</title><rect x="806.5" y="261" width="2.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="809.55" y="271.5" ></text>
</g>
<g >
<title>perf_ctx_disable (40,432,713 samples, 0.27%)</title><rect x="349.5" y="325" width="3.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="352.48" y="335.5" ></text>
</g>
<g >
<title>runtime.gcMarkDone (8,239,499 samples, 0.05%)</title><rect x="50.0" y="693" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="53.02" y="703.5" ></text>
</g>
<g >
<title>alloc_pages (34,777,161 samples, 0.23%)</title><rect x="806.3" y="309" width="2.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="809.26" y="319.5" ></text>
</g>
<g >
<title>rmqueue (3,004,229 samples, 0.02%)</title><rect x="808.7" y="261" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="811.73" y="271.5" ></text>
</g>
<g >
<title>futex_wait_queue (5,840,582 samples, 0.04%)</title><rect x="45.5" y="645" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="48.54" y="655.5" ></text>
</g>
<g >
<title>__mutex_init (1,554,605 samples, 0.01%)</title><rect x="1092.3" y="469" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1095.34" y="479.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (4,566,413 samples, 0.03%)</title><rect x="385.4" y="373" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="388.39" y="383.5" ></text>
</g>
<g >
<title>runtime.profilealloc (1,518,421 samples, 0.01%)</title><rect x="1018.4" y="389" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1021.41" y="399.5" ></text>
</g>
<g >
<title>allocate_slab (3,104,310 samples, 0.02%)</title><rect x="1123.7" y="245" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1126.70" y="255.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (118,710,431 samples, 0.78%)</title><rect x="1119.3" y="421" width="9.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1122.35" y="431.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,661,892 samples, 0.02%)</title><rect x="992.7" y="261" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="995.70" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,496,153 samples, 0.01%)</title><rect x="230.8" y="613" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="233.84" y="623.5" ></text>
</g>
<g >
<title>apparmor_capable (2,820,906 samples, 0.02%)</title><rect x="815.1" y="421" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="818.10" y="431.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (117,310,521 samples, 0.77%)</title><rect x="804.6" y="405" width="9.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="807.61" y="415.5" ></text>
</g>
<g >
<title>ttwu_do_activate (3,331,628 samples, 0.02%)</title><rect x="148.0" y="501" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="151.04" y="511.5" ></text>
</g>
<g >
<title>runtime.gcMarkTermination.func3 (4,691,993 samples, 0.03%)</title><rect x="50.1" y="645" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="53.06" y="655.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (15,369,616 samples, 0.10%)</title><rect x="1099.2" y="341" width="1.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1102.22" y="351.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (1,353,206 samples, 0.01%)</title><rect x="62.8" y="597" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="65.81" y="607.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2,424,374 samples, 0.02%)</title><rect x="256.4" y="533" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="259.36" y="543.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).resolveInternal (1,353,206 samples, 0.01%)</title><rect x="62.8" y="581" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="65.81" y="591.5" ></text>
</g>
<g >
<title>clear_page_erms (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="469" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1191.33" y="479.5" ></text>
</g>
<g >
<title>runtime.growslice (16,389,769 samples, 0.11%)</title><rect x="1044.7" y="469" width="1.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1047.67" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,286,922 samples, 0.02%)</title><rect x="724.6" y="357" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="727.61" y="367.5" ></text>
</g>
<g >
<title>queue_work_on (236,616,486 samples, 1.56%)</title><rect x="913.2" y="405" width="18.5" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="916.25" y="415.5" ></text>
</g>
<g >
<title>btf_find_by_name_kind (1,543,873 samples, 0.01%)</title><rect x="1063.2" y="277" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1066.20" y="287.5" ></text>
</g>
<g >
<title>bpf_map_release (323,152,963 samples, 2.13%)</title><rect x="906.9" y="437" width="25.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="909.89" y="447.5" >b..</text>
</g>
<g >
<title>__slab_free (1,750,815 samples, 0.01%)</title><rect x="941.3" y="213" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="944.27" y="223.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,918,734 samples, 0.01%)</title><rect x="328.8" y="373" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="331.83" y="383.5" ></text>
</g>
<g >
<title>runtime.unlock2 (3,815,594 samples, 0.03%)</title><rect x="874.4" y="549" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="877.37" y="559.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,064,593 samples, 0.02%)</title><rect x="1006.0" y="309" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1008.98" y="319.5" ></text>
</g>
<g >
<title>anon_inode_getfd (1,538,313 samples, 0.01%)</title><rect x="1093.1" y="469" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1096.06" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (6,414,762 samples, 0.04%)</title><rect x="993.2" y="245" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="996.21" y="255.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,226,150 samples, 0.01%)</title><rect x="1041.0" y="389" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1044.05" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,513,295 samples, 0.01%)</title><rect x="50.5" y="581" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="53.54" y="591.5" ></text>
</g>
<g >
<title>runtime.lock2 (2,135,082 samples, 0.01%)</title><rect x="864.2" y="469" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="867.24" y="479.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (5,496,452 samples, 0.04%)</title><rect x="320.1" y="229" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="323.13" y="239.5" ></text>
</g>
<g >
<title>vma_alloc_folio (8,454,039 samples, 0.06%)</title><rect x="1000.8" y="309" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1003.76" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (2,315,903 samples, 0.02%)</title><rect x="1082.0" y="613" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1084.98" y="623.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (1,502,947 samples, 0.01%)</title><rect x="387.1" y="389" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="390.12" y="399.5" ></text>
</g>
<g >
<title>__unfreeze_partials (3,448,622 samples, 0.02%)</title><rect x="963.1" y="341" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="966.12" y="351.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,372,403,294 samples, 9.05%)</title><rect x="270.5" y="565" width="106.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="273.52" y="575.5" >runtime/inter..</text>
</g>
<g >
<title>finish_task_switch.isra.0 (5,177,208 samples, 0.03%)</title><rect x="20.5" y="453" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="23.52" y="463.5" ></text>
</g>
<g >
<title>memcg_account_kmem (2,316,464 samples, 0.02%)</title><rect x="1127.4" y="357" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1130.39" y="367.5" ></text>
</g>
<g >
<title>security_file_alloc (1,423,175 samples, 0.01%)</title><rect x="1106.8" y="373" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1109.79" y="383.5" ></text>
</g>
<g >
<title>security_file_free (1,631,335 samples, 0.01%)</title><rect x="369.4" y="437" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="372.36" y="447.5" ></text>
</g>
<g >
<title>runtime.gcDrain (2,478,833,974 samples, 16.35%)</title><rect x="50.9" y="661" width="192.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="53.89" y="671.5" >runtime.gcDrain</text>
</g>
<g >
<title>main.main (2,565,619 samples, 0.02%)</title><rect x="257.3" y="693" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="260.34" y="703.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,533,678 samples, 0.01%)</title><rect x="407.5" y="357" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="410.48" y="367.5" ></text>
</g>
<g >
<title>__cond_resched (1,610,535 samples, 0.01%)</title><rect x="900.0" y="485" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="903.00" y="495.5" ></text>
</g>
<g >
<title>runtime.mallocgc (305,522,453 samples, 2.02%)</title><rect x="708.0" y="581" width="23.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="711.01" y="591.5" >r..</text>
</g>
<g >
<title>update_rq_clock (1,334,094 samples, 0.01%)</title><rect x="37.9" y="453" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="40.85" y="463.5" ></text>
</g>
<g >
<title>enqueue_task (5,533,353 samples, 0.04%)</title><rect x="940.2" y="229" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="943.20" y="239.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (11,960,850 samples, 0.08%)</title><rect x="727.5" y="565" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="730.49" y="575.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (1,513,437 samples, 0.01%)</title><rect x="761.8" y="405" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="764.80" y="415.5" ></text>
</g>
<g >
<title>runtime.interequal (1,540,659 samples, 0.01%)</title><rect x="392.1" y="437" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="395.11" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,945,084 samples, 0.05%)</title><rect x="402.2" y="389" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="405.20" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (67,925,039 samples, 0.45%)</title><rect x="1067.5" y="501" width="5.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1070.52" y="511.5" ></text>
</g>
<g >
<title>mas_walk (1,976,241 samples, 0.01%)</title><rect x="1062.1" y="389" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1065.09" y="399.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (12,357,237 samples, 0.08%)</title><rect x="402.0" y="405" width="0.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="404.95" y="415.5" ></text>
</g>
<g >
<title>kmalloc_slab (2,272,217 samples, 0.01%)</title><rect x="1127.9" y="389" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1130.87" y="399.5" ></text>
</g>
<g >
<title>switch_fpu_return (3,086,210 samples, 0.02%)</title><rect x="370.7" y="501" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="373.70" y="511.5" ></text>
</g>
<g >
<title>ptep_clear_flush (17,259,386 samples, 0.11%)</title><rect x="1054.7" y="309" width="1.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1057.69" y="319.5" ></text>
</g>
<g >
<title>runtime.mstart0 (384,271,986 samples, 2.53%)</title><rect x="15.0" y="693" width="29.9" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="17.99" y="703.5" >ru..</text>
</g>
<g >
<title>runtime.exitsyscall (6,954,821 samples, 0.05%)</title><rect x="1084.0" y="549" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1087.00" y="559.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,532,309 samples, 0.03%)</title><rect x="1006.0" y="325" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1008.98" y="335.5" ></text>
</g>
<g >
<title>pick_file (4,942,358 samples, 0.03%)</title><rect x="891.8" y="501" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="894.83" y="511.5" ></text>
</g>
<g >
<title>exc_page_fault (1,533,678 samples, 0.01%)</title><rect x="407.5" y="373" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="410.48" y="383.5" ></text>
</g>
<g >
<title>pick_next_task (4,794,393 samples, 0.03%)</title><rect x="20.9" y="453" width="0.4" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="23.92" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (4,523,800 samples, 0.03%)</title><rect x="1081.3" y="549" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1084.27" y="559.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (1,504,936 samples, 0.01%)</title><rect x="387.7" y="357" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="390.70" y="367.5" ></text>
</g>
<g >
<title>[[vdso]] (6,039,502 samples, 0.04%)</title><rect x="63.2" y="581" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="66.23" y="591.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,411,121 samples, 0.02%)</title><rect x="296.1" y="421" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="299.06" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (4,466,746 samples, 0.03%)</title><rect x="1008.1" y="325" width="0.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1011.15" y="335.5" ></text>
</g>
<g >
<title>memcpy_orig (2,271,321 samples, 0.01%)</title><rect x="1016.8" y="197" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1019.81" y="207.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,442,613 samples, 0.01%)</title><rect x="358.2" y="389" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="361.15" y="399.5" ></text>
</g>
<g >
<title>psi_task_switch (4,029,686 samples, 0.03%)</title><rect x="255.5" y="405" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="258.49" y="415.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,365,928 samples, 0.01%)</title><rect x="825.9" y="501" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="828.94" y="511.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,535,577 samples, 0.01%)</title><rect x="389.2" y="389" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="392.17" y="399.5" ></text>
</g>
<g >
<title>runtime.findObject (1,504,936 samples, 0.01%)</title><rect x="387.7" y="341" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="390.70" y="351.5" ></text>
</g>
<g >
<title>__update_blocked_fair (5,299,479 samples, 0.03%)</title><rect x="37.4" y="453" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="40.37" y="463.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).destroy (1,561,550 samples, 0.01%)</title><rect x="742.3" y="533" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="745.34" y="543.5" ></text>
</g>
<g >
<title>memset_orig (2,301,846 samples, 0.02%)</title><rect x="800.0" y="357" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="802.96" y="367.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="325" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1014.74" y="335.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (10,631,491 samples, 0.07%)</title><rect x="32.8" y="501" width="0.8" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="35.82" y="511.5" ></text>
</g>
<g >
<title>init_file (3,825,970 samples, 0.03%)</title><rect x="1107.0" y="389" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1110.02" y="399.5" ></text>
</g>
<g >
<title>runtime.wbMove (1,502,947 samples, 0.01%)</title><rect x="387.1" y="421" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="390.12" y="431.5" ></text>
</g>
<g >
<title>tick_sched_timer (1,553,185 samples, 0.01%)</title><rect x="612.7" y="277" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="615.73" y="287.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (1,514,335 samples, 0.01%)</title><rect x="1135.4" y="421" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1138.40" y="431.5" ></text>
</g>
<g >
<title>mmput (33,117,463 samples, 0.22%)</title><rect x="46.5" y="565" width="2.6" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="49.50" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign (448,160,715 samples, 2.96%)</title><rect x="377.9" y="597" width="34.9" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="380.94" y="607.5" >gi..</text>
</g>
<g >
<title>unmap_page_range (28,034,050 samples, 0.18%)</title><rect x="46.9" y="485" width="2.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="49.89" y="495.5" ></text>
</g>
<g >
<title>ihold (3,045,218 samples, 0.02%)</title><rect x="801.4" y="405" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="804.42" y="415.5" ></text>
</g>
<g >
<title>runtime.mergeSummaries (1,412,431 samples, 0.01%)</title><rect x="251.7" y="565" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="254.71" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (5,857,834 samples, 0.04%)</title><rect x="14.2" y="581" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="17.15" y="591.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (14,236,579 samples, 0.09%)</title><rect x="381.1" y="373" width="1.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="384.09" y="383.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (2,268,078 samples, 0.01%)</title><rect x="148.9" y="533" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="151.89" y="543.5" ></text>
</g>
<g >
<title>wake_up_q (26,739,208 samples, 0.18%)</title><rect x="17.9" y="485" width="2.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="20.85" y="495.5" ></text>
</g>
<g >
<title>allocate_slab (40,938,556 samples, 0.27%)</title><rect x="806.1" y="325" width="3.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="809.13" y="335.5" ></text>
</g>
<g >
<title>apparmor_capable (11,498,842 samples, 0.08%)</title><rect x="1131.0" y="421" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1134.05" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (2,309,224 samples, 0.02%)</title><rect x="781.8" y="437" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="784.77" y="447.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (2,676,672 samples, 0.02%)</title><rect x="1054.3" y="309" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1057.27" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,526,959 samples, 0.01%)</title><rect x="770.4" y="485" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="773.41" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,286,922 samples, 0.02%)</title><rect x="724.6" y="389" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="727.61" y="399.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (3,042,053 samples, 0.02%)</title><rect x="734.8" y="613" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="737.81" y="623.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,294,094 samples, 0.02%)</title><rect x="1015.9" y="389" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1018.92" y="399.5" ></text>
</g>
<g >
<title>psi_task_switch (48,494,762 samples, 0.32%)</title><rect x="956.1" y="389" width="3.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="959.08" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="357" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1083.14" y="367.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,782,301 samples, 0.02%)</title><rect x="1001.4" y="293" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1004.42" y="303.5" ></text>
</g>
<g >
<title>release_pte_folio (1,521,347 samples, 0.01%)</title><rect x="406.1" y="69" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="409.11" y="79.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (1,527,921 samples, 0.01%)</title><rect x="384.0" y="341" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="387.03" y="351.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,502,947 samples, 0.01%)</title><rect x="387.1" y="373" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="390.12" y="383.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (7,677,893 samples, 0.05%)</title><rect x="734.2" y="597" width="0.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="737.21" y="607.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (25,938,202 samples, 0.17%)</title><rect x="333.7" y="341" width="2.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="336.68" y="351.5" ></text>
</g>
<g >
<title>_copy_from_user (3,846,330 samples, 0.03%)</title><rect x="1092.5" y="469" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1095.46" y="479.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (10,546,467 samples, 0.07%)</title><rect x="400.8" y="405" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="403.78" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="597" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1192.69" y="607.5" ></text>
</g>
<g >
<title>apparmor_capable (2,296,114 samples, 0.02%)</title><rect x="1128.8" y="421" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1131.83" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (1,402,291,131 samples, 9.25%)</title><rect x="1076.9" y="629" width="109.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1079.94" y="639.5" >github.com/ci..</text>
</g>
<g >
<title>internal/poll.(*FD).Read (2,097,891,184 samples, 13.84%)</title><rect x="537.7" y="549" width="163.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="540.65" y="559.5" >internal/poll.(*FD).R..</text>
</g>
<g >
<title>runtime.reentersyscall (1,493,295 samples, 0.01%)</title><rect x="1016.5" y="309" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1019.52" y="319.5" ></text>
</g>
<g >
<title>runtime.findObject (1,513,203 samples, 0.01%)</title><rect x="387.0" y="325" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="390.00" y="335.5" ></text>
</g>
<g >
<title>rb_erase (2,793,679 samples, 0.02%)</title><rect x="345.5" y="341" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="348.53" y="351.5" ></text>
</g>
<g >
<title>runtime.makeBucketArray (7,669,564 samples, 0.05%)</title><rect x="407.0" y="437" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="410.00" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,918,477 samples, 0.02%)</title><rect x="916.1" y="309" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="919.10" y="319.5" ></text>
</g>
<g >
<title>alloc_fd (8,310,193 samples, 0.05%)</title><rect x="803.3" y="405" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="806.33" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (4,555,789 samples, 0.03%)</title><rect x="194.6" y="613" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="197.61" y="623.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (16,198,496 samples, 0.11%)</title><rect x="635.0" y="357" width="1.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="637.98" y="367.5" ></text>
</g>
<g >
<title>bpf_map_put (60,273,401 samples, 0.40%)</title><rect x="549.8" y="389" width="4.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="552.84" y="399.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (3,650,516 samples, 0.02%)</title><rect x="148.0" y="549" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="151.04" y="559.5" ></text>
</g>
<g >
<title>futex_wait (5,840,582 samples, 0.04%)</title><rect x="45.5" y="661" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="48.54" y="671.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (4,641,441 samples, 0.03%)</title><rect x="802.5" y="405" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="805.55" y="415.5" ></text>
</g>
<g >
<title>runtime.makeslice (345,230,873 samples, 2.28%)</title><rect x="706.7" y="597" width="26.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="709.65" y="607.5" >r..</text>
</g>
<g >
<title>lock_vma_under_rcu (1,385,862 samples, 0.01%)</title><rect x="991.5" y="373" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="994.55" y="383.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (2,308,930 samples, 0.02%)</title><rect x="725.4" y="485" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="728.39" y="495.5" ></text>
</g>
<g >
<title>perf_ctx_disable (1,804,261 samples, 0.01%)</title><rect x="20.6" y="421" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="23.59" y="431.5" ></text>
</g>
<g >
<title>flush_tlb_func (2,044,717 samples, 0.01%)</title><rect x="1055.7" y="229" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1058.71" y="239.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (4,497,782 samples, 0.03%)</title><rect x="764.9" y="597" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="767.93" y="607.5" ></text>
</g>
<g >
<title>check_preempt_curr (2,276,735 samples, 0.02%)</title><rect x="18.2" y="437" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="21.21" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (220,222,812 samples, 1.45%)</title><rect x="24.9" y="597" width="17.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="27.91" y="607.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (1,445,103 samples, 0.01%)</title><rect x="997.4" y="373" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1000.44" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Pointer).TypeName (1,526,015 samples, 0.01%)</title><rect x="1019.5" y="485" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="1022.53" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,408,145 samples, 0.04%)</title><rect x="402.3" y="341" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="405.26" y="351.5" ></text>
</g>
<g >
<title>locks_remove_posix (5,883,530 samples, 0.04%)</title><rect x="282.1" y="469" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="285.13" y="479.5" ></text>
</g>
<g >
<title>load_balance (2,461,557 samples, 0.02%)</title><rect x="12.4" y="405" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="15.44" y="415.5" ></text>
</g>
<g >
<title>charge_memcg (1,383,154 samples, 0.01%)</title><rect x="1054.1" y="293" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1057.11" y="303.5" ></text>
</g>
<g >
<title>memset_orig (2,970,079 samples, 0.02%)</title><rect x="1106.3" y="373" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1109.33" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (2,122,051 samples, 0.01%)</title><rect x="766.8" y="485" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="769.83" y="495.5" ></text>
</g>
<g >
<title>update_load_avg (38,096,555 samples, 0.25%)</title><rect x="342.3" y="325" width="3.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="345.33" y="335.5" ></text>
</g>
<g >
<title>runtime.preemptone (1,513,295 samples, 0.01%)</title><rect x="50.5" y="613" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="53.54" y="623.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,477,276 samples, 0.02%)</title><rect x="250.9" y="565" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="253.90" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (2,169,190 samples, 0.01%)</title><rect x="777.0" y="501" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="780.05" y="511.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,015,286 samples, 0.02%)</title><rect x="401.4" y="357" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="404.36" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,054,403 samples, 0.03%)</title><rect x="1061.5" y="277" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1064.46" y="287.5" ></text>
</g>
<g >
<title>runtime.memhash64 (7,709,954 samples, 0.05%)</title><rect x="1036.4" y="421" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1039.38" y="431.5" ></text>
</g>
<g >
<title>syscall.read (2,093,294,299 samples, 13.81%)</title><rect x="538.0" y="533" width="162.9" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="541.01" y="543.5" >syscall.read</text>
</g>
<g >
<title>update_rq_clock (14,362,971 samples, 0.09%)</title><rect x="928.9" y="341" width="1.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="931.93" y="351.5" ></text>
</g>
<g >
<title>runtime.profilealloc (1,499,683 samples, 0.01%)</title><rect x="389.3" y="389" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="392.28" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (34,562,484 samples, 0.23%)</title><rect x="1059.8" y="437" width="2.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1062.83" y="447.5" ></text>
</g>
<g >
<title>put_cpu_partial (3,611,140 samples, 0.02%)</title><rect x="963.1" y="357" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="966.12" y="367.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,519,938 samples, 0.01%)</title><rect x="1047.8" y="245" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1050.83" y="255.5" ></text>
</g>
<g >
<title>_copy_from_user (2,218,427 samples, 0.01%)</title><rect x="1136.9" y="485" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1139.89" y="495.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (3,837,605 samples, 0.03%)</title><rect x="745.6" y="613" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="748.58" y="623.5" ></text>
</g>
<g >
<title>is_vmalloc_addr (1,491,381 samples, 0.01%)</title><rect x="547.6" y="357" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="550.58" y="367.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,940,481 samples, 0.05%)</title><rect x="1151.3" y="437" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1154.34" y="447.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (1,455,732 samples, 0.01%)</title><rect x="148.5" y="549" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="151.54" y="559.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (1,527,921 samples, 0.01%)</title><rect x="384.0" y="325" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="387.03" y="335.5" ></text>
</g>
<g >
<title>expand_files (2,339,123 samples, 0.02%)</title><rect x="803.8" y="389" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="806.79" y="399.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (71,020,168 samples, 0.47%)</title><rect x="1067.3" y="597" width="5.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1070.34" y="607.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (1,773,775 samples, 0.01%)</title><rect x="302.0" y="389" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="305.02" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (6,052,459 samples, 0.04%)</title><rect x="1001.4" y="325" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1004.42" y="335.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (2,204,070 samples, 0.01%)</title><rect x="996.3" y="277" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="999.35" y="287.5" ></text>
</g>
<g >
<title>iput (16,591,594 samples, 0.11%)</title><rect x="965.5" y="389" width="1.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="968.48" y="399.5" ></text>
</g>
<g >
<title>enqueue_task (104,280,052 samples, 0.69%)</title><rect x="312.6" y="309" width="8.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="315.62" y="319.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (1,954,964 samples, 0.01%)</title><rect x="1060.7" y="309" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1063.68" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,094,266 samples, 0.02%)</title><rect x="1025.0" y="405" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1027.98" y="415.5" ></text>
</g>
<g >
<title>filp_close (33,401,988 samples, 0.22%)</title><rect x="280.2" y="485" width="2.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="283.20" y="495.5" ></text>
</g>
<g >
<title>runtime.stopm (1,563,689 samples, 0.01%)</title><rect x="244.4" y="597" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="247.43" y="607.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (1,880,506 samples, 0.01%)</title><rect x="26.9" y="517" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="29.86" y="527.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (1,453,302 samples, 0.01%)</title><rect x="312.5" y="309" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="315.50" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,540,120 samples, 0.01%)</title><rect x="1025.7" y="373" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1028.70" y="383.5" ></text>
</g>
<g >
<title>do_anonymous_page (24,463,837 samples, 0.16%)</title><rect x="760.1" y="501" width="1.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="763.07" y="511.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (3,885,896 samples, 0.03%)</title><rect x="698.6" y="325" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="701.62" y="335.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,190,494 samples, 0.01%)</title><rect x="653.4" y="261" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="656.41" y="271.5" ></text>
</g>
<g >
<title>psi_group_change (1,418,897 samples, 0.01%)</title><rect x="13.0" y="437" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="15.95" y="447.5" ></text>
</g>
<g >
<title>runtime.mallocgc (11,791,390 samples, 0.08%)</title><rect x="1045.0" y="453" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1047.97" y="463.5" ></text>
</g>
<g >
<title>free_unref_page_list (1,466,924 samples, 0.01%)</title><rect x="46.6" y="453" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="49.61" y="463.5" ></text>
</g>
<g >
<title>do_futex (29,856,007 samples, 0.20%)</title><rect x="17.6" y="517" width="2.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="20.62" y="527.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (5,978,638 samples, 0.04%)</title><rect x="391.4" y="325" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="394.41" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,862,748 samples, 0.05%)</title><rect x="406.1" y="229" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="409.11" y="239.5" ></text>
</g>
<g >
<title>gcWriteBarrier (1,394,519 samples, 0.01%)</title><rect x="1062.7" y="453" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1065.69" y="463.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (1,551,308 samples, 0.01%)</title><rect x="402.9" y="453" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="405.92" y="463.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,996,419 samples, 0.02%)</title><rect x="988.1" y="373" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="991.07" y="383.5" ></text>
</g>
<g >
<title>runtime.callers (3,817,140 samples, 0.03%)</title><rect x="747.6" y="549" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="750.61" y="559.5" ></text>
</g>
<g >
<title>update_min_vruntime (2,880,155 samples, 0.02%)</title><rect x="949.4" y="341" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="952.38" y="351.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,679,703 samples, 0.04%)</title><rect x="825.4" y="469" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="828.36" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (1,522,351 samples, 0.01%)</title><rect x="1012.6" y="357" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="1015.57" y="367.5" ></text>
</g>
<g >
<title>runtime.makeslice (14,141,828 samples, 0.09%)</title><rect x="1007.8" y="405" width="1.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1010.80" y="415.5" ></text>
</g>
<g >
<title>runtime.growslice (3,016,341 samples, 0.02%)</title><rect x="1007.3" y="389" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1010.34" y="399.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (2,719,824 samples, 0.02%)</title><rect x="875.2" y="581" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="878.16" y="591.5" ></text>
</g>
<g >
<title>runtime.newobject (27,764,306 samples, 0.18%)</title><rect x="765.4" y="581" width="2.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="768.44" y="591.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (1,318,699 samples, 0.01%)</title><rect x="255.4" y="373" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="258.38" y="383.5" ></text>
</g>
<g >
<title>security_file_alloc (32,872,484 samples, 0.22%)</title><rect x="784.3" y="341" width="2.6" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="787.32" y="351.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (8,443,930 samples, 0.06%)</title><rect x="1127.0" y="373" width="0.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1130.03" y="383.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (30,122,696 samples, 0.20%)</title><rect x="742.6" y="613" width="2.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="745.64" y="623.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.Close (1,439,698,554 samples, 9.50%)</title><rect x="265.6" y="613" width="112.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="268.65" y="623.5" >golang.org/x/..</text>
</g>
<g >
<title>runtime.(*mcache).releaseAll (4,691,993 samples, 0.03%)</title><rect x="50.1" y="581" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="53.06" y="591.5" ></text>
</g>
<g >
<title>wake_up_process (4,889,793 samples, 0.03%)</title><rect x="333.8" y="261" width="0.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="336.81" y="271.5" ></text>
</g>
<g >
<title>copy_mc_enhanced_fast_string (1,523,433 samples, 0.01%)</title><rect x="406.2" y="85" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="409.22" y="95.5" ></text>
</g>
<g >
<title>__handle_mm_fault (27,006,079 samples, 0.18%)</title><rect x="1059.9" y="389" width="2.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1062.94" y="399.5" ></text>
</g>
<g >
<title>runtime.notetsleep_internal (1,315,478 samples, 0.01%)</title><rect x="16.5" y="629" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="19.47" y="639.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,957,881 samples, 0.02%)</title><rect x="1041.0" y="421" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1043.99" y="431.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (91,872,218 samples, 0.61%)</title><rect x="1108.0" y="373" width="7.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="1110.98" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (2,904,219 samples, 0.02%)</title><rect x="779.4" y="453" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="782.45" y="463.5" ></text>
</g>
<g >
<title>runtime.(*scavengeIndex).alloc (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="661" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1192.69" y="671.5" ></text>
</g>
<g >
<title>runtime.scanobject (3,716,142 samples, 0.02%)</title><rect x="1013.1" y="293" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1016.10" y="303.5" ></text>
</g>
<g >
<title>runtime.(*scavengerState).run (8,189,365 samples, 0.05%)</title><rect x="256.7" y="677" width="0.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="259.70" y="687.5" ></text>
</g>
<g >
<title>runtime.newobject (7,731,793 samples, 0.05%)</title><rect x="1022.3" y="437" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1025.34" y="447.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).resolveInternal (1,533,881 samples, 0.01%)</title><rect x="747.6" y="469" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="750.61" y="479.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (4,466,746 samples, 0.03%)</title><rect x="1008.1" y="373" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1011.15" y="383.5" ></text>
</g>
<g >
<title>__folio_alloc (1,508,427 samples, 0.01%)</title><rect x="1024.6" y="293" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1027.56" y="303.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,553,178 samples, 0.01%)</title><rect x="10.6" y="661" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.63" y="671.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (47,136,773 samples, 0.31%)</title><rect x="1078.0" y="613" width="3.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1081.01" y="623.5" ></text>
</g>
<g >
<title>pick_next_task (1,395,463 samples, 0.01%)</title><rect x="786.4" y="277" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="789.42" y="287.5" ></text>
</g>
<g >
<title>psi_flags_change (1,877,078 samples, 0.01%)</title><rect x="956.8" y="373" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="959.79" y="383.5" ></text>
</g>
<g >
<title>mapgauge.test (15,160,160,480 samples, 100.00%)</title><rect x="10.0" y="741" width="1180.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="13.00" y="751.5" >mapgauge.test</text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (438,634,578 samples, 2.89%)</title><rect x="832.1" y="565" width="34.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="835.09" y="575.5" >gi..</text>
</g>
<g >
<title>runtime.mallocgc (2,256,596 samples, 0.01%)</title><rect x="382.4" y="405" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="385.37" y="415.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (1,374,828 samples, 0.01%)</title><rect x="255.4" y="389" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="258.37" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,867,175 samples, 0.05%)</title><rect x="1016.6" y="309" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1019.63" y="319.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,940,481 samples, 0.05%)</title><rect x="1151.3" y="405" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1154.34" y="415.5" ></text>
</g>
<g >
<title>x86_pmu_enable (2,941,723 samples, 0.02%)</title><rect x="46.2" y="549" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="49.20" y="559.5" ></text>
</g>
<g >
<title>schedule (1,455,732 samples, 0.01%)</title><rect x="148.5" y="533" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="151.54" y="543.5" ></text>
</g>
<g >
<title>runtime.findRunnable (2,278,783 samples, 0.02%)</title><rect x="50.7" y="629" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="53.72" y="639.5" ></text>
</g>
<g >
<title>__alloc_pages (6,167,768 samples, 0.04%)</title><rect x="1151.4" y="357" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1154.40" y="367.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,072,611 samples, 0.01%)</title><rect x="923.3" y="261" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="926.29" y="271.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (265,936,670 samples, 1.75%)</title><rect x="1095.7" y="421" width="20.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1098.73" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,001,614 samples, 0.02%)</title><rect x="386.9" y="373" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="389.88" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (36,087,358 samples, 0.24%)</title><rect x="1053.9" y="437" width="2.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1056.91" y="447.5" ></text>
</g>
<g >
<title>runtime.growslice (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="405" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1010.57" y="415.5" ></text>
</g>
<g >
<title>enqueue_task (17,027,192 samples, 0.11%)</title><rect x="18.4" y="437" width="1.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="21.44" y="447.5" ></text>
</g>
<g >
<title>__radix_tree_replace (1,594,124 samples, 0.01%)</title><rect x="1135.3" y="405" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1138.28" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,944,560 samples, 0.02%)</title><rect x="967.2" y="421" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="970.16" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (1,545,637 samples, 0.01%)</title><rect x="1026.1" y="373" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1029.06" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,563,689 samples, 0.01%)</title><rect x="244.4" y="549" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="247.43" y="559.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (1,017,866,991 samples, 6.71%)</title><rect x="290.7" y="485" width="79.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="293.68" y="495.5" >exit_to_u..</text>
</g>
<g >
<title>locks_remove_posix (6,639,523 samples, 0.04%)</title><rect x="890.8" y="485" width="0.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="893.84" y="495.5" ></text>
</g>
<g >
<title>do_user_addr_fault (26,020,152 samples, 0.17%)</title><rect x="760.0" y="565" width="2.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="763.01" y="575.5" ></text>
</g>
<g >
<title>update_cfs_group (2,690,303 samples, 0.02%)</title><rect x="316.8" y="277" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="319.80" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (6,174,533 samples, 0.04%)</title><rect x="402.3" y="373" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="405.26" y="383.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (8,173,199 samples, 0.05%)</title><rect x="1014.8" y="357" width="0.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1017.75" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,397,360 samples, 0.02%)</title><rect x="279.8" y="501" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="282.78" y="511.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (5,077,537 samples, 0.03%)</title><rect x="302.2" y="373" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="305.19" y="383.5" ></text>
</g>
<g >
<title>do_group_exit (33,252,186 samples, 0.22%)</title><rect x="46.5" y="613" width="2.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="49.49" y="623.5" ></text>
</g>
<g >
<title>runtime.growslice (11,392,186 samples, 0.08%)</title><rect x="984.3" y="437" width="0.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="987.25" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfEnums (2,321,128 samples, 0.02%)</title><rect x="1009.1" y="421" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1012.08" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfMembers (5,306,553 samples, 0.04%)</title><rect x="1009.3" y="421" width="0.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1012.26" y="431.5" ></text>
</g>
<g >
<title>prepare_task_switch (5,029,371 samples, 0.03%)</title><rect x="46.0" y="613" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="49.04" y="623.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1,509,314 samples, 0.01%)</title><rect x="20.6" y="405" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="23.61" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (14,236,579 samples, 0.09%)</title><rect x="381.1" y="405" width="1.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="384.09" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (11,555,722 samples, 0.08%)</title><rect x="1151.2" y="485" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1154.22" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (3,663,897 samples, 0.02%)</title><rect x="766.8" y="549" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="769.77" y="559.5" ></text>
</g>
<g >
<title>runtime.memmove (2,285,177 samples, 0.02%)</title><rect x="1017.3" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1020.35" y="431.5" ></text>
</g>
<g >
<title>sysfs_kf_bin_read (2,271,321 samples, 0.01%)</title><rect x="1016.8" y="213" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1019.81" y="223.5" ></text>
</g>
<g >
<title>sched_clock_cpu (10,799,836 samples, 0.07%)</title><rect x="959.0" y="373" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="962.01" y="383.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (2,277,713 samples, 0.02%)</title><rect x="1110.8" y="357" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1113.83" y="367.5" ></text>
</g>
<g >
<title>bpf_map_put (306,026,582 samples, 2.02%)</title><rect x="301.3" y="405" width="23.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="304.32" y="415.5" >b..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,148,146 samples, 0.01%)</title><rect x="612.7" y="341" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="615.68" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (1,545,731 samples, 0.01%)</title><rect x="1029.3" y="453" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1032.30" y="463.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (22,504,178 samples, 0.15%)</title><rect x="331.4" y="309" width="1.8" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="334.43" y="319.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (47,898,003 samples, 0.32%)</title><rect x="952.1" y="373" width="3.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="955.12" y="383.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (8,173,199 samples, 0.05%)</title><rect x="1014.8" y="341" width="0.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1017.75" y="351.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (9,256,421 samples, 0.06%)</title><rect x="660.1" y="373" width="0.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="663.15" y="383.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (2,015,847 samples, 0.01%)</title><rect x="49.1" y="597" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="52.15" y="607.5" ></text>
</g>
<g >
<title>runtime.forEachP (2,255,359 samples, 0.01%)</title><rect x="50.5" y="645" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="53.48" y="655.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (1,353,390 samples, 0.01%)</title><rect x="1061.8" y="293" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1064.77" y="303.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,499,683 samples, 0.01%)</title><rect x="389.3" y="341" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="392.28" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,375,142 samples, 0.02%)</title><rect x="194.3" y="613" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="197.35" y="623.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (7,661,653 samples, 0.05%)</title><rect x="1011.0" y="309" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1013.97" y="319.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (1,535,369 samples, 0.01%)</title><rect x="47.8" y="421" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="50.76" y="431.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (3,811,703 samples, 0.03%)</title><rect x="388.8" y="309" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="391.81" y="319.5" ></text>
</g>
<g >
<title>runtime.memmove (6,662,660 samples, 0.04%)</title><rect x="1040.8" y="469" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1043.76" y="479.5" ></text>
</g>
<g >
<title>x86_pmu_enable (25,779,785 samples, 0.17%)</title><rect x="331.2" y="325" width="2.0" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="334.17" y="335.5" ></text>
</g>
<g >
<title>pick_next_task (127,058,109 samples, 0.84%)</title><rect x="941.8" y="389" width="9.9" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="944.84" y="399.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3,734,732 samples, 0.02%)</title><rect x="339.5" y="325" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="342.51" y="335.5" ></text>
</g>
<g >
<title>capable (25,406,540 samples, 0.17%)</title><rect x="1130.1" y="453" width="2.0" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="1133.15" y="463.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,148,146 samples, 0.01%)</title><rect x="612.7" y="309" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="615.68" y="319.5" ></text>
</g>
<g >
<title>check_ptr_to_btf_access (2,310,096 samples, 0.02%)</title><rect x="412.6" y="293" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="415.64" y="303.5" ></text>
</g>
<g >
<title>do_wp_page (15,721,044 samples, 0.10%)</title><rect x="992.5" y="309" width="1.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="995.48" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (22,181,779 samples, 0.15%)</title><rect x="1000.4" y="421" width="1.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1003.40" y="431.5" ></text>
</g>
<g >
<title>runtime.greyobject (1,474,366 samples, 0.01%)</title><rect x="1007.7" y="261" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1010.69" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*collectionLoader).loadProgram (448,160,715 samples, 2.96%)</title><rect x="377.9" y="549" width="34.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="380.94" y="559.5" >gi..</text>
</g>
<g >
<title>capable (17,691,251 samples, 0.12%)</title><rect x="814.9" y="437" width="1.4" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="817.92" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (209,231,529 samples, 1.38%)</title><rect x="982.1" y="453" width="16.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="985.11" y="463.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (1,553,854 samples, 0.01%)</title><rect x="984.9" y="389" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="987.90" y="399.5" ></text>
</g>
<g >
<title>vma_alloc_folio (1,508,427 samples, 0.01%)</title><rect x="1024.6" y="309" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1027.56" y="319.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo.func1 (1,561,550 samples, 0.01%)</title><rect x="742.3" y="613" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="745.34" y="623.5" ></text>
</g>
<g >
<title>runtime.typehash (3,112,437 samples, 0.02%)</title><rect x="398.9" y="421" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="401.87" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock (5,155,844 samples, 0.03%)</title><rect x="349.0" y="341" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="351.98" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (8,482,989 samples, 0.06%)</title><rect x="254.5" y="341" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="257.48" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (59,607,539 samples, 0.39%)</title><rect x="17.1" y="565" width="4.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="20.12" y="575.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (3,076,719 samples, 0.02%)</title><rect x="1143.0" y="469" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1146.00" y="479.5" ></text>
</g>
<g >
<title>exit_mm (33,252,186 samples, 0.22%)</title><rect x="46.5" y="581" width="2.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="49.49" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (13,642,706 samples, 0.09%)</title><rect x="390.9" y="405" width="1.0" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="393.87" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (6,862,748 samples, 0.05%)</title><rect x="406.1" y="213" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="409.11" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,087,294 samples, 0.04%)</title><rect x="1078.6" y="533" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1081.60" y="543.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4,083,058 samples, 0.03%)</title><rect x="33.3" y="453" width="0.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="36.33" y="463.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (5,386,430 samples, 0.04%)</title><rect x="634.6" y="357" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="637.56" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,605,604 samples, 0.03%)</title><rect x="915.7" y="341" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="918.69" y="351.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (2,979,509 samples, 0.02%)</title><rect x="820.9" y="485" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="823.95" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_read (2,059,908,014 samples, 13.59%)</title><rect x="539.2" y="453" width="160.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="542.19" y="463.5" >__x64_sys_read</text>
</g>
<g >
<title>allocate_slab (6,044,798 samples, 0.04%)</title><rect x="785.9" y="277" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="788.94" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (4,054,403 samples, 0.03%)</title><rect x="1061.5" y="293" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1064.46" y="303.5" ></text>
</g>
<g >
<title>runtime.makemap (1,514,771 samples, 0.01%)</title><rect x="1040.5" y="469" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1043.46" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,526,959 samples, 0.01%)</title><rect x="770.4" y="501" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="773.41" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,488,192 samples, 0.01%)</title><rect x="703.1" y="565" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="706.08" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,328,961 samples, 0.02%)</title><rect x="1021.0" y="405" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1023.95" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,390,511 samples, 0.01%)</title><rect x="762.2" y="597" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="765.16" y="607.5" ></text>
</g>
<g >
<title>enqueue_task (2,705,383 samples, 0.02%)</title><rect x="148.1" y="485" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="151.09" y="495.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (10,023,927 samples, 0.07%)</title><rect x="333.7" y="293" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="336.72" y="303.5" ></text>
</g>
<g >
<title>do_madvise (6,862,748 samples, 0.05%)</title><rect x="406.1" y="197" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="409.11" y="207.5" ></text>
</g>
<g >
<title>__alloc_pages (2,306,541 samples, 0.02%)</title><rect x="785.9" y="245" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="788.94" y="255.5" ></text>
</g>
<g >
<title>put_prev_entity (4,310,971 samples, 0.03%)</title><rect x="347.7" y="357" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="350.74" y="367.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (418,926,857 samples, 2.76%)</title><rect x="833.0" y="517" width="32.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="836.02" y="527.5" >ru..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).copy (35,364,839 samples, 0.23%)</title><rect x="387.5" y="437" width="2.8" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="390.53" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,523,444 samples, 0.01%)</title><rect x="731.7" y="517" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="734.67" y="527.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,139,027 samples, 0.03%)</title><rect x="941.2" y="229" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="944.21" y="239.5" ></text>
</g>
<g >
<title>runtime.makeslice (22,779,060 samples, 0.15%)</title><rect x="1011.9" y="421" width="1.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1014.91" y="431.5" ></text>
</g>
<g >
<title>runtime.scanblock (4,508,631 samples, 0.03%)</title><rect x="63.8" y="613" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="66.76" y="623.5" ></text>
</g>
<g >
<title>alloc_pages (20,839,263 samples, 0.14%)</title><rect x="1101.7" y="309" width="1.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1104.67" y="319.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (1,496,153 samples, 0.01%)</title><rect x="230.8" y="437" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="233.84" y="447.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (10,029,719 samples, 0.07%)</title><rect x="769.2" y="533" width="0.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="772.21" y="543.5" ></text>
</g>
<g >
<title>clockevents_program_event (1,347,986 samples, 0.01%)</title><rect x="334.6" y="277" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="337.60" y="287.5" ></text>
</g>
<g >
<title>[[vdso]] (5,209,269 samples, 0.03%)</title><rect x="15.8" y="629" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="18.83" y="639.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (3,054,893 samples, 0.02%)</title><rect x="1001.5" y="229" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1004.48" y="239.5" ></text>
</g>
<g >
<title>error_entry (4,531,594 samples, 0.03%)</title><rect x="762.3" y="597" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="765.26" y="607.5" ></text>
</g>
<g >
<title>do_syscall_64 (625,944,996 samples, 4.13%)</title><rect x="777.2" y="501" width="48.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="780.22" y="511.5" >do_s..</text>
</g>
<g >
<title>pick_next_entity (4,294,528 samples, 0.03%)</title><rect x="337.3" y="341" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="340.26" y="351.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (5,560,731 samples, 0.04%)</title><rect x="36.8" y="437" width="0.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="39.77" y="447.5" ></text>
</g>
<g >
<title>runtime.(*hmap).newoverflow (1,552,263 samples, 0.01%)</title><rect x="1037.9" y="437" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1040.88" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (2,317,241 samples, 0.02%)</title><rect x="1077.6" y="613" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1080.65" y="623.5" ></text>
</g>
<g >
<title>__irqentry_text_end (2,307,873 samples, 0.02%)</title><rect x="1034.6" y="437" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1037.64" y="447.5" ></text>
</g>
<g >
<title>__d_instantiate (2,324,425 samples, 0.02%)</title><rect x="800.3" y="373" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="803.26" y="383.5" ></text>
</g>
<g >
<title>runtime.interhash (3,081,062 samples, 0.02%)</title><rect x="985.1" y="437" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="988.14" y="447.5" ></text>
</g>
<g >
<title>runtime.removespecial (19,222,430 samples, 0.13%)</title><rect x="872.5" y="549" width="1.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="875.46" y="559.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (8,472,285 samples, 0.06%)</title><rect x="1072.1" y="389" width="0.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1075.09" y="399.5" ></text>
</g>
<g >
<title>update_curr (21,612,154 samples, 0.14%)</title><rect x="944.9" y="341" width="1.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="947.92" y="351.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,451,062 samples, 0.01%)</title><rect x="1143.4" y="517" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1146.42" y="527.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func1 (35,960,549 samples, 0.24%)</title><rect x="262.0" y="565" width="2.8" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="264.97" y="575.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (1,550,053 samples, 0.01%)</title><rect x="1040.0" y="213" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1042.98" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Spec).Copy (565,628,813 samples, 3.73%)</title><rect x="1019.1" y="501" width="44.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1022.06" y="511.5" >gith..</text>
</g>
<g >
<title>try_to_wake_up (3,331,628 samples, 0.02%)</title><rect x="148.0" y="517" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="151.04" y="527.5" ></text>
</g>
<g >
<title>runtime.newobject (1,546,219 samples, 0.01%)</title><rect x="1025.6" y="437" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1028.58" y="447.5" ></text>
</g>
<g >
<title>alloc_pages (2,306,541 samples, 0.02%)</title><rect x="785.9" y="261" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="788.94" y="271.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (13,737,524 samples, 0.09%)</title><rect x="724.3" y="485" width="1.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="727.32" y="495.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,398,113 samples, 0.01%)</title><rect x="346.9" y="309" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="349.94" y="319.5" ></text>
</g>
<g >
<title>fd_install (1,530,842 samples, 0.01%)</title><rect x="1117.1" y="437" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1120.08" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (5,978,638 samples, 0.04%)</title><rect x="391.4" y="341" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="394.41" y="351.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (2,268,078 samples, 0.01%)</title><rect x="148.9" y="597" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="151.89" y="607.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (1,544,545 samples, 0.01%)</title><rect x="1039.0" y="277" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1041.96" y="287.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (2,776,369 samples, 0.02%)</title><rect x="1043.0" y="309" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1046.01" y="319.5" ></text>
</g>
<g >
<title>sync_regs (3,825,684 samples, 0.03%)</title><rect x="762.6" y="597" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="765.62" y="607.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (18,547,948 samples, 0.12%)</title><rect x="992.4" y="405" width="1.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="995.36" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (23,883,997 samples, 0.16%)</title><rect x="765.5" y="565" width="1.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="768.50" y="575.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (2,776,369 samples, 0.02%)</title><rect x="1043.0" y="325" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1046.01" y="335.5" ></text>
</g>
<g >
<title>rep_movs_alternative (4,632,498 samples, 0.03%)</title><rect x="1136.2" y="469" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1139.18" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (5,767,626 samples, 0.04%)</title><rect x="993.3" y="213" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="996.26" y="223.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,273,780 samples, 0.01%)</title><rect x="1047.6" y="245" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1050.65" y="255.5" ></text>
</g>
<g >
<title>psi_group_change (2,564,243 samples, 0.02%)</title><rect x="19.4" y="405" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="22.44" y="415.5" ></text>
</g>
<g >
<title>__mod_node_page_state (1,529,193 samples, 0.01%)</title><rect x="992.9" y="229" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="995.87" y="239.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (3,539,481 samples, 0.02%)</title><rect x="784.8" y="309" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="787.80" y="319.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (2,272,277 samples, 0.01%)</title><rect x="384.4" y="389" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="387.45" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,375,142 samples, 0.02%)</title><rect x="194.3" y="597" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="197.35" y="607.5" ></text>
</g>
<g >
<title>clear_page_erms (1,557,187 samples, 0.01%)</title><rect x="732.9" y="389" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="735.92" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (5,241,022 samples, 0.03%)</title><rect x="951.2" y="357" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="954.15" y="367.5" ></text>
</g>
<g >
<title>[unknown] (449,538,697 samples, 2.97%)</title><rect x="10.0" y="725" width="35.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="735.5" >[u..</text>
</g>
<g >
<title>__handle_mm_fault (3,054,761 samples, 0.02%)</title><rect x="732.8" y="501" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="735.81" y="511.5" ></text>
</g>
<g >
<title>runtime.entersyscall (9,602,007 samples, 0.06%)</title><rect x="768.5" y="533" width="0.7" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="771.47" y="543.5" ></text>
</g>
<g >
<title>try_to_wake_up (7,346,301 samples, 0.05%)</title><rect x="940.1" y="261" width="0.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="943.08" y="271.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,809,386 samples, 0.03%)</title><rect x="1024.4" y="389" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1027.38" y="399.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (954,823,900 samples, 6.30%)</title><rect x="898.6" y="501" width="74.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="901.56" y="511.5" >exit_to_..</text>
</g>
<g >
<title>handle_mm_fault (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="597" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1191.33" y="607.5" ></text>
</g>
<g >
<title>security_d_instantiate (1,542,219 samples, 0.01%)</title><rect x="800.6" y="373" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="803.62" y="383.5" ></text>
</g>
<g >
<title>exc_page_fault (1,515,061 samples, 0.01%)</title><rect x="1187.5" y="517" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1190.49" y="527.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (45,004,142 samples, 0.30%)</title><rect x="1046.1" y="341" width="3.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1049.07" y="351.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (22,178,605 samples, 0.15%)</title><rect x="802.2" y="421" width="1.8" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="805.25" y="431.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (8,420,898 samples, 0.06%)</title><rect x="1010.9" y="373" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1013.91" y="383.5" ></text>
</g>
<g >
<title>fput (2,501,341 samples, 0.02%)</title><rect x="282.8" y="485" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="285.80" y="495.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (2,470,086 samples, 0.02%)</title><rect x="50.1" y="533" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="53.11" y="543.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,283,842 samples, 0.02%)</title><rect x="50.1" y="485" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="53.13" y="495.5" ></text>
</g>
<g >
<title>psi_flags_change (2,357,872 samples, 0.02%)</title><rect x="353.9" y="357" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="356.88" y="367.5" ></text>
</g>
<g >
<title>sched_clock_cpu (10,993,208 samples, 0.07%)</title><rect x="929.2" y="325" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="932.19" y="335.5" ></text>
</g>
<g >
<title>bpf_map_put (3,067,402 samples, 0.02%)</title><rect x="1067.9" y="405" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1070.94" y="415.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries.func1 (1,442,935,356 samples, 9.52%)</title><rect x="868.5" y="661" width="112.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="871.54" y="671.5" >github.com/EM..</text>
</g>
<g >
<title>perf_ctx_enable (2,283,383 samples, 0.02%)</title><rect x="45.8" y="549" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="48.76" y="559.5" ></text>
</g>
<g >
<title>sysfs_kf_bin_read (1,541,011 samples, 0.01%)</title><rect x="1011.1" y="197" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1014.15" y="207.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (55,264,884 samples, 0.36%)</title><rect x="477.0" y="565" width="4.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="480.03" y="575.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (3,071,065 samples, 0.02%)</title><rect x="1011.0" y="213" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1014.03" y="223.5" ></text>
</g>
<g >
<title>update_rq_clock (2,060,833 samples, 0.01%)</title><rect x="930.2" y="357" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="933.21" y="367.5" ></text>
</g>
<g >
<title>[unknown] (6,899,165 samples, 0.05%)</title><rect x="10.0" y="677" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="687.5" ></text>
</g>
<g >
<title>runtime.park_m (1,734,894 samples, 0.01%)</title><rect x="244.4" y="645" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="247.42" y="655.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (2,275,455 samples, 0.02%)</title><rect x="1143.2" y="485" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1146.24" y="495.5" ></text>
</g>
<g >
<title>__schedule (3,860,940 samples, 0.03%)</title><rect x="14.3" y="517" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="17.30" y="527.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (1,551,308 samples, 0.01%)</title><rect x="402.9" y="437" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="405.92" y="447.5" ></text>
</g>
<g >
<title>do_nanosleep (207,526,243 samples, 1.37%)</title><rect x="25.8" y="565" width="16.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="28.78" y="575.5" ></text>
</g>
<g >
<title>vfs_read (67,146,609 samples, 0.44%)</title><rect x="1067.6" y="437" width="5.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1070.59" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,523,800 samples, 0.03%)</title><rect x="1081.3" y="533" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1084.27" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (28,191,956 samples, 0.19%)</title><rect x="1002.8" y="421" width="2.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1005.78" y="431.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (2,057,330 samples, 0.01%)</title><rect x="292.1" y="469" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="295.06" y="479.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (2,287,849 samples, 0.02%)</title><rect x="920.3" y="325" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="923.35" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock (5,820,574 samples, 0.04%)</title><rect x="324.1" y="373" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="327.09" y="383.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (1,510,580 samples, 0.01%)</title><rect x="49.2" y="581" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="52.19" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Pointer).copy (3,837,415 samples, 0.03%)</title><rect x="1025.4" y="453" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1028.40" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (2,122,051 samples, 0.01%)</title><rect x="766.8" y="501" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="769.83" y="511.5" ></text>
</g>
<g >
<title>array_map_free_timers (1,873,346 samples, 0.01%)</title><rect x="301.2" y="405" width="0.1" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="304.17" y="415.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (9,190,272 samples, 0.06%)</title><rect x="496.5" y="581" width="0.7" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="499.49" y="591.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (2,496,529 samples, 0.02%)</title><rect x="910.0" y="405" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="913.00" y="415.5" ></text>
</g>
<g >
<title>available_idle_cpu (3,190,012 samples, 0.02%)</title><rect x="310.2" y="293" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="313.15" y="303.5" ></text>
</g>
<g >
<title>runtime.markroot (1,534,900 samples, 0.01%)</title><rect x="1080.7" y="469" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1083.68" y="479.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1,365,796 samples, 0.01%)</title><rect x="251.0" y="485" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="253.95" y="495.5" ></text>
</g>
<g >
<title>queue_work_on (253,679,873 samples, 1.67%)</title><rect x="305.3" y="389" width="19.7" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="308.28" y="399.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (6,179,644 samples, 0.04%)</title><rect x="549.2" y="389" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="552.18" y="399.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (6,929,220 samples, 0.05%)</title><rect x="1072.2" y="373" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1075.15" y="383.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (32,666,505 samples, 0.22%)</title><rect x="302.7" y="373" width="2.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="305.73" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (821,118,825 samples, 5.42%)</title><rect x="768.1" y="581" width="63.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="771.12" y="591.5" >github...</text>
</g>
<g >
<title>place_entity (3,163,193 samples, 0.02%)</title><rect x="314.8" y="261" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="317.80" y="271.5" ></text>
</g>
<g >
<title>schedule (21,256,723 samples, 0.14%)</title><rect x="11.6" y="485" width="1.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="14.56" y="495.5" ></text>
</g>
<g >
<title>runtime.newobject (2,266,919 samples, 0.01%)</title><rect x="387.4" y="421" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="390.35" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,691,993 samples, 0.03%)</title><rect x="50.1" y="661" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="53.06" y="671.5" ></text>
</g>
<g >
<title>do_madvise (7,854,563 samples, 0.05%)</title><rect x="256.7" y="517" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="259.70" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Pointer).copy (3,780,426 samples, 0.02%)</title><rect x="387.2" y="437" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="390.23" y="447.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (1,785,502 samples, 0.01%)</title><rect x="369.9" y="485" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="372.94" y="495.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (8,381,034 samples, 0.06%)</title><rect x="1132.4" y="453" width="0.7" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1135.42" y="463.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (15,833,420 samples, 0.10%)</title><rect x="1054.8" y="245" width="1.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1057.80" y="255.5" ></text>
</g>
<g >
<title>strings.LastIndex (10,730,264 samples, 0.07%)</title><rect x="983.4" y="421" width="0.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="986.42" y="431.5" ></text>
</g>
<g >
<title>memset_orig (1,544,696 samples, 0.01%)</title><rect x="809.1" y="277" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="812.08" y="287.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,540,120 samples, 0.01%)</title><rect x="1025.7" y="389" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1028.70" y="399.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (1,502,947 samples, 0.01%)</title><rect x="387.1" y="341" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="390.12" y="351.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (19,762,142 samples, 0.13%)</title><rect x="42.2" y="597" width="1.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="45.21" y="607.5" ></text>
</g>
<g >
<title>clear_page_erms (2,270,158 samples, 0.01%)</title><rect x="1001.7" y="229" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1004.72" y="239.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (1,601,848 samples, 0.01%)</title><rect x="1103.2" y="245" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1106.16" y="255.5" ></text>
</g>
<g >
<title>do_futex (36,282,046 samples, 0.24%)</title><rect x="253.2" y="485" width="2.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="256.16" y="495.5" ></text>
</g>
<g >
<title>enqueue_task_fair (1,905,868 samples, 0.01%)</title><rect x="333.9" y="197" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="336.89" y="207.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (9,043,260 samples, 0.06%)</title><rect x="1012.7" y="325" width="0.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1015.69" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (3,793,718 samples, 0.03%)</title><rect x="1047.6" y="277" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1050.65" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (7,186,315 samples, 0.05%)</title><rect x="22.5" y="565" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="25.50" y="575.5" ></text>
</g>
<g >
<title>__alloc_pages (3,053,219 samples, 0.02%)</title><rect x="406.4" y="85" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="409.40" y="95.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (1,503,434 samples, 0.01%)</title><rect x="382.4" y="389" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="385.37" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,492,584 samples, 0.01%)</title><rect x="1018.2" y="341" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1021.23" y="351.5" ></text>
</g>
<g >
<title>pick_next_task (160,407,577 samples, 1.06%)</title><rect x="335.7" y="373" width="12.5" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="338.72" y="383.5" ></text>
</g>
<g >
<title>prepare_task_switch (1,374,828 samples, 0.01%)</title><rect x="255.4" y="405" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="258.37" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (8,009,138 samples, 0.05%)</title><rect x="22.5" y="581" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="25.50" y="591.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (18,799,049 samples, 0.12%)</title><rect x="362.9" y="357" width="1.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="365.85" y="367.5" ></text>
</g>
<g >
<title>__folio_alloc (1,557,187 samples, 0.01%)</title><rect x="732.9" y="437" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="735.92" y="447.5" ></text>
</g>
<g >
<title>enqueue_entity (29,327,585 samples, 0.19%)</title><rect x="921.4" y="293" width="2.3" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="924.40" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (8,482,989 samples, 0.06%)</title><rect x="254.5" y="309" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="257.48" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,102,435 samples, 0.02%)</title><rect x="364.6" y="405" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="367.61" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (5,978,638 samples, 0.04%)</title><rect x="391.4" y="357" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="394.41" y="367.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (1,498,753 samples, 0.01%)</title><rect x="382.6" y="389" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="385.61" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (17,020,397 samples, 0.11%)</title><rect x="992.5" y="389" width="1.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="995.48" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (3,859,120 samples, 0.03%)</title><rect x="402.4" y="245" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="405.38" y="255.5" ></text>
</g>
<g >
<title>psi_task_change (40,462,385 samples, 0.27%)</title><rect x="317.5" y="293" width="3.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="320.46" y="303.5" ></text>
</g>
<g >
<title>runtime.newMarkBits (4,902,514 samples, 0.03%)</title><rect x="251.2" y="645" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="254.23" y="655.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,025,179 samples, 0.01%)</title><rect x="903.8" y="437" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="906.79" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,909,593 samples, 0.05%)</title><rect x="732.7" y="565" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="735.75" y="575.5" ></text>
</g>
<g >
<title>idr_get_next (234,028,605 samples, 1.54%)</title><rect x="636.3" y="357" width="18.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="639.30" y="367.5" ></text>
</g>
<g >
<title>memset_orig (1,501,361 samples, 0.01%)</title><rect x="1115.1" y="373" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1118.13" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,617,754 samples, 0.03%)</title><rect x="1100.0" y="245" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1103.00" y="255.5" ></text>
</g>
<g >
<title>radix_tree_node_alloc.constprop.0 (1,541,436 samples, 0.01%)</title><rect x="1135.1" y="405" width="0.1" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="1138.10" y="415.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,502,069 samples, 0.02%)</title><rect x="333.2" y="357" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="336.21" y="367.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (1,549,836 samples, 0.01%)</title><rect x="795.0" y="261" width="0.1" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="797.96" y="271.5" ></text>
</g>
<g >
<title>dput (2,302,442 samples, 0.02%)</title><rect x="49.4" y="597" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="52.36" y="607.5" ></text>
</g>
<g >
<title>new_slab (40,938,556 samples, 0.27%)</title><rect x="806.1" y="341" width="3.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="809.13" y="351.5" ></text>
</g>
<g >
<title>new_slab (6,044,798 samples, 0.04%)</title><rect x="785.9" y="293" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="788.94" y="303.5" ></text>
</g>
<g >
<title>mas_walk (1,445,103 samples, 0.01%)</title><rect x="997.4" y="357" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1000.44" y="367.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (2,074,395 samples, 0.01%)</title><rect x="996.7" y="229" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="999.69" y="239.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).disown (62,872,395 samples, 0.41%)</title><rect x="260.8" y="613" width="4.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="263.75" y="623.5" ></text>
</g>
<g >
<title>strings.LastIndex (17,804,988 samples, 0.12%)</title><rect x="403.9" y="437" width="1.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="406.94" y="447.5" ></text>
</g>
<g >
<title>runtime.netpoll (3,020,749 samples, 0.02%)</title><rect x="16.2" y="645" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="19.24" y="655.5" ></text>
</g>
<g >
<title>ptep_clear_flush (1,365,796 samples, 0.01%)</title><rect x="251.0" y="501" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="253.95" y="511.5" ></text>
</g>
<g >
<title>_copy_from_user (1,543,554 samples, 0.01%)</title><rect x="820.7" y="469" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="823.65" y="479.5" ></text>
</g>
<g >
<title>handle_pte_fault (9,235,634 samples, 0.06%)</title><rect x="1026.7" y="341" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1029.72" y="351.5" ></text>
</g>
<g >
<title>anon_inode_getfd (1,549,355 samples, 0.01%)</title><rect x="779.7" y="453" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="782.68" y="463.5" ></text>
</g>
<g >
<title>irqentry_exit (1,522,941 samples, 0.01%)</title><rect x="762.0" y="565" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="765.04" y="575.5" ></text>
</g>
<g >
<title>__slab_free (11,964,487 samples, 0.08%)</title><rect x="360.0" y="357" width="1.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="363.03" y="367.5" ></text>
</g>
<g >
<title>memcpy_orig (2,276,910 samples, 0.02%)</title><rect x="1115.3" y="389" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1118.31" y="399.5" ></text>
</g>
<g >
<title>native_write_msr (8,754,836 samples, 0.06%)</title><rect x="27.7" y="485" width="0.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="30.74" y="495.5" ></text>
</g>
<g >
<title>runtime.scanobject (2,189,809,760 samples, 14.44%)</title><rect x="73.4" y="645" width="170.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="76.39" y="655.5" >runtime.scanobject</text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (431,413,079 samples, 2.85%)</title><rect x="1150.7" y="533" width="33.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1153.67" y="543.5" >ru..</text>
</g>
<g >
<title>runtime.markroot (5,327,118 samples, 0.04%)</title><rect x="1012.7" y="293" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1015.69" y="303.5" ></text>
</g>
<g >
<title>do_madvise (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="581" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1192.69" y="591.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,226,150 samples, 0.01%)</title><rect x="1041.0" y="357" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1044.05" y="367.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (455,132,188 samples, 3.00%)</title><rect x="619.6" y="373" width="35.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="622.57" y="383.5" >bpf..</text>
</g>
<g >
<title>finish_task_switch.isra.0 (79,519,338 samples, 0.52%)</title><rect x="935.6" y="389" width="6.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="938.65" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (11,465,797 samples, 0.08%)</title><rect x="981.0" y="453" width="0.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="984.04" y="463.5" ></text>
</g>
<g >
<title>task_work_add (1,688,498 samples, 0.01%)</title><rect x="282.0" y="453" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="285.00" y="463.5" ></text>
</g>
<g >
<title>pick_next_task (59,801,990 samples, 0.39%)</title><rect x="33.9" y="517" width="4.7" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="36.90" y="527.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,517,249 samples, 0.01%)</title><rect x="1047.7" y="213" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1050.71" y="223.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (13,987,294 samples, 0.09%)</title><rect x="322.0" y="261" width="1.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="324.99" y="271.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,054,761 samples, 0.02%)</title><rect x="732.8" y="469" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="735.81" y="479.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,093,217 samples, 0.02%)</title><rect x="1080.9" y="549" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1083.86" y="559.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (3,632,845 samples, 0.02%)</title><rect x="973.3" y="517" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="976.28" y="527.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (5,664,872 samples, 0.04%)</title><rect x="969.8" y="421" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="972.79" y="431.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (1,513,295 samples, 0.01%)</title><rect x="50.5" y="597" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="53.54" y="607.5" ></text>
</g>
<g >
<title>apparmor_file_permission (2,342,596 samples, 0.02%)</title><rect x="699.3" y="373" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="702.28" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,871,503 samples, 0.01%)</title><rect x="939.4" y="373" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="942.42" y="383.5" ></text>
</g>
<g >
<title>memset_orig (6,747,164 samples, 0.04%)</title><rect x="813.2" y="373" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="816.16" y="383.5" ></text>
</g>
<g >
<title>mntget (3,067,896 samples, 0.02%)</title><rect x="1116.2" y="405" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1119.19" y="415.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (3,056,445 samples, 0.02%)</title><rect x="1185.2" y="453" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1188.20" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,100,723 samples, 0.04%)</title><rect x="1016.7" y="293" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1019.69" y="303.5" ></text>
</g>
<g >
<title>runtime.newarray (48,025,714 samples, 0.32%)</title><rect x="1046.0" y="437" width="3.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1049.01" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (1,557,187 samples, 0.01%)</title><rect x="732.9" y="421" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="735.92" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (1,502,419 samples, 0.01%)</title><rect x="385.0" y="357" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="388.04" y="367.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (2,238,810 samples, 0.01%)</title><rect x="1007.3" y="293" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1010.34" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mheap).initSpan (5,285,208 samples, 0.03%)</title><rect x="724.4" y="437" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="727.38" y="447.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (14,664,399 samples, 0.10%)</title><rect x="47.9" y="421" width="1.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="50.93" y="431.5" ></text>
</g>
<g >
<title>cpuacct_charge (2,558,391 samples, 0.02%)</title><rect x="30.7" y="453" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="33.72" y="463.5" ></text>
</g>
<g >
<title>error_entry (2,299,669 samples, 0.02%)</title><rect x="10.3" y="645" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.30" y="655.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,519,643 samples, 0.01%)</title><rect x="983.2" y="373" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="986.24" y="383.5" ></text>
</g>
<g >
<title>runtime.markroot.func1 (18,054,605 samples, 0.12%)</title><rect x="62.4" y="629" width="1.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="65.36" y="639.5" ></text>
</g>
<g >
<title>apparmor_capable (3,864,204 samples, 0.03%)</title><rect x="1130.2" y="437" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1133.21" y="447.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (10,574,346 samples, 0.07%)</title><rect x="1187.1" y="645" width="0.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1190.08" y="655.5" ></text>
</g>
<g >
<title>runtime.removefinalizer (34,844,035 samples, 0.23%)</title><rect x="262.0" y="549" width="2.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="265.01" y="559.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (1,538,545 samples, 0.01%)</title><rect x="831.9" y="533" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="834.91" y="543.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (277,337,481 samples, 1.83%)</title><rect x="23.2" y="645" width="21.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="26.25" y="655.5" >r..</text>
</g>
<g >
<title>runtime.scanobject (27,017,935 samples, 0.18%)</title><rect x="986.0" y="277" width="2.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="988.96" y="287.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (2,238,810 samples, 0.01%)</title><rect x="1007.3" y="277" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1010.34" y="287.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (342,067,317 samples, 2.26%)</title><rect x="665.6" y="357" width="26.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="668.56" y="367.5" >b..</text>
</g>
<g >
<title>flush_tlb_mm_range (2,103,442 samples, 0.01%)</title><rect x="993.0" y="261" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="995.99" y="271.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,548,595 samples, 0.01%)</title><rect x="1113.0" y="341" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1116.04" y="351.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Close (1,561,550 samples, 0.01%)</title><rect x="742.3" y="565" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="745.34" y="575.5" ></text>
</g>
<g >
<title>close_fd (2,222,656 samples, 0.01%)</title><rect x="283.5" y="517" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="286.50" y="527.5" ></text>
</g>
<g >
<title>runtime.scanobject (6,683,609 samples, 0.04%)</title><rect x="1014.9" y="293" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1017.87" y="303.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (12,041,792 samples, 0.08%)</title><rect x="790.6" y="341" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="793.60" y="351.5" ></text>
</g>
<g >
<title>pick_next_task (13,427,364 samples, 0.09%)</title><rect x="254.3" y="405" width="1.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="257.33" y="415.5" ></text>
</g>
<g >
<title>memset_orig (3,085,047 samples, 0.02%)</title><rect x="1128.1" y="389" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1131.11" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mspan).refillAllocCache (3,067,665 samples, 0.02%)</title><rect x="726.9" y="533" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="729.95" y="543.5" ></text>
</g>
<g >
<title>try_to_wake_up (4,889,793 samples, 0.03%)</title><rect x="333.8" y="245" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="336.81" y="255.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (1,325,680 samples, 0.01%)</title><rect x="928.8" y="261" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="931.82" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (1,518,693 samples, 0.01%)</title><rect x="1186.7" y="613" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1189.68" y="623.5" ></text>
</g>
<g >
<title>get_random_u32 (1,525,639 samples, 0.01%)</title><rect x="1103.6" y="277" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1106.59" y="287.5" ></text>
</g>
<g >
<title>runtime.rt0_go.abi0 (1,997,016 samples, 0.01%)</title><rect x="1189.5" y="725" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1192.54" y="735.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (1,467,716 samples, 0.01%)</title><rect x="1006.2" y="245" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1009.22" y="255.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,193,059 samples, 0.04%)</title><rect x="1021.8" y="373" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1024.80" y="383.5" ></text>
</g>
<g >
<title>runtime.addspecial (394,620,708 samples, 2.60%)</title><rect x="1152.3" y="501" width="30.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1155.30" y="511.5" >ru..</text>
</g>
<g >
<title>runtime.greyobject (471,851,170 samples, 3.11%)</title><rect x="195.1" y="629" width="36.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="198.08" y="639.5" >run..</text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,564,250 samples, 0.01%)</title><rect x="13.5" y="533" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="16.47" y="543.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,272,277 samples, 0.01%)</title><rect x="384.4" y="373" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="387.45" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,523,800 samples, 0.03%)</title><rect x="1081.3" y="485" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1084.27" y="495.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (2,428,656 samples, 0.02%)</title><rect x="928.7" y="293" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="931.74" y="303.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (15,833,420 samples, 0.10%)</title><rect x="1054.8" y="261" width="1.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1057.80" y="271.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (412,352,108 samples, 2.72%)</title><rect x="833.1" y="501" width="32.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="836.08" y="511.5" >ru..</text>
</g>
<g >
<title>__anon_inode_getfile (278,007,883 samples, 1.83%)</title><rect x="1095.4" y="437" width="21.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1098.45" y="447.5" >_..</text>
</g>
<g >
<title>runtime.doInit1 (3,129,117 samples, 0.02%)</title><rect x="257.5" y="693" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="260.54" y="703.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,491,849 samples, 0.01%)</title><rect x="147.7" y="629" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="150.66" y="639.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (3,027,978 samples, 0.02%)</title><rect x="1045.3" y="389" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1048.31" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (17,114,220 samples, 0.11%)</title><rect x="996.1" y="357" width="1.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="999.05" y="367.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (1,523,444 samples, 0.01%)</title><rect x="731.7" y="501" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="734.67" y="511.5" ></text>
</g>
<g >
<title>update_curr (1,404,431 samples, 0.01%)</title><rect x="19.1" y="373" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="22.08" y="383.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,192,635 samples, 0.01%)</title><rect x="1045.7" y="437" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1048.66" y="447.5" ></text>
</g>
<g >
<title>do_wp_page (1,554,707 samples, 0.01%)</title><rect x="1021.0" y="357" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1024.01" y="367.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1,331,123 samples, 0.01%)</title><rect x="1055.9" y="229" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1058.87" y="239.5" ></text>
</g>
<g >
<title>runtime.greyobject (27,614,002 samples, 0.18%)</title><rect x="59.1" y="645" width="2.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="62.09" y="655.5" ></text>
</g>
<g >
<title>runtime.getempty (1,515,061 samples, 0.01%)</title><rect x="1187.5" y="549" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1190.49" y="559.5" ></text>
</g>
<g >
<title>tick_sched_timer (1,378,924 samples, 0.01%)</title><rect x="148.3" y="549" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="151.32" y="559.5" ></text>
</g>
<g >
<title>runtime.stealWork (1,747,898 samples, 0.01%)</title><rect x="252.6" y="581" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="255.65" y="591.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,519,643 samples, 0.01%)</title><rect x="983.2" y="389" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="986.24" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (33,998,875 samples, 0.22%)</title><rect x="806.3" y="293" width="2.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="809.32" y="303.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (2,188,665 samples, 0.01%)</title><rect x="992.8" y="245" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="995.82" y="255.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,054,761 samples, 0.02%)</title><rect x="732.8" y="485" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="735.81" y="495.5" ></text>
</g>
<g >
<title>handle_pte_fault (25,587,870 samples, 0.17%)</title><rect x="1060.1" y="373" width="1.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1063.05" y="383.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (7,285,859 samples, 0.05%)</title><rect x="256.7" y="485" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="259.75" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (9,043,260 samples, 0.06%)</title><rect x="1012.7" y="357" width="0.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1015.69" y="367.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func1 (2,545,171 samples, 0.02%)</title><rect x="261.5" y="581" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="264.51" y="591.5" ></text>
</g>
<g >
<title>rcu_do_batch (9,046,209 samples, 0.06%)</title><rect x="334.9" y="245" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="337.87" y="255.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,540,120 samples, 0.01%)</title><rect x="1025.7" y="341" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1028.70" y="351.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (2,898,119 samples, 0.02%)</title><rect x="256.7" y="405" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="259.75" y="415.5" ></text>
</g>
<g >
<title>perf_ctx_disable (1,405,892 samples, 0.01%)</title><rect x="12.8" y="405" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="15.77" y="415.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (119,961,122 samples, 0.79%)</title><rect x="234.4" y="629" width="9.4" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="237.44" y="639.5" ></text>
</g>
<g >
<title>pick_next_task (1,695,405 samples, 0.01%)</title><rect x="960.1" y="405" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="963.11" y="415.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="437" width="0.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1083.14" y="447.5" ></text>
</g>
<g >
<title>unmap_single_vma (28,034,050 samples, 0.18%)</title><rect x="46.9" y="501" width="2.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="49.89" y="511.5" ></text>
</g>
<g >
<title>runtime.newobject (7,785,690 samples, 0.05%)</title><rect x="865.6" y="549" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="868.63" y="559.5" ></text>
</g>
<g >
<title>timerqueue_add (3,346,127 samples, 0.02%)</title><rect x="26.3" y="501" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="29.30" y="511.5" ></text>
</g>
<g >
<title>pick_next_task (4,048,018 samples, 0.03%)</title><rect x="12.4" y="453" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="15.38" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,255,359 samples, 0.01%)</title><rect x="50.5" y="677" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="53.48" y="687.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (8,420,898 samples, 0.06%)</title><rect x="1010.9" y="325" width="0.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1013.91" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign (1,061,061,690 samples, 7.00%)</title><rect x="980.9" y="613" width="82.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="983.92" y="623.5" >github.co..</text>
</g>
<g >
<title>collapse_huge_page (6,862,748 samples, 0.05%)</title><rect x="406.1" y="117" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="409.11" y="127.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,636,074 samples, 0.01%)</title><rect x="1188.1" y="533" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1191.08" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.ProgLoad (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="533" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1066.20" y="543.5" ></text>
</g>
<g >
<title>tick_sched_handle (2,543,605 samples, 0.02%)</title><rect x="334.3" y="261" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="337.29" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (3,087,520 samples, 0.02%)</title><rect x="263.6" y="517" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="266.61" y="527.5" ></text>
</g>
<g >
<title>gcWriteBarrier (6,732,168 samples, 0.04%)</title><rect x="391.3" y="389" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="394.35" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,065,996 samples, 0.01%)</title><rect x="295.9" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="298.87" y="431.5" ></text>
</g>
<g >
<title>clear_page_erms (14,588,019 samples, 0.10%)</title><rect x="760.6" y="421" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="763.61" y="431.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (7,710,786 samples, 0.05%)</title><rect x="745.9" y="613" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="748.88" y="623.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (1,467,716 samples, 0.01%)</title><rect x="1006.2" y="213" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1009.22" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,328,961 samples, 0.02%)</title><rect x="1021.0" y="389" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1023.95" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (3,064,593 samples, 0.02%)</title><rect x="1006.0" y="261" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1008.98" y="271.5" ></text>
</g>
<g >
<title>setup_object (1,512,337 samples, 0.01%)</title><rect x="1103.7" y="293" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1106.71" y="303.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (723,942,507 samples, 4.78%)</title><rect x="556.5" y="373" width="56.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="559.50" y="383.5" >__bpf..</text>
</g>
<g >
<title>find_busiest_group (6,018,634 samples, 0.04%)</title><rect x="36.7" y="453" width="0.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="39.74" y="463.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (4,202,794 samples, 0.03%)</title><rect x="916.6" y="325" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="919.57" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,123,151 samples, 0.02%)</title><rect x="333.4" y="357" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="336.41" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (3,881,354 samples, 0.03%)</title><rect x="866.8" y="597" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="869.81" y="607.5" ></text>
</g>
<g >
<title>seq_write (13,599,468 samples, 0.09%)</title><rect x="690.5" y="325" width="1.0" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="693.47" y="335.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (18,389,392 samples, 0.12%)</title><rect x="904.5" y="437" width="1.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="907.47" y="447.5" ></text>
</g>
<g >
<title>array_map_alloc (140,235,077 samples, 0.93%)</title><rect x="1118.8" y="453" width="10.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1121.76" y="463.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (430,116,417 samples, 2.84%)</title><rect x="832.2" y="549" width="33.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="835.15" y="559.5" >ru..</text>
</g>
<g >
<title>runtime.memmove (152,179,391 samples, 1.00%)</title><rect x="751.1" y="613" width="11.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="754.07" y="623.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (4,590,814 samples, 0.03%)</title><rect x="984.7" y="405" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="987.72" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,176,821,267 samples, 7.76%)</title><rect x="882.5" y="565" width="91.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="885.49" y="575.5" >entry_SYSC..</text>
</g>
<g >
<title>enqueue_task_fair (1,903,767 samples, 0.01%)</title><rect x="940.2" y="213" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="943.22" y="223.5" ></text>
</g>
<g >
<title>fd_install (6,776,120 samples, 0.04%)</title><rect x="801.7" y="421" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="804.72" y="431.5" ></text>
</g>
<g >
<title>consume_obj_stock (1,441,025 samples, 0.01%)</title><rect x="790.3" y="341" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="793.32" y="351.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (2,063,295 samples, 0.01%)</title><rect x="12.4" y="341" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="15.45" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,956,519 samples, 0.05%)</title><rect x="1022.4" y="421" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1025.40" y="431.5" ></text>
</g>
<g >
<title>__d_instantiate (2,999,492 samples, 0.02%)</title><rect x="1115.5" y="389" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1118.48" y="399.5" ></text>
</g>
<g >
<title>ttwu_do_activate (5,823,761 samples, 0.04%)</title><rect x="940.2" y="245" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="943.18" y="255.5" ></text>
</g>
<g >
<title>____fput (2,302,442 samples, 0.02%)</title><rect x="49.4" y="629" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="52.36" y="639.5" ></text>
</g>
<g >
<title>runtime.stkbucket (1,487,296 samples, 0.01%)</title><rect x="747.9" y="549" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="750.91" y="559.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (3,796,602 samples, 0.03%)</title><rect x="1113.2" y="341" width="0.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1116.22" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1,416,492 samples, 0.01%)</title><rect x="916.9" y="341" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="919.91" y="351.5" ></text>
</g>
<g >
<title>__cond_resched (1,766,178 samples, 0.01%)</title><rect x="291.8" y="469" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="294.84" y="479.5" ></text>
</g>
<g >
<title>mod_objcg_state (2,183,751 samples, 0.01%)</title><rect x="811.6" y="341" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="814.56" y="351.5" ></text>
</g>
<g >
<title>check_mem_access (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="325" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1066.20" y="335.5" ></text>
</g>
<g >
<title>call_rcu (13,449,811 samples, 0.09%)</title><rect x="325.4" y="421" width="1.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="328.42" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (6,862,748 samples, 0.05%)</title><rect x="406.1" y="405" width="0.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="409.11" y="415.5" ></text>
</g>
<g >
<title>allocate_slab (6,161,042 samples, 0.04%)</title><rect x="1099.9" y="293" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1102.94" y="303.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (14,636,083,264 samples, 96.54%)</title><rect x="50.0" y="725" width="1139.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="53.02" y="735.5" >runtime.goexit.abi0</text>
</g>
<g >
<title>runtime.newobject (10,040,405 samples, 0.07%)</title><rect x="383.6" y="421" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="386.61" y="431.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (2,036,114 samples, 0.01%)</title><rect x="1060.5" y="325" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1063.47" y="335.5" ></text>
</g>
<g >
<title>runtime.scanstack (1,984,961 samples, 0.01%)</title><rect x="62.8" y="613" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="65.81" y="623.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (1,537,556 samples, 0.01%)</title><rect x="767.2" y="533" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="770.18" y="543.5" ></text>
</g>
<g >
<title>[unknown] (61,788,624 samples, 0.41%)</title><rect x="10.0" y="709" width="4.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="719.5" ></text>
</g>
<g >
<title>get_timespec64 (3,447,128 samples, 0.02%)</title><rect x="25.1" y="581" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="28.09" y="591.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (3,683,500 samples, 0.02%)</title><rect x="26.3" y="517" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="29.28" y="527.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,287,538 samples, 0.01%)</title><rect x="940.7" y="277" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="943.68" y="287.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (359,559,867 samples, 2.37%)</title><rect x="502.5" y="581" width="28.0" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="505.47" y="591.5" >s..</text>
</g>
<g >
<title>exc_page_fault (1,492,584 samples, 0.01%)</title><rect x="1018.2" y="373" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1021.23" y="383.5" ></text>
</g>
<g >
<title>sched_clock_cpu (5,248,615 samples, 0.03%)</title><rect x="40.9" y="501" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="43.93" y="511.5" ></text>
</g>
<g >
<title>error_entry (1,480,894 samples, 0.01%)</title><rect x="991.7" y="421" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="994.66" y="431.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (1,546,782 samples, 0.01%)</title><rect x="1025.1" y="389" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1028.10" y="399.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (1,523,444 samples, 0.01%)</title><rect x="731.7" y="549" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="734.67" y="559.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,104,338 samples, 0.02%)</title><rect x="781.5" y="437" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="784.53" y="447.5" ></text>
</g>
<g >
<title>runtime.mapassign (74,479,391 samples, 0.49%)</title><rect x="988.3" y="437" width="5.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="991.30" y="447.5" ></text>
</g>
<g >
<title>do_wp_page (1,496,153 samples, 0.01%)</title><rect x="230.8" y="517" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="233.84" y="527.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (3,053,219 samples, 0.02%)</title><rect x="406.4" y="101" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="409.40" y="111.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (239,129,558 samples, 1.58%)</title><rect x="507.3" y="565" width="18.6" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="510.33" y="575.5" ></text>
</g>
<g >
<title>runtime.lock2 (2,288,154 samples, 0.02%)</title><rect x="864.6" y="485" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="867.64" y="495.5" ></text>
</g>
<g >
<title>filp_close (35,240,380 samples, 0.23%)</title><rect x="888.9" y="501" width="2.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="891.91" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (17,592,843 samples, 0.12%)</title><rect x="1000.5" y="373" width="1.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1003.52" y="383.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="501" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1066.20" y="511.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="677" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1192.69" y="687.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (26,158,097 samples, 0.17%)</title><rect x="1064.2" y="613" width="2.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1067.17" y="623.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (1,469,977 samples, 0.01%)</title><rect x="1045.5" y="437" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1048.55" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign.func1 (1,061,061,690 samples, 7.00%)</title><rect x="980.9" y="581" width="82.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="983.92" y="591.5" >github.co..</text>
</g>
<g >
<title>__d_alloc (95,305,875 samples, 0.63%)</title><rect x="792.7" y="373" width="7.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="795.72" y="383.5" ></text>
</g>
<g >
<title>flush_tlb_func (2,268,078 samples, 0.01%)</title><rect x="148.9" y="549" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="151.89" y="559.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (3,029,072 samples, 0.02%)</title><rect x="231.1" y="549" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="234.11" y="559.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfType (6,113,447 samples, 0.04%)</title><rect x="1010.0" y="421" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1012.97" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_close (51,390,796 samples, 0.34%)</title><rect x="888.3" y="533" width="4.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="891.34" y="543.5" ></text>
</g>
<g >
<title>runtime.notesleep (33,942,304 samples, 0.22%)</title><rect x="11.2" y="613" width="2.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="14.17" y="623.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (27,645,814 samples, 0.18%)</title><rect x="1133.4" y="437" width="2.1" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="1136.37" y="447.5" ></text>
</g>
<g >
<title>rb_next (1,491,925 samples, 0.01%)</title><rect x="949.9" y="357" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="952.93" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (1,519,643 samples, 0.01%)</title><rect x="983.2" y="421" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="986.24" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (34,542,626 samples, 0.23%)</title><rect x="985.4" y="325" width="2.7" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="988.38" y="335.5" ></text>
</g>
<g >
<title>do_wp_page (17,781,229 samples, 0.12%)</title><rect x="1038.8" y="325" width="1.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1041.78" y="335.5" ></text>
</g>
<g >
<title>should_failslab (1,518,759 samples, 0.01%)</title><rect x="1106.9" y="373" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="1109.90" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (868,062,174 samples, 5.73%)</title><rect x="1082.4" y="597" width="67.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1085.39" y="607.5" >github...</text>
</g>
<g >
<title>get_page_from_freelist (3,064,593 samples, 0.02%)</title><rect x="1006.0" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1008.98" y="255.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,335,892 samples, 0.01%)</title><rect x="1059.7" y="453" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1062.68" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,848,681 samples, 0.03%)</title><rect x="412.5" y="437" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="415.52" y="447.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (4,498,446 samples, 0.03%)</title><rect x="389.9" y="405" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="392.93" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (2,303,739 samples, 0.02%)</title><rect x="384.0" y="389" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="387.03" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (11,555,722 samples, 0.08%)</title><rect x="1151.2" y="501" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1154.22" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,254,944 samples, 0.01%)</title><rect x="770.5" y="517" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="773.53" y="527.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (45,004,142 samples, 0.30%)</title><rect x="1046.1" y="325" width="3.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1049.07" y="335.5" ></text>
</g>
<g >
<title>send_signal_locked (2,501,908 samples, 0.02%)</title><rect x="22.8" y="501" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="25.76" y="511.5" ></text>
</g>
<g >
<title>wp_page_copy (15,721,044 samples, 0.10%)</title><rect x="992.5" y="293" width="1.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="995.48" y="303.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (14,236,579 samples, 0.09%)</title><rect x="381.1" y="389" width="1.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="384.09" y="399.5" ></text>
</g>
<g >
<title>runtime.callers (1,523,444 samples, 0.01%)</title><rect x="731.7" y="533" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="734.67" y="543.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (253,968,551 samples, 1.68%)</title><rect x="782.0" y="421" width="19.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="784.95" y="431.5" ></text>
</g>
<g >
<title>alloc_file (1,532,946 samples, 0.01%)</title><rect x="1095.6" y="421" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="1098.61" y="431.5" ></text>
</g>
<g >
<title>schedule (33,445,745 samples, 0.22%)</title><rect x="253.3" y="437" width="2.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="256.32" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,523,800 samples, 0.03%)</title><rect x="1081.3" y="565" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1084.27" y="575.5" ></text>
</g>
<g >
<title>runtime.casgstatus (4,828,150 samples, 0.03%)</title><rect x="878.6" y="565" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="881.65" y="575.5" ></text>
</g>
<g >
<title>bpf_map_put (2,951,865 samples, 0.02%)</title><rect x="298.2" y="421" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="301.18" y="431.5" ></text>
</g>
<g >
<title>idr_get_next (15,463,799 samples, 0.10%)</title><rect x="1070.8" y="373" width="1.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1073.77" y="383.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (1,504,936 samples, 0.01%)</title><rect x="387.7" y="373" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="390.70" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (1,494,261 samples, 0.01%)</title><rect x="1185.6" y="613" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1188.61" y="623.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (13,737,524 samples, 0.09%)</title><rect x="724.3" y="469" width="1.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="727.32" y="479.5" ></text>
</g>
<g >
<title>runtime.scanblock (4,560,863 samples, 0.03%)</title><rect x="1012.7" y="261" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1015.75" y="271.5" ></text>
</g>
<g >
<title>wp_page_copy (17,781,229 samples, 0.12%)</title><rect x="1038.8" y="309" width="1.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1041.78" y="319.5" ></text>
</g>
<g >
<title>__task_rq_lock (3,535,027 samples, 0.02%)</title><rect x="916.1" y="341" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="919.05" y="351.5" ></text>
</g>
<g >
<title>gcWriteBarrier (1,504,216 samples, 0.01%)</title><rect x="1005.5" y="405" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1008.45" y="415.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6,885,137 samples, 0.05%)</title><rect x="1104.4" y="357" width="0.5" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1107.36" y="367.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (3,824,691 samples, 0.03%)</title><rect x="1084.2" y="533" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1087.25" y="543.5" ></text>
</g>
<g >
<title>irqentry_exit (2,271,873 samples, 0.01%)</title><rect x="1188.6" y="613" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1191.63" y="623.5" ></text>
</g>
<g >
<title>do_syscall_64 (670,749,106 samples, 4.42%)</title><rect x="1091.2" y="517" width="52.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1094.21" y="527.5" >do_sy..</text>
</g>
<g >
<title>runtime.findObject (6,016,619 samples, 0.04%)</title><rect x="986.8" y="261" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="989.78" y="271.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (3,054,815 samples, 0.02%)</title><rect x="1132.7" y="437" width="0.3" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1135.72" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (1,481,794 samples, 0.01%)</title><rect x="1041.1" y="309" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1044.11" y="319.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,170,490 samples, 0.04%)</title><rect x="1023.3" y="421" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1026.30" y="431.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,522,941 samples, 0.01%)</title><rect x="762.0" y="549" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="765.04" y="559.5" ></text>
</g>
<g >
<title>folio_putback_lru (1,521,347 samples, 0.01%)</title><rect x="406.1" y="53" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="409.11" y="63.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (50,741,621 samples, 0.33%)</title><rect x="260.9" y="597" width="3.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="263.88" y="607.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (3,035,887 samples, 0.02%)</title><rect x="1106.6" y="373" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1109.56" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (2,262,846 samples, 0.01%)</title><rect x="538.7" y="485" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="541.71" y="495.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (2,316,953 samples, 0.02%)</title><rect x="26.7" y="501" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="29.67" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,540,120 samples, 0.01%)</title><rect x="1025.7" y="437" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1028.70" y="447.5" ></text>
</g>
<g >
<title>rmqueue (1,550,053 samples, 0.01%)</title><rect x="1040.0" y="229" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1042.98" y="239.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (3,019,545 samples, 0.02%)</title><rect x="547.5" y="373" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="550.46" y="383.5" ></text>
</g>
<g >
<title>kmem_cache_free (12,605,981 samples, 0.08%)</title><rect x="367.7" y="405" width="0.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="370.67" y="415.5" ></text>
</g>
<g >
<title>syscall.Syscall (68,696,941 samples, 0.45%)</title><rect x="1067.5" y="533" width="5.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1070.52" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (17,438,432 samples, 0.12%)</title><rect x="1075.5" y="629" width="1.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1078.47" y="639.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,043,704,571 samples, 6.88%)</title><rect x="892.6" y="533" width="81.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="895.62" y="543.5" >syscall_e..</text>
</g>
<g >
<title>reflect.Value.Elem (16,868,324 samples, 0.11%)</title><rect x="703.2" y="597" width="1.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="706.19" y="607.5" ></text>
</g>
<g >
<title>__folio_alloc (3,032,056 samples, 0.02%)</title><rect x="750.7" y="469" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="753.71" y="479.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (75,710,101 samples, 0.50%)</title><rect x="974.6" y="565" width="5.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="977.59" y="575.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (11,770,374 samples, 0.08%)</title><rect x="334.8" y="309" width="0.9" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="337.78" y="319.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,859,120 samples, 0.03%)</title><rect x="402.4" y="277" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="405.38" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,459,209 samples, 0.01%)</title><rect x="1185.0" y="533" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1187.97" y="543.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (6,862,748 samples, 0.05%)</title><rect x="406.1" y="373" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="409.11" y="383.5" ></text>
</g>
<g >
<title>runtime.unlock2 (3,161,054 samples, 0.02%)</title><rect x="873.7" y="533" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="876.71" y="543.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,851,580 samples, 0.03%)</title><rect x="996.9" y="245" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="999.90" y="255.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (94,782,764 samples, 0.63%)</title><rect x="1030.0" y="453" width="7.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1033.02" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (5,629,031 samples, 0.04%)</title><rect x="930.9" y="389" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="933.87" y="399.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (3,030,511 samples, 0.02%)</title><rect x="384.4" y="405" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="387.39" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8,327,250 samples, 0.05%)</title><rect x="794.3" y="261" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="797.31" y="271.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,466,559 samples, 0.01%)</title><rect x="653.4" y="245" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="656.41" y="255.5" ></text>
</g>
<g >
<title>irqentry_exit (1,531,022 samples, 0.01%)</title><rect x="733.2" y="533" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="736.17" y="543.5" ></text>
</g>
<g >
<title>os.(*file).close (1,561,550 samples, 0.01%)</title><rect x="742.3" y="581" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="745.34" y="591.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (1,529,654 samples, 0.01%)</title><rect x="980.5" y="581" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="983.49" y="591.5" ></text>
</g>
<g >
<title>psi_group_change (25,285,182 samples, 0.17%)</title><rect x="956.9" y="373" width="2.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="959.93" y="383.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (3,056,445 samples, 0.02%)</title><rect x="1185.2" y="485" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1188.20" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (3,027,978 samples, 0.02%)</title><rect x="1045.3" y="421" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1048.31" y="431.5" ></text>
</g>
<g >
<title>__kmalloc_node (3,069,671 samples, 0.02%)</title><rect x="795.0" y="277" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="797.96" y="287.5" ></text>
</g>
<g >
<title>close_fd (44,529,628 samples, 0.29%)</title><rect x="888.8" y="517" width="3.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="891.75" y="527.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,560,932 samples, 0.01%)</title><rect x="401.8" y="405" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="404.83" y="415.5" ></text>
</g>
<g >
<title>idr_get_next_ul (3,885,896 samples, 0.03%)</title><rect x="698.6" y="341" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="701.62" y="351.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (10,786,871 samples, 0.07%)</title><rect x="1066.3" y="597" width="0.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1069.26" y="607.5" ></text>
</g>
<g >
<title>runtime.sweepone (5,668,887 samples, 0.04%)</title><rect x="867.7" y="645" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="870.69" y="655.5" ></text>
</g>
<g >
<title>mod_objcg_state (2,144,466 samples, 0.01%)</title><rect x="796.7" y="325" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="799.65" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,636,074 samples, 0.01%)</title><rect x="1188.1" y="581" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1191.08" y="591.5" ></text>
</g>
<g >
<title>gcWriteBarrier (17,203,163 samples, 0.11%)</title><rect x="380.9" y="437" width="1.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="383.86" y="447.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (4,873,680 samples, 0.03%)</title><rect x="48.3" y="341" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="51.30" y="351.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (4,487,253,756 samples, 29.60%)</title><rect x="413.6" y="629" width="349.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="416.65" y="639.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.map..</text>
</g>
<g >
<title>clear_page_erms (2,270,735 samples, 0.01%)</title><rect x="1078.7" y="421" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1081.72" y="431.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,316,884 samples, 0.02%)</title><rect x="1034.8" y="389" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1037.82" y="399.5" ></text>
</g>
<g >
<title>runtime.pidleget (1,488,773 samples, 0.01%)</title><rect x="879.5" y="501" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="882.48" y="511.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (92,511,784 samples, 0.61%)</title><rect x="805.2" y="373" width="7.2" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="808.24" y="383.5" ></text>
</g>
<g >
<title>syscall.read (68,696,941 samples, 0.45%)</title><rect x="1067.5" y="549" width="5.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1070.52" y="559.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (101,005,146 samples, 0.67%)</title><rect x="1119.8" y="389" width="7.9" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="1122.83" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,636,074 samples, 0.01%)</title><rect x="1188.1" y="565" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1191.08" y="575.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (3,663,897 samples, 0.02%)</title><rect x="766.8" y="533" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="769.77" y="543.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (4,466,746 samples, 0.03%)</title><rect x="1008.1" y="293" width="0.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1011.15" y="303.5" ></text>
</g>
<g >
<title>runtime.publicationBarrier (3,045,782 samples, 0.02%)</title><rect x="733.3" y="581" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="736.29" y="591.5" ></text>
</g>
<g >
<title>reflect.Value.Field (16,034,499 samples, 0.11%)</title><rect x="704.5" y="597" width="1.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="707.51" y="607.5" ></text>
</g>
<g >
<title>__mod_memcg_state (1,542,840 samples, 0.01%)</title><rect x="812.2" y="309" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="815.20" y="319.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,961,613 samples, 0.05%)</title><rect x="43.1" y="581" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="46.09" y="591.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (4,889,793 samples, 0.03%)</title><rect x="333.8" y="277" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="336.81" y="287.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (43,563,077 samples, 0.29%)</title><rect x="349.4" y="341" width="3.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="352.39" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,103,462 samples, 0.04%)</title><rect x="750.5" y="549" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="753.47" y="559.5" ></text>
</g>
<g >
<title>memcg_account_kmem (3,087,717 samples, 0.02%)</title><rect x="812.1" y="341" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="815.08" y="351.5" ></text>
</g>
<g >
<title>_copy_from_user (5,164,679 samples, 0.03%)</title><rect x="779.0" y="453" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="782.05" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,071,917 samples, 0.04%)</title><rect x="1005.9" y="405" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1008.92" y="415.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (54,005,487 samples, 0.36%)</title><rect x="481.3" y="581" width="4.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="484.34" y="591.5" ></text>
</g>
<g >
<title>handle_mm_fault (17,883,608 samples, 0.12%)</title><rect x="996.1" y="373" width="1.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="999.05" y="383.5" ></text>
</g>
<g >
<title>do_anonymous_page (9,997,420 samples, 0.07%)</title><rect x="1000.6" y="325" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1003.64" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="725" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1192.69" y="735.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (2,288,883 samples, 0.02%)</title><rect x="549.7" y="389" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="552.66" y="399.5" ></text>
</g>
<g >
<title>futex_wait_queue (21,545,507 samples, 0.14%)</title><rect x="11.5" y="501" width="1.7" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="14.53" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.assignValues (1,061,061,690 samples, 7.00%)</title><rect x="980.9" y="597" width="82.6" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="983.92" y="607.5" >github.co..</text>
</g>
<g >
<title>runtime.lock2 (4,535,260 samples, 0.03%)</title><rect x="1182.5" y="485" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1185.48" y="495.5" ></text>
</g>
<g >
<title>dequeue_task (6,051,383 samples, 0.04%)</title><rect x="11.7" y="453" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="14.72" y="463.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (3,785,141 samples, 0.02%)</title><rect x="265.2" y="565" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="268.21" y="575.5" ></text>
</g>
<g >
<title>runtime.interhash (3,088,428 samples, 0.02%)</title><rect x="1029.7" y="453" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1032.72" y="463.5" ></text>
</g>
<g >
<title>runtime.makeslice (7,715,870 samples, 0.05%)</title><rect x="1023.2" y="437" width="0.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1026.18" y="447.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (67,172,524 samples, 0.44%)</title><rect x="826.7" y="517" width="5.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="829.69" y="527.5" ></text>
</g>
<g >
<title>enqueue_task_fair (53,697,679 samples, 0.35%)</title><rect x="313.0" y="293" width="4.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="316.01" y="303.5" ></text>
</g>
<g >
<title>mntput_no_expire (3,248,043 samples, 0.02%)</title><rect x="366.1" y="405" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="369.12" y="415.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (1,674,143 samples, 0.01%)</title><rect x="1080.5" y="517" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1083.49" y="527.5" ></text>
</g>
<g >
<title>__irqentry_text_end (2,643,252 samples, 0.02%)</title><rect x="1053.7" y="437" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1056.70" y="447.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (1,553,634 samples, 0.01%)</title><rect x="1129.9" y="453" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1132.91" y="463.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="373" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1014.74" y="383.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (1,368,743 samples, 0.01%)</title><rect x="814.8" y="437" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="817.81" y="447.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (1,923,461 samples, 0.01%)</title><rect x="943.0" y="357" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="945.97" y="367.5" ></text>
</g>
<g >
<title>select_task_rq_fair (20,461,086 samples, 0.13%)</title><rect x="308.8" y="325" width="1.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="311.81" y="335.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (1,670,878 samples, 0.01%)</title><rect x="341.5" y="293" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="344.54" y="303.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (40,305,217 samples, 0.27%)</title><rect x="796.8" y="341" width="3.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="799.82" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,561,550 samples, 0.01%)</title><rect x="742.3" y="453" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="745.34" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (19,368,237 samples, 0.13%)</title><rect x="788.1" y="261" width="1.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="791.11" y="271.5" ></text>
</g>
<g >
<title>runtime.memhash64 (7,530,863 samples, 0.05%)</title><rect x="398.2" y="405" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="401.23" y="415.5" ></text>
</g>
<g >
<title>errors.Is (70,258,455 samples, 0.46%)</title><rect x="736.9" y="613" width="5.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="739.88" y="623.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,261,701 samples, 0.01%)</title><rect x="1074.0" y="613" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1077.01" y="623.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,103,462 samples, 0.04%)</title><rect x="750.5" y="517" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="753.47" y="527.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,920,907 samples, 0.02%)</title><rect x="194.3" y="581" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="197.35" y="591.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (4,026,429 samples, 0.03%)</title><rect x="371.1" y="549" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="374.11" y="559.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (2,269,851 samples, 0.01%)</title><rect x="1010.3" y="405" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1013.27" y="415.5" ></text>
</g>
<g >
<title>seq_write (8,429,936 samples, 0.06%)</title><rect x="691.5" y="341" width="0.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="694.53" y="351.5" ></text>
</g>
<g >
<title>dequeue_task_fair (5,727,376 samples, 0.04%)</title><rect x="11.7" y="437" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="14.72" y="447.5" ></text>
</g>
<g >
<title>runtime.interhash (3,054,978 samples, 0.02%)</title><rect x="991.9" y="421" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="994.89" y="431.5" ></text>
</g>
<g >
<title>alloc_empty_file (117,623,476 samples, 0.78%)</title><rect x="783.3" y="373" width="9.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="786.32" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,064,146 samples, 0.02%)</title><rect x="665.3" y="357" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="668.32" y="367.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (6,934,466 samples, 0.05%)</title><rect x="1123.6" y="325" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1126.58" y="335.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,857,128 samples, 0.03%)</title><rect x="13.3" y="549" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="16.30" y="559.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (4,985,340 samples, 0.03%)</title><rect x="245.5" y="645" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="248.45" y="655.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (1,523,444 samples, 0.01%)</title><rect x="731.7" y="485" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="734.67" y="495.5" ></text>
</g>
<g >
<title>runtime.entersyscall (11,767,146 samples, 0.08%)</title><rect x="267.3" y="565" width="0.9" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="270.33" y="575.5" ></text>
</g>
<g >
<title>os_xsave (3,770,287 samples, 0.02%)</title><rect x="49.6" y="725" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="52.65" y="735.5" ></text>
</g>
<g >
<title>alloc_pages (35,162,251 samples, 0.23%)</title><rect x="1120.8" y="325" width="2.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1123.85" y="335.5" ></text>
</g>
<g >
<title>runtime.deferreturn (4,583,011 samples, 0.03%)</title><rect x="1186.4" y="629" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1189.44" y="639.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1,937,068 samples, 0.01%)</title><rect x="928.5" y="325" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="931.54" y="335.5" ></text>
</g>
<g >
<title>runtime.pcdatavalue1 (1,523,444 samples, 0.01%)</title><rect x="731.7" y="453" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="734.67" y="463.5" ></text>
</g>
<g >
<title>do_nanosleep (5,409,199 samples, 0.04%)</title><rect x="14.2" y="549" width="0.4" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="17.19" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,522,273 samples, 0.01%)</title><rect x="16.3" y="613" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="19.31" y="623.5" ></text>
</g>
<g >
<title>get_any_partial (1,523,827 samples, 0.01%)</title><rect x="1109.4" y="341" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1112.35" y="351.5" ></text>
</g>
<g >
<title>enqueue_entity (4,409,530 samples, 0.03%)</title><rect x="18.6" y="405" width="0.3" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="21.59" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,498,753 samples, 0.01%)</title><rect x="382.6" y="405" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="385.61" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,070,551,869 samples, 13.66%)</title><rect x="539.1" y="469" width="161.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="542.13" y="479.5" >do_syscall_64</text>
</g>
<g >
<title>runtime.scanobject (3,811,703 samples, 0.03%)</title><rect x="388.8" y="293" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="391.81" y="303.5" ></text>
</g>
<g >
<title>runtime.newobject (2,255,861 samples, 0.01%)</title><rect x="389.8" y="421" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="392.75" y="431.5" ></text>
</g>
<g >
<title>mod_objcg_state (3,831,604 samples, 0.03%)</title><rect x="1111.8" y="341" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1114.78" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,989,371 samples, 0.01%)</title><rect x="864.0" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="867.03" y="463.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (2,308,053 samples, 0.02%)</title><rect x="1152.1" y="501" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1155.12" y="511.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (7,653,308 samples, 0.05%)</title><rect x="940.1" y="293" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="943.06" y="303.5" ></text>
</g>
<g >
<title>__mmput (33,117,463 samples, 0.22%)</title><rect x="46.5" y="549" width="2.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="49.50" y="559.5" ></text>
</g>
<g >
<title>capable (10,686,446 samples, 0.07%)</title><rect x="813.8" y="421" width="0.8" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="816.80" y="431.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,505,329 samples, 0.01%)</title><rect x="194.2" y="613" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="197.23" y="623.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (1,329,179,698 samples, 8.77%)</title><rect x="1082.2" y="613" width="103.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1085.16" y="623.5" >github.com/c..</text>
</g>
<g >
<title>handle_mm_fault (25,245,071 samples, 0.17%)</title><rect x="760.1" y="549" width="1.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="763.07" y="559.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,520,420 samples, 0.02%)</title><rect x="21.3" y="453" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="24.29" y="463.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (3,695,239 samples, 0.02%)</title><rect x="41.0" y="453" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="44.04" y="463.5" ></text>
</g>
<g >
<title>____fput (980,504,786 samples, 6.47%)</title><rect x="293.2" y="453" width="76.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="296.17" y="463.5" >____fput</text>
</g>
<g >
<title>__handle_mm_fault (4,532,309 samples, 0.03%)</title><rect x="1006.0" y="341" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1008.98" y="351.5" ></text>
</g>
<g >
<title>__kmalloc_node (3,041,039 samples, 0.02%)</title><rect x="809.0" y="293" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="811.96" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,443,260 samples, 0.01%)</title><rect x="1124.7" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1127.66" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (16,772,429 samples, 0.11%)</title><rect x="724.3" y="517" width="1.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="727.27" y="527.5" ></text>
</g>
<g >
<title>runtime.markrootBlock (4,508,631 samples, 0.03%)</title><rect x="63.8" y="629" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="66.76" y="639.5" ></text>
</g>
<g >
<title>runtime.scanobject (2,238,810 samples, 0.01%)</title><rect x="1007.3" y="261" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1010.34" y="271.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (36,554,063 samples, 0.24%)</title><rect x="936.6" y="373" width="2.8" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="939.57" y="383.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1,496,153 samples, 0.01%)</title><rect x="230.8" y="469" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="233.84" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="629" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1192.69" y="639.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (6,862,748 samples, 0.05%)</title><rect x="406.1" y="293" width="0.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="409.11" y="303.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (2,128,052 samples, 0.01%)</title><rect x="1043.1" y="277" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1046.06" y="287.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,477,276 samples, 0.02%)</title><rect x="250.9" y="597" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="253.90" y="607.5" ></text>
</g>
<g >
<title>mod_objcg_state (3,939,017 samples, 0.03%)</title><rect x="361.4" y="357" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="364.43" y="367.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (4,183,107 samples, 0.03%)</title><rect x="1057.3" y="421" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1060.26" y="431.5" ></text>
</g>
<g >
<title>mod_memcg_state (2,305,561 samples, 0.02%)</title><rect x="812.1" y="325" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="815.14" y="335.5" ></text>
</g>
<g >
<title>record_times (1,415,401 samples, 0.01%)</title><rect x="40.8" y="501" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="43.81" y="511.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (5,947,008 samples, 0.04%)</title><rect x="256.7" y="453" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="259.75" y="463.5" ></text>
</g>
<g >
<title>runtime.mallocgc (10,591,705 samples, 0.07%)</title><rect x="385.0" y="405" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="387.98" y="415.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (8,173,199 samples, 0.05%)</title><rect x="1014.8" y="309" width="0.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1017.75" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,537,518 samples, 0.01%)</title><rect x="1026.2" y="405" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1029.24" y="415.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (9,092,545 samples, 0.06%)</title><rect x="22.4" y="613" width="0.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="25.43" y="623.5" ></text>
</g>
<g >
<title>perf_ctx_enable (31,410,544 samples, 0.21%)</title><rect x="330.7" y="341" width="2.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="333.74" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (2,122,051 samples, 0.01%)</title><rect x="766.8" y="453" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="769.83" y="463.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (1,484,035 samples, 0.01%)</title><rect x="390.2" y="389" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="393.16" y="399.5" ></text>
</g>
<g >
<title>sched_clock (1,805,691 samples, 0.01%)</title><rect x="41.5" y="485" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="44.55" y="495.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,313,509 samples, 0.01%)</title><rect x="314.7" y="261" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="317.69" y="271.5" ></text>
</g>
<g >
<title>cpuacct_charge (6,718,883 samples, 0.04%)</title><rect x="341.7" y="309" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="344.73" y="319.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (4,366,177 samples, 0.03%)</title><rect x="538.2" y="501" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="541.19" y="511.5" ></text>
</g>
<g >
<title>migrate_enable (28,872,041 samples, 0.19%)</title><rect x="692.9" y="357" width="2.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="695.89" y="367.5" ></text>
</g>
<g >
<title>runtime.notesleep (1,563,689 samples, 0.01%)</title><rect x="244.4" y="581" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="247.43" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.CORERelocate (490,022,731 samples, 3.23%)</title><rect x="980.9" y="517" width="38.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="983.92" y="527.5" >git..</text>
</g>
<g >
<title>runtime.(*mheap).alloc (3,733,450 samples, 0.02%)</title><rect x="746.5" y="565" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="749.48" y="575.5" ></text>
</g>
<g >
<title>native_write_msr (34,275,021 samples, 0.23%)</title><rect x="350.0" y="293" width="2.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="352.96" y="303.5" ></text>
</g>
<g >
<title>testing.(*B).runN (7,840,389,570 samples, 51.72%)</title><rect x="257.9" y="677" width="610.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="260.87" y="687.5" >testing.(*B).runN</text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,238,810 samples, 0.01%)</title><rect x="1007.3" y="325" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1010.34" y="335.5" ></text>
</g>
<g >
<title>runtime.findObject (3,012,870 samples, 0.02%)</title><rect x="1187.6" y="565" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1190.61" y="575.5" ></text>
</g>
<g >
<title>idr_get_next_ul (208,242,085 samples, 1.37%)</title><rect x="637.4" y="341" width="16.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="640.37" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,516,418 samples, 0.04%)</title><rect x="1042.8" y="437" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1045.84" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (2,186,109 samples, 0.01%)</title><rect x="1007.9" y="341" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1010.92" y="351.5" ></text>
</g>
<g >
<title>runtime.schedule (1,734,894 samples, 0.01%)</title><rect x="244.4" y="629" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="247.42" y="639.5" ></text>
</g>
<g >
<title>mod_objcg_state (2,272,269 samples, 0.01%)</title><rect x="1105.7" y="341" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1108.73" y="351.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (61,124,236 samples, 0.40%)</title><rect x="821.2" y="485" width="4.7" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="824.18" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1,537,237 samples, 0.01%)</title><rect x="1113.9" y="325" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1116.87" y="335.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (2,298,292 samples, 0.02%)</title><rect x="812.4" y="373" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="815.44" y="383.5" ></text>
</g>
<g >
<title>pick_next_entity (3,575,689 samples, 0.02%)</title><rect x="943.1" y="357" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="946.13" y="367.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (5,802,700 samples, 0.04%)</title><rect x="320.1" y="245" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="323.13" y="255.5" ></text>
</g>
<g >
<title>runtime.stopm (48,826,619 samples, 0.32%)</title><rect x="252.8" y="581" width="3.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="255.78" y="591.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (4,623,656 samples, 0.03%)</title><rect x="1080.9" y="565" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1083.86" y="575.5" ></text>
</g>
<g >
<title>reflect.Value.Field (123,772,228 samples, 0.82%)</title><rect x="486.9" y="581" width="9.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="489.86" y="591.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (1,836,799 samples, 0.01%)</title><rect x="910.6" y="389" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="913.59" y="399.5" ></text>
</g>
<g >
<title>irqentry_exit (3,363,713 samples, 0.02%)</title><rect x="1056.5" y="405" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1059.45" y="415.5" ></text>
</g>
<g >
<title>memcpy_orig (25,806,643 samples, 0.17%)</title><rect x="688.5" y="325" width="2.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="691.46" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,817,140 samples, 0.03%)</title><rect x="747.6" y="533" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="750.61" y="543.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (3,058,747 samples, 0.02%)</title><rect x="1077.4" y="597" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1080.41" y="607.5" ></text>
</g>
<g >
<title>__cond_resched (1,516,629 samples, 0.01%)</title><rect x="805.1" y="373" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="808.12" y="383.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (45,004,142 samples, 0.30%)</title><rect x="1046.1" y="389" width="3.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1049.07" y="399.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (47,543,126 samples, 0.31%)</title><rect x="994.1" y="437" width="3.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="997.10" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (10,033,152 samples, 0.07%)</title><rect x="1039.2" y="229" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1042.20" y="239.5" ></text>
</g>
<g >
<title>__handle_mm_fault (15,721,044 samples, 0.10%)</title><rect x="992.5" y="341" width="1.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="995.48" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (2,328,961 samples, 0.02%)</title><rect x="1021.0" y="437" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1023.95" y="447.5" ></text>
</g>
<g >
<title>runtime.scanblock (2,672,607 samples, 0.02%)</title><rect x="73.1" y="629" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="76.06" y="639.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (818,966,724 samples, 5.40%)</title><rect x="768.3" y="565" width="63.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="771.29" y="575.5" >syscall..</text>
</g>
<g >
<title>runtime.newarray (7,669,564 samples, 0.05%)</title><rect x="407.0" y="421" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="410.00" y="431.5" ></text>
</g>
<g >
<title>update_load_avg (35,711,215 samples, 0.24%)</title><rect x="946.6" y="341" width="2.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="949.60" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,350,349 samples, 0.04%)</title><rect x="14.2" y="597" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="17.15" y="607.5" ></text>
</g>
<g >
<title>__count_memcg_events (1,534,680 samples, 0.01%)</title><rect x="760.2" y="453" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="763.19" y="463.5" ></text>
</g>
<g >
<title>runtime.stopm (35,146,073 samples, 0.23%)</title><rect x="11.1" y="629" width="2.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="14.10" y="639.5" ></text>
</g>
<g >
<title>sched_clock_cpu (8,056,404 samples, 0.05%)</title><rect x="320.0" y="277" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="322.98" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (3,071,713 samples, 0.02%)</title><rect x="996.9" y="229" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="999.90" y="239.5" ></text>
</g>
<g >
<title>ima_file_free (1,467,211 samples, 0.01%)</title><rect x="971.7" y="453" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="974.75" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,543,843 samples, 0.02%)</title><rect x="888.4" y="517" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="891.43" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).disown (65,858,106 samples, 0.43%)</title><rect x="870.3" y="629" width="5.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="873.34" y="639.5" ></text>
</g>
<g >
<title>__folio_alloc (1,481,794 samples, 0.01%)</title><rect x="1041.1" y="325" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1044.11" y="335.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (1,543,980 samples, 0.01%)</title><rect x="825.8" y="453" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="828.76" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (5,337,489 samples, 0.04%)</title><rect x="1080.1" y="485" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1083.08" y="495.5" ></text>
</g>
<g >
<title>__update_load_avg_se (2,350,330 samples, 0.02%)</title><rect x="923.5" y="261" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="926.45" y="271.5" ></text>
</g>
<g >
<title>tick_sched_timer (1,466,559 samples, 0.01%)</title><rect x="653.4" y="229" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="656.41" y="239.5" ></text>
</g>
<g >
<title>runtime.memhash64 (1,554,823 samples, 0.01%)</title><rect x="1066.9" y="549" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1069.92" y="559.5" ></text>
</g>
<g >
<title>should_failslab (2,305,447 samples, 0.02%)</title><rect x="792.3" y="357" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="795.30" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (20,871,142 samples, 0.14%)</title><rect x="996.0" y="405" width="1.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="998.99" y="415.5" ></text>
</g>
<g >
<title>__cond_resched (2,302,442 samples, 0.02%)</title><rect x="49.4" y="581" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="52.36" y="591.5" ></text>
</g>
<g >
<title>exc_page_fault (9,157,094 samples, 0.06%)</title><rect x="1078.5" y="581" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1081.48" y="591.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="693" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1192.69" y="703.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (6,862,748 samples, 0.05%)</title><rect x="406.1" y="357" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="409.11" y="367.5" ></text>
</g>
<g >
<title>psi_task_switch (1,428,448 samples, 0.01%)</title><rect x="960.3" y="405" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="963.32" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,742,432 samples, 0.02%)</title><rect x="782.7" y="389" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="785.69" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (32,068,149 samples, 0.21%)</title><rect x="1054.0" y="373" width="2.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1056.96" y="383.5" ></text>
</g>
<g >
<title>dentry_free (44,418,154 samples, 0.29%)</title><rect x="961.3" y="405" width="3.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="964.30" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1,619,050 samples, 0.01%)</title><rect x="936.8" y="357" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="939.82" y="367.5" ></text>
</g>
<g >
<title>update_curr (6,070,618 samples, 0.04%)</title><rect x="922.5" y="277" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="925.51" y="287.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,553,185 samples, 0.01%)</title><rect x="612.7" y="261" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="615.73" y="271.5" ></text>
</g>
<g >
<title>runtime.morestack.abi0 (3,502,412 samples, 0.02%)</title><rect x="1189.2" y="725" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1192.22" y="735.5" ></text>
</g>
<g >
<title>rb_insert_color (1,620,227 samples, 0.01%)</title><rect x="949.8" y="357" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="952.80" y="367.5" ></text>
</g>
<g >
<title>task_work_add (2,523,688 samples, 0.02%)</title><rect x="890.6" y="469" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="893.65" y="479.5" ></text>
</g>
<g >
<title>runtime.preemptall (1,513,295 samples, 0.01%)</title><rect x="50.5" y="629" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="53.54" y="639.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (1,555,604 samples, 0.01%)</title><rect x="1084.5" y="549" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1087.54" y="559.5" ></text>
</g>
<g >
<title>switch_fpu_return (3,753,461 samples, 0.02%)</title><rect x="973.6" y="517" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="976.57" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,754,230 samples, 0.01%)</title><rect x="271.1" y="549" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="274.12" y="559.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,378,924 samples, 0.01%)</title><rect x="148.3" y="533" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="151.32" y="543.5" ></text>
</g>
<g >
<title>migrate_disable (15,995,036 samples, 0.11%)</title><rect x="696.5" y="373" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="699.54" y="383.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (7,778,319 samples, 0.05%)</title><rect x="929.4" y="293" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="932.43" y="303.5" ></text>
</g>
<g >
<title>xa_load (5,246,173 samples, 0.03%)</title><rect x="799.1" y="309" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="802.08" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,809,386 samples, 0.03%)</title><rect x="1024.4" y="357" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1027.38" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (16,111,588 samples, 0.11%)</title><rect x="618.3" y="373" width="1.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="621.32" y="383.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (39,197,410 samples, 0.26%)</title><rect x="46.5" y="661" width="3.0" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="49.49" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (1,527,921 samples, 0.01%)</title><rect x="384.0" y="277" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="387.03" y="287.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (1,655,602 samples, 0.01%)</title><rect x="1189.4" y="677" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1192.36" y="687.5" ></text>
</g>
<g >
<title>do_futex (5,840,582 samples, 0.04%)</title><rect x="45.5" y="677" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="48.54" y="687.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (1,547,992 samples, 0.01%)</title><rect x="1001.6" y="197" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1004.59" y="207.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2,428,656 samples, 0.02%)</title><rect x="928.7" y="277" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="931.74" y="287.5" ></text>
</g>
<g >
<title>__radix_tree_replace (1,414,372 samples, 0.01%)</title><rect x="816.8" y="405" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="819.80" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (9,157,094 samples, 0.06%)</title><rect x="1078.5" y="597" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1081.48" y="607.5" ></text>
</g>
<g >
<title>idr_remove (34,127,365 samples, 0.23%)</title><rect x="910.6" y="405" width="2.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="913.59" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (2,315,389 samples, 0.02%)</title><rect x="1006.0" y="229" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1008.98" y="239.5" ></text>
</g>
<g >
<title>switch_fpu_return (4,467,994 samples, 0.03%)</title><rect x="43.3" y="565" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="46.29" y="575.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,270,158 samples, 0.01%)</title><rect x="1001.7" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1004.72" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (9,146,819 samples, 0.06%)</title><rect x="750.3" y="597" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="753.30" y="607.5" ></text>
</g>
<g >
<title>__kmalloc_node (114,024,684 samples, 0.75%)</title><rect x="1119.6" y="405" width="8.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1122.59" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (70,317,642 samples, 0.46%)</title><rect x="612.8" y="373" width="5.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="615.85" y="383.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="565" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1192.69" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,940,481 samples, 0.05%)</title><rect x="1151.3" y="453" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1154.34" y="463.5" ></text>
</g>
<g >
<title>runtime.removefinalizer (36,532,473 samples, 0.24%)</title><rect x="871.8" y="565" width="2.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="874.83" y="575.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (2,386,018 samples, 0.02%)</title><rect x="21.3" y="437" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="24.30" y="447.5" ></text>
</g>
<g >
<title>runtime.preemptone (10,313,608 samples, 0.07%)</title><rect x="22.3" y="629" width="0.8" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="25.34" y="639.5" ></text>
</g>
<g >
<title>madvise_collapse (6,862,748 samples, 0.05%)</title><rect x="406.1" y="149" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="409.11" y="159.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,867,425 samples, 0.03%)</title><rect x="1022.0" y="277" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1024.98" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (5,381,677 samples, 0.04%)</title><rect x="1027.0" y="245" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1029.96" y="255.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (4,551,651 samples, 0.03%)</title><rect x="1097.5" y="357" width="0.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1100.51" y="367.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,055,920 samples, 0.02%)</title><rect x="10.3" y="661" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.30" y="671.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,700,625 samples, 0.02%)</title><rect x="1041.0" y="453" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1043.99" y="463.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (3,806,379 samples, 0.03%)</title><rect x="1016.8" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1019.75" y="255.5" ></text>
</g>
<g >
<title>__get_random_u32_below (1,486,650 samples, 0.01%)</title><rect x="1124.5" y="309" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1127.54" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (4,691,993 samples, 0.03%)</title><rect x="50.1" y="597" width="0.3" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="53.06" y="607.5" ></text>
</g>
<g >
<title>runtime.findObject (18,946,489 samples, 0.12%)</title><rect x="71.5" y="597" width="1.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="74.54" y="607.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,109,097 samples, 0.03%)</title><rect x="795.3" y="341" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="798.26" y="351.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (5,302,681 samples, 0.03%)</title><rect x="148.8" y="613" width="0.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="151.83" y="623.5" ></text>
</g>
<g >
<title>[unknown] (3,842,788 samples, 0.03%)</title><rect x="10.0" y="661" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>apparmor_capable (5,376,287 samples, 0.04%)</title><rect x="814.2" y="389" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="817.22" y="399.5" ></text>
</g>
<g >
<title>flush_tlb_func (1,547,992 samples, 0.01%)</title><rect x="1001.6" y="213" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1004.59" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).Close (1,627,103 samples, 0.01%)</title><rect x="867.2" y="645" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="870.17" y="655.5" ></text>
</g>
<g >
<title>discard_slab (2,433,176 samples, 0.02%)</title><rect x="360.5" y="309" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="363.52" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,190,494 samples, 0.01%)</title><rect x="653.4" y="277" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="656.41" y="287.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (9,043,260 samples, 0.06%)</title><rect x="1012.7" y="373" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1015.69" y="383.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (6,862,748 samples, 0.05%)</title><rect x="406.1" y="341" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="409.11" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (1,488,192 samples, 0.01%)</title><rect x="703.1" y="549" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="706.08" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (7,120,846 samples, 0.05%)</title><rect x="23.5" y="629" width="0.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="26.48" y="639.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (1,502,419 samples, 0.01%)</title><rect x="385.0" y="373" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="388.04" y="383.5" ></text>
</g>
<g >
<title>update_load_avg (7,150,407 samples, 0.05%)</title><rect x="346.6" y="325" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="349.61" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*copier).copy (262,979,206 samples, 1.73%)</title><rect x="1020.0" y="469" width="20.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1022.99" y="479.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (1,447,175 samples, 0.01%)</title><rect x="45.8" y="517" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="48.83" y="527.5" ></text>
</g>
<g >
<title>enqueue_task (3,596,529 samples, 0.02%)</title><rect x="333.9" y="213" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="336.89" y="223.5" ></text>
</g>
<g >
<title>runtime.newMarkBits (2,286,922 samples, 0.02%)</title><rect x="724.6" y="421" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="727.61" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (34,542,626 samples, 0.23%)</title><rect x="985.4" y="357" width="2.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="988.38" y="367.5" ></text>
</g>
<g >
<title>security_file_permission (3,846,956 samples, 0.03%)</title><rect x="699.2" y="389" width="0.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="702.22" y="399.5" ></text>
</g>
<g >
<title>runtime.wbMove (4,498,446 samples, 0.03%)</title><rect x="389.9" y="421" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="392.93" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (28,090,309 samples, 0.19%)</title><rect x="11.4" y="565" width="2.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.42" y="575.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (1,942,542 samples, 0.01%)</title><rect x="337.1" y="341" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="340.06" y="351.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (2,876,557 samples, 0.02%)</title><rect x="996.3" y="293" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="999.35" y="303.5" ></text>
</g>
<g >
<title>psi_group_change (1,763,279 samples, 0.01%)</title><rect x="955.9" y="389" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="958.94" y="399.5" ></text>
</g>
<g >
<title>tick_program_event (1,631,840 samples, 0.01%)</title><rect x="940.8" y="309" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="943.82" y="319.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (4,007,752 samples, 0.03%)</title><rect x="1060.6" y="325" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1063.63" y="335.5" ></text>
</g>
<g >
<title>apparmor_capable (3,185,197 samples, 0.02%)</title><rect x="1129.4" y="405" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1132.36" y="415.5" ></text>
</g>
<g >
<title>do_anonymous_page (4,523,800 samples, 0.03%)</title><rect x="1081.3" y="469" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1084.27" y="479.5" ></text>
</g>
<g >
<title>ptep_clear_flush (1,467,716 samples, 0.01%)</title><rect x="1006.2" y="277" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1009.22" y="287.5" ></text>
</g>
<g >
<title>get_any_partial (1,561,305 samples, 0.01%)</title><rect x="1101.5" y="341" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1104.49" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (6,342,512 samples, 0.04%)</title><rect x="46.0" y="693" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="48.99" y="703.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="373" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1010.57" y="383.5" ></text>
</g>
<g >
<title>wp_page_copy (1,756,273 samples, 0.01%)</title><rect x="251.0" y="517" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="253.95" y="527.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (397,363,617 samples, 2.62%)</title><rect x="499.5" y="597" width="31.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="502.53" y="607.5" >en..</text>
</g>
<g >
<title>do_anonymous_page (9,235,634 samples, 0.06%)</title><rect x="1026.7" y="325" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1029.72" y="335.5" ></text>
</g>
<g >
<title>close_fd (42,793,534 samples, 0.28%)</title><rect x="280.0" y="501" width="3.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="283.05" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (2,303,739 samples, 0.02%)</title><rect x="384.0" y="373" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="387.03" y="383.5" ></text>
</g>
<g >
<title>update_process_times (1,553,185 samples, 0.01%)</title><rect x="612.7" y="245" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="615.73" y="255.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (11,300,584 samples, 0.07%)</title><rect x="267.4" y="549" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="270.35" y="559.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (7,854,563 samples, 0.05%)</title><rect x="256.7" y="533" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="259.70" y="543.5" ></text>
</g>
<g >
<title>runtime.growslice (14,545,936 samples, 0.10%)</title><rect x="1187.1" y="661" width="1.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1190.08" y="671.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (5,395,704 samples, 0.04%)</title><rect x="1011.0" y="261" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1013.97" y="271.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (4,398,620 samples, 0.03%)</title><rect x="910.2" y="389" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="913.20" y="399.5" ></text>
</g>
<g >
<title>put_prev_task_fair (2,852,264 samples, 0.02%)</title><rect x="38.3" y="501" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="41.32" y="511.5" ></text>
</g>
<g >
<title>sched_clock (12,331,056 samples, 0.08%)</title><rect x="356.6" y="341" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="359.58" y="351.5" ></text>
</g>
<g >
<title>__send_signal_locked (2,419,003 samples, 0.02%)</title><rect x="22.8" y="485" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="25.76" y="495.5" ></text>
</g>
<g >
<title>handle_pte_fault (5,408,145 samples, 0.04%)</title><rect x="402.3" y="309" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="405.26" y="319.5" ></text>
</g>
<g >
<title>restore_fpregs_from_fpstate (2,186,758 samples, 0.01%)</title><rect x="43.4" y="549" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="46.45" y="559.5" ></text>
</g>
<g >
<title>runtime.makeslice (13,665,102 samples, 0.09%)</title><rect x="384.9" y="421" width="1.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="387.92" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,016,341 samples, 0.02%)</title><rect x="1007.3" y="373" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1010.34" y="383.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (1,407,922 samples, 0.01%)</title><rect x="867.9" y="613" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="870.86" y="623.5" ></text>
</g>
<g >
<title>clear_page_erms (2,249,513 samples, 0.01%)</title><rect x="1081.3" y="389" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1084.33" y="399.5" ></text>
</g>
<g >
<title>__kmalloc_node (114,194,540 samples, 0.75%)</title><rect x="804.8" y="389" width="8.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="807.79" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="613" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.33" y="623.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.loadMgObjects (448,936,374 samples, 2.96%)</title><rect x="377.9" y="613" width="34.9" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="380.88" y="623.5" >gi..</text>
</g>
<g >
<title>pick_file (4,751,087 samples, 0.03%)</title><rect x="283.0" y="485" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="286.01" y="495.5" ></text>
</g>
<g >
<title>runtime.stkbucket (1,561,437 samples, 0.01%)</title><rect x="1074.1" y="565" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1077.06" y="575.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,317,127 samples, 0.02%)</title><rect x="1027.5" y="421" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1030.50" y="431.5" ></text>
</g>
<g >
<title>__sys_bpf (3,848,681 samples, 0.03%)</title><rect x="412.5" y="389" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="415.52" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (19,151,883 samples, 0.13%)</title><rect x="760.5" y="453" width="1.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="763.49" y="463.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (33,252,186 samples, 0.22%)</title><rect x="46.5" y="645" width="2.6" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="49.49" y="655.5" ></text>
</g>
<g >
<title>update_load_avg (1,654,898 samples, 0.01%)</title><rect x="37.7" y="437" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="40.65" y="447.5" ></text>
</g>
<g >
<title>blkcg_maybe_throttle_current (2,963,075 samples, 0.02%)</title><rect x="900.3" y="485" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="903.29" y="495.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (68,696,941 samples, 0.45%)</title><rect x="1067.5" y="565" width="5.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1070.52" y="575.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,015,286 samples, 0.02%)</title><rect x="401.4" y="373" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="404.36" y="383.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6,018,675 samples, 0.04%)</title><rect x="797.8" y="325" width="0.5" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="800.83" y="335.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (12,812,882 samples, 0.08%)</title><rect x="400.7" y="421" width="1.0" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="403.66" y="431.5" ></text>
</g>
<g >
<title>kmem_cache_free (40,950,473 samples, 0.27%)</title><rect x="961.5" y="389" width="3.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="964.55" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,602,094 samples, 0.03%)</title><rect x="732.7" y="517" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="735.75" y="527.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (3,054,893 samples, 0.02%)</title><rect x="1001.5" y="245" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1004.48" y="255.5" ></text>
</g>
<g >
<title>task_work_add (2,658,495 samples, 0.02%)</title><rect x="282.6" y="469" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="285.59" y="479.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="293" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1010.57" y="303.5" ></text>
</g>
<g >
<title>__schedule (21,020,768 samples, 0.14%)</title><rect x="11.6" y="469" width="1.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="14.56" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (2,284,454 samples, 0.02%)</title><rect x="1012.5" y="389" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1015.51" y="399.5" ></text>
</g>
<g >
<title>runtime.handoffp (69,172,404 samples, 0.46%)</title><rect x="16.8" y="629" width="5.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="19.76" y="639.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (3,029,072 samples, 0.02%)</title><rect x="231.1" y="565" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="234.11" y="575.5" ></text>
</g>
<g >
<title>strcmp (1,544,438 samples, 0.01%)</title><rect x="412.7" y="261" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="415.70" y="271.5" ></text>
</g>
<g >
<title>__check_object_size (1,516,033 samples, 0.01%)</title><rect x="777.8" y="469" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="780.81" y="479.5" ></text>
</g>
<g >
<title>new_slab (12,173,584 samples, 0.08%)</title><rect x="794.3" y="325" width="1.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="797.31" y="335.5" ></text>
</g>
<g >
<title>new_slab (1,541,436 samples, 0.01%)</title><rect x="1135.1" y="357" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1138.10" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (9,245,573 samples, 0.06%)</title><rect x="473.0" y="565" width="0.8" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="476.04" y="575.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (23,093,422 samples, 0.15%)</title><rect x="995.8" y="421" width="1.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="998.82" y="431.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,336,456 samples, 0.01%)</title><rect x="1062.4" y="389" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1065.42" y="399.5" ></text>
</g>
<g >
<title>perf_ctx_disable (38,202,263 samples, 0.25%)</title><rect x="952.8" y="341" width="3.0" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="955.79" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (32,725,165 samples, 0.22%)</title><rect x="271.3" y="549" width="2.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="274.25" y="559.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,263,931 samples, 0.01%)</title><rect x="308.6" y="325" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="311.62" y="335.5" ></text>
</g>
<g >
<title>runtime.mapassign (38,590,873 samples, 0.25%)</title><rect x="1037.4" y="453" width="3.0" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1040.40" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,561,382 samples, 0.02%)</title><rect x="935.2" y="389" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="938.23" y="399.5" ></text>
</g>
<g >
<title>bpf_map_release (1,401,906 samples, 0.01%)</title><rect x="971.6" y="453" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="974.57" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (1,441,013,443 samples, 9.51%)</title><rect x="1074.8" y="661" width="112.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1077.76" y="671.5" >github.com/ci..</text>
</g>
<g >
<title>runtime.findObject (2,142,334 samples, 0.01%)</title><rect x="69.4" y="613" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="72.43" y="623.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,504,452 samples, 0.01%)</title><rect x="389.8" y="405" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="392.81" y="415.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,422,871 samples, 0.01%)</title><rect x="348.2" y="373" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="351.21" y="383.5" ></text>
</g>
<g >
<title>sched_clock (9,617,042 samples, 0.06%)</title><rect x="959.1" y="357" width="0.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="962.09" y="367.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (7,658,414 samples, 0.05%)</title><rect x="746.8" y="549" width="0.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="749.77" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="437" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1066.20" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,747,745 samples, 0.02%)</title><rect x="388.5" y="389" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="391.46" y="399.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (1,407,291 samples, 0.01%)</title><rect x="937.3" y="341" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="940.30" y="351.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (2,681,018 samples, 0.02%)</title><rect x="321.1" y="325" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="324.13" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (1,502,419 samples, 0.01%)</title><rect x="385.0" y="389" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="388.04" y="399.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (421,112,664 samples, 2.78%)</title><rect x="448.6" y="581" width="32.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="451.56" y="591.5" >en..</text>
</g>
<g >
<title>ttwu_do_activate (113,474,366 samples, 0.75%)</title><rect x="918.6" y="341" width="8.9" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="921.63" y="351.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (6,873,845 samples, 0.05%)</title><rect x="833.1" y="485" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="836.14" y="495.5" ></text>
</g>
<g >
<title>runtime.newobject (15,211,528 samples, 0.10%)</title><rect x="1184.3" y="565" width="1.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1187.31" y="575.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.Close (1,434,809 samples, 0.01%)</title><rect x="980.7" y="645" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="983.74" y="655.5" ></text>
</g>
<g >
<title>runtime.wirep (1,325,953 samples, 0.01%)</title><rect x="879.6" y="549" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="882.63" y="559.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (1,555,636 samples, 0.01%)</title><rect x="996.4" y="261" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="999.40" y="271.5" ></text>
</g>
<g >
<title>exc_page_fault (6,909,593 samples, 0.05%)</title><rect x="732.7" y="549" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="735.75" y="559.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (1,989,241 samples, 0.01%)</title><rect x="967.5" y="421" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="970.54" y="431.5" ></text>
</g>
<g >
<title>sync_regs (1,534,873 samples, 0.01%)</title><rect x="10.2" y="613" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="13.18" y="623.5" ></text>
</g>
<g >
<title>handle_mm_fault (20,099,134 samples, 0.13%)</title><rect x="1038.7" y="373" width="1.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1041.66" y="383.5" ></text>
</g>
<g >
<title>runtime.scanobject (43,517,030 samples, 0.29%)</title><rect x="1046.2" y="309" width="3.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1049.18" y="319.5" ></text>
</g>
<g >
<title>alloc_pages (8,327,250 samples, 0.05%)</title><rect x="794.3" y="293" width="0.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="797.31" y="303.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (16,572,400 samples, 0.11%)</title><rect x="32.6" y="517" width="1.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="35.61" y="527.5" ></text>
</g>
<g >
<title>wake_up_process (1,449,866 samples, 0.01%)</title><rect x="194.4" y="517" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="197.40" y="527.5" ></text>
</g>
<g >
<title>array_map_alloc (136,985,866 samples, 0.90%)</title><rect x="804.0" y="437" width="10.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="806.97" y="447.5" ></text>
</g>
<g >
<title>runtime.memhash64 (1,961,625 samples, 0.01%)</title><rect x="875.2" y="565" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="878.21" y="575.5" ></text>
</g>
<g >
<title>runtime.memmove (2,306,526 samples, 0.02%)</title><rect x="403.0" y="453" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="406.04" y="463.5" ></text>
</g>
<g >
<title>perf_ctx_enable (30,539,992 samples, 0.20%)</title><rect x="937.0" y="357" width="2.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="940.02" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).File (1,556,344 samples, 0.01%)</title><rect x="742.5" y="597" width="0.1" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="745.47" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadRawSpec (490,022,731 samples, 3.23%)</title><rect x="980.9" y="469" width="38.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="983.92" y="479.5" >git..</text>
</g>
<g >
<title>runtime.madvise.abi0 (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="405" width="0.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1083.14" y="415.5" ></text>
</g>
<g >
<title>ttwu_do_activate (4,255,017 samples, 0.03%)</title><rect x="333.8" y="229" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="336.84" y="239.5" ></text>
</g>
<g >
<title>runtime.mapassign (32,630,097 samples, 0.22%)</title><rect x="399.1" y="437" width="2.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="402.11" y="447.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,605,341 samples, 0.02%)</title><rect x="996.6" y="293" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="999.57" y="303.5" ></text>
</g>
<g >
<title>memchr_inv (2,922,312 samples, 0.02%)</title><rect x="820.0" y="453" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="822.96" y="463.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (6,504,231 samples, 0.04%)</title><rect x="148.0" y="597" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="151.04" y="607.5" ></text>
</g>
<g >
<title>runtime.newobject (2,324,687 samples, 0.02%)</title><rect x="1021.1" y="437" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1024.13" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mspan).init (6,158,874 samples, 0.04%)</title><rect x="724.8" y="437" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="727.79" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,015,286 samples, 0.02%)</title><rect x="401.4" y="389" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="404.36" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (3,028,307 samples, 0.02%)</title><rect x="1081.3" y="421" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1084.33" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,533,678 samples, 0.01%)</title><rect x="407.5" y="389" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="410.48" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (7,793,549 samples, 0.05%)</title><rect x="1080.1" y="565" width="0.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1083.08" y="575.5" ></text>
</g>
<g >
<title>perf_ctx_disable (2,708,177 samples, 0.02%)</title><rect x="33.0" y="485" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="35.97" y="495.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (25,863,741 samples, 0.17%)</title><rect x="964.8" y="405" width="2.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="967.76" y="415.5" ></text>
</g>
<g >
<title>update_load_avg (11,649,749 samples, 0.08%)</title><rect x="315.7" y="261" width="0.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="318.69" y="271.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (2,272,277 samples, 0.01%)</title><rect x="384.4" y="357" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="387.45" y="367.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (30,680,749 samples, 0.20%)</title><rect x="1133.2" y="453" width="2.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1136.19" y="463.5" ></text>
</g>
<g >
<title>runtime.newobject (2,256,596 samples, 0.01%)</title><rect x="382.4" y="421" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="385.37" y="431.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,636,074 samples, 0.01%)</title><rect x="1188.1" y="597" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.08" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (33,934,384 samples, 0.22%)</title><rect x="724.3" y="533" width="2.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="727.27" y="543.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,226,150 samples, 0.01%)</title><rect x="1041.0" y="405" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1044.05" y="415.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (1,311,096 samples, 0.01%)</title><rect x="980.6" y="629" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="983.61" y="639.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (3,829,286 samples, 0.03%)</title><rect x="1081.7" y="613" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1084.68" y="623.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,809,386 samples, 0.03%)</title><rect x="1024.4" y="325" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1027.38" y="335.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,492,584 samples, 0.01%)</title><rect x="1018.2" y="293" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1021.23" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (6,941,073 samples, 0.05%)</title><rect x="378.0" y="469" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="381.00" y="479.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (13,055,958 samples, 0.09%)</title><rect x="1064.6" y="597" width="1.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1067.65" y="607.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,190,494 samples, 0.01%)</title><rect x="653.4" y="309" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="656.41" y="319.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (8,480,388 samples, 0.06%)</title><rect x="811.8" y="357" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="814.78" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_free (5,054,136 samples, 0.03%)</title><rect x="335.1" y="213" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="338.06" y="223.5" ></text>
</g>
<g >
<title>runtime.newarray (37,539,045 samples, 0.25%)</title><rect x="985.4" y="405" width="2.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="988.38" y="415.5" ></text>
</g>
<g >
<title>d_set_d_op (1,546,526 samples, 0.01%)</title><rect x="1107.9" y="373" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1110.86" y="383.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (3,890,695 samples, 0.03%)</title><rect x="45.6" y="581" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="48.64" y="591.5" ></text>
</g>
<g >
<title>do_wp_page (1,347,761 samples, 0.01%)</title><rect x="50.2" y="421" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="53.20" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (2,084,609 samples, 0.01%)</title><rect x="147.8" y="613" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="150.83" y="623.5" ></text>
</g>
<g >
<title>__sys_bpf (580,898,882 samples, 3.83%)</title><rect x="1091.7" y="485" width="45.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1094.68" y="495.5" >__sy..</text>
</g>
<g >
<title>runtime.startTheWorldWithSema (4,691,993 samples, 0.03%)</title><rect x="50.1" y="629" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="53.06" y="639.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="709" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1192.69" y="719.5" ></text>
</g>
<g >
<title>bpf_seq_write (40,170,205 samples, 0.26%)</title><rect x="688.4" y="341" width="3.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="691.40" y="351.5" ></text>
</g>
<g >
<title>update_curr (8,274,996 samples, 0.05%)</title><rect x="315.0" y="261" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="318.04" y="271.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (2,121,359 samples, 0.01%)</title><rect x="868.0" y="629" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="870.97" y="639.5" ></text>
</g>
<g >
<title>refill_obj_stock (2,791,951 samples, 0.02%)</title><rect x="964.5" y="357" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="967.48" y="367.5" ></text>
</g>
<g >
<title>security_capable (11,051,426 samples, 0.07%)</title><rect x="815.4" y="421" width="0.9" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="818.44" y="431.5" ></text>
</g>
<g >
<title>__radix_tree_delete (4,688,582 samples, 0.03%)</title><rect x="910.8" y="373" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="913.81" y="383.5" ></text>
</g>
<g >
<title>__x64_sys_close (5,423,326 samples, 0.04%)</title><rect x="278.5" y="533" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="281.55" y="543.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,869,930 samples, 0.03%)</title><rect x="1022.6" y="405" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1025.64" y="415.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (1,432,785,726 samples, 9.45%)</title><rect x="266.2" y="597" width="111.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="269.18" y="607.5" >syscall.Sysca..</text>
</g>
<g >
<title>__alloc_pages (4,500,759 samples, 0.03%)</title><rect x="996.9" y="261" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="999.85" y="271.5" ></text>
</g>
<g >
<title>___slab_alloc (45,508,071 samples, 0.30%)</title><rect x="805.8" y="357" width="3.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="808.78" y="367.5" ></text>
</g>
<g >
<title>___slab_alloc (18,882,190 samples, 0.12%)</title><rect x="793.8" y="341" width="1.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="796.79" y="351.5" ></text>
</g>
<g >
<title>runtime.pidleget (1,451,089 samples, 0.01%)</title><rect x="269.9" y="485" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="272.91" y="495.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,903,791 samples, 0.01%)</title><rect x="922.2" y="277" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="925.21" y="287.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func1 (38,034,203 samples, 0.25%)</title><rect x="871.8" y="581" width="2.9" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="874.77" y="591.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (3,029,072 samples, 0.02%)</title><rect x="231.1" y="581" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="234.11" y="591.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,283,842 samples, 0.02%)</title><rect x="50.1" y="453" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="53.13" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.walkType (20,517,287 samples, 0.14%)</title><rect x="390.4" y="437" width="1.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="393.40" y="447.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (6,031,388 samples, 0.04%)</title><rect x="1061.0" y="293" width="0.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1063.99" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (6,143,487 samples, 0.04%)</title><rect x="1061.5" y="309" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1064.46" y="319.5" ></text>
</g>
<g >
<title>runtime.interhash (1,539,541 samples, 0.01%)</title><rect x="1038.0" y="437" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1041.00" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,027,978 samples, 0.02%)</title><rect x="1045.3" y="357" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1048.31" y="367.5" ></text>
</g>
<g >
<title>alloc_file (125,163,276 samples, 0.83%)</title><rect x="783.0" y="389" width="9.7" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="785.98" y="399.5" ></text>
</g>
<g >
<title>sync.(*Map).LoadAndDelete (8,716,292 samples, 0.06%)</title><rect x="265.0" y="597" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="267.97" y="607.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (30,596,377 samples, 0.20%)</title><rect x="759.8" y="597" width="2.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="762.77" y="607.5" ></text>
</g>
<g >
<title>runtime.mallocgc (48,025,714 samples, 0.32%)</title><rect x="1046.0" y="421" width="3.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1049.01" y="431.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,413,143 samples, 0.01%)</title><rect x="864.0" y="437" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="867.03" y="447.5" ></text>
</g>
<g >
<title>ptep_clear_flush (2,103,442 samples, 0.01%)</title><rect x="993.0" y="277" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="995.99" y="287.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="309" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1014.74" y="319.5" ></text>
</g>
<g >
<title>____fput (914,990,737 samples, 6.04%)</title><rect x="901.3" y="469" width="71.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="904.33" y="479.5" >____fput</text>
</g>
<g >
<title>errors.Is (4,613,762 samples, 0.03%)</title><rect x="764.4" y="597" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="767.45" y="607.5" ></text>
</g>
<g >
<title>native_load_tls (1,419,070 samples, 0.01%)</title><rect x="49.5" y="725" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="52.54" y="735.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (28,034,050 samples, 0.18%)</title><rect x="46.9" y="469" width="2.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="49.89" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (7,720,281 samples, 0.05%)</title><rect x="1021.7" y="437" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1024.74" y="447.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (1,515,467 samples, 0.01%)</title><rect x="1093.7" y="469" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1096.72" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (18,364,156 samples, 0.12%)</title><rect x="1000.5" y="389" width="1.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1003.52" y="399.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,940,481 samples, 0.05%)</title><rect x="1151.3" y="421" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1154.34" y="431.5" ></text>
</g>
<g >
<title>runtime.newobject (2,317,127 samples, 0.02%)</title><rect x="1027.5" y="437" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1030.50" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,809,386 samples, 0.03%)</title><rect x="1024.4" y="373" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1027.38" y="383.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,553,178 samples, 0.01%)</title><rect x="10.6" y="677" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="13.63" y="687.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (5,462,190 samples, 0.04%)</title><rect x="974.1" y="565" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="977.09" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (2,270,158 samples, 0.01%)</title><rect x="1001.7" y="293" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1004.72" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,778,465 samples, 0.06%)</title><rect x="941.1" y="341" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="944.07" y="351.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (1,552,420 samples, 0.01%)</title><rect x="1067.8" y="405" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1070.82" y="415.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (7,687,776 samples, 0.05%)</title><rect x="250.6" y="645" width="0.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="253.63" y="655.5" ></text>
</g>
<g >
<title>array_map_alloc_check (6,140,944 samples, 0.04%)</title><rect x="1093.2" y="469" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1096.24" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,193,059 samples, 0.04%)</title><rect x="1021.8" y="389" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1024.80" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (22,928,936 samples, 0.15%)</title><rect x="1060.2" y="357" width="1.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1063.21" y="367.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (1,530,439 samples, 0.01%)</title><rect x="1081.1" y="549" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1084.10" y="559.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,496,153 samples, 0.01%)</title><rect x="230.8" y="565" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="233.84" y="575.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.testCreateMapGaugeEbpf (1,061,838,538 samples, 7.00%)</title><rect x="980.9" y="661" width="82.6" height="15.0" fill="rgb(207,12,2)" rx="2" ry="2" />
<text x="983.86" y="671.5" >github.co..</text>
</g>
<g >
<title>migrate_enable (8,434,039 samples, 0.06%)</title><rect x="697.8" y="373" width="0.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="700.78" y="383.5" ></text>
</g>
<g >
<title>runtime.findObject (1,488,411 samples, 0.01%)</title><rect x="386.9" y="341" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="389.88" y="351.5" ></text>
</g>
<g >
<title>sched_clock (1,890,832 samples, 0.01%)</title><rect x="929.0" y="325" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="932.04" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (24,463,837 samples, 0.16%)</title><rect x="760.1" y="533" width="1.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="763.07" y="543.5" ></text>
</g>
<g >
<title>errseq_sample (1,377,409 samples, 0.01%)</title><rect x="800.7" y="389" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="803.74" y="399.5" ></text>
</g>
<g >
<title>runtime.typehash (6,799,336 samples, 0.04%)</title><rect x="525.0" y="533" width="0.5" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="527.99" y="543.5" ></text>
</g>
<g >
<title>runtime.casgstatus (6,505,493 samples, 0.04%)</title><rect x="268.8" y="549" width="0.6" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="271.85" y="559.5" ></text>
</g>
<g >
<title>x86_pmu_enable (1,813,062 samples, 0.01%)</title><rect x="45.8" y="533" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="48.80" y="543.5" ></text>
</g>
<g >
<title>exc_page_fault (6,089,602 samples, 0.04%)</title><rect x="1188.3" y="629" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1191.33" y="639.5" ></text>
</g>
<g >
<title>update_cfs_group (1,610,667 samples, 0.01%)</title><rect x="253.8" y="373" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="256.85" y="383.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (15,245,561 samples, 0.10%)</title><rect x="27.3" y="533" width="1.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="30.26" y="543.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (1,528,897 samples, 0.01%)</title><rect x="1024.9" y="405" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1027.86" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit (2,316,884 samples, 0.02%)</title><rect x="1034.8" y="405" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1037.82" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (24,503,995 samples, 0.16%)</title><rect x="1079.3" y="581" width="1.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1082.32" y="591.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (16,576,764 samples, 0.11%)</title><rect x="1054.7" y="277" width="1.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1057.74" y="287.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.testGetMapsInfo (4,497,897,117 samples, 29.67%)</title><rect x="412.8" y="645" width="350.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="415.82" y="655.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.tes..</text>
</g>
<g >
<title>syscall.Syscall (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="485" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1066.20" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (15,721,044 samples, 0.10%)</title><rect x="992.5" y="357" width="1.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="995.48" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_free (16,952,396 samples, 0.11%)</title><rect x="970.2" y="421" width="1.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="973.24" y="431.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (3,015,286 samples, 0.02%)</title><rect x="401.4" y="341" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="404.36" y="351.5" ></text>
</g>
<g >
<title>runtime.entersyscall (1,538,666 samples, 0.01%)</title><rect x="538.1" y="501" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="541.07" y="511.5" ></text>
</g>
<g >
<title>runtime.makemap (37,539,045 samples, 0.25%)</title><rect x="985.4" y="437" width="2.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="988.38" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (9,066,558 samples, 0.06%)</title><rect x="1187.2" y="629" width="0.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1190.19" y="639.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (39,129,695 samples, 0.26%)</title><rect x="261.8" y="581" width="3.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="264.79" y="591.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,283,842 samples, 0.02%)</title><rect x="50.1" y="517" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="53.13" y="527.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (1,293,809,683 samples, 8.53%)</title><rect x="554.5" y="389" width="100.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="557.53" y="399.5" >bpf_map_seq_..</text>
</g>
<g >
<title>runtime.unlock2 (2,998,707 samples, 0.02%)</title><rect x="864.4" y="469" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="867.41" y="479.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (114,911,940 samples, 0.76%)</title><rect x="64.1" y="629" width="9.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="67.12" y="639.5" ></text>
</g>
<g >
<title>do_wp_page (30,048,787 samples, 0.20%)</title><rect x="1054.1" y="341" width="2.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1057.06" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,032,056 samples, 0.02%)</title><rect x="750.7" y="437" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="753.71" y="447.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (4,029,635 samples, 0.03%)</title><rect x="264.2" y="533" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="267.19" y="543.5" ></text>
</g>
<g >
<title>record_times (2,744,705 samples, 0.02%)</title><rect x="319.7" y="277" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="322.74" y="287.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,920,907 samples, 0.02%)</title><rect x="194.3" y="549" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="197.35" y="559.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (9,043,260 samples, 0.06%)</title><rect x="1012.7" y="309" width="0.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1015.69" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (8,351,333 samples, 0.06%)</title><rect x="385.2" y="389" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="388.16" y="399.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (7,633,718 samples, 0.05%)</title><rect x="419.7" y="613" width="0.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="422.75" y="623.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (6,018,847 samples, 0.04%)</title><rect x="810.1" y="341" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="813.09" y="351.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (25,909,081 samples, 0.17%)</title><rect x="911.2" y="373" width="2.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="914.17" y="383.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (12,138,844 samples, 0.08%)</title><rect x="356.6" y="325" width="0.9" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="359.60" y="335.5" ></text>
</g>
<g >
<title>consume_obj_stock (2,296,892 samples, 0.02%)</title><rect x="1127.2" y="357" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1130.21" y="367.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,356,869 samples, 0.02%)</title><rect x="12.7" y="453" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="15.70" y="463.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,546,219 samples, 0.01%)</title><rect x="1025.6" y="421" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1028.58" y="431.5" ></text>
</g>
<g >
<title>runtime.greyobject (1,524,843 samples, 0.01%)</title><rect x="389.0" y="277" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="391.99" y="287.5" ></text>
</g>
<g >
<title>security_bpf (2,248,409 samples, 0.01%)</title><rect x="820.4" y="453" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="823.42" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,488,192 samples, 0.01%)</title><rect x="703.1" y="533" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="706.08" y="543.5" ></text>
</g>
<g >
<title>perf_ctx_disable (1,495,879 samples, 0.01%)</title><rect x="21.3" y="405" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="24.34" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,776,194 samples, 0.02%)</title><rect x="1081.3" y="453" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1084.33" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (15,721,044 samples, 0.10%)</title><rect x="992.5" y="373" width="1.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="995.48" y="383.5" ></text>
</g>
<g >
<title>schedule (3,953,438 samples, 0.03%)</title><rect x="14.3" y="533" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="17.30" y="543.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (23,349,076 samples, 0.15%)</title><rect x="387.8" y="421" width="1.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="390.82" y="431.5" ></text>
</g>
<g >
<title>wp_page_copy (1,467,716 samples, 0.01%)</title><rect x="1006.2" y="293" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1009.22" y="303.5" ></text>
</g>
<g >
<title>runtime.findObject (1,477,261 samples, 0.01%)</title><rect x="1007.6" y="261" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1010.57" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_rq_lock_irqsave (2,063,295 samples, 0.01%)</title><rect x="12.4" y="389" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="15.45" y="399.5" ></text>
</g>
<g >
<title>update_cfs_group (2,429,233 samples, 0.02%)</title><rect x="11.9" y="421" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="14.91" y="431.5" ></text>
</g>
<g >
<title>shuffle_freelist (3,810,882 samples, 0.03%)</title><rect x="1103.5" y="309" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1106.53" y="319.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,519,938 samples, 0.01%)</title><rect x="1047.8" y="229" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1050.83" y="239.5" ></text>
</g>
<g >
<title>clear_page_erms (17,689,665 samples, 0.12%)</title><rect x="1101.7" y="261" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1104.73" y="271.5" ></text>
</g>
<g >
<title>bpf_map_release (334,845,095 samples, 2.21%)</title><rect x="299.4" y="421" width="26.0" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="302.35" y="431.5" >b..</text>
</g>
<g >
<title>__schedule (2,061,570 samples, 0.01%)</title><rect x="49.4" y="565" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="52.36" y="575.5" ></text>
</g>
<g >
<title>runtime.interhash (19,017,717 samples, 0.13%)</title><rect x="397.4" y="421" width="1.5" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="400.39" y="431.5" ></text>
</g>
<g >
<title>[[vdso]] (1,350,400 samples, 0.01%)</title><rect x="63.1" y="597" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="66.07" y="607.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (2,918,477 samples, 0.02%)</title><rect x="916.1" y="293" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="919.10" y="303.5" ></text>
</g>
<g >
<title>runtime.park_m (57,278,300 samples, 0.38%)</title><rect x="252.2" y="629" width="4.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="255.24" y="639.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,492,584 samples, 0.01%)</title><rect x="1018.2" y="357" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1021.23" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,767,626 samples, 0.04%)</title><rect x="993.3" y="229" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="996.26" y="239.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast.func1 (2,610,988 samples, 0.02%)</title><rect x="879.4" y="533" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="882.43" y="543.5" ></text>
</g>
<g >
<title>node_tag_clear (2,146,700 samples, 0.01%)</title><rect x="819.3" y="389" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="822.32" y="399.5" ></text>
</g>
<g >
<title>__kmem_cache_free (1,467,192 samples, 0.01%)</title><rect x="360.6" y="245" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="363.59" y="255.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (10,665,086 samples, 0.07%)</title><rect x="1010.7" y="405" width="0.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1013.73" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (9,235,634 samples, 0.06%)</title><rect x="1026.7" y="389" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1029.72" y="399.5" ></text>
</g>
<g >
<title>idr_remove (33,777,878 samples, 0.22%)</title><rect x="302.6" y="389" width="2.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="305.65" y="399.5" ></text>
</g>
<g >
<title>runtime.lock2 (4,167,425 samples, 0.03%)</title><rect x="262.2" y="533" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="265.23" y="543.5" ></text>
</g>
<g >
<title>runtime.mapassign (1,523,418 samples, 0.01%)</title><rect x="1018.9" y="453" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1021.94" y="463.5" ></text>
</g>
<g >
<title>runtime.schedinit (1,706,771 samples, 0.01%)</title><rect x="1189.6" y="709" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1192.56" y="719.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (13,609,932 samples, 0.09%)</title><rect x="1043.6" y="469" width="1.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1046.55" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (3,056,543 samples, 0.02%)</title><rect x="390.5" y="421" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="393.46" y="431.5" ></text>
</g>
<g >
<title>delete_node (1,441,365 samples, 0.01%)</title><rect x="303.1" y="341" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="306.11" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,287,071 samples, 0.02%)</title><rect x="798.8" y="309" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="801.78" y="319.5" ></text>
</g>
<g >
<title>try_to_wake_up (209,648,353 samples, 1.38%)</title><rect x="306.8" y="341" width="16.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="309.85" y="351.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (11,543,739 samples, 0.08%)</title><rect x="705.8" y="597" width="0.9" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="708.75" y="607.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (6,903,543 samples, 0.05%)</title><rect x="1117.3" y="421" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1120.32" y="431.5" ></text>
</g>
<g >
<title>runtime.suspendG (10,210,532 samples, 0.07%)</title><rect x="63.0" y="613" width="0.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="65.97" y="623.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (2,898,119 samples, 0.02%)</title><rect x="256.7" y="389" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="259.75" y="399.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (7,654,361 samples, 0.05%)</title><rect x="1142.6" y="485" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1145.64" y="495.5" ></text>
</g>
<g >
<title>runtime.gcMarkDone.func1 (2,255,359 samples, 0.01%)</title><rect x="50.5" y="661" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="53.48" y="671.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read.func1 (1,489,942 samples, 0.01%)</title><rect x="537.7" y="533" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="540.65" y="543.5" ></text>
</g>
<g >
<title>rcu_core (10,163,670 samples, 0.07%)</title><rect x="334.8" y="261" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="337.80" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,848,681 samples, 0.03%)</title><rect x="412.5" y="421" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="415.52" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (1,484,035 samples, 0.01%)</title><rect x="390.2" y="373" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="393.16" y="383.5" ></text>
</g>
<g >
<title>rmqueue (1,547,702 samples, 0.01%)</title><rect x="1151.8" y="325" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1154.76" y="335.5" ></text>
</g>
<g >
<title>runtime.newobject (31,881,170 samples, 0.21%)</title><rect x="1079.2" y="597" width="2.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1082.20" y="607.5" ></text>
</g>
<g >
<title>__alloc_pages (20,894,570 samples, 0.14%)</title><rect x="788.0" y="277" width="1.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="790.99" y="287.5" ></text>
</g>
<g >
<title>newidle_balance (2,631,107 samples, 0.02%)</title><rect x="12.4" y="421" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="15.43" y="431.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (2,296,980 samples, 0.02%)</title><rect x="1185.2" y="421" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1188.20" y="431.5" ></text>
</g>
<g >
<title>filp_close (1,415,393 samples, 0.01%)</title><rect x="892.2" y="517" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="895.22" y="527.5" ></text>
</g>
<g >
<title>kmem_cache_free (38,892,032 samples, 0.26%)</title><rect x="359.0" y="373" width="3.0" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="362.01" y="383.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (51,883,245 samples, 0.34%)</title><rect x="348.7" y="357" width="4.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="351.74" y="367.5" ></text>
</g>
<g >
<title>sched_clock (6,336,741 samples, 0.04%)</title><rect x="926.5" y="277" width="0.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="929.51" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.LoadKernelSpec (444,312,034 samples, 2.93%)</title><rect x="377.9" y="501" width="34.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="380.94" y="511.5" >gi..</text>
</g>
<g >
<title>get_page_from_freelist (1,508,427 samples, 0.01%)</title><rect x="1024.6" y="261" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1027.56" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (23,201,697 samples, 0.15%)</title><rect x="1038.5" y="421" width="1.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1041.48" y="431.5" ></text>
</g>
<g >
<title>sched_clock (3,042,236 samples, 0.02%)</title><rect x="928.7" y="309" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="931.69" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newProgramWithOptions (448,160,715 samples, 2.96%)</title><rect x="377.9" y="533" width="34.9" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="380.94" y="543.5" >gi..</text>
</g>
<g >
<title>x86_pmu_enable (25,457,834 samples, 0.17%)</title><rect x="937.4" y="341" width="2.0" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="940.41" y="351.5" ></text>
</g>
<g >
<title>__slab_free (7,972,893 samples, 0.05%)</title><rect x="367.9" y="389" width="0.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="370.86" y="399.5" ></text>
</g>
<g >
<title>free_unref_page_list (6,795,669 samples, 0.04%)</title><rect x="48.2" y="373" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="51.19" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (2,308,930 samples, 0.02%)</title><rect x="725.4" y="501" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="728.39" y="511.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (9,120,102 samples, 0.06%)</title><rect x="1016.5" y="373" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1019.52" y="383.5" ></text>
</g>
<g >
<title>runtime.scanobject (2,951,627 samples, 0.02%)</title><rect x="1007.6" y="277" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1010.57" y="287.5" ></text>
</g>
<g >
<title>irqentry_exit (2,763,048 samples, 0.02%)</title><rect x="1062.3" y="421" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1065.31" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (3,811,703 samples, 0.03%)</title><rect x="388.8" y="373" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="391.81" y="383.5" ></text>
</g>
<g >
<title>rb_erase (2,579,235 samples, 0.02%)</title><rect x="949.6" y="357" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="952.60" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,925,510 samples, 0.05%)</title><rect x="1024.7" y="421" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1027.74" y="431.5" ></text>
</g>
<g >
<title>alloc_file (1,530,463 samples, 0.01%)</title><rect x="782.2" y="405" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="785.19" y="415.5" ></text>
</g>
<g >
<title>runtime.(*activeSweep).end (1,463,636 samples, 0.01%)</title><rect x="245.3" y="661" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="248.28" y="671.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (4,741,299 samples, 0.03%)</title><rect x="1061.1" y="261" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1064.09" y="271.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (2,312,734 samples, 0.02%)</title><rect x="700.1" y="437" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="703.11" y="447.5" ></text>
</g>
<g >
<title>runtime.typedslicecopy (3,007,310 samples, 0.02%)</title><rect x="383.0" y="421" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="385.96" y="431.5" ></text>
</g>
<g >
<title>ttwu_do_activate (21,431,697 samples, 0.14%)</title><rect x="18.2" y="453" width="1.6" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="21.17" y="463.5" ></text>
</g>
<g >
<title>__fput (2,302,442 samples, 0.02%)</title><rect x="49.4" y="613" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="52.36" y="623.5" ></text>
</g>
<g >
<title>schedule (172,704,343 samples, 1.14%)</title><rect x="28.5" y="549" width="13.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="31.49" y="559.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,492,578 samples, 0.01%)</title><rect x="382.8" y="405" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="385.78" y="415.5" ></text>
</g>
<g >
<title>__update_load_avg_se (9,374,393 samples, 0.06%)</title><rect x="344.6" y="309" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="347.57" y="319.5" ></text>
</g>
<g >
<title>runtime.mstart1 (8,590,680 samples, 0.06%)</title><rect x="14.0" y="661" width="0.7" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="17.02" y="671.5" ></text>
</g>
<g >
<title>rmqueue_bulk (1,511,472 samples, 0.01%)</title><rect x="1123.5" y="245" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1126.47" y="255.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (6,031,388 samples, 0.04%)</title><rect x="1061.0" y="277" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1063.99" y="287.5" ></text>
</g>
<g >
<title>resched_curr (3,199,148 samples, 0.02%)</title><rect x="919.9" y="293" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="922.90" y="303.5" ></text>
</g>
<g >
<title>runtime.newobject (2,244,406 samples, 0.01%)</title><rect x="382.8" y="421" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="385.78" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,733,450 samples, 0.02%)</title><rect x="746.5" y="517" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="749.48" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).Close (1,424,078,527 samples, 9.39%)</title><rect x="869.9" y="645" width="110.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="872.90" y="655.5" >github.com/ci..</text>
</g>
<g >
<title>runtime.(*gcWork).tryGet (2,990,823 samples, 0.02%)</title><rect x="56.8" y="645" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="59.80" y="655.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,466,746 samples, 0.03%)</title><rect x="1008.1" y="341" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1011.15" y="351.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (5,327,118 samples, 0.04%)</title><rect x="1012.7" y="277" width="0.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1015.69" y="287.5" ></text>
</g>
<g >
<title>cache_from_obj (6,267,663 samples, 0.04%)</title><rect x="963.5" y="373" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="966.54" y="383.5" ></text>
</g>
<g >
<title>security_capable (6,928,655 samples, 0.05%)</title><rect x="814.1" y="405" width="0.5" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="817.09" y="415.5" ></text>
</g>
<g >
<title>errors.Is (1,459,380 samples, 0.01%)</title><rect x="1075.4" y="629" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1078.35" y="639.5" ></text>
</g>
<g >
<title>clear_page_erms (3,032,056 samples, 0.02%)</title><rect x="750.7" y="421" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="753.71" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (3,854,023 samples, 0.03%)</title><rect x="1143.6" y="533" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1146.65" y="543.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (2,918,477 samples, 0.02%)</title><rect x="916.1" y="325" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="919.10" y="335.5" ></text>
</g>
<g >
<title>errors.Is (8,367,052 samples, 0.06%)</title><rect x="1077.0" y="613" width="0.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1080.00" y="623.5" ></text>
</g>
<g >
<title>__schedule (1,455,732 samples, 0.01%)</title><rect x="148.5" y="517" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="151.54" y="527.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,734,150 samples, 0.03%)</title><rect x="1056.0" y="309" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1059.03" y="319.5" ></text>
</g>
<g >
<title>runtime.bgsweep (100,527,856 samples, 0.66%)</title><rect x="244.4" y="693" width="7.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="247.42" y="703.5" ></text>
</g>
<g >
<title>runtime.memmove (43,731,592 samples, 0.29%)</title><rect x="1053.4" y="453" width="3.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1056.36" y="463.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (1,530,946 samples, 0.01%)</title><rect x="996.6" y="245" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="999.57" y="255.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (4,648,223 samples, 0.03%)</title><rect x="1123.6" y="293" width="0.3" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="1126.58" y="303.5" ></text>
</g>
<g >
<title>cap_capable (2,349,336 samples, 0.02%)</title><rect x="1131.9" y="421" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1134.94" y="431.5" ></text>
</g>
<g >
<title>dequeue_task_fair (40,308,136 samples, 0.27%)</title><rect x="29.3" y="501" width="3.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="32.30" y="511.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (6,914,445 samples, 0.05%)</title><rect x="15.7" y="645" width="0.5" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="18.70" y="655.5" ></text>
</g>
<g >
<title>memcg_account_kmem (1,531,528 samples, 0.01%)</title><rect x="1106.1" y="341" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1109.15" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (7,689,070 samples, 0.05%)</title><rect x="1000.8" y="245" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1003.82" y="255.5" ></text>
</g>
<g >
<title>irqentry_exit (2,305,695 samples, 0.02%)</title><rect x="1151.9" y="469" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1154.94" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (1,309,956,187 samples, 8.64%)</title><rect x="764.4" y="613" width="102.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="767.39" y="623.5" >github.com/c..</text>
</g>
<g >
<title>asm_exc_page_fault (1,521,262 samples, 0.01%)</title><rect x="1017.3" y="405" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1020.35" y="415.5" ></text>
</g>
<g >
<title>__radix_tree_preload (2,220,616 samples, 0.01%)</title><rect x="819.5" y="421" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="822.54" y="431.5" ></text>
</g>
<g >
<title>__dentry_kill (1,546,849 samples, 0.01%)</title><rect x="903.7" y="437" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="906.67" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (7,658,414 samples, 0.05%)</title><rect x="746.8" y="565" width="0.6" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="749.77" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (4,678,043 samples, 0.03%)</title><rect x="916.5" y="341" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="919.53" y="351.5" ></text>
</g>
<g >
<title>alloc_pages (20,894,570 samples, 0.14%)</title><rect x="788.0" y="293" width="1.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="790.99" y="303.5" ></text>
</g>
<g >
<title>pick_next_entity (2,918,451 samples, 0.02%)</title><rect x="335.9" y="357" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="338.94" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (1,496,153 samples, 0.01%)</title><rect x="230.8" y="597" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="233.84" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (439,410,236 samples, 2.90%)</title><rect x="832.0" y="581" width="34.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="835.03" y="591.5" >gi..</text>
</g>
<g >
<title>__rcu_read_lock (1,548,835 samples, 0.01%)</title><rect x="790.0" y="341" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="793.04" y="351.5" ></text>
</g>
<g >
<title>runtime.trygetfull (1,493,346 samples, 0.01%)</title><rect x="56.9" y="629" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="59.92" y="639.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (1,350,197 samples, 0.01%)</title><rect x="262.1" y="533" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="265.12" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).TypeName (2,223,677 samples, 0.01%)</title><rect x="1019.6" y="485" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1022.64" y="495.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (2,246,962 samples, 0.01%)</title><rect x="1049.6" y="389" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1052.57" y="399.5" ></text>
</g>
<g >
<title>idr_remove (1,830,408 samples, 0.01%)</title><rect x="931.8" y="421" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="934.84" y="431.5" ></text>
</g>
<g >
<title>runtime.(*scavengeIndex).alloc (6,862,748 samples, 0.05%)</title><rect x="406.1" y="277" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="409.11" y="287.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,190,494 samples, 0.01%)</title><rect x="653.4" y="293" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="656.41" y="303.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (17,161,955 samples, 0.11%)</title><rect x="725.6" y="517" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="728.57" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (20,839,263 samples, 0.14%)</title><rect x="1101.7" y="277" width="1.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1104.67" y="287.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (66,074,410 samples, 0.44%)</title><rect x="17.0" y="581" width="5.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="19.98" y="591.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (2,343,464 samples, 0.02%)</title><rect x="900.5" y="485" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="903.52" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.kernelSpec (490,022,731 samples, 3.23%)</title><rect x="980.9" y="501" width="38.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="983.92" y="511.5" >git..</text>
</g>
<g >
<title>task_work_add (3,687,875 samples, 0.02%)</title><rect x="891.4" y="485" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="894.36" y="495.5" ></text>
</g>
<g >
<title>enqueue_task (84,448,059 samples, 0.56%)</title><rect x="920.5" y="325" width="6.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="923.52" y="335.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (77,213,927 samples, 0.51%)</title><rect x="1143.9" y="533" width="6.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1146.95" y="543.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,515,061 samples, 0.01%)</title><rect x="1187.5" y="485" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1190.49" y="495.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (2,040,094 samples, 0.01%)</title><rect x="1060.3" y="309" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="1063.31" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (2,270,158 samples, 0.01%)</title><rect x="1001.7" y="261" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1004.72" y="271.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (3,702,392 samples, 0.02%)</title><rect x="266.5" y="581" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="269.49" y="591.5" ></text>
</g>
<g >
<title>irqentry_exit (1,519,938 samples, 0.01%)</title><rect x="1047.8" y="261" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1050.83" y="271.5" ></text>
</g>
<g >
<title>runtime.startm (68,118,188 samples, 0.45%)</title><rect x="16.8" y="613" width="5.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="19.83" y="623.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (4,876,300 samples, 0.03%)</title><rect x="926.6" y="229" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="929.57" y="239.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (1,329,801 samples, 0.01%)</title><rect x="993.0" y="229" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="996.05" y="239.5" ></text>
</g>
<g >
<title>schedule (5,840,582 samples, 0.04%)</title><rect x="45.5" y="629" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="48.54" y="639.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (1,507,247 samples, 0.01%)</title><rect x="1079.0" y="405" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1081.96" y="415.5" ></text>
</g>
<g >
<title>select_task_rq_fair (1,563,167 samples, 0.01%)</title><rect x="306.7" y="341" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="309.73" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (17,876,061 samples, 0.12%)</title><rect x="233.0" y="613" width="1.4" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="236.05" y="623.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (2,179,445 samples, 0.01%)</title><rect x="26.7" y="485" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="29.68" y="495.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (45,037,644 samples, 0.30%)</title><rect x="539.7" y="405" width="3.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="542.66" y="415.5" ></text>
</g>
<g >
<title>__folio_alloc (3,776,194 samples, 0.02%)</title><rect x="1081.3" y="437" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1084.33" y="447.5" ></text>
</g>
<g >
<title>runtime.schedule (40,426,506 samples, 0.27%)</title><rect x="10.8" y="661" width="3.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="13.77" y="671.5" ></text>
</g>
<g >
<title>array_map_alloc_check (1,523,462 samples, 0.01%)</title><rect x="814.6" y="437" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="817.63" y="447.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (35,170,110 samples, 0.23%)</title><rect x="816.7" y="421" width="2.8" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="819.75" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (420,381,104 samples, 2.77%)</title><rect x="832.9" y="533" width="32.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="835.91" y="543.5" >ru..</text>
</g>
<g >
<title>obj_cgroup_uncharge (3,335,489 samples, 0.02%)</title><rect x="361.7" y="357" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="364.73" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (17,652,905 samples, 0.12%)</title><rect x="383.2" y="437" width="1.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="386.25" y="447.5" ></text>
</g>
<g >
<title>__slab_free (2,424,567 samples, 0.02%)</title><rect x="335.1" y="197" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="338.15" y="207.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,492,584 samples, 0.01%)</title><rect x="1018.2" y="325" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1021.23" y="335.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="325" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1083.14" y="335.5" ></text>
</g>
<g >
<title>runtime.memmove (2,278,367 samples, 0.02%)</title><rect x="1011.6" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1014.56" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,053,219 samples, 0.02%)</title><rect x="406.4" y="69" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="409.40" y="79.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,060,761 samples, 0.02%)</title><rect x="767.1" y="549" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="770.06" y="559.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.testGetMapsInfo (144,570,243 samples, 0.95%)</title><rect x="1063.5" y="661" width="11.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1066.50" y="671.5" ></text>
</g>
<g >
<title>__free_pages (1,410,743 samples, 0.01%)</title><rect x="963.2" y="277" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="966.18" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (17,778,110 samples, 0.12%)</title><rect x="1021.6" y="453" width="1.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1024.56" y="463.5" ></text>
</g>
<g >
<title>bpf_seq_read (65,619,102 samples, 0.43%)</title><rect x="1067.7" y="421" width="5.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1070.70" y="431.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (22,940,773 samples, 0.15%)</title><rect x="20.0" y="533" width="1.7" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="22.96" y="543.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (5,337,489 samples, 0.04%)</title><rect x="1080.1" y="501" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1083.08" y="511.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1,409,010 samples, 0.01%)</title><rect x="14.2" y="533" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="17.19" y="543.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (1,556,474 samples, 0.01%)</title><rect x="819.8" y="437" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="822.78" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,283,175 samples, 0.02%)</title><rect x="1080.3" y="213" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1083.31" y="223.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (1,547,702 samples, 0.01%)</title><rect x="1151.8" y="309" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1154.76" y="319.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (2,776,369 samples, 0.02%)</title><rect x="1043.0" y="293" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1046.01" y="303.5" ></text>
</g>
<g >
<title>runtime.entersyscall (11,549,387 samples, 0.08%)</title><rect x="1083.1" y="549" width="0.9" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1086.10" y="559.5" ></text>
</g>
<g >
<title>runtime.unlock2 (3,817,728 samples, 0.03%)</title><rect x="1183.5" y="501" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1186.54" y="511.5" ></text>
</g>
<g >
<title>free_slab (2,830,292 samples, 0.02%)</title><rect x="963.2" y="309" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="966.17" y="319.5" ></text>
</g>
<g >
<title>__schedule (6,181,255 samples, 0.04%)</title><rect x="46.0" y="629" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="48.99" y="639.5" ></text>
</g>
<g >
<title>collapse_huge_page (3,807,044 samples, 0.03%)</title><rect x="1080.2" y="261" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1083.20" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (3,096,983 samples, 0.02%)</title><rect x="1092.8" y="469" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1095.76" y="479.5" ></text>
</g>
<g >
<title>irqentry_exit (1,515,189 samples, 0.01%)</title><rect x="194.8" y="581" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="197.85" y="591.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (439,851,906 samples, 2.90%)</title><rect x="1150.0" y="565" width="34.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1153.02" y="575.5" >ru..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,851,749 samples, 0.06%)</title><rect x="22.4" y="597" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="25.43" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (5,271,745 samples, 0.03%)</title><rect x="296.3" y="421" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="299.33" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (10,040,405 samples, 0.07%)</title><rect x="383.6" y="405" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="386.61" y="415.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (3,040,063 samples, 0.02%)</title><rect x="1016.8" y="229" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1019.75" y="239.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func1 (2,099,208 samples, 0.01%)</title><rect x="871.3" y="597" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="874.33" y="607.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,778,465 samples, 0.06%)</title><rect x="941.1" y="325" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="944.07" y="335.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (3,041,039 samples, 0.02%)</title><rect x="809.0" y="309" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="811.96" y="319.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (2,044,717 samples, 0.01%)</title><rect x="1055.7" y="213" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1058.71" y="223.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,449,866 samples, 0.01%)</title><rect x="194.4" y="485" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="197.40" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (3,089,554 samples, 0.02%)</title><rect x="402.4" y="213" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="405.44" y="223.5" ></text>
</g>
<g >
<title>psi_task_change (33,261,728 samples, 0.22%)</title><rect x="924.4" y="309" width="2.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="927.43" y="319.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (5,083,413 samples, 0.03%)</title><rect x="46.5" y="501" width="0.4" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="49.50" y="511.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (6,245,288 samples, 0.04%)</title><rect x="937.7" y="309" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="940.73" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_lock (26,803,625 samples, 0.18%)</title><rect x="34.5" y="421" width="2.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="37.53" y="431.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (2,317,220 samples, 0.02%)</title><rect x="1116.4" y="421" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="1119.43" y="431.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (2,117,013 samples, 0.01%)</title><rect x="790.4" y="341" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="793.44" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,772,565 samples, 0.02%)</title><rect x="307.5" y="325" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="310.51" y="335.5" ></text>
</g>
<g >
<title>bpf_prog_load (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="389" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="1066.20" y="399.5" ></text>
</g>
<g >
<title>check_kill_permission (1,447,637 samples, 0.01%)</title><rect x="22.6" y="517" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="25.65" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.findProgramTargetInKernel (444,312,034 samples, 2.93%)</title><rect x="377.9" y="517" width="34.6" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="380.94" y="527.5" >gi..</text>
</g>
<g >
<title>__bpf_map_inc_not_zero (7,720,776 samples, 0.05%)</title><rect x="1070.2" y="373" width="0.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1073.17" y="383.5" ></text>
</g>
<g >
<title>___slab_alloc (31,577,490 samples, 0.21%)</title><rect x="1101.4" y="357" width="2.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1104.37" y="367.5" ></text>
</g>
<g >
<title>dequeue_task_fair (7,235,992 samples, 0.05%)</title><rect x="253.4" y="389" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="256.43" y="399.5" ></text>
</g>
<g >
<title>runtime.exitsyscall0 (40,731,689 samples, 0.27%)</title><rect x="10.8" y="677" width="3.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="13.77" y="687.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (3,071,065 samples, 0.02%)</title><rect x="1011.0" y="229" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1014.03" y="239.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (6,862,748 samples, 0.05%)</title><rect x="406.1" y="421" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="409.11" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,479,597 samples, 0.01%)</title><rect x="988.2" y="341" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="991.18" y="351.5" ></text>
</g>
<g >
<title>runtime.interhash (1,555,302 samples, 0.01%)</title><rect x="406.9" y="453" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="409.88" y="463.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,639,924 samples, 0.03%)</title><rect x="1021.9" y="325" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1024.92" y="335.5" ></text>
</g>
<g >
<title>runtime.schedule (2,278,783 samples, 0.02%)</title><rect x="50.7" y="645" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="53.72" y="655.5" ></text>
</g>
<g >
<title>testing.(*B).doBench.func1 (7,840,389,570 samples, 51.72%)</title><rect x="257.9" y="709" width="610.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="260.87" y="719.5" >testing.(*B).doBench.func1</text>
</g>
<g >
<title>raw_spin_rq_lock_nested (1,405,686 samples, 0.01%)</title><rect x="960.4" y="405" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="963.43" y="415.5" ></text>
</g>
<g >
<title>xas_descend (3,062,589 samples, 0.02%)</title><rect x="1114.2" y="309" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1117.17" y="319.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,172,776 samples, 0.04%)</title><rect x="1025.9" y="421" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1028.88" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,636,074 samples, 0.01%)</title><rect x="1188.1" y="629" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1191.08" y="639.5" ></text>
</g>
<g >
<title>new_slab (48,953,609 samples, 0.32%)</title><rect x="1120.8" y="357" width="3.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1123.85" y="367.5" ></text>
</g>
<g >
<title>reweight_entity (1,329,800 samples, 0.01%)</title><rect x="253.9" y="357" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="256.87" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (11,919,307 samples, 0.08%)</title><rect x="447.6" y="581" width="1.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="450.63" y="591.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (3,848,681 samples, 0.03%)</title><rect x="412.5" y="485" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="415.52" y="495.5" ></text>
</g>
<g >
<title>runtime.gcFlushBgCredit (2,842,496 samples, 0.02%)</title><rect x="58.9" y="645" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="61.87" y="655.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (3,076,757 samples, 0.02%)</title><rect x="769.8" y="517" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="772.76" y="527.5" ></text>
</g>
<g >
<title>runtime.mstart1 (384,271,986 samples, 2.53%)</title><rect x="15.0" y="677" width="29.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="17.99" y="687.5" >ru..</text>
</g>
<g >
<title>__alloc_pages (35,162,251 samples, 0.23%)</title><rect x="1120.8" y="309" width="2.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1123.85" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (6,911,062 samples, 0.05%)</title><rect x="1042.8" y="453" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1045.79" y="463.5" ></text>
</g>
<g >
<title>runtime.findObject (2,268,263 samples, 0.01%)</title><rect x="1012.9" y="245" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1015.92" y="255.5" ></text>
</g>
<g >
<title>__alloc_pages (12,246,650 samples, 0.08%)</title><rect x="1109.5" y="293" width="1.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1112.53" y="303.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (38,415,940 samples, 0.25%)</title><rect x="1112.1" y="357" width="3.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1115.14" y="367.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="645" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1192.69" y="655.5" ></text>
</g>
<g >
<title>syscall.Syscall (817,446,700 samples, 5.39%)</title><rect x="768.4" y="549" width="63.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="771.41" y="559.5" >syscal..</text>
</g>
<g >
<title>__local_bh_enable_ip (11,560,139 samples, 0.08%)</title><rect x="635.3" y="341" width="0.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="638.34" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,472,013 samples, 0.02%)</title><rect x="904.0" y="437" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="906.96" y="447.5" ></text>
</g>
<g >
<title>set_next_entity (1,395,463 samples, 0.01%)</title><rect x="786.4" y="245" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="789.42" y="255.5" ></text>
</g>
<g >
<title>runtime.mallocgc (13,371,807 samples, 0.09%)</title><rect x="1007.8" y="389" width="1.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1010.80" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).Close (1,514,526,827 samples, 9.99%)</title><rect x="260.0" y="629" width="117.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="262.97" y="639.5" >github.com/cil..</text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (4,500,787 samples, 0.03%)</title><rect x="386.8" y="405" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="389.77" y="415.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (6,117,387 samples, 0.04%)</title><rect x="265.1" y="581" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="268.07" y="591.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (1,549,068 samples, 0.01%)</title><rect x="1021.2" y="405" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1024.19" y="415.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (1,593,362 samples, 0.01%)</title><rect x="41.6" y="453" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="44.56" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (1,529,484 samples, 0.01%)</title><rect x="1185.5" y="597" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1188.49" y="607.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (27,441,239 samples, 0.18%)</title><rect x="1085.0" y="533" width="2.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1088.02" y="543.5" ></text>
</g>
<g >
<title>new_slab (1,549,836 samples, 0.01%)</title><rect x="795.0" y="229" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="797.96" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,278,921 samples, 0.02%)</title><rect x="1189.7" y="613" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1192.69" y="623.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (18,934,970 samples, 0.12%)</title><rect x="998.6" y="437" width="1.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1001.63" y="447.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (864,305,128 samples, 5.70%)</title><rect x="1082.7" y="581" width="67.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1085.69" y="591.5" >syscall..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).TypeName (1,434,757 samples, 0.01%)</title><rect x="1019.4" y="485" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1022.41" y="495.5" ></text>
</g>
<g >
<title>runtime.unlock2 (4,578,712 samples, 0.03%)</title><rect x="864.8" y="485" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="867.82" y="495.5" ></text>
</g>
<g >
<title>[unknown] (3,842,788 samples, 0.03%)</title><rect x="10.0" y="645" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="655.5" ></text>
</g>
<g >
<title>__queue_work (233,729,345 samples, 1.54%)</title><rect x="305.6" y="373" width="18.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="308.61" y="383.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (40,230,977 samples, 0.27%)</title><rect x="952.7" y="357" width="3.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="955.72" y="367.5" ></text>
</g>
<g >
<title>security_capable (18,483,416 samples, 0.12%)</title><rect x="1130.7" y="437" width="1.4" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="1133.69" y="447.5" ></text>
</g>
<g >
<title>runtime.mallocgc (12,162,065 samples, 0.08%)</title><rect x="1017.6" y="405" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1020.58" y="415.5" ></text>
</g>
<g >
<title>runtime.(*scavengerState).park (57,278,300 samples, 0.38%)</title><rect x="252.2" y="677" width="4.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="255.24" y="687.5" ></text>
</g>
<g >
<title>runtime.interequal (1,546,093 samples, 0.01%)</title><rect x="397.3" y="421" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="400.27" y="431.5" ></text>
</g>
<g >
<title>x86_pmu_enable (5,409,876 samples, 0.04%)</title><rect x="33.2" y="469" width="0.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="36.22" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,250,145,151 samples, 8.25%)</title><rect x="273.8" y="549" width="97.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="276.80" y="559.5" >entry_SYSCA..</text>
</g>
<g >
<title>__flush_smp_call_function_queue (2,268,078 samples, 0.01%)</title><rect x="148.9" y="565" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="151.89" y="575.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (75,896,549 samples, 0.50%)</title><rect x="1100.4" y="373" width="5.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1103.42" y="383.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (10,868,017 samples, 0.07%)</title><rect x="932.0" y="421" width="0.9" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="935.04" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,380,734 samples, 0.02%)</title><rect x="939.6" y="373" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="942.58" y="383.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1,670,926 samples, 0.01%)</title><rect x="320.6" y="293" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="323.60" y="303.5" ></text>
</g>
<g >
<title>runtime.makeslice (2,246,185 samples, 0.01%)</title><rect x="382.6" y="421" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="385.61" y="431.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (33,785,828 samples, 0.22%)</title><rect x="231.8" y="629" width="2.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="234.81" y="639.5" ></text>
</g>
<g >
<title>ihold (2,300,770 samples, 0.02%)</title><rect x="1116.6" y="421" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1119.61" y="431.5" ></text>
</g>
<g >
<title>__folio_alloc (12,352,331 samples, 0.08%)</title><rect x="1039.2" y="277" width="1.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1042.20" y="287.5" ></text>
</g>
<g >
<title>runtime.(*mspan).init (1,540,187 samples, 0.01%)</title><rect x="1045.4" y="309" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1048.43" y="319.5" ></text>
</g>
<g >
<title>__collapse_huge_page_copy_succeeded.isra.0 (1,521,347 samples, 0.01%)</title><rect x="406.1" y="85" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="409.11" y="95.5" ></text>
</g>
<g >
<title>runtime.mcall (2,278,783 samples, 0.02%)</title><rect x="50.7" y="677" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="53.72" y="687.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (1,742,834 samples, 0.01%)</title><rect x="963.4" y="357" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="966.40" y="367.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (1,504,756 samples, 0.01%)</title><rect x="1133.1" y="453" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1136.07" y="463.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (26,633,397 samples, 0.18%)</title><rect x="268.2" y="565" width="2.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="271.25" y="575.5" ></text>
</g>
<g >
<title>runtime.strhash (1,546,410 samples, 0.01%)</title><rect x="412.3" y="453" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="415.28" y="463.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (9,190,617 samples, 0.06%)</title><rect x="1010.8" y="389" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1013.85" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (1,694,772 samples, 0.01%)</title><rect x="32.3" y="485" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="35.27" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (1,531,022 samples, 0.01%)</title><rect x="733.2" y="517" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="736.17" y="527.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (2,283,175 samples, 0.02%)</title><rect x="1080.3" y="245" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1083.31" y="255.5" ></text>
</g>
<g >
<title>update_rq_clock (23,500,568 samples, 0.16%)</title><rect x="321.3" y="325" width="1.9" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="324.34" y="335.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (2,295,779 samples, 0.02%)</title><rect x="385.8" y="405" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="388.81" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (1,508,427 samples, 0.01%)</title><rect x="1024.6" y="277" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1027.56" y="287.5" ></text>
</g>
<g >
<title>__folio_alloc (3,859,120 samples, 0.03%)</title><rect x="402.4" y="261" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="405.38" y="271.5" ></text>
</g>
<g >
<title>get_page_from_freelist (35,162,251 samples, 0.23%)</title><rect x="1120.8" y="293" width="2.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1123.85" y="303.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (3,004,229 samples, 0.02%)</title><rect x="808.7" y="245" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="811.73" y="255.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (83,890,680 samples, 0.55%)</title><rect x="392.6" y="437" width="6.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="395.59" y="447.5" ></text>
</g>
<g >
<title>shuffle_freelist (4,534,205 samples, 0.03%)</title><rect x="1124.3" y="325" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="1127.30" y="335.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (22,481,949 samples, 0.15%)</title><rect x="937.6" y="325" width="1.8" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="940.64" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (1,459,209 samples, 0.01%)</title><rect x="1185.0" y="517" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1187.97" y="527.5" ></text>
</g>
<g >
<title>runtime.mstart0 (8,590,680 samples, 0.06%)</title><rect x="14.0" y="677" width="0.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="17.02" y="687.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (1,518,421 samples, 0.01%)</title><rect x="1018.4" y="373" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1021.41" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (1,518,693 samples, 0.01%)</title><rect x="1186.7" y="597" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1189.68" y="607.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,515,061 samples, 0.01%)</title><rect x="1187.5" y="469" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1190.49" y="479.5" ></text>
</g>
<g >
<title>ktime_get (3,229,841 samples, 0.02%)</title><rect x="26.6" y="517" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="29.61" y="527.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (11,320,777 samples, 0.07%)</title><rect x="1056.8" y="453" width="0.8" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1059.77" y="463.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (6,862,748 samples, 0.05%)</title><rect x="406.1" y="261" width="0.5" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="409.11" y="271.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (1,502,947 samples, 0.01%)</title><rect x="387.1" y="357" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="390.12" y="367.5" ></text>
</g>
<g >
<title>rcu_do_batch (6,482,813 samples, 0.04%)</title><rect x="941.1" y="261" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="944.10" y="271.5" ></text>
</g>
<g >
<title>check_mem_access (2,310,096 samples, 0.02%)</title><rect x="412.6" y="309" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="415.64" y="319.5" ></text>
</g>
<g >
<title>schedule (6,342,512 samples, 0.04%)</title><rect x="46.0" y="645" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="48.99" y="655.5" ></text>
</g>
<g >
<title>runtime.profilealloc (5,304,436 samples, 0.03%)</title><rect x="747.6" y="581" width="0.4" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="750.61" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (5,953,496 samples, 0.04%)</title><rect x="767.7" y="581" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="770.66" y="591.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,661,892 samples, 0.02%)</title><rect x="992.7" y="277" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="995.70" y="287.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (1,546,202 samples, 0.01%)</title><rect x="1103.3" y="309" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1106.29" y="319.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (1,533,154 samples, 0.01%)</title><rect x="1073.8" y="629" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1076.83" y="639.5" ></text>
</g>
<g >
<title>update_curr (8,444,500 samples, 0.06%)</title><rect x="30.3" y="469" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="33.29" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Enum).copy (3,093,867 samples, 0.02%)</title><rect x="1021.3" y="453" width="0.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1024.31" y="463.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (1,522,208 samples, 0.01%)</title><rect x="1130.0" y="453" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1133.03" y="463.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,087,294 samples, 0.04%)</title><rect x="1078.6" y="501" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1081.60" y="511.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (2,259,114 samples, 0.01%)</title><rect x="1129.7" y="453" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1132.73" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (1,550,230 samples, 0.01%)</title><rect x="1077.9" y="613" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1080.89" y="623.5" ></text>
</g>
<g >
<title>exc_page_fault (1,540,120 samples, 0.01%)</title><rect x="1025.7" y="421" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1028.70" y="431.5" ></text>
</g>
<g >
<title>cap_capable (1,539,808 samples, 0.01%)</title><rect x="815.3" y="421" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="818.32" y="431.5" ></text>
</g>
<g >
<title>dequeue_entity (1,920,694 samples, 0.01%)</title><rect x="11.8" y="421" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="14.76" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).TypeName (2,271,578 samples, 0.01%)</title><rect x="981.9" y="453" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="984.93" y="463.5" ></text>
</g>
<g >
<title>psi_group_change (1,990,043 samples, 0.01%)</title><rect x="255.6" y="389" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="258.61" y="399.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (2,146,700 samples, 0.01%)</title><rect x="819.3" y="405" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="822.32" y="415.5" ></text>
</g>
<g >
<title>xas_start (4,625,970 samples, 0.03%)</title><rect x="1114.4" y="309" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1117.41" y="319.5" ></text>
</g>
<g >
<title>iput (20,100,447 samples, 0.13%)</title><rect x="362.7" y="373" width="1.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="365.75" y="383.5" ></text>
</g>
<g >
<title>pick_next_task_fair (148,625,073 samples, 0.98%)</title><rect x="336.2" y="357" width="11.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="339.17" y="367.5" ></text>
</g>
<g >
<title>__folio_alloc (5,269,229 samples, 0.03%)</title><rect x="996.9" y="277" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="999.85" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (31,387,943 samples, 0.21%)</title><rect x="1121.0" y="277" width="2.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1123.96" y="287.5" ></text>
</g>
<g >
<title>ksys_read (2,059,132,149 samples, 13.58%)</title><rect x="539.2" y="437" width="160.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="542.25" y="447.5" >ksys_read</text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (3,027,978 samples, 0.02%)</title><rect x="1045.3" y="405" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1048.31" y="415.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (11,904,886 samples, 0.08%)</title><rect x="877.0" y="565" width="1.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="880.03" y="575.5" ></text>
</g>
<g >
<title>idr_remove (1,315,340 samples, 0.01%)</title><rect x="325.2" y="405" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="328.23" y="415.5" ></text>
</g>
<g >
<title>runtime.getempty (2,194,746 samples, 0.01%)</title><rect x="231.6" y="597" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="234.64" y="607.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,989,371 samples, 0.01%)</title><rect x="864.0" y="469" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="867.03" y="479.5" ></text>
</g>
<g >
<title>do_anonymous_page (5,408,145 samples, 0.04%)</title><rect x="402.3" y="293" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="405.26" y="303.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (1,561,437 samples, 0.01%)</title><rect x="1074.1" y="581" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="1077.06" y="591.5" ></text>
</g>
<g >
<title>runtime.strhash (3,068,943 samples, 0.02%)</title><rect x="997.9" y="437" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1000.92" y="447.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,510,767 samples, 0.01%)</title><rect x="1188.7" y="581" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.69" y="591.5" ></text>
</g>
<g >
<title>___slab_alloc (29,391,121 samples, 0.19%)</title><rect x="787.7" y="341" width="2.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="790.69" y="351.5" ></text>
</g>
<g >
<title>mntput (2,795,204 samples, 0.02%)</title><rect x="369.0" y="437" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="371.96" y="447.5" ></text>
</g>
<g >
<title>__cond_resched (403,826,066 samples, 2.66%)</title><rect x="326.9" y="405" width="31.4" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="329.90" y="415.5" >__..</text>
</g>
<g >
<title>__local_bh_enable_ip (1,536,000 samples, 0.01%)</title><rect x="1095.1" y="453" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1098.08" y="463.5" ></text>
</g>
<g >
<title>kmalloc_slab (4,624,960 samples, 0.03%)</title><rect x="812.6" y="373" width="0.4" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="815.62" y="383.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (68,696,941 samples, 0.45%)</title><rect x="1067.5" y="517" width="5.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1070.52" y="527.5" ></text>
</g>
<g >
<title>idr_get_next (3,028,845 samples, 0.02%)</title><rect x="655.0" y="373" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="658.00" y="383.5" ></text>
</g>
<g >
<title>__schedule (2,611,279 samples, 0.02%)</title><rect x="364.4" y="405" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="367.40" y="415.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,449,866 samples, 0.01%)</title><rect x="194.4" y="501" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="197.40" y="511.5" ></text>
</g>
<g >
<title>schedule (3,642,782 samples, 0.02%)</title><rect x="49.1" y="645" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="52.07" y="655.5" ></text>
</g>
<g >
<title>runtime.pcvalue (1,525,271 samples, 0.01%)</title><rect x="747.8" y="453" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="750.79" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*collectionLoader).loadProgram (1,061,061,690 samples, 7.00%)</title><rect x="980.9" y="565" width="82.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="983.92" y="575.5" >github.co..</text>
</g>
<g >
<title>rcu_segcblist_enqueue (4,784,158 samples, 0.03%)</title><rect x="326.1" y="389" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="329.07" y="399.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (121,025,875 samples, 0.80%)</title><rect x="1119.3" y="437" width="9.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1122.35" y="447.5" ></text>
</g>
<g >
<title>runtime.typedslicecopy (4,500,787 samples, 0.03%)</title><rect x="386.8" y="421" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="389.77" y="431.5" ></text>
</g>
<g >
<title>zap_page_range_single (7,285,859 samples, 0.05%)</title><rect x="256.7" y="469" width="0.6" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="259.75" y="479.5" ></text>
</g>
<g >
<title>___slab_alloc (21,414,703 samples, 0.14%)</title><rect x="1108.9" y="357" width="1.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1111.93" y="367.5" ></text>
</g>
<g >
<title>handle_pte_fault (16,049,879 samples, 0.11%)</title><rect x="1000.6" y="341" width="1.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1003.64" y="351.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (2,218,092 samples, 0.01%)</title><rect x="1011.7" y="341" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1014.74" y="351.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (5,304,436 samples, 0.03%)</title><rect x="747.6" y="565" width="0.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="750.61" y="575.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (3,163,553 samples, 0.02%)</title><rect x="360.7" y="341" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="363.72" y="351.5" ></text>
</g>
<g >
<title>_copy_to_user (1,544,394 samples, 0.01%)</title><rect x="539.5" y="405" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="542.54" y="415.5" ></text>
</g>
<g >
<title>tick_program_event (15,113,885 samples, 0.10%)</title><rect x="27.3" y="517" width="1.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="30.27" y="527.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (1,527,507 samples, 0.01%)</title><rect x="1067.6" y="421" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1070.59" y="431.5" ></text>
</g>
<g >
<title>strlen (2,258,435 samples, 0.01%)</title><rect x="1116.9" y="421" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1119.91" y="431.5" ></text>
</g>
<g >
<title>enqueue_task_fair (4,246,076 samples, 0.03%)</title><rect x="320.7" y="309" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="323.73" y="319.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (5,837,022 samples, 0.04%)</title><rect x="1081.2" y="581" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1084.22" y="591.5" ></text>
</g>
<g >
<title>vma_alloc_folio (7,085,211 samples, 0.05%)</title><rect x="993.2" y="277" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="996.15" y="287.5" ></text>
</g>
<g >
<title>errors.Is (3,711,104 samples, 0.02%)</title><rect x="413.4" y="629" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="416.36" y="639.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,561,550 samples, 0.01%)</title><rect x="742.3" y="485" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="745.34" y="495.5" ></text>
</g>
<g >
<title>tick_program_event (1,957,474 samples, 0.01%)</title><rect x="334.6" y="293" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="337.56" y="303.5" ></text>
</g>
<g >
<title>do_nanosleep (6,342,512 samples, 0.04%)</title><rect x="46.0" y="661" width="0.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="48.99" y="671.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (1,533,881 samples, 0.01%)</title><rect x="747.6" y="485" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="750.61" y="495.5" ></text>
</g>
<g >
<title>dequeue_entity (27,824,817 samples, 0.18%)</title><rect x="29.6" y="485" width="2.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="32.62" y="495.5" ></text>
</g>
<g >
<title>native_write_msr (32,050,752 samples, 0.21%)</title><rect x="953.3" y="309" width="2.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="956.27" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_futex (30,157,734 samples, 0.20%)</title><rect x="17.6" y="533" width="2.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="20.60" y="543.5" ></text>
</g>
<g >
<title>consume_obj_stock (1,541,351 samples, 0.01%)</title><rect x="812.0" y="341" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="814.96" y="351.5" ></text>
</g>
<g >
<title>runtime.gcenable.func1 (100,527,856 samples, 0.66%)</title><rect x="244.4" y="709" width="7.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="247.42" y="719.5" ></text>
</g>
<g >
<title>__schedule (3,403,209 samples, 0.02%)</title><rect x="49.1" y="629" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="52.07" y="639.5" ></text>
</g>
<g >
<title>runtime.findObject (3,756,076 samples, 0.02%)</title><rect x="391.6" y="309" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="394.58" y="319.5" ></text>
</g>
<g >
<title>__update_load_avg_se (10,404,505 samples, 0.07%)</title><rect x="948.6" y="325" width="0.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="951.57" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (3,153,446 samples, 0.02%)</title><rect x="904.2" y="437" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="907.23" y="447.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (2,268,078 samples, 0.01%)</title><rect x="148.9" y="581" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="151.89" y="591.5" ></text>
</g>
<g >
<title>apparmor_capable (9,526,576 samples, 0.06%)</title><rect x="815.5" y="405" width="0.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="818.49" y="415.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (10,693,371 samples, 0.07%)</title><rect x="1124.8" y="373" width="0.9" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="1127.83" y="383.5" ></text>
</g>
<g >
<title>mem_cgroup_handle_over_high (4,770,600 samples, 0.03%)</title><rect x="292.2" y="469" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="295.22" y="479.5" ></text>
</g>
<g >
<title>mntget (1,516,879 samples, 0.01%)</title><rect x="1116.8" y="421" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1119.79" y="431.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (11,967,901 samples, 0.08%)</title><rect x="322.1" y="245" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="325.15" y="255.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (5,129,613 samples, 0.03%)</title><rect x="874.0" y="549" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="876.97" y="559.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).decref (1,561,550 samples, 0.01%)</title><rect x="742.3" y="549" width="0.2" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="745.34" y="559.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (1,594,124 samples, 0.01%)</title><rect x="1135.3" y="421" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1138.28" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (5,394,525 samples, 0.04%)</title><rect x="302.2" y="389" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="305.16" y="399.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (1,509,553 samples, 0.01%)</title><rect x="1113.3" y="325" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1116.33" y="335.5" ></text>
</g>
<g >
<title>security_file_free (23,368,184 samples, 0.15%)</title><rect x="366.8" y="421" width="1.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="369.83" y="431.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="309" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1083.14" y="319.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (14,971,974 samples, 0.10%)</title><rect x="381.0" y="421" width="1.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="384.03" y="431.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (1,529,113 samples, 0.01%)</title><rect x="781.8" y="421" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="784.83" y="431.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (3,912,868 samples, 0.03%)</title><rect x="971.1" y="389" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="974.11" y="399.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (2,288,892 samples, 0.02%)</title><rect x="813.0" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="815.98" y="383.5" ></text>
</g>
<g >
<title>runtime.step (1,525,271 samples, 0.01%)</title><rect x="747.8" y="437" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="750.79" y="447.5" ></text>
</g>
<g >
<title>runtime.(*timeHistogram).record (2,276,870 samples, 0.02%)</title><rect x="538.2" y="485" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="541.19" y="495.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (16,576,764 samples, 0.11%)</title><rect x="1054.7" y="293" width="1.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1057.74" y="303.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker.func2 (2,485,615,309 samples, 16.40%)</title><rect x="50.9" y="677" width="193.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="53.89" y="687.5" >runtime.gcBgMarkWorker.fu..</text>
</g>
<g >
<title>__mem_cgroup_charge (3,026,428 samples, 0.02%)</title><rect x="760.1" y="485" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="763.07" y="495.5" ></text>
</g>
<g >
<title>check_preempt_curr (1,896,492 samples, 0.01%)</title><rect x="308.3" y="325" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="311.32" y="335.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,546,456 samples, 0.01%)</title><rect x="1137.2" y="501" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1140.25" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mheap).freeSpanLocked (5,128,998 samples, 0.03%)</title><rect x="251.6" y="613" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="254.61" y="623.5" ></text>
</g>
<g >
<title>error_entry (2,150,728 samples, 0.01%)</title><rect x="1062.5" y="453" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1065.52" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,733,450 samples, 0.02%)</title><rect x="746.5" y="533" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="749.48" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.LoadKernelSpec (565,628,813 samples, 3.73%)</title><rect x="1019.1" y="517" width="44.0" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1022.06" y="527.5" >gith..</text>
</g>
<g >
<title>syscall.Syscall (3,848,681 samples, 0.03%)</title><rect x="412.5" y="469" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="415.52" y="479.5" ></text>
</g>
<g >
<title>lockref_put_return (7,789,995 samples, 0.05%)</title><rect x="967.7" y="421" width="0.6" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="970.72" y="431.5" ></text>
</g>
<g >
<title>___slab_alloc (3,104,310 samples, 0.02%)</title><rect x="1123.7" y="277" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1126.70" y="287.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (1,329,801 samples, 0.01%)</title><rect x="993.0" y="213" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="996.05" y="223.5" ></text>
</g>
<g >
<title>[unknown] (9,556,439 samples, 0.06%)</title><rect x="10.0" y="693" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="703.5" ></text>
</g>
<g >
<title>sched_clock (3,695,239 samples, 0.02%)</title><rect x="41.0" y="485" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="44.04" y="495.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (3,099,521 samples, 0.02%)</title><rect x="1066.7" y="565" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1069.68" y="575.5" ></text>
</g>
<g >
<title>ptep_clear_flush (1,554,378 samples, 0.01%)</title><rect x="1039.1" y="293" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1042.08" y="303.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (3,811,703 samples, 0.03%)</title><rect x="388.8" y="325" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="391.81" y="335.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (4,601,864 samples, 0.03%)</title><rect x="502.1" y="581" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="505.11" y="591.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,477,276 samples, 0.02%)</title><rect x="250.9" y="549" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="253.90" y="559.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (3,848,681 samples, 0.03%)</title><rect x="412.5" y="405" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="415.52" y="415.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,395,463 samples, 0.01%)</title><rect x="786.4" y="261" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="789.42" y="271.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (1,553,185 samples, 0.01%)</title><rect x="612.7" y="229" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="615.73" y="239.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,524,224 samples, 0.01%)</title><rect x="799.0" y="309" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="801.96" y="319.5" ></text>
</g>
<g >
<title>[unknown] (1,553,413 samples, 0.01%)</title><rect x="1082.3" y="597" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1085.27" y="607.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (2,314,876 samples, 0.02%)</title><rect x="1080.7" y="565" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1083.68" y="575.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (14,395,596 samples, 0.09%)</title><rect x="430.6" y="597" width="1.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="433.57" y="607.5" ></text>
</g>
<g >
<title>runtime.newArenaMayUnlock (2,286,922 samples, 0.02%)</title><rect x="724.6" y="405" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="727.61" y="415.5" ></text>
</g>
<g >
<title>__collapse_huge_page_copy.isra.0 (1,523,869 samples, 0.01%)</title><rect x="1080.2" y="245" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="1083.20" y="255.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (3,735,245 samples, 0.02%)</title><rect x="816.3" y="437" width="0.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="819.30" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,519,643 samples, 0.01%)</title><rect x="983.2" y="437" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="986.24" y="447.5" ></text>
</g>
<g >
<title>__schedule (1,395,463 samples, 0.01%)</title><rect x="786.4" y="293" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="789.42" y="303.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (2,383,699 samples, 0.02%)</title><rect x="254.1" y="389" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="257.10" y="399.5" ></text>
</g>
<g >
<title>__dentry_kill (80,847,452 samples, 0.53%)</title><rect x="960.6" y="421" width="6.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="963.64" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (9,043,260 samples, 0.06%)</title><rect x="1012.7" y="341" width="0.7" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1015.69" y="351.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (36,024,856 samples, 0.24%)</title><rect x="468.9" y="565" width="2.8" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="471.87" y="575.5" ></text>
</g>
<g >
<title>pick_next_task (1,479,684 samples, 0.01%)</title><rect x="357.8" y="389" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="360.83" y="399.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (4,664,192 samples, 0.03%)</title><rect x="46.1" y="597" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="49.06" y="607.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4,326,472 samples, 0.03%)</title><rect x="21.8" y="565" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="24.78" y="575.5" ></text>
</g>
<g >
<title>enqueue_task_fair (1,643,775 samples, 0.01%)</title><rect x="148.1" y="469" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="151.09" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (6,154,062 samples, 0.04%)</title><rect x="1027.0" y="277" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1029.96" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8,454,039 samples, 0.06%)</title><rect x="1000.8" y="261" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1003.76" y="271.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,226,150 samples, 0.01%)</title><rect x="1041.0" y="373" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1044.05" y="383.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (1,522,351 samples, 0.01%)</title><rect x="1012.6" y="341" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1015.57" y="351.5" ></text>
</g>
<g >
<title>task_work_run (927,337,129 samples, 6.12%)</title><rect x="900.7" y="485" width="72.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="903.70" y="495.5" >task_wor..</text>
</g>
<g >
<title>runtime.wbBufFlush (1,504,936 samples, 0.01%)</title><rect x="387.7" y="405" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="390.70" y="415.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1,502,681 samples, 0.01%)</title><rect x="32.5" y="517" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="35.48" y="527.5" ></text>
</g>
<g >
<title>rmqueue_bulk (2,251,450 samples, 0.01%)</title><rect x="808.8" y="229" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="811.79" y="239.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (1,561,165 samples, 0.01%)</title><rect x="392.0" y="437" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="394.99" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,809,386 samples, 0.03%)</title><rect x="1024.4" y="341" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1027.38" y="351.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.testCreateMapGaugeEbpf (448,936,374 samples, 2.96%)</title><rect x="377.9" y="645" width="34.9" height="15.0" fill="rgb(207,12,2)" rx="2" ry="2" />
<text x="380.88" y="655.5" >gi..</text>
</g>
<g >
<title>__calc_delta (2,293,626 samples, 0.02%)</title><rect x="922.8" y="261" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="925.78" y="271.5" ></text>
</g>
<g >
<title>_copy_from_user (1,547,587 samples, 0.01%)</title><rect x="25.1" y="565" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="28.13" y="575.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (1,769,112 samples, 0.01%)</title><rect x="973.9" y="549" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="976.86" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (25,938,202 samples, 0.17%)</title><rect x="333.7" y="357" width="2.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="336.68" y="367.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (26,969,870 samples, 0.18%)</title><rect x="410.2" y="453" width="2.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="413.18" y="463.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,048,157 samples, 0.04%)</title><rect x="996.9" y="293" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="999.85" y="303.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,540,120 samples, 0.01%)</title><rect x="1025.7" y="405" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1028.70" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,413,143 samples, 0.01%)</title><rect x="864.0" y="421" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="867.03" y="431.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,577,566 samples, 0.01%)</title><rect x="323.2" y="341" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="326.17" y="351.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (6,862,748 samples, 0.05%)</title><rect x="406.1" y="165" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="409.11" y="175.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,121,359 samples, 0.01%)</title><rect x="868.0" y="613" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="870.97" y="623.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (34,542,626 samples, 0.23%)</title><rect x="985.4" y="309" width="2.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="988.38" y="319.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (2,278,839 samples, 0.02%)</title><rect x="998.2" y="437" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1001.15" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,496,153 samples, 0.01%)</title><rect x="230.8" y="581" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="233.84" y="591.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,533,678 samples, 0.01%)</title><rect x="407.5" y="341" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="410.48" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (3,058,388 samples, 0.02%)</title><rect x="1015.9" y="405" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1018.92" y="415.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,300,297 samples, 0.02%)</title><rect x="49.1" y="613" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="52.14" y="623.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (2,122,051 samples, 0.01%)</title><rect x="766.8" y="437" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="769.83" y="447.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (8,590,680 samples, 0.06%)</title><rect x="14.0" y="693" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="17.02" y="703.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (2,996,419 samples, 0.02%)</title><rect x="988.1" y="357" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="991.07" y="367.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (35,825,295 samples, 0.24%)</title><rect x="816.7" y="437" width="2.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="819.70" y="447.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (45,004,142 samples, 0.30%)</title><rect x="1046.1" y="405" width="3.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1049.07" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mheap).nextSpanForSweep (5,703,760 samples, 0.04%)</title><rect x="245.4" y="661" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="248.40" y="671.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (6,088,274 samples, 0.04%)</title><rect x="1002.1" y="421" width="0.5" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1005.13" y="431.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (2,985,317 samples, 0.02%)</title><rect x="987.8" y="261" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="990.83" y="271.5" ></text>
</g>
<g >
<title>sched_clock (15,887,602 samples, 0.10%)</title><rect x="321.9" y="293" width="1.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="324.89" y="303.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (10,982,556 samples, 0.07%)</title><rect x="939.9" y="309" width="0.9" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="942.93" y="319.5" ></text>
</g>
<g >
<title>runtime.mallocgc (1,514,771 samples, 0.01%)</title><rect x="1040.5" y="421" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1043.46" y="431.5" ></text>
</g>
<g >
<title>psi_flags_change (1,713,879 samples, 0.01%)</title><rect x="924.3" y="309" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="927.27" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1,376,205 samples, 0.01%)</title><rect x="961.2" y="405" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="964.19" y="415.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (6,903,734 samples, 0.05%)</title><rect x="407.1" y="405" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="410.06" y="415.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (2,243,161 samples, 0.01%)</title><rect x="12.7" y="437" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="15.71" y="447.5" ></text>
</g>
<g >
<title>runtime.interhash (23,170,201 samples, 0.15%)</title><rect x="1035.4" y="437" width="1.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="1038.36" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (5,338,161 samples, 0.04%)</title><rect x="1016.7" y="277" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1019.69" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,911,062 samples, 0.05%)</title><rect x="1042.8" y="469" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1045.79" y="479.5" ></text>
</g>
<g >
<title>handle_pte_fault (30,755,843 samples, 0.20%)</title><rect x="1054.1" y="357" width="2.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1057.06" y="367.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (1,325,152 samples, 0.01%)</title><rect x="18.2" y="421" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="21.23" y="431.5" ></text>
</g>
<g >
<title>flush_tlb_func (1,374,420 samples, 0.01%)</title><rect x="1061.3" y="245" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1064.30" y="255.5" ></text>
</g>
<g >
<title>runtime.(*scavengeIndex).alloc (4,589,110 samples, 0.03%)</title><rect x="1080.1" y="421" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1083.14" y="431.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (3,083,301 samples, 0.02%)</title><rect x="791.5" y="341" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="794.54" y="351.5" ></text>
</g>
<g >
<title>runtime.scanobject (2,262,858 samples, 0.01%)</title><rect x="728.2" y="469" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="731.18" y="479.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (79,398,202 samples, 0.52%)</title><rect x="246.0" y="661" width="6.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="248.95" y="671.5" ></text>
</g>
<g >
<title>runtime.makeBucketArray (37,539,045 samples, 0.25%)</title><rect x="985.4" y="421" width="2.9" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="988.38" y="431.5" ></text>
</g>
<g >
<title>native_write_msr (1,509,314 samples, 0.01%)</title><rect x="20.6" y="389" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="23.61" y="399.5" ></text>
</g>
<g >
<title>runtime.findObject (5,906,841 samples, 0.04%)</title><rect x="1048.0" y="293" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1051.00" y="303.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3,812,702 samples, 0.03%)</title><rect x="12.4" y="437" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="15.39" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (16,682,930 samples, 0.11%)</title><rect x="390.7" y="421" width="1.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="393.69" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (35,431,862 samples, 0.23%)</title><rect x="1054.0" y="421" width="2.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1056.96" y="431.5" ></text>
</g>
<g >
<title>irq_exit_rcu (11,770,374 samples, 0.08%)</title><rect x="334.8" y="325" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="337.78" y="335.5" ></text>
</g>
<g >
<title>update_min_vruntime (2,915,508 samples, 0.02%)</title><rect x="345.3" y="325" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="348.30" y="335.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (4,768,975 samples, 0.03%)</title><rect x="875.0" y="597" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="878.00" y="607.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (1,343,104,606 samples, 8.86%)</title><rect x="876.1" y="613" width="104.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="879.06" y="623.5" >syscall.Sysc..</text>
</g>
<g >
<title>runtime.makemap (7,669,564 samples, 0.05%)</title><rect x="407.0" y="453" width="0.6" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="410.00" y="463.5" ></text>
</g>
<g >
<title>kmalloc_slab (1,522,820 samples, 0.01%)</title><rect x="1123.9" y="293" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1126.95" y="303.5" ></text>
</g>
<g >
<title>psi_group_change (29,129,469 samples, 0.19%)</title><rect x="354.1" y="357" width="2.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="357.07" y="367.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,614,799 samples, 0.04%)</title><rect x="964.0" y="373" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="967.03" y="383.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (26,803,625 samples, 0.18%)</title><rect x="34.5" y="405" width="2.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="37.53" y="415.5" ></text>
</g>
<g >
<title>runtime.newarray (13,918,169 samples, 0.09%)</title><rect x="401.8" y="421" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="404.83" y="431.5" ></text>
</g>
<g >
<title>wake_up_process (219,356,381 samples, 1.45%)</title><rect x="306.5" y="357" width="17.0" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="309.46" y="367.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (1,449,866 samples, 0.01%)</title><rect x="194.4" y="533" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="197.40" y="543.5" ></text>
</g>
<g >
<title>__fput (901,079,866 samples, 5.94%)</title><rect x="901.4" y="453" width="70.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="904.43" y="463.5" >__fput</text>
</g>
<g >
<title>pick_next_task_fair (119,519,774 samples, 0.79%)</title><rect x="942.3" y="373" width="9.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="945.26" y="383.5" ></text>
</g>
<g >
<title>xa_load (8,442,849 samples, 0.06%)</title><rect x="1114.1" y="325" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1117.11" y="335.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (26,095,976 samples, 0.17%)</title><rect x="303.2" y="357" width="2.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="306.22" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (31,154,008 samples, 0.21%)</title><rect x="1059.9" y="421" width="2.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1062.88" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,561,550 samples, 0.01%)</title><rect x="742.3" y="469" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="745.34" y="479.5" ></text>
</g>
<g >
<title>dequeue_task (7,826,405 samples, 0.05%)</title><rect x="253.4" y="405" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="256.41" y="415.5" ></text>
</g>
<g >
<title>runtime.callers (1,499,683 samples, 0.01%)</title><rect x="389.3" y="357" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="392.28" y="367.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (86,575,879 samples, 0.57%)</title><rect x="329.0" y="373" width="6.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="331.98" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.findProgramTargetInKernel (565,628,813 samples, 3.73%)</title><rect x="1019.1" y="533" width="44.0" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1022.06" y="543.5" >gith..</text>
</g>
<g >
<title>runtime.heapBitsForAddr (2,095,809 samples, 0.01%)</title><rect x="1057.1" y="421" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="1060.10" y="431.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (4,005,062 samples, 0.03%)</title><rect x="341.4" y="309" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="344.36" y="319.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (2,262,858 samples, 0.01%)</title><rect x="728.2" y="485" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="731.18" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (3,829,286 samples, 0.03%)</title><rect x="1081.7" y="597" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1084.68" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,027,978 samples, 0.02%)</title><rect x="1045.3" y="325" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1048.31" y="335.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (102,572,554 samples, 0.68%)</title><rect x="1107.5" y="405" width="8.0" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="1110.50" y="415.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (1,533,402 samples, 0.01%)</title><rect x="1107.4" y="389" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1110.38" y="399.5" ></text>
</g>
<g >
<title>wake_up_process (206,078,753 samples, 1.36%)</title><rect x="914.3" y="373" width="16.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="917.33" y="383.5" ></text>
</g>
<g >
<title>psi_group_change (18,327,696 samples, 0.12%)</title><rect x="318.3" y="277" width="1.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="321.31" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (11,492,927 samples, 0.08%)</title><rect x="983.4" y="437" width="0.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="986.36" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (431,413,079 samples, 2.85%)</title><rect x="1150.7" y="549" width="33.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1153.67" y="559.5" >ru..</text>
</g>
<g >
<title>os.(*File).Read (2,097,891,184 samples, 13.84%)</title><rect x="537.7" y="565" width="163.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="540.65" y="575.5" >os.(*File).Read</text>
</g>
<g >
<title>hrtimer_interrupt (5,978,917 samples, 0.04%)</title><rect x="148.0" y="581" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="151.04" y="591.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (2,241,318 samples, 0.01%)</title><rect x="389.5" y="405" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="392.46" y="415.5" ></text>
</g>
<g >
<title>__irqentry_text_end (2,307,586 samples, 0.02%)</title><rect x="1000.2" y="421" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1003.22" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,144,275 samples, 0.04%)</title><rect x="1011.0" y="293" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1013.97" y="303.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (8,023,206 samples, 0.05%)</title><rect x="331.5" y="293" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="334.53" y="303.5" ></text>
</g>
<g >
<title>put_prev_entity (79,560,393 samples, 0.52%)</title><rect x="943.4" y="357" width="6.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="946.41" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,470,399 samples, 0.06%)</title><rect x="148.0" y="613" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="151.00" y="623.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (3,071,322 samples, 0.02%)</title><rect x="764.2" y="613" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="767.15" y="623.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (3,752,812 samples, 0.02%)</title><rect x="46.1" y="581" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="49.14" y="591.5" ></text>
</g>
<g >
<title>__switch_to (1,435,688 samples, 0.01%)</title><rect x="45.0" y="725" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="48.02" y="735.5" ></text>
</g>
<g >
<title>all (15,160,192,523 samples, 100%)</title><rect x="10.0" y="757" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="767.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (1,412,724 samples, 0.01%)</title><rect x="816.6" y="437" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="819.59" y="447.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (57,591,712 samples, 0.38%)</title><rect x="870.4" y="613" width="4.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="873.37" y="623.5" ></text>
</g>
<g >
<title>fd_install (3,817,628 samples, 0.03%)</title><rect x="1132.1" y="453" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1135.12" y="463.5" ></text>
</g>
<g >
<title>rcu_core_si (10,163,670 samples, 0.07%)</title><rect x="334.8" y="277" width="0.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="337.80" y="287.5" ></text>
</g>
<g >
<title>__schedule (5,752,831 samples, 0.04%)</title><rect x="45.5" y="613" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="48.54" y="623.5" ></text>
</g>
<g >
<title>bpf_check (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1066.20" y="383.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (1,496,153 samples, 0.01%)</title><rect x="230.8" y="453" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="233.84" y="463.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (1,462,694 samples, 0.01%)</title><rect x="1126.9" y="341" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1129.92" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,167,768 samples, 0.04%)</title><rect x="1151.4" y="341" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1154.40" y="351.5" ></text>
</g>
<g >
<title>__schedule (15,460,801 samples, 0.10%)</title><rect x="20.4" y="469" width="1.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="23.40" y="479.5" ></text>
</g>
<g >
<title>__folio_alloc (3,410,867 samples, 0.02%)</title><rect x="1056.1" y="293" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1059.08" y="303.5" ></text>
</g>
<g >
<title>dentry_free (41,971,157 samples, 0.28%)</title><rect x="358.8" y="389" width="3.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="361.80" y="399.5" ></text>
</g>
<g >
<title>runtime.markroot (2,296,980 samples, 0.02%)</title><rect x="1185.2" y="437" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1188.20" y="447.5" ></text>
</g>
<g >
<title>runtime.newobject (1,486,571 samples, 0.01%)</title><rect x="1018.8" y="437" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1021.76" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (1,439,471,875 samples, 9.50%)</title><rect x="1074.9" y="645" width="112.0" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1077.88" y="655.5" >github.com/ci..</text>
</g>
<g >
<title>syscall.pread (8,420,898 samples, 0.06%)</title><rect x="1010.9" y="341" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1013.91" y="351.5" ></text>
</g>
<g >
<title>new_slab (13,738,484 samples, 0.09%)</title><rect x="1109.5" y="341" width="1.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1112.53" y="351.5" ></text>
</g>
<g >
<title>init_file (3,089,980 samples, 0.02%)</title><rect x="792.5" y="373" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="795.48" y="383.5" ></text>
</g>
<g >
<title>runtime.greyobject (2,954,964 samples, 0.02%)</title><rect x="1015.1" y="277" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1018.10" y="287.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,148,146 samples, 0.01%)</title><rect x="612.7" y="293" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="615.68" y="303.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,530,005 samples, 0.01%)</title><rect x="230.7" y="613" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="233.72" y="623.5" ></text>
</g>
<g >
<title>error_entry (3,799,733 samples, 0.03%)</title><rect x="149.2" y="629" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="152.25" y="639.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (5,496,452 samples, 0.04%)</title><rect x="320.1" y="213" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="323.13" y="223.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (1,445,575 samples, 0.01%)</title><rect x="809.4" y="357" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="812.38" y="367.5" ></text>
</g>
<g >
<title>do_check (3,848,681 samples, 0.03%)</title><rect x="412.5" y="325" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="415.52" y="335.5" ></text>
</g>
<g >
<title>__folio_alloc (3,817,729 samples, 0.03%)</title><rect x="1188.3" y="517" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1191.33" y="527.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (1,501,456 samples, 0.01%)</title><rect x="1128.3" y="389" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1131.35" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,155,469 samples, 0.01%)</title><rect x="790.2" y="341" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="793.16" y="351.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (74,115,593 samples, 0.49%)</title><rect x="1067.1" y="613" width="5.8" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1070.10" y="623.5" ></text>
</g>
<g >
<title>record_times (1,742,217 samples, 0.01%)</title><rect x="958.8" y="357" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="961.76" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (9,250,027 samples, 0.06%)</title><rect x="1151.2" y="469" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1154.22" y="479.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,770,715 samples, 0.02%)</title><rect x="879.4" y="549" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="882.42" y="559.5" ></text>
</g>
<g >
<title>runtime.stealWork (1,448,725 samples, 0.01%)</title><rect x="11.0" y="629" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="13.99" y="639.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (2,122,051 samples, 0.01%)</title><rect x="766.8" y="517" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="769.83" y="527.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,526,959 samples, 0.01%)</title><rect x="770.4" y="453" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="773.41" y="463.5" ></text>
</g>
<g >
<title>runtime.gopark (1,734,894 samples, 0.01%)</title><rect x="244.4" y="677" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="247.42" y="687.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (179,040,257 samples, 1.18%)</title><rect x="639.6" y="325" width="14.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="642.64" y="335.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (4,466,746 samples, 0.03%)</title><rect x="1008.1" y="309" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1011.15" y="319.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (2,239,337 samples, 0.01%)</title><rect x="792.0" y="357" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="795.02" y="367.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (795,501,107 samples, 5.25%)</title><rect x="770.0" y="533" width="61.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="773.00" y="543.5" >runtim..</text>
</g>
<g >
<title>github.com/cilium/ebpf.newProgramWithOptions (1,061,061,690 samples, 7.00%)</title><rect x="980.9" y="549" width="82.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="983.92" y="559.5" >github.co..</text>
</g>
<g >
<title>get_page_from_freelist (6,154,062 samples, 0.04%)</title><rect x="1027.0" y="261" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1029.96" y="271.5" ></text>
</g>
<g >
<title>free_slab (2,116,132 samples, 0.01%)</title><rect x="360.5" y="293" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="363.54" y="303.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (3,834,890 samples, 0.03%)</title><rect x="1106.0" y="357" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1109.03" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Array).copy (4,496,760 samples, 0.03%)</title><rect x="382.2" y="437" width="0.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="385.20" y="447.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (2,898,119 samples, 0.02%)</title><rect x="256.7" y="437" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="259.75" y="447.5" ></text>
</g>
<g >
<title>update_load_avg (1,623,424 samples, 0.01%)</title><rect x="19.2" y="405" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="22.22" y="415.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (2,219,243,872 samples, 14.64%)</title><rect x="530.5" y="597" width="172.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="533.46" y="607.5" >io.ReadAtLeast</text>
</g>
<g >
<title>__folio_alloc (8,454,039 samples, 0.06%)</title><rect x="1000.8" y="293" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1003.76" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (6,042,193 samples, 0.04%)</title><rect x="61.8" y="645" width="0.5" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="64.82" y="655.5" ></text>
</g>
<g >
<title>xas_start (2,167,402 samples, 0.01%)</title><rect x="799.3" y="293" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="802.32" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Array).copy (2,324,687 samples, 0.02%)</title><rect x="1021.1" y="453" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1024.13" y="463.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (384,271,986 samples, 2.53%)</title><rect x="15.0" y="709" width="29.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="17.99" y="719.5" >ru..</text>
</g>
<g >
<title>runtime.newarray (1,514,771 samples, 0.01%)</title><rect x="1040.5" y="437" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1043.46" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (5,978,638 samples, 0.04%)</title><rect x="391.4" y="373" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="394.41" y="383.5" ></text>
</g>
<g >
<title>runtime.newobject (7,704,280 samples, 0.05%)</title><rect x="1024.7" y="437" width="0.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1027.68" y="447.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3,128,178 samples, 0.02%)</title><rect x="316.1" y="245" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="319.12" y="255.5" ></text>
</g>
<g >
<title>security_file_free (28,230,267 samples, 0.19%)</title><rect x="969.4" y="437" width="2.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="972.37" y="447.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (7,854,563 samples, 0.05%)</title><rect x="256.7" y="501" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="259.70" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (2,961,483 samples, 0.02%)</title><rect x="765.0" y="581" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="768.05" y="591.5" ></text>
</g>
<g >
<title>runtime.greyobject (7,515,194 samples, 0.05%)</title><rect x="987.2" y="261" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="990.25" y="271.5" ></text>
</g>
<g >
<title>testing.runBenchmarks (1,702,494 samples, 0.01%)</title><rect x="257.4" y="661" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="260.36" y="671.5" ></text>
</g>
<g >
<title>native_write_msr (2,509,029 samples, 0.02%)</title><rect x="33.0" y="453" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="35.99" y="463.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (34,542,626 samples, 0.23%)</title><rect x="985.4" y="373" width="2.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="988.38" y="383.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (1,329,801 samples, 0.01%)</title><rect x="993.0" y="245" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="996.05" y="255.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,458,486 samples, 0.03%)</title><rect x="826.0" y="501" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="829.05" y="511.5" ></text>
</g>
<g >
<title>reflect.Value.Field (4,640,699 samples, 0.03%)</title><rect x="1065.8" y="597" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="1068.78" y="607.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,103,462 samples, 0.04%)</title><rect x="750.5" y="501" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="753.47" y="511.5" ></text>
</g>
<g >
<title>___slab_alloc (1,541,436 samples, 0.01%)</title><rect x="1135.1" y="373" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1138.10" y="383.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (3,069,671 samples, 0.02%)</title><rect x="795.0" y="293" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="797.96" y="303.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (8,173,199 samples, 0.05%)</title><rect x="1014.8" y="389" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1017.75" y="399.5" ></text>
</g>
<g >
<title>runtime.growslice (1,531,229 samples, 0.01%)</title><rect x="867.3" y="645" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="870.29" y="655.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (9,886,308 samples, 0.07%)</title><rect x="699.5" y="453" width="0.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="702.52" y="463.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,526,959 samples, 0.01%)</title><rect x="770.4" y="469" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="773.41" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,294,094 samples, 0.02%)</title><rect x="1015.9" y="357" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1018.92" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (679,992,765 samples, 4.49%)</title><rect x="773.5" y="517" width="52.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="776.47" y="527.5" >entry..</text>
</g>
<g >
<title>runtime.(*mspan).refillAllocCache (3,095,036 samples, 0.02%)</title><rect x="727.2" y="549" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="730.25" y="559.5" ></text>
</g>
<g >
<title>check_ptr_to_btf_access (3,090,044 samples, 0.02%)</title><rect x="1063.2" y="309" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1066.20" y="319.5" ></text>
</g>
<g >
<title>place_entity (1,916,178 samples, 0.01%)</title><rect x="922.4" y="277" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="925.36" y="287.5" ></text>
</g>
<g >
<title>mntput_no_expire (6,307,811 samples, 0.04%)</title><rect x="968.4" y="421" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="971.45" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (10,781,118 samples, 0.07%)</title><rect x="1028.5" y="437" width="0.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1031.46" y="447.5" ></text>
</g>
</g>
</svg>
This file has been truncated, but you can view the full file.
mapgauge.test 50652
mapgauge.test;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];runtime.memmove;asm_exc_page_fault 772566
mapgauge.test;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];runtime.memmove;error_entry 1535349
mapgauge.test;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];runtime.memmove;sync_regs 1534873
mapgauge.test;[unknown];[unknown];[unknown];[unknown];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 457
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 2299669
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;sync_regs 756251
mapgauge.test;[unknown];[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;exit_to_user_mode_prepare 32865
mapgauge.test;[unknown];[unknown];[unknown];runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;syscall_return_via_sysret 309150
mapgauge.test;[unknown];[unknown];[unknown];runtime.memmove;asm_exc_page_fault 762081
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 1553178
mapgauge.test;[unknown];[unknown];runtime.(*mcache).refill;runtime.(*mcentral).cacheSpan;runtime.(*mcentral).grow;runtime.(*mheap).alloc;runtime.systemstack.abi0;runtime.(*mheap).alloc.func1;runtime.(*mheap).allocSpan;[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_cfs_rq 84473
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 24857
mapgauge.test;[unknown];[unknown];runtime.futexsleep;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.futex.abi0;entry_SYSCALL_64 194221
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.checkIdleGCNoP 125167
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.checkTimersNoP 128900
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable 993191
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.checkTimers 277725
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.checkTimersNoP 172711
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.lock2 127392
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.nanotime1.abi0 128364
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.pidleput 121051
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.pidleput;[[vdso]] 272718
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.nanotime1.abi0 117260
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.updateTimerPMask 287308
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stealWork 1223950
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stealWork;runtime.checkTimers 116413
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stealWork;runtime.runqsteal;runtime.runqgrab 108362
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm 568663
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep 118047
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.lock2 130647
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.mput;runtime.checkdead 122974
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep 316741
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;do_syscall_64 136859
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64 956742
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 1755776
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 329261
mapgauge.test;[unknown];[unknown];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 487293
mapgauge.test;[unknown];[unknown];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_unqueue 145663
mapgauge.test;[unknown];[unknown];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 390527
mapgauge.test;[unknown];[unknown];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;_raw_spin_unlock 128198
mapgauge.test;[unknown];[unknown];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 288784
mapgauge.test;[unknown];[unknown];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 1625059
mapgauge.test;[unknown];[unknown];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;__perf_event_task_sched_in 144220
mapgauge.test;[unknown];[unknown];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;__switch_to 365273
mapgauge.test;[unknown];[unknown];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 444994
mapgauge.test;[unknown];[unknown];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 551992
mapgauge.test;[unknown];[unknown];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;__cgroup_account_cputime 127394
mapgauge.test;[unknown];[unknown];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_load_avg_se 146659
mapgauge.test;[unknown];[unknown];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_cfs_group 82581
mapgauge.test;[unknown];[unknown];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 218904
mapgauge.test;[unknown];[unknown];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 353540
mapgauge.test;[unknown];[unknown];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 107412
mapgauge.test;[unknown];[unknown];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_load_avg 105113
mapgauge.test;[unknown];[unknown];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_load_avg;__update_load_avg_se 124928
mapgauge.test;[unknown];[unknown];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_min_vruntime 102171
mapgauge.test;[unknown];[unknown];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 859500
mapgauge.test;[unknown];[unknown];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;reweight_entity 878756
mapgauge.test;[unknown];[unknown];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;reweight_entity;__calc_delta 249534
mapgauge.test;[unknown];[unknown];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;reweight_entity;update_curr 65614
mapgauge.test;[unknown];[unknown];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;reweight_entity;update_curr;__calc_delta 252380
mapgauge.test;[unknown];[unknown];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;update_curr 123449
mapgauge.test;[unknown];[unknown];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_curr 125058
mapgauge.test;[unknown];[unknown];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 440023
mapgauge.test;[unknown];[unknown];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;__update_load_avg_cfs_rq 131346
mapgauge.test;[unknown];[unknown];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;__update_load_avg_se 236028
mapgauge.test;[unknown];[unknown];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;set_next_buddy 324007
mapgauge.test;[unknown];[unknown];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_fair 107337
mapgauge.test;[unknown];[unknown];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 475023
mapgauge.test;[unknown];[unknown];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 813787
mapgauge.test;[unknown];[unknown];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_enable;x86_pmu_enable;intel_pmu_enable_all 159739
mapgauge.test;[unknown];[unknown];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_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 222858
mapgauge.test;[unknown];[unknown];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_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 458197
mapgauge.test;[unknown];[unknown];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;__rcu_read_unlock 128311
mapgauge.test;[unknown];[unknown];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;rcu_cblist_dequeue 98637
mapgauge.test;[unknown];[unknown];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_entity 101351
mapgauge.test;[unknown];[unknown];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 493436
mapgauge.test;[unknown];[unknown];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 83298
mapgauge.test;[unknown];[unknown];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 153435
mapgauge.test;[unknown];[unknown];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;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 2063295
mapgauge.test;[unknown];[unknown];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;detach_tasks;can_migrate_task;task_hot 165897
mapgauge.test;[unknown];[unknown];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 78930
mapgauge.test;[unknown];[unknown];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;update_blocked_averages;__update_blocked_fair 86252
mapgauge.test;[unknown];[unknown];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;put_prev_entity 122479
mapgauge.test;[unknown];[unknown];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_next 142414
mapgauge.test;[unknown];[unknown];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;set_next_entity;update_load_avg 131930
mapgauge.test;[unknown];[unknown];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;set_next_entity;update_load_avg;__update_load_avg_se 153571
mapgauge.test;[unknown];[unknown];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;update_load_avg 137765
mapgauge.test;[unknown];[unknown];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;put_prev_task_balance;put_prev_task_fair;update_load_avg 133965
mapgauge.test;[unknown];[unknown];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 113708
mapgauge.test;[unknown];[unknown];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 249972
mapgauge.test;[unknown];[unknown];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 427884
mapgauge.test;[unknown];[unknown];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_ctx_disable 159413
mapgauge.test;[unknown];[unknown];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 250714
mapgauge.test;[unknown];[unknown];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;intel_pmu_disable_all 59782
mapgauge.test;[unknown];[unknown];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 1095396
mapgauge.test;[unknown];[unknown];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 747395
mapgauge.test;[unknown];[unknown];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_flags_change 119856
mapgauge.test;[unknown];[unknown];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 1418897
mapgauge.test;[unknown];[unknown];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;record_times 206394
mapgauge.test;[unknown];[unknown];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;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 464667
mapgauge.test;[unknown];[unknown];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;sched_clock_cpu;sched_clock;sched_clock_noinstr;pvclock_clocksource_read_nowd 130281
mapgauge.test;[unknown];[unknown];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;sched_clock_cpu 135118
mapgauge.test;[unknown];[unknown];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;update_rq_clock 241842
mapgauge.test;[unknown];[unknown];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;update_rq_clock;sched_clock_cpu;sched_clock;kvm_sched_clock_read 194606
mapgauge.test;[unknown];[unknown];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;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 307001
mapgauge.test;[unknown];[unknown];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;raw_spin_rq_lock_nested 138521
mapgauge.test;[unknown];[unknown];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;update_rq_clock 97434
mapgauge.test;[unknown];[unknown];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 92214
mapgauge.test;[unknown];[unknown];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;__get_user_nocheck_4 275331
mapgauge.test;[unknown];[unknown];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_hash 352817
mapgauge.test;[unknown];[unknown];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_q_lock 46021
mapgauge.test;[unknown];[unknown];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;get_futex_key 319126
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;amd_clear_divider 121223
mapgauge.test;[unknown];[unknown];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 2156930
mapgauge.test;[unknown];[unknown];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 292876
mapgauge.test;[unknown];[unknown];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;restore_fpregs_from_fpstate 138772
mapgauge.test;[unknown];[unknown];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;switch_fpu_return 138901
mapgauge.test;[unknown];[unknown];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;switch_fpu_return;restore_fpregs_from_fpstate 867986
mapgauge.test;[unknown];[unknown];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;switch_fpu_return;xfd_validate_state 125715
mapgauge.test;[unknown];[unknown];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;fpregs_assert_state_consistent 135948
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;syscall_exit_to_user_mode 104350
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_safe_stack 181316
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;syscall_return_via_sysret 2016002
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futexsleep 384209
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.unlock2 263438
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.unlock2 42643
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.updateTimerPMask 129941
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.pidleput 701403
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.stopm 205934
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;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;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 137179
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;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;update_blocked_averages;__update_blocked_fair 168004
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.stopm;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_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;__irq_exit_rcu 184232
mapgauge.test;[unknown];[unknown];runtime.memmove;asm_exc_page_fault 772429
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 302799
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0 59444
mapgauge.test;[unknown];[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_setup;__get_user_nocheck_4 152313
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 347178
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp 51641
mapgauge.test;[unknown];[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 101548
mapgauge.test;[unknown];[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 58819
mapgauge.test;[unknown];[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 36387
mapgauge.test;[unknown];[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 55248
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;syscall_return_via_sysret 77290
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 48345
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 427680
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 39647
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 343658
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 76094
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 28883
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 46751
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;hrtimer_start_range_ns;__hrtimer_start_range_ns;enqueue_hrtimer;timerqueue_add 117352
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;hrtimer_start_range_ns;__hrtimer_start_range_ns;get_nohz_timer_target 65384
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;hrtimer_start_range_ns;get_nohz_timer_target 122153
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;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event 91232
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;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;lapic_next_deadline 356018
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;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;native_write_msr 549095
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;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;lapic_next_deadline 78893
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;hrtimer_start_range_ns;tick_program_event 28883
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 41541
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 43924
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 116529
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;clear_buddies 48636
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;dequeue_entity 51615
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;dequeue_entity;cpuacct_charge 45086
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;dequeue_entity;update_cfs_group 104474
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;dequeue_entity;update_cfs_group;reweight_entity 46985
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;dequeue_entity;update_curr 129188
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;dequeue_entity;update_curr;__calc_delta 177335
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;dequeue_entity;update_load_avg 69858
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;dequeue_entity;update_load_avg;__update_load_avg_cfs_rq 132712
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;dequeue_entity;update_min_vruntime 52306
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;update_cfs_group 237411
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 61667
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 57414
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;__intel_pmu_enable_all.isra.0 48038
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 111646
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;_raw_spin_unlock 122407
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_common_interrupt;common_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;net_rx_action;__napi_poll;virtnet_poll;napi_complete_done;netif_receive_skb_list_internal;__netif_receive_skb_list_core;ip_list_rcv;ip_sublist_rcv;ip_sublist_rcv_finish;ip_local_deliver;ip_local_deliver_finish;ip_protocol_deliver_rcu;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;__kfree_skb;skb_release_data;skb_free_head;page_frag_free;free_unref_page;free_unref_page_prepare 169581
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_common_interrupt;common_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;net_rx_action;__napi_poll;virtnet_poll;napi_complete_done;netif_receive_skb_list_internal;__netif_receive_skb_list_core;ip_list_rcv;ip_sublist_rcv;nf_hook_slow_list;nf_hook_slow;nf_conntrack_in 188113
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_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 147627
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;pick_next_task 125440
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;pick_next_task;pick_next_task_fair;__rcu_read_unlock 62671
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;pick_next_task;pick_next_task_fair;newidle_balance 122407
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;pick_next_task;pick_next_task_fair;newidle_balance;__rcu_read_lock 87784
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;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;_find_next_and_bit 122294
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;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 89128
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;pick_next_task_fair 36969
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;prepare_task_switch 72549
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;prepare_task_switch;__perf_event_task_sched_out 62585
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;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable 97264
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;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 46126
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;psi_task_switch 47083
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;psi_task_switch;psi_group_change 530718
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;psi_task_switch;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 87764
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;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 107606
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;pick_next_task 50957
mapgauge.test;[unknown];[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 237617
mapgauge.test;[unknown];[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 47814
mapgauge.test;[unknown];[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 167437
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_safe_stack 107648
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 413991
mapgauge.test;[unknown];[unknown];runtime.newosproc;runtime.retryOnEAGAIN;runtime.clone.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_gettid 44226
mapgauge.test;[unknown];[unknown];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 22031
mapgauge.test;[unknown];[unknown];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 18930
mapgauge.test;[unknown];[unknown];runtime.newosproc;runtime.retryOnEAGAIN;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.templateThread;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_setup;futex_q_lock 85723
mapgauge.test;[unknown];[unknown];syscall.Syscall.abi0;syscall.Syscall;[unknown];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 130219
mapgauge.test;[unknown];[unknown];syscall.Syscall.abi0;syscall.Syscall;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;plist_add 41782
mapgauge.test;[unknown];[unknown];syscall.Syscall.abi0;syscall.Syscall;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 126646
mapgauge.test;[unknown];[unknown];syscall.Syscall.abi0;syscall.Syscall;runtime.systemstack.abi0;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;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 184232
mapgauge.test;[unknown];[unknown];syscall.Syscall.abi0;syscall.Syscall;runtime.systemstack.abi0;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;set_next_entity 119569
mapgauge.test;[unknown];[unknown];syscall.Syscall.abi0;syscall.Syscall;runtime.systemstack.abi0;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 96720
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 779526
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;arch_setup_additional_pages;map_vdso;_install_special_mapping;__install_special_mapping;vm_area_alloc;kmem_cache_alloc;get_obj_cgroup_from_current 192416
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;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;__mem_cgroup_uncharge_list;uncharge_folio 104102
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;setup_arg_pages 46664
mapgauge.test;[unknown];runtime.clone.abi0;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 67418
mapgauge.test;[unknown];runtime.mapaccess1;runtime.memmove;asm_exc_page_fault 773757
mapgauge.test;[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable 68024
mapgauge.test;[unknown];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;__update_load_avg_se 134388
mapgauge.test;[unknown];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;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;acct_collect 68024
mapgauge.test;[unknown];runtime.memmove;error_entry 766802
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gcTrigger.test 1349195
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.lock2 279064
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.nanotime1.abi0 124792
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.netpoll 96245
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.retake 508021
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 2410550
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;[[vdso]] 1005187
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;__vdso_clock_gettime 549142
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.(*scavengerState).wake;runtime.injectglist;runtime.injectglist.func1;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 185432
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.(*scavengerState).wake;runtime.injectglist;runtime.injectglist.func1;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 143541
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 564985
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.handoffp 209728
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.incidlelocked 662916
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.lock2 940553
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.lock2;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_min_vruntime 100514
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 1705176
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 5209269
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll 926362
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe 106102
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;__x64_sys_epoll_pwait 68774
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 125195
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 124368
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 410877
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 317826
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;do_epoll_pwait.part.0 136591
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;syscall_exit_to_user_mode 232540
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;syscall_return_via_sysret 572114
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal 153050
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;hrtimer_sleeper_start_expires;hrtimer_start_range_ns;__hrtimer_start_range_ns;enqueue_hrtimer;timerqueue_add 216958
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 139325
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 77433
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;dequeue_task;dequeue_task_fair;update_cfs_group 145140
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;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity;__calc_delta 133065
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;psi_group_change 127210
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;ktime_add_safe 157878
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;syscall_return_via_sysret 165419
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 2370967
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp 705085
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.lock2 185136
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm 920349
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.futexwakeup 111528
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.lock2 341587
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup 565420
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0 531767
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 1260264
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 4580664
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 776689
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 800500
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 301727
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 169023
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 194199
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_unlock 84350
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 344878
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 1332337
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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq 43849
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 231959
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 247734
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 86777
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 276595
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 526185
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_unlock 169091
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_unlock_irqrestore 65902
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 507962
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_irqsave 305939
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 270406
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_irqsave;__raw_spin_lock_irqsave 86930
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;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 99872
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;check_preempt_curr 145466
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;enqueue_task 149564
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 1062357
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 205995
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;select_idle_sibling 226638
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;select_idle_sibling;__raw_callee_save___kvm_vcpu_is_preempted 157023
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;select_idle_sibling;available_idle_cpu 119415
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 519338
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 250219
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 1244849
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;update_curr 80303
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;resched_curr 376438
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 324926
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_wakeup 649907
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 396954
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 1332928
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_cfs_rq 88452
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_se 114310
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 828155
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_se 146027
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;place_entity 91243
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 550946
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;__cgroup_account_cputime 578503
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;cpuacct_charge 732460
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;update_min_vruntime 109348
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 391480
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 354051
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_se 342673
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_min_vruntime 284644
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;reweight_entity 121505
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 667133
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 984631
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;__calc_delta 91968
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 347021
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 1057410
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 284599
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;update_curr 127421
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 887176
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 636797
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_se 99451
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_flags_change 99492
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 729833
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_flags_change 397432
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 2497968
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;record_times 66275
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 384371
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 220995
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 796877
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 92214
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_load_avg 94449
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 736367
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;psi_task_change 222158
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 223692
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;native_send_call_func_single_ipi;native_write_msr 192679
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;llist_add_batch 160957
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 266789
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;sched_clock;kvm_sched_clock_read 104018
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;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 70847
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 189784
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 105098
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;do_futex 118130
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 130708
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 4184111
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_loop 267968
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 520613
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 280246
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 119962
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 251151
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 870427
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;__perf_event_task_sched_in 110225
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;__perf_event_task_sched_out 104444
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 222019
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;_raw_spin_lock 194887
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 377159
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 106868
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 420898
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 51098
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;intel_pmu_disable_all 243849
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 1509314
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 351570
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;intel_pmu_enable_all 112124
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.isra.0 119214
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 138620
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 117415
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 694067
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;x86_pmu_disable 182530
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 222844
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;_raw_spin_lock 240143
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;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;cpuacct_charge 129628
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 159867
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;check_cfs_rq_runtime 354939
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_entity 350187
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 882929
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;clear_buddies 136754
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 471114
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 528866
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_cfs_rq 102722
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_curr 183942
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 135967
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;__update_load_avg_se 262064
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;rb_erase 246456
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;rb_next 146574
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 309263
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 129084
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;update_load_avg;__update_load_avg_se 116112
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 145361
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_load_avg 187937
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;set_next_entity 104122
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 134402
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;_raw_spin_lock 121134
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_ctx_disable 151154
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 225658
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 393361
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 1102518
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 392193
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 388383
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 129769
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 152365
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;kvm_sched_clock_read 233290
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 194839
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;pvclock_clocksource_read_nowd 132960
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 235172
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;finish_task_switch.isra.0 146346
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;pick_next_task 114239
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;raw_spin_rq_lock_nested 254304
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;update_rq_clock 167114
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;schedule 93077
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 394997
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 685844
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;syscall_enter_from_user_mode 102341
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 147623
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSRETQ_unsafe_stack 68834
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;error_entry 131911
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 4326472
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 104894
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.unlock2 163995
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.lock2 232690
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.lock2;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 139427
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.lock2;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;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 102413
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule;pick_next_task;pick_next_task_fair;update_curr;cpuacct_charge 82709
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.osyield.abi0;syscall_return_via_sysret 79424
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.unlock2 118352
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.lock2 1776308
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe 208907
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_getpid 46036
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;__x64_sys_getpid;__task_pid_nr_ns 107981
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;syscall_return_via_sysret 858139
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 842611
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 245000
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;__task_pid_nr_ns 49029
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 858045
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;__task_pid_nr_ns 765602
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;apparmor_task_kill 62922
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;audit_signal_info 768099
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 100099
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;apparmor_task_kill 143181
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;apparmor_task_kill;aa_may_signal;profile_signal_perm 111130
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;get_task_cred 262206
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 122850
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 112785
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 196660
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;obj_cgroup_charge;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 83444
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;complete_signal 266963
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;complete_signal;kick_process;native_smp_send_reschedule;native_write_msr 112009
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;inc_rlimit_get_ucounts 65562
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;kmem_cache_alloc 468660
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;prepare_signal 893511
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;task_curr 96559
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;__task_pid_nr_ns 82905
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 473229
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;radix_tree_lookup 720728
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;idr_find 125137
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 102199
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 647068
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;exit_to_user_mode_prepare;fpregs_assert_state_consistent 73556
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;syscall_return_via_sysret 240796
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.signalM 219708
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.unlock2 500682
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.unlock2 623593
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 2399759
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;update_vsyscall 141161
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;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;rcu_sched_clock_irq;raise_softirq 118289
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;do_syscall_64 372621
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 7120846
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 9002252
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_nanosleep 718394
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 1559755
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 1329751
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 696367
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;do_nanosleep 208512
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 600972
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 1547587
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 1298569
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 3554041
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 1950552
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 2951736
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 126095
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 72288
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 97612
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_unlock_irqrestore 239888
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 445625
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 211310
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 1071922
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 1106018
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 119621
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 217752
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 3346127
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;get_nohz_timer_target 610170
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 792900
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 137508
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 2179445
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;pvclock_clocksource_read_nowd 119988
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 1880506
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;timerqueue_add 236677
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 320804
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 951354
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_unlock_irqrestore 332560
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_unlock_irqrestore;asm_common_interrupt;common_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq 137574
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_unlock_irqrestore;asm_common_interrupt;common_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;net_rx_action;__napi_poll;virtnet_poll;napi_complete_done;netif_receive_skb_list_internal;__netif_receive_skb_list_core;ip_list_rcv;ip_sublist_rcv;ip_rcv_finish_core.isra.0;tcp_v4_early_demux;__inet_lookup_established;inet_ehashfn 141368
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;enqueue_hrtimer 350642
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;get_nohz_timer_target 810507
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;clockevents_program_event 131676
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 883940
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 733905
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 371384
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 702073
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 501580
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 2793619
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 8754836
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;ktime_get 79360
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 293188
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 380007
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;tick_program_event 188335
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 2277044
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 4540954
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 401083
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;__switch_to 178838
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 1496341
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;asm_sysvec_apic_timer_interrupt 94734
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 1153939
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_entity 138076
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 3691276
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_se 143010
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 293735
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 5659476
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 122366
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_cfs_rq 331569
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 404404
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;clear_buddies 91523
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;cpuacct_charge 82022
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;reweight_entity 68724
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 829652
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 1120333
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 3419036
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 1396054
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 621334
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;cgroup_rstat_updated 61224
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 2558391
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;update_min_vruntime 388461
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 4469059
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_cfs_rq 3174763
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 2317546
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_min_vruntime 708880
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;reweight_entity 130349
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 3947095
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 1023714
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 124855
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_min_vruntime 108951
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 913626
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 1212969
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_cfs_rq 389538
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 92265
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 411936
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;hrtick_update 141571
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 419751
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 83797
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 1502681
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;error_return 164690
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 2628516
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 1419769
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 575186
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 199148
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 2509029
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 299614
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;intel_pmu_enable_all 218869
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 1178305
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.isra.0 148513
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 360858
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 1114815
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 2607385
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 832603
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 445401
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_unlock 704072
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;run_posix_cpu_timers 233781
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;account_process_tick;account_system_time;account_system_index_time;acct_account_cputime 83565
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;rcu_sched_clock_irq;check_cpu_stall 126450
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;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 147213
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;tick_program_event;clockevents_program_event;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 132676
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 97535
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;kmem_cache_free 259061
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_blocked_averages;__update_blocked_fair 77200
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;check_preempt_curr;set_next_buddy 107718
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;psi_task_change 41622
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;native_apic_msr_eoi_write 23496
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 1671407
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;check_cfs_rq_runtime 143889
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 119235
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_entity 201791
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 1299254
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 119939
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_unlock 91915
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;load_balance 63857
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 1278966
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_lock 319591
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;find_busiest_queue 142634
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 2344916
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_lock 286494
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 26803625
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;activate_task;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;attach_entity_load_avg 62424
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;calculate_imbalance 57302
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;can_migrate_task 42150
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 444436
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 112106
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;deactivate_task;dequeue_task;psi_task_change;psi_group_change 67451
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;kthread_is_per_cpu 82590
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;set_task_rq_fair 752479
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 268705
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_group_capacity 78312
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 1137225
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 133804
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 479086
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 3497886
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 248194
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;idle_cpu 64536
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 110886
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 104471
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 616479
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;need_active_balance 81046
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 95357
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 785154
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_noinstr 130486
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 214386
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 2957552
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 687029
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 1120061
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 273747
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 261090
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_load_avg_cfs_rq 177357
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 130729
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_lock 107514
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_nested 89683
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;sched_clock_cpu 78695
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 46963
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_load_avg 234837
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 430653
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 115754
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;kvm_sched_clock_read 163530
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 624157
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 585641
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 378808
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_rt_rq_load_avg 90043
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 844254
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 361026
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;update_load_avg;__update_load_avg_cfs_rq 125700
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 109069
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 134770
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;rb_erase 406245
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 111591
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;set_next_entity 472091
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;set_next_entity;update_load_avg;__update_load_avg_se 201063
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;update_blocked_averages 181866
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;update_load_avg 153283
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_idle 102387
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_entity 455772
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 1497057
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;check_cfs_rq_runtime 275339
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 1079868
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;set_next_entity 182302
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 1161071
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 470598
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 338348
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;__rcu_read_lock 173443
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;__rcu_read_unlock 116631
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 759190
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_ctx_disable 66611
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 718169
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 349626
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;intel_pmu_disable_all 418318
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;intel_pmu_disable_all 155000
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 5546988
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 832207
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 200940
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_flags_change 437777
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 627814
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 3592253
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 76374
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 12439810
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;record_times 487108
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 1415401
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 119898
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 1446417
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 70885
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 3624354
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 106959
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 960212
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 401494
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;restore_regs_and_return_to_kernel 138309
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;sched_clock_cpu 544535
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 385293
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 242193
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 212329
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 391692
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 1201670
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 157931
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;dequeue_task 904850
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 906826
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;prepare_task_switch 526328
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 172405
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 217437
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;rcu_note_context_switch 91233
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 221391
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 674855
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 765580
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 69783
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 262686
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;get_timespec64 1221457
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 218553
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 179272
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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;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;check_preempt_wakeup 98255
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 11346995
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 2493619
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 2095027
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;restore_fpregs_from_fpstate 2186758
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 186209
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 719902
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 733632
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;syscall_enter_from_user_mode 133620
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 1038881
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_safe_stack 609951
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSRETQ_unsafe_stack 75965
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 12080810
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime/internal/syscall.EpollWait 66199
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.templateThread;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;arch_do_signal_or_restart;get_signal;_raw_spin_lock_irq;native_queued_spin_lock_slowpath 152135
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.unlock2 262158
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 341191
mapgauge.test;[unknown];runtime.sysMmap.abi0;asm_exc_page_fault 358995
mapgauge.test;[unknown];syscall.Syscall.abi0;syscall.Syscall;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;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 130281
mapgauge.test;[unknown];syscall.pread;[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 767216
mapgauge.test;__rdgsbase_inactive 386553
mapgauge.test;__switch_to 1435688
mapgauge.test;__switch_to_asm 4138206
mapgauge.test;__wrgsbase_inactive 911432
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;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 106633
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule 852215
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 414998
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 126362
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;__rcu_read_unlock 307933
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;_raw_spin_unlock 144062
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_cgroup_switch 120202
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 691290
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;_raw_spin_unlock 217463
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 470321
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 365887
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 104817
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 626819
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 715539
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_cgroup_switch 132200
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;switch_mm_irqs_off 462723
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;switch_mm_irqs_off 87751
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 402236
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;mm_cid_get 165471
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch 365179
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 911380
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 303248
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;_raw_spin_unlock 175276
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 221265
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;intel_pmu_enable_all 111300
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 398488
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 110555
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;__intel_pmu_enable_all.isra.0 149704
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 2282976
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;switch_mm_irqs_off 584177
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;switch_mm_irqs_off 161257
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 134723
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 720804
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;_raw_spin_trylock 738194
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 737213
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 729711
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;lru_gen_del_folio.constprop.0 710533
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;lru_gen_del_folio.constprop.0;__mod_lruvec_state;__mod_node_page_state 738784
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;uncharge_folio 708174
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 9289822
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 1189795
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;flush_tlb_mm_range 674921
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;folio_test_hugetlb 64961
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 684205
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 586845
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_node_page_state 264319
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 614783
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 2521732
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;__mem_cgroup_uncharge_list;uncharge_folio 808560
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 1348663
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 737486
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 3383453
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;__mod_zone_page_state 752741
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_prepare 573326
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 2815009
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;cgroup_rstat_updated 222169
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;uncharge_folio 738476
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 762784
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 877115
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 99136
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 107279
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;__rcu_read_unlock 397988
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 278684
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;_raw_spin_unlock 113676
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 104681
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.isra.0 144574
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 66019
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 802946
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 185314
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;switch_mm_irqs_off 225797
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_mm_irqs_off 239573
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 705760
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 98415
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 380123
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;intel_pmu_enable_all 229506
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 132607
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;native_write_msr 281283
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;switch_mm_irqs_off 233876
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;__switch_to_asm 148826
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;switch_mm_irqs_off 92046
mapgauge.test;native_load_tls 1419070
mapgauge.test;os_xsave 3770287
mapgauge.test;runtime.(*mheap).allocSpan;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 60196
mapgauge.test;runtime.(*mheap).allocSpan;[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 44780
mapgauge.test;runtime.(*mheap).allocSpan;[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 57615
mapgauge.test;runtime.(*mheap).allocSpan;[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 46915
mapgauge.test;runtime.(*mspan).initHeapBits;runtime/internal/syscall.Syscall6;error_entry 775164
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.mProf_Flush;runtime.mProf_FlushLocked;runtime.(*bucket).mp 547332
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 689622
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 186244
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;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 936081
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_wp_page;wp_page_copy;__mem_cgroup_charge;get_mem_cgroup_from_mm 611844
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_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 735917
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.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*pageAlloc).free 762786
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.newMarkBits;runtime.newArenaMayUnlock;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;find_suitable_fallback 769499
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.semacquire1;runtime.lock2;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 744815
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;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;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg;__update_load_avg_cfs_rq 742064
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;find_task_by_vpid;idr_find;radix_tree_lookup;__radix_tree_lookup 759357
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;syscall_exit_to_user_mode 753938
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark 744541
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable 808293
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.lock2 625725
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;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;update_blocked_averages;__update_blocked_fair 217059
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;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 445190
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 47866
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;syscall_return_via_sysret 134650
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain 74668354
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;__irqentry_text_end 672568
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;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;pick_next_task;pick_next_task_fair;put_prev_entity 438680
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).balance;runtime.getempty 138254
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet 752206
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.(*workbuf).checknonempty 745271
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.trygetfull 1493346
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.findObject 23581340
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.gcFlushBgCredit 2074052
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.gcFlushBgCredit;runtime.ready;runtime.wakep;runtime.pidlegetSpinning;runtime.pidleget 768444
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.greyobject 27614002
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.heapBits.next 7389782
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.heapBitsForAddr 6042193
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot 171420
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.lock2 707769
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task_fair 496909
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.procyield.abi0 5362203
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.scanstack;runtime.(*unwinder).next;runtime.(*unwinder).resolveInternal 1353206
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.scanstack;runtime.scanframeworker;runtime.(*stackScanState).addObject;runtime.getempty 345580
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.scanstack;runtime.scanframeworker;runtime.(*stkframe).getStackMap 286175
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG 1395900
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;[[vdso]] 1350400
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getpid;__rcu_read_lock 701106
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.nanotime1.abi0;[[vdso]] 6039502
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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;complete_signal;kick_process;native_smp_send_reschedule;native_write_msr 723624
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock 3796419
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock;runtime.findObject 417303
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock;runtime.greyobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;should_fail_alloc_page 294909
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootFreeGStacks;runtime.unlock2 107559
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans 67837308
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;enqueue_hrtimer;timerqueue_add 403382
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.findObject 2142334
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock 24620031
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 268504
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;runtime.findObject 18946489
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.unlock2 693892
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.scanblock 2672607
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.unlock2 752479
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.pollWork 758712
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject 954189911
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;__irqentry_text_end 1491849
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_common_interrupt;common_interrupt;__common_interrupt;handle_edge_irq;handle_irq_event;__handle_irq_event_percpu;vring_interrupt;virtblk_done 752209
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page 732931
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 682378
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 669300
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt 510436
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup;resched_curr 626245
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair 941348
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 702427
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 497934
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;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 563674
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;update_rq_clock 318888
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;scheduler_tick 699217
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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;intel_pmu_disable_all 679707
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;kvm_clock_get_cycles 521282
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event 428195
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;native_apic_msr_eoi_write 525314
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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;finish_task_switch.isra.0 712428
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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;pick_next_task;pick_next_task_fair;put_prev_entity 743304
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_call_function_single 2288369
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_call_function_single;sysvec_call_function_single 759131
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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 2268078
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_call_function_single;sysvec_call_function_single;irq_exit_rcu;__irq_exit_rcu;idle_cpu 766619
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 754687
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_call_function_single;sysvec_call_function_single;kvm_guest_apic_eoi_write 754166
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;error_entry 3799733
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject 574119483
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;__irqentry_text_end 1505329
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;enqueue_hrtimer;timerqueue_add 740521
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task 759498
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group 690368
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;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;update_load_avg 730520
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode 454235
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_call_function_single 2280977
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;native_apic_msr_eoi_write 759623
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode 1515189
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;error_entry 759142
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;error_return 754333
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject 457906545
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;__irqentry_text_end 1530005
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 732439
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 763714
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;__remove_hrtimer;rb_erase 639538
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;raw_spin_rq_lock_nested 534331
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_call_function_single 754915
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;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 3029072
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_call_function_single;sysvec_call_function_single;irq_exit_rcu;__irq_exit_rcu;idle_cpu 743968
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 759962
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_call_function_single;sysvec_call_function_single;kvm_guest_apic_eoi_write 752408
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;error_entry 1509527
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty 1493846
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 700900
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next 15909767
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next;runtime.heapBitsForAddr 17136767
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next;runtime.heapBitsForAddr;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;pick_next_task;pick_next_task_fair;update_curr 739294
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBitsForAddr 117675876
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBitsForAddr;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;raw_notifier_call_chain 766363
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBitsForAddr;asm_sysvec_call_function_single 763640
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBitsForAddr;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 755243
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;sync_regs 762662
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcFlushBgCredit 739214
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.scanobject 6042121
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcDrain 741776
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable 171205
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 769017
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;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;asm_sysvec_call_function_single 8903
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;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_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 6747
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 42440
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;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_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 20481
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;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_q_lock 716101
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.casgstatus 701738
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone 8661645
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*activeSweep).end 1463636
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*mheap).nextSpanForSweep 718420
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*mheap).nextSpanForSweep;runtime.(*spanSet).pop 4985340
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*mspan).refillAllocCache 667474
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*spanSet).push 721798
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep 58088769
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode 643173
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 714463
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;error_entry 703639
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push 3429425
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;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;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 721003
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;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_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 1365796
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;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_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist 245969
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;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_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 144508
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 185074
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;error_return 163880
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;runtime.(*atomicHeadTailIndex).incTail 709582
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;runtime.unlock2 722539
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.newMarkBits 3625179
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.newMarkBits;runtime.newArenaMayUnlock 553251
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.newMarkBits;runtime.newArenaMayUnlock;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 724084
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked 1263002
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*pageAlloc).free;runtime.(*pageAlloc).update;runtime.mergeSummaries 1412431
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*pageAlloc).free;runtime.(*scavengeIndex).free 691602
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*pageAlloc).free;runtime.(*scavengeIndex).free;asm_sysvec_apic_timer_interrupt 528751
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*sysMemStat).add 1233212
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.lock 760581
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.lock;runtime.lock2 768289
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocker).tryAcquire 736338
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.newMarkBits 738371
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.checkIdleGCNoP 130195
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.checkTimers 291125
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable 1136946
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;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;update_curr 666259
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.checkIdleGCNoP 95495
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.checkRunqsNoP 202717
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.checkTimers 128215
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.checkTimersNoP 61927
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.lock2 921366
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.pidleput;__vdso_clock_gettime 139629
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.nanotime1.abi0 292495
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.nanotime1.abi0;[[vdso]] 831625
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.updateTimerPMask;runtime.unlock2 131070
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.releasep 151513
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stealWork 1393410
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stealWork;runtime.checkTimers 144201
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stealWork;runtime.runqsteal;runtime.runqgrab 210287
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm 667502
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep 111083
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.wirep 129827
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.checkdead 110970
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.lock2 56130
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.mput 136500
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep 305519
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0 356278
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64 618425
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 2024990
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 280924
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_setup_timer 81708
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_unqueue 86830
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 679934
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;_raw_spin_unlock 107418
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_q_lock 126333
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 703259
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;__futex_queue 85202
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;plist_add 169141
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 254782
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 560748
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;__perf_event_task_sched_in 140423
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;__perf_event_task_sched_out 132080
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;__switch_to 120685
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 130515
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_entity 169908
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 1120831
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_se 134644
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;clear_buddies 140987
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 560546
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_load_avg_se 300012
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;cpuacct_charge 98966
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_cfs_group 135390
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 893663
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;__cgroup_account_cputime 211690
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 297289
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_load_avg 235497
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_load_avg;__update_load_avg_se 972722
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_min_vruntime 215434
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 280867
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;reweight_entity 375295
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;reweight_entity;update_curr 334413
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;reweight_entity;update_curr;__calc_delta 481376
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;reweight_entity;update_min_vruntime 138716
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 231756
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;__update_load_avg_cfs_rq 75898
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;update_cfs_group 289990
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_fair 208691
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 781851
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 195348
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;intel_pmu_disable_all 128679
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 906345
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_enable 265324
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_enable;x86_pmu_enable;intel_pmu_enable_all 136049
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 211120
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 424916
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;x86_pmu_disable 115918
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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;__rcu_read_lock 419635
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 187220
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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 634242
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;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_entity 126691
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;ru
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment