Skip to content

Instantly share code, notes, and snippets.

@florianl
Created July 21, 2025 15:43
Show Gist options
  • Select an option

  • Save florianl/84e6d18619e87170a2e95ef5a6d25263 to your computer and use it in GitHub Desktop.

Select an option

Save florianl/84e6d18619e87170a2e95ef5a6d25263 to your computer and use it in GitHub Desktop.
flamegraph.svg
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="838" onload="init(evt)" viewBox="0 0 1200 838" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
if (currentSearchTerm === null) return;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="838.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="821" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="821" > </text>
<g id="frames">
<g >
<title>runtime.unlock2 (21,826 samples, 0.09%)</title><rect x="746.7" y="629" width="1.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="749.75" y="639.5" ></text>
</g>
<g >
<title>runtime.stealWork (65,870 samples, 0.26%)</title><rect x="455.0" y="613" width="3.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="457.99" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (84,850 samples, 0.34%)</title><rect x="464.1" y="389" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="467.06" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,643 samples, 0.02%)</title><rect x="467.9" y="309" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="470.86" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,348 samples, 0.05%)</title><rect x="1168.3" y="229" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1171.32" y="239.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.newClientStreamWithParams (40,632 samples, 0.16%)</title><rect x="541.4" y="597" width="1.9" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="544.38" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,446 samples, 0.03%)</title><rect x="1168.6" y="213" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1171.55" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (138,973 samples, 0.56%)</title><rect x="1056.5" y="165" width="6.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1059.54" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (199,473 samples, 0.80%)</title><rect x="703.3" y="597" width="9.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="706.31" y="607.5" ></text>
</g>
<g >
<title>runtime.schedule (164,563 samples, 0.66%)</title><rect x="1181.1" y="709" width="7.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1184.09" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="485" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,005,310 samples, 4.04%)</title><rect x="363.0" y="549" width="47.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="366.01" y="559.5" >[[ke..</text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*http2Client).NewStream (40,632 samples, 0.16%)</title><rect x="541.4" y="533" width="1.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="544.38" y="543.5" ></text>
</g>
<g >
<title>bpf_prog_d17ae192e0dd2d09_fexit__vfs_write (22,185 samples, 0.09%)</title><rect x="991.2" y="517" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="994.23" y="527.5" ></text>
</g>
<g >
<title>fmt.(*pp).doPrintf (22,948 samples, 0.09%)</title><rect x="595.5" y="661" width="1.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="598.51" y="671.5" ></text>
</g>
<g >
<title>runtime.slicebytetostring (82,455 samples, 0.33%)</title><rect x="596.6" y="661" width="3.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="599.59" y="671.5" ></text>
</g>
<g >
<title>runtime.mallocgc (51,195 samples, 0.21%)</title><rect x="335.7" y="645" width="2.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="338.68" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,258 samples, 0.28%)</title><rect x="743.4" y="389" width="3.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="746.41" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="453" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,918 samples, 0.11%)</title><rect x="1040.2" y="533" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1043.23" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="389" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="245" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (83,348 samples, 0.33%)</title><rect x="351.2" y="517" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="354.25" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="485" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="495.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager/ebpf.(*asyncUpdateWorker).serve (729,733 samples, 2.93%)</title><rect x="437.0" y="725" width="34.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="440.02" y="735.5" >go..</text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).Marshal (80,669 samples, 0.32%)</title><rect x="537.6" y="517" width="3.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="540.56" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="549" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="559.5" ></text>
</g>
<g >
<title>runtime.notewakeup (25,757 samples, 0.10%)</title><rect x="1187.7" y="645" width="1.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1190.67" y="655.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (70,427 samples, 0.28%)</title><rect x="933.4" y="645" width="3.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="936.38" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="181" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (570,281 samples, 2.29%)</title><rect x="1044.7" y="469" width="27.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="479.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="405" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="415.5" ></text>
</g>
<g >
<title>[unknown] (43,267 samples, 0.17%)</title><rect x="852.8" y="501" width="2.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="855.76" y="511.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/libpf.FrameID.Hash32 (37,440 samples, 0.15%)</title><rect x="615.4" y="613" width="1.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="618.38" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (305,405 samples, 1.23%)</title><rect x="1051.1" y="373" width="14.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1054.11" y="383.5" ></text>
</g>
<g >
<title>runtime.stealWork (120,754 samples, 0.49%)</title><rect x="719.2" y="629" width="5.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="722.24" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="435.5" y="517" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="438.53" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="501" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (84,940 samples, 0.34%)</title><rect x="1059.1" y="53" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1062.10" y="63.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*clientStream).SendMsg (1,379,314 samples, 5.54%)</title><rect x="476.0" y="629" width="65.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="478.98" y="639.5" >google...</text>
</g>
<g >
<title>bpf_trampoline_6442538629 (39,698 samples, 0.16%)</title><rect x="850.9" y="485" width="1.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="853.88" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (58,447 samples, 0.23%)</title><rect x="1037.0" y="533" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1040.04" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,899 samples, 0.11%)</title><rect x="906.1" y="597" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="909.14" y="607.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (67,286 samples, 0.27%)</title><rect x="808.1" y="581" width="3.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="811.08" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,703 samples, 0.06%)</title><rect x="1169.5" y="341" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1172.48" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).lookup (148,060 samples, 0.59%)</title><rect x="911.7" y="677" width="7.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="914.67" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="533" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="543.5" ></text>
</g>
<g >
<title>strconv.AppendUint (139,580 samples, 0.56%)</title><rect x="650.1" y="677" width="6.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="653.13" y="687.5" ></text>
</g>
<g >
<title>runtime.park_m (423,469 samples, 1.70%)</title><rect x="416.9" y="677" width="20.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="419.94" y="687.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf.fileID go.opentelemetry.io/ebpf-profiler/libpf.FileID: go.opentelemetry.io/ebpf-profiler/libpf.addressOrLineno go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno },go.shape.struct { LineNumber go.opentelemetry.io/ebpf-profiler/libpf.SourceLineno: FunctionOffset uint32: FunctionName go.opentelemetry.io/ebpf-profiler/libpf.String: FilePath go.opentelemetry.io/ebpf-profiler/libpf.String }]).Add (97,417 samples, 0.39%)</title><rect x="612.5" y="629" width="4.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="615.54" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (327,044 samples, 1.31%)</title><rect x="1130.7" y="437" width="15.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1133.65" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (601,374 samples, 2.42%)</title><rect x="1044.7" y="549" width="28.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="559.5" >[[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,552 samples, 0.22%)</title><rect x="630.6" y="613" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="633.59" y="623.5" ></text>
</g>
<g >
<title>context.WithDeadlineCause (40,568 samples, 0.16%)</title><rect x="471.6" y="677" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="474.62" y="687.5" ></text>
</g>
<g >
<title>runtime.mallocgc (59,620 samples, 0.24%)</title><rect x="673.5" y="693" width="2.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="676.48" y="703.5" ></text>
</g>
<g >
<title>bpf_trampoline_6442495261 (61,212 samples, 0.25%)</title><rect x="989.4" y="533" width="2.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="992.38" y="543.5" ></text>
</g>
<g >
<title>runtime.stealWork (30,727 samples, 0.12%)</title><rect x="424.9" y="629" width="1.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="427.90" y="639.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/encoding/gzip.(*writer).Write (207,175 samples, 0.83%)</title><rect x="520.1" y="581" width="9.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="523.09" y="591.5" ></text>
</g>
<g >
<title>syscall.Syscall (27,445 samples, 0.11%)</title><rect x="358.2" y="661" width="1.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="361.24" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="501" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,859 samples, 0.45%)</title><rect x="859.9" y="437" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="862.91" y="447.5" ></text>
</g>
<g >
<title>runtime.entersyscall (23,255 samples, 0.09%)</title><rect x="917.6" y="613" width="1.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="920.59" y="623.5" ></text>
</g>
<g >
<title>compress/flate.(*huffmanBitWriter).writeCode (52,781 samples, 0.21%)</title><rect x="517.6" y="469" width="2.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="520.59" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="435.5" y="501" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="438.53" y="511.5" ></text>
</g>
<g >
<title>runtime.stealWork (209,242 samples, 0.84%)</title><rect x="1108.1" y="597" width="9.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1111.10" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="435.5" y="565" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="438.53" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="85" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,113 samples, 0.09%)</title><rect x="1185.5" y="549" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.48" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (348,026 samples, 1.40%)</title><rect x="730.2" y="565" width="16.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="733.24" y="575.5" ></text>
</g>
<g >
<title>runtime.schedule (1,486,965 samples, 5.97%)</title><rect x="679.3" y="661" width="70.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="682.34" y="671.5" >runtime..</text>
</g>
<g >
<title>runtime.netpoll (130,456 samples, 0.52%)</title><rect x="1162.7" y="453" width="6.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1165.67" y="463.5" ></text>
</g>
<g >
<title>runtime.selectgo (1,580,163 samples, 6.35%)</title><rect x="677.4" y="725" width="74.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="680.35" y="735.5" >runtime...</text>
</g>
<g >
<title>[[vdso]] (45,610 samples, 0.18%)</title><rect x="928.1" y="597" width="2.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="931.05" y="607.5" ></text>
</g>
<g >
<title>runtime.callers (41,555 samples, 0.17%)</title><rect x="527.9" y="485" width="2.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="530.94" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,793 samples, 0.18%)</title><rect x="438.1" y="565" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="441.14" y="575.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (61,627 samples, 0.25%)</title><rect x="947.2" y="645" width="2.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="950.20" y="655.5" ></text>
</g>
<g >
<title>runtime.memmove (42,125 samples, 0.17%)</title><rect x="758.1" y="581" width="2.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="761.07" y="591.5" ></text>
</g>
<g >
<title>runtime.makeslice (93,098 samples, 0.37%)</title><rect x="656.7" y="693" width="4.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="659.74" y="703.5" ></text>
</g>
<g >
<title>runtime.startm (15,703 samples, 0.06%)</title><rect x="1169.5" y="437" width="0.7" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1172.48" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (20,116 samples, 0.08%)</title><rect x="1167.9" y="261" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1170.90" y="271.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*ProfilesDictionary).MarshalToSizedBuffer (39,936 samples, 0.16%)</title><rect x="531.8" y="485" width="1.9" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="534.84" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="469" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="469" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,105 samples, 0.09%)</title><rect x="586.8" y="629" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="589.76" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,451 samples, 0.09%)</title><rect x="445.2" y="581" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="448.19" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (543,735 samples, 2.18%)</title><rect x="1044.7" y="421" width="25.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="431.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,095 samples, 0.10%)</title><rect x="865.7" y="709" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.74" y="719.5" ></text>
</g>
<g >
<title>sort.Search (31,489 samples, 0.13%)</title><rect x="611.0" y="645" width="1.5" height="15.0" fill="rgb(207,12,2)" rx="2" ry="2" />
<text x="614.04" y="655.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.ensurePerCPUSlice (51,012 samples, 0.20%)</title><rect x="328.8" y="661" width="2.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="331.85" y="671.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (170,898 samples, 0.69%)</title><rect x="879.6" y="645" width="8.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="882.57" y="655.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*profilesServiceClient).Export (1,471,464 samples, 5.91%)</title><rect x="473.5" y="677" width="69.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="476.54" y="687.5" >go.open..</text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*ScopeProfiles).Size (40,069 samples, 0.16%)</title><rect x="533.7" y="469" width="1.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="536.73" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="469" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,162 samples, 0.47%)</title><rect x="1170.2" y="517" width="5.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1173.22" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="485" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="495.5" ></text>
</g>
<g >
<title>runtime.mallocgc (165,627 samples, 0.67%)</title><rect x="522.1" y="533" width="7.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="525.06" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,908 samples, 0.10%)</title><rect x="581.8" y="581" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="584.84" y="591.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2/hpack.(*Encoder).WriteField (48,081 samples, 0.19%)</title><rect x="1149.9" y="645" width="2.3" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1152.95" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="597" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,908 samples, 0.10%)</title><rect x="581.8" y="677" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="584.84" y="687.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Get (22,561 samples, 0.09%)</title><rect x="646.4" y="677" width="1.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="649.39" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (71,459 samples, 0.29%)</title><rect x="1088.0" y="469" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1090.99" y="479.5" ></text>
</g>
<g >
<title>unique.Make[go.shape.string] (57,081 samples, 0.23%)</title><rect x="842.4" y="661" width="2.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="845.43" y="671.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (15,703 samples, 0.06%)</title><rect x="1169.5" y="405" width="0.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1172.48" y="415.5" ></text>
</g>
<g >
<title>runtime.gopark (423,469 samples, 1.70%)</title><rect x="416.9" y="709" width="20.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="419.94" y="719.5" ></text>
</g>
<g >
<title>compress/flate.(*huffmanBitWriter).writeCode (53,323 samples, 0.21%)</title><rect x="512.5" y="485" width="2.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="515.54" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,344 samples, 0.20%)</title><rect x="348.9" y="533" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="351.86" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,271 samples, 1.59%)</title><rect x="1011.5" y="517" width="18.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1014.54" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="549" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="559.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.metricSummaryToSlice (28,467 samples, 0.11%)</title><rect x="305.4" y="709" width="1.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="308.40" y="719.5" ></text>
</g>
<g >
<title>bpf_prog_359b7788798bd982_file_modify_event__emit (45,697 samples, 0.18%)</title><rect x="710.6" y="501" width="2.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="713.60" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,698 samples, 0.16%)</title><rect x="850.9" y="453" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="853.88" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,552 samples, 0.22%)</title><rect x="630.6" y="549" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="633.59" y="559.5" ></text>
</g>
<g >
<title>runtime.findRunnable (57,331 samples, 0.23%)</title><rect x="302.7" y="677" width="2.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="305.68" y="687.5" ></text>
</g>
<g >
<title>time.sendTime (23,027 samples, 0.09%)</title><rect x="1186.6" y="613" width="1.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1189.58" y="623.5" ></text>
</g>
<g >
<title>runtime.mallocgc (61,627 samples, 0.25%)</title><rect x="947.2" y="693" width="2.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="950.20" y="703.5" ></text>
</g>
<g >
<title>net.(*netFD).Read (340,068 samples, 1.37%)</title><rect x="1159.7" y="613" width="16.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1162.70" y="623.5" ></text>
</g>
<g >
<title>runtime.growWork (39,944 samples, 0.16%)</title><rect x="566.6" y="645" width="1.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="569.59" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (135,307 samples, 0.54%)</title><rect x="858.8" y="469" width="6.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="861.80" y="479.5" ></text>
</g>
<g >
<title>runtime.schedule (221,906 samples, 0.89%)</title><rect x="1159.7" y="485" width="10.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1162.70" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,348 samples, 0.05%)</title><rect x="1168.3" y="245" width="0.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1171.32" y="255.5" ></text>
</g>
<g >
<title>runtime.findRunnable (1,526,355 samples, 6.13%)</title><rect x="1073.8" y="613" width="72.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1076.79" y="623.5" >runtime...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,557 samples, 0.13%)</title><rect x="1038.2" y="485" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1041.22" y="495.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (19,612 samples, 0.08%)</title><rect x="1079.5" y="597" width="1.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="1082.53" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="277" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="53" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="63.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2/hpack.(*Decoder).Write (39,950 samples, 0.16%)</title><rect x="1157.8" y="677" width="1.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1160.81" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,850 samples, 0.06%)</title><rect x="1098.0" y="373" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1101.02" y="383.5" ></text>
</g>
<g >
<title>runtime.duffzero (30,795 samples, 0.12%)</title><rect x="617.2" y="629" width="1.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="620.15" y="639.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (28,543 samples, 0.11%)</title><rect x="304.0" y="629" width="1.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="307.04" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (915,726 samples, 3.68%)</title><rect x="764.7" y="565" width="43.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="767.67" y="575.5" >[[ke..</text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).loadBpfTrace (876,852 samples, 3.52%)</title><rect x="908.5" y="725" width="41.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="911.55" y="735.5" >go...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="437" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="447.5" ></text>
</g>
<g >
<title>runtime.runqgrab (30,727 samples, 0.12%)</title><rect x="424.9" y="597" width="1.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="427.90" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,207 samples, 0.24%)</title><rect x="1095.8" y="453" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1098.83" y="463.5" ></text>
</g>
<g >
<title>runtime.mallocgc (15,466 samples, 0.06%)</title><rect x="1153.4" y="645" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1156.39" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="418.4" y="581" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="421.42" y="591.5" ></text>
</g>
<g >
<title>runtime.selectnbsend (27,620 samples, 0.11%)</title><rect x="1112.5" y="533" width="1.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1115.55" y="543.5" ></text>
</g>
<g >
<title>indexbytebody (23,485 samples, 0.09%)</title><rect x="609.9" y="645" width="1.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="612.93" y="655.5" ></text>
</g>
<g >
<title>runtime.memequal (31,509 samples, 0.13%)</title><rect x="414.2" y="709" width="1.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="417.18" y="719.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (323,880 samples, 1.30%)</title><rect x="874.4" y="661" width="15.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="877.43" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (847,884 samples, 3.41%)</title><rect x="767.9" y="549" width="40.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="770.88" y="559.5" >[[k..</text>
</g>
<g >
<title>runtime.(*unwinder).next (41,555 samples, 0.17%)</title><rect x="527.9" y="421" width="2.0" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="530.94" y="431.5" ></text>
</g>
<g >
<title>runtime.(*timers).check (23,027 samples, 0.09%)</title><rect x="1186.6" y="661" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1189.58" y="671.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*http2Client).reader (468,153 samples, 1.88%)</title><rect x="1157.8" y="725" width="22.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1160.81" y="735.5" >g..</text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*Stream).ReadMessageHeader (51,518 samples, 0.21%)</title><rect x="473.5" y="501" width="2.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="476.54" y="511.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1 (2,300,777 samples, 9.24%)</title><rect x="471.6" y="741" width="109.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="474.62" y="751.5" >go.openteleme..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="549" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,005,310 samples, 4.04%)</title><rect x="363.0" y="597" width="47.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="366.01" y="607.5" >[[ke..</text>
</g>
<g >
<title>runtime.sellock (30,224 samples, 0.12%)</title><rect x="1033.4" y="709" width="1.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1036.40" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,886 samples, 0.09%)</title><rect x="929.1" y="581" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="932.13" y="591.5" ></text>
</g>
<g >
<title>runtime.findRunnable (392,204 samples, 1.58%)</title><rect x="416.9" y="645" width="18.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="419.94" y="655.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (340,068 samples, 1.37%)</title><rect x="1159.7" y="661" width="16.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1162.70" y="671.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (117,614 samples, 0.47%)</title><rect x="1036.0" y="661" width="5.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1038.97" y="671.5" ></text>
</g>
<g >
<title>runtime.mallocgc (29,301 samples, 0.12%)</title><rect x="622.2" y="645" width="1.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="625.17" y="655.5" ></text>
</g>
<g >
<title>runtime.notewakeup (27,918 samples, 0.11%)</title><rect x="1040.2" y="565" width="1.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1043.23" y="575.5" ></text>
</g>
<g >
<title>runtime.heapSetType (38,382 samples, 0.15%)</title><rect x="668.0" y="645" width="1.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="670.98" y="655.5" ></text>
</g>
<g >
<title>runtime.newobject (118,498 samples, 0.48%)</title><rect x="671.7" y="709" width="5.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="674.74" y="719.5" ></text>
</g>
<g >
<title>runtime.makeslice (61,627 samples, 0.25%)</title><rect x="947.2" y="709" width="2.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="950.20" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,850 samples, 0.06%)</title><rect x="1098.0" y="357" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1101.02" y="367.5" ></text>
</g>
<g >
<title>[unknown] (460,291 samples, 1.85%)</title><rect x="283.6" y="757" width="21.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="286.57" y="767.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,833 samples, 0.12%)</title><rect x="309.8" y="613" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="312.79" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (277,799 samples, 1.12%)</title><rect x="311.2" y="501" width="13.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="314.20" y="511.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*bufWriter).Flush (622,555 samples, 2.50%)</title><rect x="1043.7" y="709" width="29.5" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1046.65" y="719.5" >go..</text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (108,446 samples, 0.44%)</title><rect x="874.4" y="645" width="5.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="877.43" y="655.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (147,853 samples, 0.59%)</title><rect x="880.7" y="613" width="7.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="883.66" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="325" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="453" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (162,899 samples, 0.65%)</title><rect x="705.0" y="565" width="7.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="708.05" y="575.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*http2Client).createHeaderFields (40,632 samples, 0.16%)</title><rect x="541.4" y="517" width="1.9" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="544.38" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (135,905 samples, 0.55%)</title><rect x="1084.9" y="485" width="6.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1087.94" y="495.5" ></text>
</g>
<g >
<title>math/rand/v2.(*runtimeSource).Uint64 (56,208 samples, 0.23%)</title><rect x="574.5" y="725" width="2.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="577.50" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,098 samples, 0.37%)</title><rect x="656.7" y="613" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="659.74" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,463 samples, 0.09%)</title><rect x="1029.3" y="389" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1032.26" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,698 samples, 0.16%)</title><rect x="850.9" y="405" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="853.88" y="415.5" ></text>
</g>
<g >
<title>runtime.resetspinning (25,757 samples, 0.10%)</title><rect x="1187.7" y="693" width="1.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1190.67" y="703.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameKnown (182,599 samples, 0.73%)</title><rect x="923.2" y="693" width="8.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="926.16" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="469" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="479.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*Profile).Size (40,069 samples, 0.16%)</title><rect x="533.7" y="453" width="1.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="536.73" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,866 samples, 0.18%)</title><rect x="877.4" y="565" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="880.44" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="341" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="165" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="175.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ProcessedUntil.deferwrap1 (26,899 samples, 0.11%)</title><rect x="906.1" y="725" width="1.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="909.14" y="735.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (126,108 samples, 0.51%)</title><rect x="912.7" y="645" width="6.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="915.71" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="469" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,832 samples, 0.11%)</title><rect x="702.0" y="581" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="704.99" y="591.5" ></text>
</g>
<g >
<title>runtime.pidleput (8,447 samples, 0.03%)</title><rect x="1106.5" y="597" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1109.52" y="607.5" ></text>
</g>
<g >
<title>compress/flate.(*compressor).close (930,264 samples, 3.74%)</title><rect x="476.0" y="549" width="44.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="478.98" y="559.5" >comp..</text>
</g>
<g >
<title>runtime.acquirep (8,958 samples, 0.04%)</title><rect x="1118.9" y="581" width="0.4" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1121.92" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,408 samples, 0.10%)</title><rect x="994.8" y="613" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="997.84" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,625 samples, 0.12%)</title><rect x="745.3" y="357" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="748.34" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (157,089 samples, 0.63%)</title><rect x="428.1" y="453" width="7.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="431.09" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,985 samples, 0.73%)</title><rect x="693.4" y="421" width="8.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="696.37" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="229" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="239.5" ></text>
</g>
<g >
<title>runtime.evacuate (39,944 samples, 0.16%)</title><rect x="566.6" y="629" width="1.9" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="569.59" y="639.5" ></text>
</g>
<g >
<title>runtime.read.abi0 (64,484 samples, 0.26%)</title><rect x="716.2" y="629" width="3.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="719.18" y="639.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*ProfilesDictionary).MarshalToSizedBuffer (80,669 samples, 0.32%)</title><rect x="537.6" y="485" width="3.8" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="540.56" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="389" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="399.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.recvAndDecompress (51,518 samples, 0.21%)</title><rect x="473.5" y="549" width="2.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="476.54" y="559.5" ></text>
</g>
<g >
<title>fmt.Errorf (64,035 samples, 0.26%)</title><rect x="355.2" y="693" width="3.0" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="358.20" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="485" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="495.5" ></text>
</g>
<g >
<title>runtime.gopark (1,606,335 samples, 6.45%)</title><rect x="1073.8" y="677" width="76.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1076.79" y="687.5" >runtime...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (229,812 samples, 0.92%)</title><rect x="735.8" y="437" width="10.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="738.85" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,503 samples, 0.20%)</title><rect x="1143.8" y="341" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1146.81" y="351.5" ></text>
</g>
<g >
<title>syscall.SetNonblock (81,972 samples, 0.33%)</title><rect x="845.1" y="629" width="3.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="848.13" y="639.5" ></text>
</g>
<g >
<title>runtime.newobject (165,627 samples, 0.67%)</title><rect x="522.1" y="549" width="7.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="525.06" y="559.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Write (601,374 samples, 2.42%)</title><rect x="1044.7" y="629" width="28.5" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1047.66" y="639.5" >in..</text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func1 (1,275,452 samples, 5.12%)</title><rect x="355.2" y="725" width="60.5" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="358.20" y="735.5" >go.ope..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="421" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (487,092 samples, 1.96%)</title><rect x="1123.1" y="501" width="23.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1126.06" y="511.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (81,972 samples, 0.33%)</title><rect x="845.1" y="533" width="3.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="848.13" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="533" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="543.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.NewHTTP2Client.gowrap4 (468,153 samples, 1.88%)</title><rect x="1157.8" y="741" width="22.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1160.81" y="751.5" >g..</text>
</g>
<g >
<title>runtime.findRunnable (1,443,516 samples, 5.80%)</title><rect x="679.3" y="645" width="68.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="682.34" y="655.5" >runtime..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,800 samples, 0.08%)</title><rect x="864.3" y="309" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="867.28" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="565" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (27,445 samples, 0.11%)</title><rect x="358.2" y="693" width="1.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="361.24" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="325" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (562,842 samples, 2.26%)</title><rect x="962.7" y="597" width="26.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="965.69" y="607.5" >[..</text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (51,422 samples, 0.21%)</title><rect x="819.7" y="645" width="2.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="822.70" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,698 samples, 0.16%)</title><rect x="850.9" y="373" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="853.88" y="383.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (83,348 samples, 0.33%)</title><rect x="351.2" y="597" width="4.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="354.25" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mspan).writeHeapBitsSmall (38,382 samples, 0.15%)</title><rect x="668.0" y="629" width="1.8" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="670.98" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,745 samples, 0.18%)</title><rect x="446.3" y="501" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="449.25" y="511.5" ></text>
</g>
<g >
<title>runtime.startm (25,757 samples, 0.10%)</title><rect x="1187.7" y="661" width="1.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1190.67" y="671.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast.func1 (27,918 samples, 0.11%)</title><rect x="1040.2" y="597" width="1.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="1043.23" y="607.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (44,536 samples, 0.18%)</title><rect x="887.7" y="645" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="890.67" y="655.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/mem.(*sliceReader).Read (53,605 samples, 0.22%)</title><rect x="1154.1" y="693" width="2.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1157.12" y="703.5" ></text>
</g>
<g >
<title>runtime.runqsteal (24,548 samples, 0.10%)</title><rect x="457.0" y="597" width="1.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="459.95" y="607.5" ></text>
</g>
<g >
<title>[[vdso]] (38,814 samples, 0.16%)</title><rect x="958.8" y="613" width="1.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="961.76" y="623.5" ></text>
</g>
<g >
<title>runtime.schedule (57,331 samples, 0.23%)</title><rect x="302.7" y="693" width="2.7" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="305.68" y="703.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (43,793 samples, 0.18%)</title><rect x="438.1" y="677" width="2.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="441.14" y="687.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/periodiccaller.Start.func1 (1,050,355 samples, 4.22%)</title><rect x="305.4" y="741" width="49.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="308.40" y="751.5" >go.op..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (203,811 samples, 0.82%)</title><rect x="692.3" y="469" width="9.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="695.33" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (190,357 samples, 0.76%)</title><rect x="459.1" y="533" width="9.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="462.05" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (273,494 samples, 1.10%)</title><rect x="689.0" y="533" width="13.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="692.03" y="543.5" ></text>
</g>
<g >
<title>runtime.read.abi0 (24,408 samples, 0.10%)</title><rect x="994.8" y="629" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="997.84" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,567 samples, 0.15%)</title><rect x="423.2" y="485" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="426.16" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,451 samples, 0.09%)</title><rect x="445.2" y="549" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="448.19" y="559.5" ></text>
</g>
<g >
<title>runtime.netpoll (62,530 samples, 0.25%)</title><rect x="416.9" y="629" width="3.0" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="419.94" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="485" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,557 samples, 0.13%)</title><rect x="1038.2" y="453" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1041.22" y="463.5" ></text>
</g>
<g >
<title>reflect.(*rtype).Elem (51,012 samples, 0.20%)</title><rect x="328.8" y="629" width="2.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="331.85" y="639.5" ></text>
</g>
<g >
<title>runtime.acquirep (10,577 samples, 0.04%)</title><rect x="1162.2" y="453" width="0.5" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1165.17" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,185 samples, 0.28%)</title><rect x="1165.5" y="325" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1168.53" y="335.5" ></text>
</g>
<g >
<title>bpf_prog_d17ae192e0dd2d09_fexit__vfs_write (80,628 samples, 0.32%)</title><rect x="708.9" y="517" width="3.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="711.95" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (185,972 samples, 0.75%)</title><rect x="1137.3" y="373" width="8.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1140.34" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,408 samples, 0.10%)</title><rect x="994.8" y="549" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="997.84" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="373" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*perfEventRing).Read (32,999 samples, 0.13%)</title><rect x="894.2" y="645" width="1.5" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="897.17" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="485" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="495.5" ></text>
</g>
<g >
<title>runtime.convT64 (24,369 samples, 0.10%)</title><rect x="922.0" y="677" width="1.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="925.00" y="687.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/common/v1.(*AnyValue_StringValue).MarshalToSizedBuffer (40,441 samples, 0.16%)</title><rect x="537.6" y="421" width="1.9" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="540.56" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (71,459 samples, 0.29%)</title><rect x="1088.0" y="437" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1090.99" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="357" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,030 samples, 0.08%)</title><rect x="1100.4" y="437" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1103.37" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,850 samples, 0.06%)</title><rect x="1098.0" y="405" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1101.02" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (273,494 samples, 1.10%)</title><rect x="689.0" y="581" width="13.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="692.03" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="421" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="431.5" ></text>
</g>
<g >
<title>runtime.mapaccess1_faststr (30,472 samples, 0.12%)</title><rect x="339.7" y="693" width="1.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="342.72" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (47,785 samples, 0.19%)</title><rect x="862.9" y="357" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="865.95" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="421" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="431.5" ></text>
</g>
<g >
<title>runtime.mcall (287,661 samples, 1.16%)</title><rect x="289.0" y="741" width="13.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="292.04" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="197" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="207.5" ></text>
</g>
<g >
<title>runtime.runqgrab (23,649 samples, 0.10%)</title><rect x="723.8" y="597" width="1.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="726.85" y="607.5" ></text>
</g>
<g >
<title>runtime.mcall (57,331 samples, 0.23%)</title><rect x="302.7" y="725" width="2.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="305.68" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (81,972 samples, 0.33%)</title><rect x="845.1" y="565" width="3.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="848.13" y="575.5" ></text>
</g>
<g >
<title>runtime.wakep (25,449 samples, 0.10%)</title><rect x="1147.5" y="597" width="1.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1150.47" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (70,427 samples, 0.28%)</title><rect x="933.4" y="661" width="3.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="936.38" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,005,310 samples, 4.04%)</title><rect x="363.0" y="565" width="47.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="366.01" y="575.5" >[[ke..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,918 samples, 0.11%)</title><rect x="1040.2" y="501" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1043.23" y="511.5" ></text>
</g>
<g >
<title>runtime.findRunnable (505,102 samples, 2.03%)</title><rect x="444.1" y="629" width="24.0" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="447.13" y="639.5" >r..</text>
</g>
<g >
<title>[unknown] (26,546 samples, 0.11%)</title><rect x="1070.4" y="421" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1073.44" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,294 samples, 0.09%)</title><rect x="447.3" y="389" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="450.32" y="399.5" ></text>
</g>
<g >
<title>runtime.adjustSignalStack (32,859 samples, 0.13%)</title><rect x="412.6" y="629" width="1.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="415.62" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="421" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,035 samples, 0.10%)</title><rect x="893.0" y="661" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="895.98" y="671.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).eBPFMetricsCollector (717,372 samples, 2.88%)</title><rect x="311.2" y="709" width="34.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="314.20" y="719.5" >go..</text>
</g>
<g >
<title>runtime.selectnbsend (23,683 samples, 0.10%)</title><rect x="1007.6" y="549" width="1.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1010.55" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (206,589 samples, 0.83%)</title><rect x="1081.6" y="549" width="9.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1084.59" y="559.5" ></text>
</g>
<g >
<title>runtime.gopark (54,078 samples, 0.22%)</title><rect x="286.5" y="741" width="2.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="289.48" y="751.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (22,750 samples, 0.09%)</title><rect x="952.8" y="581" width="1.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="955.76" y="591.5" ></text>
</g>
<g >
<title>bpf_prog_359b7788798bd982_file_modify_event__emit (22,185 samples, 0.09%)</title><rect x="991.2" y="501" width="1.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="994.23" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="437" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,701 samples, 0.04%)</title><rect x="1039.3" y="437" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1042.31" y="447.5" ></text>
</g>
<g >
<title>runtime.mcall (24,103 samples, 0.10%)</title><rect x="1156.7" y="709" width="1.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1159.67" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="421" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="431.5" ></text>
</g>
<g >
<title>internal/poll.(*pollDesc).wait (221,906 samples, 0.89%)</title><rect x="1159.7" y="581" width="10.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1162.70" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,546 samples, 0.11%)</title><rect x="1070.4" y="405" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1073.44" y="415.5" ></text>
</g>
<g >
<title>fmt.(*pp).doPrintf (64,035 samples, 0.26%)</title><rect x="355.2" y="677" width="3.0" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="358.20" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,789 samples, 0.14%)</title><rect x="745.1" y="373" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="748.14" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (601,374 samples, 2.42%)</title><rect x="1044.7" y="517" width="28.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="527.5" >[[..</text>
</g>
<g >
<title>runtime.netpollBreak (82,675 samples, 0.33%)</title><rect x="989.4" y="629" width="3.9" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="992.38" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,462 samples, 0.11%)</title><rect x="300.2" y="453" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="303.17" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="418.4" y="549" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="421.42" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (338,259 samples, 1.36%)</title><rect x="1130.1" y="453" width="16.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1133.12" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (489,917 samples, 1.97%)</title><rect x="1047.2" y="405" width="23.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1050.21" y="415.5" >[..</text>
</g>
<g >
<title>bpf_trampoline_6442495261 (225,613 samples, 0.91%)</title><rect x="1095.8" y="501" width="10.7" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1098.83" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="469" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="229" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="239.5" ></text>
</g>
<g >
<title>runtime.notesleep (375,069 samples, 1.51%)</title><rect x="729.0" y="613" width="17.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="731.96" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="435.5" y="549" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="438.53" y="559.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (43,793 samples, 0.18%)</title><rect x="438.1" y="661" width="2.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="441.14" y="671.5" ></text>
</g>
<g >
<title>runtime.makeslice (125,839 samples, 0.51%)</title><rect x="931.8" y="693" width="6.0" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="934.82" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (327,044 samples, 1.31%)</title><rect x="1130.7" y="421" width="15.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1133.65" y="431.5" ></text>
</g>
<g >
<title>runtime.park_m (230,393 samples, 0.93%)</title><rect x="854.8" y="661" width="10.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="857.82" y="671.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).marshalKey (33,004 samples, 0.13%)</title><rect x="361.4" y="709" width="1.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="364.44" y="719.5" ></text>
</g>
<g >
<title>runtime.newobject (45,502 samples, 0.18%)</title><rect x="1177.8" y="677" width="2.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1180.85" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (135,307 samples, 0.54%)</title><rect x="858.8" y="501" width="6.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="861.80" y="511.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter/samples.(*AttrTableManager).appendAny (60,633 samples, 0.24%)</title><rect x="554.7" y="645" width="2.9" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="557.75" y="655.5" ></text>
</g>
<g >
<title>runtime.netpollBreak (89,515 samples, 0.36%)</title><rect x="446.3" y="613" width="4.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="449.25" y="623.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (18,446,187 samples, 74.12%)</title><rect x="305.4" y="757" width="874.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="308.40" y="767.5" >runtime.goexit.abi0</text>
</g>
<g >
<title>runtime.(*mcache).nextFree (36,877 samples, 0.15%)</title><rect x="673.5" y="677" width="1.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="676.48" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="133" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,557 samples, 0.13%)</title><rect x="1038.2" y="469" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1041.22" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="469" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="479.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (45,721 samples, 0.18%)</title><rect x="895.7" y="677" width="2.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="898.73" y="687.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).SynchronizeProcess (2,040,510 samples, 8.20%)</title><rect x="758.1" y="709" width="96.7" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="761.07" y="719.5" >go.opentele..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (126,325 samples, 0.51%)</title><rect x="706.8" y="549" width="6.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="709.78" y="559.5" ></text>
</g>
<g >
<title>runtime.park_m (1,591,151 samples, 6.39%)</title><rect x="956.9" y="677" width="75.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="959.95" y="687.5" >runtime...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,185 samples, 0.28%)</title><rect x="1165.5" y="309" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1168.53" y="319.5" ></text>
</g>
<g >
<title>runtime.startm (22,750 samples, 0.09%)</title><rect x="952.8" y="613" width="1.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="955.76" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,698 samples, 0.16%)</title><rect x="850.9" y="421" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="853.88" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,147 samples, 0.11%)</title><rect x="750.9" y="565" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="753.94" y="575.5" ></text>
</g>
<g >
<title>bpf_prog_d17ae192e0dd2d09_fexit__vfs_write (22,056 samples, 0.09%)</title><rect x="448.4" y="501" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="451.37" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (35,825 samples, 0.14%)</title><rect x="421.5" y="485" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="424.46" y="495.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (83,257 samples, 0.33%)</title><rect x="524.0" y="517" width="3.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="527.00" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,161 samples, 0.04%)</title><rect x="1041.1" y="453" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1044.07" y="463.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (23,949 samples, 0.10%)</title><rect x="897.9" y="709" width="1.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="900.90" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,412 samples, 0.66%)</title><rect x="1056.5" y="197" width="7.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1059.54" y="207.5" ></text>
</g>
<g >
<title>runtime.write1.abi0 (19,330 samples, 0.08%)</title><rect x="857.2" y="597" width="0.9" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="860.17" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="181" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="191.5" ></text>
</g>
<g >
<title>runtime.selectgo (450,144 samples, 1.81%)</title><rect x="415.7" y="725" width="21.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="418.67" y="735.5" >r..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (160,343 samples, 0.64%)</title><rect x="1083.8" y="501" width="7.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1086.78" y="511.5" ></text>
</g>
<g >
<title>google.golang.org/protobuf/proto.MarshalOptions.size (80,669 samples, 0.32%)</title><rect x="537.6" y="549" width="3.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="540.56" y="559.5" ></text>
</g>
<g >
<title>runtime.checkRunqsNoP (21,951 samples, 0.09%)</title><rect x="960.6" y="629" width="1.0" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="963.60" y="639.5" ></text>
</g>
<g >
<title>sort.Sort (153,006 samples, 0.61%)</title><rect x="505.3" y="453" width="7.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="508.29" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="405" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="415.5" ></text>
</g>
<g >
<title>runtime.(*timers).check (38,814 samples, 0.16%)</title><rect x="958.8" y="629" width="1.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="961.76" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (79,274 samples, 0.32%)</title><rect x="297.7" y="613" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="300.67" y="623.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*controlBuffer).get (1,619,311 samples, 6.51%)</title><rect x="1073.2" y="709" width="76.7" height="15.0" fill="rgb(210,25,5)" rx="2" ry="2" />
<text x="1076.17" y="719.5" >google.g..</text>
</g>
<g >
<title>unique.Make[go.shape.string] (107,756 samples, 0.43%)</title><rect x="939.0" y="693" width="5.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="942.04" y="703.5" ></text>
</g>
<g >
<title>runtime.resetspinning (43,449 samples, 0.17%)</title><rect x="747.8" y="645" width="2.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="750.78" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (847,884 samples, 3.41%)</title><rect x="767.9" y="533" width="40.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="770.88" y="543.5" >[[k..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="341" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,672 samples, 0.18%)</title><rect x="293.4" y="549" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="296.43" y="559.5" ></text>
</g>
<g >
<title>runtime.mallocgc (26,428 samples, 0.11%)</title><rect x="937.8" y="677" width="1.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="940.78" y="687.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile (2,169,969 samples, 8.72%)</title><rect x="471.6" y="709" width="102.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="474.62" y="719.5" >go.opentelem..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (34,931 samples, 0.14%)</title><rect x="708.9" y="501" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="711.95" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,446 samples, 0.44%)</title><rect x="874.4" y="629" width="5.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="877.43" y="639.5" ></text>
</g>
<g >
<title>bpf_trampoline_6442495261 (601,374 samples, 2.42%)</title><rect x="1044.7" y="501" width="28.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1047.66" y="511.5" >bp..</text>
</g>
<g >
<title>fmt.(*pp).printValue (42,125 samples, 0.17%)</title><rect x="758.1" y="629" width="2.0" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="761.07" y="639.5" ></text>
</g>
<g >
<title>runtime.netpollBreak (199,473 samples, 0.80%)</title><rect x="703.3" y="629" width="9.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="706.31" y="639.5" ></text>
</g>
<g >
<title>runtime.stopm (193,656 samples, 0.78%)</title><rect x="426.4" y="629" width="9.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="429.35" y="639.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (41,555 samples, 0.17%)</title><rect x="527.9" y="469" width="2.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="530.94" y="479.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracehandler.Start.func1 (3,740,693 samples, 15.03%)</title><rect x="580.7" y="741" width="177.4" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="583.71" y="751.5" >go.opentelemetry.io/ebp..</text>
</g>
<g >
<title>runtime.spanOfHeap (39,118 samples, 0.16%)</title><rect x="633.2" y="645" width="1.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="636.18" y="655.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (30,727 samples, 0.12%)</title><rect x="424.9" y="581" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="427.90" y="591.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartMapMonitors.func2 (743,726 samples, 2.99%)</title><rect x="311.2" y="725" width="35.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="314.20" y="735.5" >go..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="357" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="367.5" ></text>
</g>
<g >
<title>runtime.schedule (423,469 samples, 1.70%)</title><rect x="416.9" y="661" width="20.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="419.94" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (114,236 samples, 0.46%)</title><rect x="462.7" y="405" width="5.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="465.66" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,552 samples, 0.22%)</title><rect x="630.6" y="597" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="633.59" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (334,816 samples, 1.35%)</title><rect x="1014.4" y="469" width="15.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1017.40" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="405" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="415.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (44,853 samples, 0.18%)</title><rect x="326.7" y="597" width="2.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="329.72" y="607.5" ></text>
</g>
<g >
<title>runtime.growslice (51,422 samples, 0.21%)</title><rect x="819.7" y="661" width="2.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="822.70" y="671.5" ></text>
</g>
<g >
<title>[unknown] (37,229 samples, 0.15%)</title><rect x="1174.1" y="389" width="1.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1177.06" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,035 samples, 0.10%)</title><rect x="893.0" y="581" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="895.98" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.readRecord (123,607 samples, 0.50%)</title><rect x="892.0" y="693" width="5.9" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="895.04" y="703.5" ></text>
</g>
<g >
<title>runtime.write1.abi0 (199,473 samples, 0.80%)</title><rect x="703.3" y="613" width="9.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="706.31" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="453" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="463.5" ></text>
</g>
<g >
<title>runtime.park_m (26,911 samples, 0.11%)</title><rect x="1148.7" y="661" width="1.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1151.67" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,135 samples, 0.21%)</title><rect x="1068.0" y="37" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1071.01" y="47.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,757 samples, 0.10%)</title><rect x="1187.7" y="565" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.67" y="575.5" ></text>
</g>
<g >
<title>runtime.netpollBreak (319,344 samples, 1.28%)</title><rect x="1091.4" y="597" width="15.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1094.38" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,899 samples, 0.11%)</title><rect x="906.1" y="613" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="909.14" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (135,307 samples, 0.54%)</title><rect x="858.8" y="517" width="6.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="861.80" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (539,159 samples, 2.17%)</title><rect x="963.8" y="581" width="25.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="966.82" y="591.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="469" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="469" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="479.5" ></text>
</g>
<g >
<title>unique.Make[go.shape.string] (341,884 samples, 1.37%)</title><rect x="623.6" y="661" width="16.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="626.56" y="671.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (25,757 samples, 0.10%)</title><rect x="1187.7" y="629" width="1.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1190.67" y="639.5" ></text>
</g>
<g >
<title>runtime.makeslice (40,228 samples, 0.16%)</title><rect x="539.5" y="453" width="1.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="542.47" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,643 samples, 0.02%)</title><rect x="467.9" y="277" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="470.86" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="581" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="591.5" ></text>
</g>
<g >
<title>sync.(*RWMutex).Lock (26,354 samples, 0.11%)</title><rect x="345.2" y="709" width="1.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="348.22" y="719.5" ></text>
</g>
<g >
<title>runtime.mapassign (61,307 samples, 0.25%)</title><rect x="308.3" y="709" width="2.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="311.30" y="719.5" ></text>
</g>
<g >
<title>sync.(*Pool).Put (36,746 samples, 0.15%)</title><rect x="608.2" y="629" width="1.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="611.19" y="639.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*Sample).Size (40,069 samples, 0.16%)</title><rect x="533.7" y="437" width="1.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="536.73" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="418.4" y="565" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="421.42" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (277,799 samples, 1.12%)</title><rect x="311.2" y="565" width="13.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="314.20" y="575.5" ></text>
</g>
<g >
<title>time.sendTime (22,797 samples, 0.09%)</title><rect x="1113.9" y="533" width="1.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1116.86" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (217,319 samples, 0.87%)</title><rect x="1020.0" y="421" width="10.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1022.97" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,620 samples, 0.11%)</title><rect x="1090.1" y="341" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1093.07" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,294 samples, 0.09%)</title><rect x="447.3" y="421" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="450.32" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).lookupPerCPU (567,461 samples, 2.28%)</title><rect x="311.2" y="677" width="26.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="314.20" y="687.5" >g..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,850 samples, 0.06%)</title><rect x="1098.0" y="389" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1101.02" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/epoll.(*Poller).Wait (346,656 samples, 1.39%)</title><rect x="874.4" y="709" width="16.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="877.43" y="719.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.now (36,230 samples, 0.15%)</title><rect x="613.7" y="597" width="1.7" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="616.66" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="453" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="463.5" ></text>
</g>
<g >
<title>runtime.stopm (146,370 samples, 0.59%)</title><rect x="858.8" y="613" width="6.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="861.80" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,271 samples, 1.59%)</title><rect x="1011.5" y="533" width="18.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1014.54" y="543.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*clientStream).withRetry (40,632 samples, 0.16%)</title><rect x="541.4" y="581" width="1.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="544.38" y="591.5" ></text>
</g>
<g >
<title>runtime.acquirep (38,186 samples, 0.15%)</title><rect x="1009.7" y="613" width="1.8" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="1012.73" y="623.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.prepareMsg (1,379,314 samples, 5.54%)</title><rect x="476.0" y="613" width="65.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="478.98" y="623.5" >google...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,207 samples, 0.11%)</title><rect x="855.9" y="485" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="858.93" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,229 samples, 0.49%)</title><rect x="849.0" y="565" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="852.02" y="575.5" ></text>
</g>
<g >
<title>runtime.netpoll (357,588 samples, 1.44%)</title><rect x="686.4" y="629" width="16.9" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="689.36" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (305,405 samples, 1.23%)</title><rect x="1051.1" y="325" width="14.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1054.11" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,672 samples, 0.18%)</title><rect x="293.4" y="581" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="296.43" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,147 samples, 0.11%)</title><rect x="750.9" y="533" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="753.94" y="543.5" ></text>
</g>
<g >
<title>runtime.notewakeup (28,147 samples, 0.11%)</title><rect x="750.9" y="613" width="1.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="753.94" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (305,405 samples, 1.23%)</title><rect x="1051.1" y="341" width="14.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1054.11" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,698 samples, 0.16%)</title><rect x="850.9" y="437" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="853.88" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,994 samples, 0.09%)</title><rect x="748.8" y="501" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="751.80" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mspan).writeHeapBitsSmall (46,491 samples, 0.19%)</title><rect x="570.4" y="613" width="2.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="573.38" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="565" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,899 samples, 0.11%)</title><rect x="906.1" y="661" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="909.14" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mspan).refillAllocCache (93,098 samples, 0.37%)</title><rect x="656.7" y="629" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="659.74" y="639.5" ></text>
</g>
<g >
<title>net.(*conn).Write (601,374 samples, 2.42%)</title><rect x="1044.7" y="661" width="28.5" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="1047.66" y="671.5" >ne..</text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/process.parseMappings (1,794,184 samples, 7.21%)</title><rect x="760.1" y="677" width="85.0" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="763.06" y="687.5" >go.opentel..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,651 samples, 0.12%)</title><rect x="1097.2" y="437" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1100.23" y="447.5" ></text>
</g>
<g >
<title>runtime.memmove (32,999 samples, 0.13%)</title><rect x="894.2" y="629" width="1.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="897.17" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,093 samples, 0.12%)</title><rect x="1071.7" y="421" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1074.70" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,793 samples, 0.18%)</title><rect x="438.1" y="517" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="441.14" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (225,157 samples, 0.90%)</title><rect x="1053.7" y="261" width="10.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1056.66" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,185 samples, 0.28%)</title><rect x="1165.5" y="293" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1168.53" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,158 samples, 0.10%)</title><rect x="1098.7" y="469" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1101.68" y="479.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager/ebpf.newAsyncMapUpdaterPool.gowrap1 (729,733 samples, 2.93%)</title><rect x="437.0" y="741" width="34.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="440.02" y="751.5" >go..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,757 samples, 0.10%)</title><rect x="1187.7" y="581" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.67" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (340,799 samples, 1.37%)</title><rect x="973.2" y="437" width="16.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="976.22" y="447.5" ></text>
</g>
<g >
<title>runtime.mcall (587,639 samples, 2.36%)</title><rect x="443.8" y="677" width="27.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="446.75" y="687.5" >r..</text>
</g>
<g >
<title>runtime.futex.abi0 (565,428 samples, 2.27%)</title><rect x="1119.3" y="565" width="26.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1122.35" y="575.5" >r..</text>
</g>
<g >
<title>runtime.notesleep (32,633 samples, 0.13%)</title><rect x="283.6" y="645" width="1.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="286.57" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (81,052 samples, 0.33%)</title><rect x="1036.0" y="629" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1038.97" y="639.5" ></text>
</g>
<g >
<title>runtime.wakep (15,703 samples, 0.06%)</title><rect x="1169.5" y="453" width="0.7" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1172.48" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,105 samples, 0.09%)</title><rect x="586.8" y="645" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="589.76" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,750 samples, 0.09%)</title><rect x="952.8" y="533" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="955.76" y="543.5" ></text>
</g>
<g >
<title>runtime.mapaccess2_fast64 (62,192 samples, 0.25%)</title><rect x="584.9" y="677" width="3.0" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="587.91" y="687.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/common/v1.(*AnyValue).MarshalToSizedBuffer (40,441 samples, 0.16%)</title><rect x="537.6" y="453" width="1.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="540.56" y="463.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (49,655 samples, 0.20%)</title><rect x="854.8" y="597" width="2.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="857.82" y="607.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.encode (241,875 samples, 0.97%)</title><rect x="529.9" y="597" width="11.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="532.91" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="149" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (273,494 samples, 1.10%)</title><rect x="689.0" y="549" width="13.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="692.03" y="559.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).NextKey (1,005,310 samples, 4.04%)</title><rect x="363.0" y="693" width="47.7" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="366.01" y="703.5" >gith..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="405" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,378 samples, 0.09%)</title><rect x="1188.9" y="693" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.89" y="703.5" ></text>
</g>
<g >
<title>time.sendTime (22,926 samples, 0.09%)</title><rect x="722.8" y="581" width="1.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="725.76" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,697 samples, 0.18%)</title><rect x="915.4" y="533" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="918.42" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (203,811 samples, 0.82%)</title><rect x="692.3" y="453" width="9.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="695.33" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,643 samples, 0.02%)</title><rect x="467.9" y="293" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="470.86" y="303.5" ></text>
</g>
<g >
<title>syscall.read (118,162 samples, 0.47%)</title><rect x="1170.2" y="581" width="5.6" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1173.22" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (126,108 samples, 0.51%)</title><rect x="912.7" y="661" width="6.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="915.71" y="671.5" ></text>
</g>
<g >
<title>bpf_prog_359b7788798bd982_file_modify_event__emit (22,056 samples, 0.09%)</title><rect x="448.4" y="485" width="1.0" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="451.37" y="495.5" ></text>
</g>
<g >
<title>runtime.save (74,600 samples, 0.30%)</title><rect x="440.2" y="629" width="3.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="443.22" y="639.5" ></text>
</g>
<g >
<title>runtime.heapSetType (40,632 samples, 0.16%)</title><rect x="541.4" y="469" width="1.9" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="544.38" y="479.5" ></text>
</g>
<g >
<title>sort.partition (50,542 samples, 0.20%)</title><rect x="510.1" y="405" width="2.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="513.15" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,703 samples, 0.06%)</title><rect x="1169.5" y="357" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1172.48" y="367.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).ReportTraceEvent (199,791 samples, 0.80%)</title><rect x="662.3" y="709" width="9.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="665.26" y="719.5" ></text>
</g>
<g >
<title>runtime.(*timers).check (57,331 samples, 0.23%)</title><rect x="302.7" y="645" width="2.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="305.68" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (206,589 samples, 0.83%)</title><rect x="1081.6" y="565" width="9.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1084.59" y="575.5" ></text>
</g>
<g >
<title>runtime.runGCProg (40,815 samples, 0.16%)</title><rect x="522.1" y="501" width="1.9" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="525.06" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (79,274 samples, 0.32%)</title><rect x="297.7" y="629" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="300.67" y="639.5" ></text>
</g>
<g >
<title>runtime.getWeakHandle (75,758 samples, 0.30%)</title><rect x="636.2" y="581" width="3.6" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="639.17" y="591.5" ></text>
</g>
<g >
<title>compress/gzip.(*Writer).Close (930,264 samples, 3.74%)</title><rect x="476.0" y="565" width="44.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="478.98" y="575.5" >comp..</text>
</g>
<g >
<title>runtime.park_m (1,486,965 samples, 5.97%)</title><rect x="679.3" y="677" width="70.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="682.34" y="687.5" >runtime..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (58,447 samples, 0.23%)</title><rect x="1037.0" y="517" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1040.04" y="527.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/encoding/proto.(*codecV2).Marshal (241,875 samples, 0.97%)</title><rect x="529.9" y="581" width="11.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="532.91" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,035 samples, 0.10%)</title><rect x="893.0" y="565" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="895.98" y="575.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (21,994 samples, 0.09%)</title><rect x="748.8" y="581" width="1.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="751.80" y="591.5" ></text>
</g>
<g >
<title>ebpf-profiler (24,887,175 samples, 100.00%)</title><rect x="10.0" y="773" width="1180.0" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="13.00" y="783.5" >ebpf-profiler</text>
</g>
<g >
<title>runtime.makeslice (41,548 samples, 0.17%)</title><rect x="520.1" y="533" width="2.0" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="523.09" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,241 samples, 0.11%)</title><rect x="1104.3" y="421" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.33" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,207 samples, 0.24%)</title><rect x="1095.8" y="469" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1098.83" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,451 samples, 0.09%)</title><rect x="445.2" y="517" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="448.19" y="527.5" ></text>
</g>
<g >
<title>syscall.Syscall (74,600 samples, 0.30%)</title><rect x="440.2" y="661" width="3.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="443.22" y="671.5" ></text>
</g>
<g >
<title>runtime.(*timers).check (71,988 samples, 0.29%)</title><rect x="1111.5" y="581" width="3.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1114.52" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,098 samples, 0.37%)</title><rect x="656.7" y="549" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="659.74" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,994 samples, 0.09%)</title><rect x="748.8" y="565" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="751.80" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (539,159 samples, 2.17%)</title><rect x="963.8" y="565" width="25.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="966.82" y="575.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (157,089 samples, 0.63%)</title><rect x="428.1" y="501" width="7.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="431.09" y="511.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,005,310 samples, 4.04%)</title><rect x="363.0" y="629" width="47.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="366.01" y="639.5" >sysc..</text>
</g>
<g >
<title>runtime.gopark (1,612,375 samples, 6.48%)</title><rect x="956.9" y="709" width="76.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="959.95" y="719.5" >runtime...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="501" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (135,307 samples, 0.54%)</title><rect x="858.8" y="533" width="6.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="861.80" y="543.5" ></text>
</g>
<g >
<title>runtime.mallocgc (41,548 samples, 0.17%)</title><rect x="520.1" y="517" width="2.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="523.09" y="527.5" ></text>
</g>
<g >
<title>runtime.resetspinning (15,703 samples, 0.06%)</title><rect x="1169.5" y="469" width="0.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1172.48" y="479.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (193,656 samples, 0.78%)</title><rect x="426.4" y="597" width="9.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="429.35" y="607.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.EpollWait (117,614 samples, 0.47%)</title><rect x="1036.0" y="693" width="5.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1038.97" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,750 samples, 0.09%)</title><rect x="952.8" y="549" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="955.76" y="559.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*forwardReader).Read (45,721 samples, 0.18%)</title><rect x="895.7" y="645" width="2.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="898.73" y="655.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (102,853 samples, 0.41%)</title><rect x="912.7" y="613" width="4.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="915.71" y="623.5" ></text>
</g>
<g >
<title>runtime.wakep (31,265 samples, 0.13%)</title><rect x="435.5" y="629" width="1.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="438.53" y="639.5" ></text>
</g>
<g >
<title>runtime.pidleget (71,976 samples, 0.29%)</title><rect x="712.8" y="629" width="3.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="715.77" y="639.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/libpf.FrameID.Hash (37,440 samples, 0.15%)</title><rect x="615.4" y="597" width="1.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="618.38" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (193,656 samples, 0.78%)</title><rect x="426.4" y="549" width="9.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="429.35" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,408 samples, 0.10%)</title><rect x="994.8" y="533" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="997.84" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="437" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="447.5" ></text>
</g>
<g >
<title>runtime.convT32 (37,709 samples, 0.15%)</title><rect x="618.6" y="645" width="1.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="621.61" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,095 samples, 0.10%)</title><rect x="865.7" y="677" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.74" y="687.5" ></text>
</g>
<g >
<title>aeshashbody (49,328 samples, 0.20%)</title><rect x="543.3" y="661" width="2.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="546.31" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (111,859 samples, 0.45%)</title><rect x="859.9" y="453" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="862.91" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (66,801 samples, 0.27%)</title><rect x="446.3" y="533" width="3.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="449.25" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="389" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="399.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf.fileID go.opentelemetry.io/ebpf-profiler/libpf.FileID: go.opentelemetry.io/ebpf-profiler/libpf.addressOrLineno go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno },go.shape.struct { LineNumber go.opentelemetry.io/ebpf-profiler/libpf.SourceLineno: FunctionOffset uint32: FunctionName go.opentelemetry.io/ebpf-profiler/libpf.String: FilePath go.opentelemetry.io/ebpf-profiler/libpf.String }]).findKeyNoExpire (59,906 samples, 0.24%)</title><rect x="923.2" y="645" width="2.8" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="926.16" y="655.5" ></text>
</g>
<g >
<title>runtime.startm (31,265 samples, 0.13%)</title><rect x="435.5" y="613" width="1.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="438.53" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,698 samples, 0.16%)</title><rect x="850.9" y="389" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="853.88" y="399.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (22,451 samples, 0.09%)</title><rect x="445.2" y="597" width="1.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="448.19" y="607.5" ></text>
</g>
<g >
<title>runtime.chansend (12,766 samples, 0.05%)</title><rect x="1043.0" y="693" width="0.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1046.05" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,378 samples, 0.09%)</title><rect x="1188.9" y="645" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.89" y="655.5" ></text>
</g>
<g >
<title>runtime.newobject (86,676 samples, 0.35%)</title><rect x="568.5" y="661" width="4.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="571.48" y="671.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (372,060 samples, 1.49%)</title><rect x="311.2" y="645" width="17.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="314.20" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="517" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,387 samples, 0.16%)</title><rect x="717.3" y="485" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="720.33" y="495.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (23,649 samples, 0.10%)</title><rect x="723.8" y="581" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="726.85" y="591.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*loopyWriter).originateStream (48,081 samples, 0.19%)</title><rect x="1149.9" y="677" width="2.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1152.95" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,757 samples, 0.10%)</title><rect x="1187.7" y="597" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.67" y="607.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.newClientStreamWithParams.func2 (40,632 samples, 0.16%)</title><rect x="541.4" y="565" width="1.9" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="544.38" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,548 samples, 0.10%)</title><rect x="457.0" y="485" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="459.95" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (570,281 samples, 2.29%)</title><rect x="1044.7" y="453" width="27.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="463.5" >[..</text>
</g>
<g >
<title>runtime.wakep (28,147 samples, 0.11%)</title><rect x="750.9" y="645" width="1.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="753.94" y="655.5" ></text>
</g>
<g >
<title>runtime.mcall (133,692 samples, 0.54%)</title><rect x="348.9" y="693" width="6.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="351.86" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (847,884 samples, 3.41%)</title><rect x="767.9" y="517" width="40.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="770.88" y="527.5" >[[k..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (280,892 samples, 1.13%)</title><rect x="1052.3" y="309" width="13.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1055.27" y="319.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (42,633 samples, 0.17%)</title><rect x="1175.8" y="693" width="2.0" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1178.83" y="703.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/status.NewWithProto (45,502 samples, 0.18%)</title><rect x="1177.8" y="693" width="2.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="1180.85" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="565" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="575.5" ></text>
</g>
<g >
<title>syscall.Syscall6.abi0 (117,614 samples, 0.47%)</title><rect x="1036.0" y="677" width="5.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1038.97" y="687.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*Mapping).MarshalToSizedBuffer (40,228 samples, 0.16%)</title><rect x="539.5" y="469" width="1.9" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="542.47" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (103,238 samples, 0.41%)</title><rect x="984.5" y="325" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="987.48" y="335.5" ></text>
</g>
<g >
<title>runtime.schedule (32,633 samples, 0.13%)</title><rect x="283.6" y="693" width="1.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="286.57" y="703.5" ></text>
</g>
<g >
<title>runtime.newobject (61,298 samples, 0.25%)</title><rect x="666.9" y="677" width="2.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="669.89" y="687.5" ></text>
</g>
<g >
<title>google.golang.org/protobuf/proto.MarshalOptions.MarshalAppend (80,005 samples, 0.32%)</title><rect x="531.8" y="565" width="3.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="534.84" y="575.5" ></text>
</g>
<g >
<title>runtime.mapaccess2_faststr (60,633 samples, 0.24%)</title><rect x="554.7" y="629" width="2.9" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="557.75" y="639.5" ></text>
</g>
<g >
<title>runtime.evacuate (35,951 samples, 0.14%)</title><rect x="665.2" y="645" width="1.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="668.19" y="655.5" ></text>
</g>
<g >
<title>compress/flate.(*byFreq).Less (52,498 samples, 0.21%)</title><rect x="507.7" y="389" width="2.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="510.66" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mspan).writeHeapBitsSmall (40,632 samples, 0.16%)</title><rect x="541.4" y="453" width="1.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="544.38" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,793 samples, 0.18%)</title><rect x="438.1" y="613" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="441.14" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="213" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="223.5" ></text>
</g>
<g >
<title>runtime.selparkcommit (21,224 samples, 0.09%)</title><rect x="1032.4" y="677" width="1.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1035.39" y="687.5" ></text>
</g>
<g >
<title>[[vdso]] (19,612 samples, 0.08%)</title><rect x="1079.5" y="581" width="1.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1082.53" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,185 samples, 0.09%)</title><rect x="991.2" y="485" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="994.23" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (81,972 samples, 0.33%)</title><rect x="845.1" y="549" width="3.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="848.13" y="559.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (43,793 samples, 0.18%)</title><rect x="438.1" y="629" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="441.14" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,229 samples, 0.49%)</title><rect x="849.0" y="549" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="852.02" y="559.5" ></text>
</g>
<g >
<title>runtime.selectnbsend (12,766 samples, 0.05%)</title><rect x="1043.0" y="709" width="0.7" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1046.05" y="719.5" ></text>
</g>
<g >
<title>runtime.memhash (40,046 samples, 0.16%)</title><rect x="559.5" y="645" width="1.9" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="562.52" y="655.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.unmarshalPerCPUValue (93,194 samples, 0.37%)</title><rect x="331.3" y="661" width="4.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="334.26" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,962 samples, 0.32%)</title><rect x="849.0" y="501" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="852.02" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (81,052 samples, 0.33%)</title><rect x="1036.0" y="581" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1038.97" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="565" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="575.5" ></text>
</g>
<g >
<title>runtime.selectnbsend (23,027 samples, 0.09%)</title><rect x="1186.6" y="597" width="1.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1189.58" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,042 samples, 0.12%)</title><rect x="1144.7" y="309" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1147.73" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (277,799 samples, 1.12%)</title><rect x="311.2" y="533" width="13.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="314.20" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,451 samples, 0.09%)</title><rect x="445.2" y="501" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="448.19" y="511.5" ></text>
</g>
<g >
<title>runtime.entersyscall (49,408 samples, 0.20%)</title><rect x="324.4" y="597" width="2.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="327.38" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (199,572 samples, 0.80%)</title><rect x="458.6" y="565" width="9.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="461.62" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (469,213 samples, 1.89%)</title><rect x="1123.9" y="485" width="22.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1126.91" y="495.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (392,919 samples, 1.58%)</title><rect x="970.7" y="485" width="18.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="973.75" y="495.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*bufWriter).flushKeepBuffer (622,555 samples, 2.50%)</title><rect x="1043.7" y="693" width="29.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1046.65" y="703.5" >go..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,697 samples, 0.18%)</title><rect x="710.6" y="453" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="713.60" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="357" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="367.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/mem.NewBuffer (40,671 samples, 0.16%)</title><rect x="529.9" y="565" width="1.9" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="532.91" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,850 samples, 0.06%)</title><rect x="1098.0" y="341" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1101.02" y="351.5" ></text>
</g>
<g >
<title>syscall.fcntl (81,972 samples, 0.33%)</title><rect x="845.1" y="613" width="3.9" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="848.13" y="623.5" ></text>
</g>
<g >
<title>bpf_trampoline_6442495261 (105,291 samples, 0.42%)</title><rect x="419.9" y="533" width="5.0" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="422.90" y="543.5" ></text>
</g>
<g >
<title>pvclock_gtod_notify (40,396 samples, 0.16%)</title><rect x="700.1" y="341" width="1.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="703.08" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,918 samples, 0.11%)</title><rect x="1040.2" y="485" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1043.23" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="485" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="495.5" ></text>
</g>
<g >
<title>runtime.schedule (287,661 samples, 1.16%)</title><rect x="289.0" y="709" width="13.7" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="292.04" y="719.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (36,562 samples, 0.15%)</title><rect x="1039.8" y="645" width="1.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1042.82" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (798,300 samples, 3.21%)</title><rect x="770.2" y="485" width="37.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="773.23" y="495.5" >[[k..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (141,946 samples, 0.57%)</title><rect x="461.3" y="437" width="6.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="464.35" y="447.5" ></text>
</g>
<g >
<title>runtime.mcall (23,207 samples, 0.09%)</title><rect x="749.8" y="709" width="1.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="752.84" y="719.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace.deferwrap1 (40,857 samples, 0.16%)</title><rect x="583.0" y="677" width="1.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="585.97" y="687.5" ></text>
</g>
<g >
<title>runtime.startm (21,994 samples, 0.09%)</title><rect x="748.8" y="613" width="1.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="751.80" y="623.5" ></text>
</g>
<g >
<title>runtime.(*timer).unlockAndRun (50,417 samples, 0.20%)</title><rect x="1112.5" y="549" width="2.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1115.55" y="559.5" ></text>
</g>
<g >
<title>compress/flate.(*huffmanBitWriter).writeBlock (466,912 samples, 1.88%)</title><rect x="498.0" y="501" width="22.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="500.95" y="511.5" >c..</text>
</g>
<g >
<title>runtime.notewakeup (22,750 samples, 0.09%)</title><rect x="952.8" y="597" width="1.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="955.76" y="607.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast.func1 (147,853 samples, 0.59%)</title><rect x="880.7" y="597" width="7.0" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="883.66" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="373" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="383.5" ></text>
</g>
<g >
<title>runtime.getfp (27,445 samples, 0.11%)</title><rect x="358.2" y="629" width="1.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="361.24" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,890 samples, 0.38%)</title><rect x="431.1" y="405" width="4.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="434.08" y="415.5" ></text>
</g>
<g >
<title>os.open (122,229 samples, 0.49%)</title><rect x="849.0" y="629" width="5.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="852.02" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,162 samples, 0.47%)</title><rect x="1170.2" y="501" width="5.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1173.22" y="511.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (395,271 samples, 1.59%)</title><rect x="1011.5" y="597" width="18.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1014.54" y="607.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).Generate (657,937 samples, 2.64%)</title><rect x="543.3" y="693" width="31.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="546.31" y="703.5" >go..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (348,026 samples, 1.40%)</title><rect x="730.2" y="549" width="16.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="733.24" y="559.5" ></text>
</g>
<g >
<title>runtime.netpollblock (221,906 samples, 0.89%)</title><rect x="1159.7" y="549" width="10.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1162.70" y="559.5" ></text>
</g>
<g >
<title>runtime.mallocgc (93,098 samples, 0.37%)</title><rect x="656.7" y="677" width="4.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="659.74" y="687.5" ></text>
</g>
<g >
<title>internal/concurrent.(*HashTrieMap[go.shape.string,go.shape.struct { internal/weak.u unsafe.Pointer }]).LoadOrStore (35,031 samples, 0.14%)</title><rect x="939.0" y="677" width="1.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="942.04" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,484 samples, 0.26%)</title><rect x="716.2" y="533" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="719.18" y="543.5" ></text>
</g>
<g >
<title>runtime.pidlegetSpinning (25,449 samples, 0.10%)</title><rect x="1147.5" y="581" width="1.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1150.47" y="591.5" ></text>
</g>
<g >
<title>syscall.Syscall (118,162 samples, 0.47%)</title><rect x="1170.2" y="565" width="5.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1173.22" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="533" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="543.5" ></text>
</g>
<g >
<title>runtime.chansend (22,797 samples, 0.09%)</title><rect x="1113.9" y="501" width="1.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1116.86" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,098 samples, 0.37%)</title><rect x="656.7" y="533" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="659.74" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,697 samples, 0.18%)</title><rect x="710.6" y="469" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="713.60" y="479.5" ></text>
</g>
<g >
<title>fmt.(*pp).catchPanic (32,114 samples, 0.13%)</title><rect x="356.7" y="613" width="1.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="359.71" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,793 samples, 0.18%)</title><rect x="438.1" y="597" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="441.14" y="607.5" ></text>
</g>
<g >
<title>time.Now (36,230 samples, 0.15%)</title><rect x="613.7" y="581" width="1.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="616.66" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="389" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (186,605 samples, 0.75%)</title><rect x="737.9" y="421" width="8.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="740.90" y="431.5" ></text>
</g>
<g >
<title>aeshashbody (40,102 samples, 0.16%)</title><rect x="557.6" y="645" width="1.9" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="560.62" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="533" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="543.5" ></text>
</g>
<g >
<title>runtime.lock2 (74,600 samples, 0.30%)</title><rect x="468.1" y="629" width="3.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="471.08" y="639.5" ></text>
</g>
<g >
<title>runtime.memmove (52,081 samples, 0.21%)</title><rect x="502.8" y="453" width="2.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="505.82" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,800 samples, 0.08%)</title><rect x="864.3" y="277" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="867.28" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="261" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="271.5" ></text>
</g>
<g >
<title>runtime.runqput (22,797 samples, 0.09%)</title><rect x="1113.9" y="437" width="1.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1116.86" y="447.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.Close (74,600 samples, 0.30%)</title><rect x="440.2" y="693" width="3.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="443.22" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (271,201 samples, 1.09%)</title><rect x="976.5" y="421" width="12.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="979.52" y="431.5" ></text>
</g>
<g >
<title>sort.insertionSort (52,498 samples, 0.21%)</title><rect x="507.7" y="405" width="2.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="510.66" y="415.5" ></text>
</g>
<g >
<title>time.Until (40,568 samples, 0.16%)</title><rect x="471.6" y="661" width="1.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="474.62" y="671.5" ></text>
</g>
<g >
<title>runtime.notesleep (565,428 samples, 2.27%)</title><rect x="1119.3" y="581" width="26.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1122.35" y="591.5" >r..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="325" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="335.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*clientStream).RecvMsg (51,518 samples, 0.21%)</title><rect x="473.5" y="629" width="2.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="476.54" y="639.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).MarshalToSizedBuffer (39,936 samples, 0.16%)</title><rect x="531.8" y="501" width="1.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="534.84" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="434.1" y="389" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="437.08" y="399.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).symbolizeFrame (1,172,905 samples, 4.71%)</title><rect x="590.8" y="693" width="55.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="593.78" y="703.5" >go.op..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (84,697 samples, 0.34%)</title><rect x="1171.8" y="453" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1174.81" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,098 samples, 0.37%)</title><rect x="656.7" y="597" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="659.74" y="607.5" ></text>
</g>
<g >
<title>runtime.stealWork (13,100 samples, 0.05%)</title><rect x="1168.9" y="453" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1171.86" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).lookup (372,060 samples, 1.49%)</title><rect x="311.2" y="661" width="17.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="314.20" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="165" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,900 samples, 0.09%)</title><rect x="1167.8" y="277" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1170.77" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,655 samples, 0.20%)</title><rect x="854.8" y="565" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="857.82" y="575.5" ></text>
</g>
<g >
<title>runtime.selectgo (587,639 samples, 2.36%)</title><rect x="443.8" y="709" width="27.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="446.75" y="719.5" >r..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,255 samples, 0.49%)</title><rect x="1163.1" y="421" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1166.06" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (40,228 samples, 0.16%)</title><rect x="539.5" y="437" width="1.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="542.47" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (162,899 samples, 0.65%)</title><rect x="705.0" y="581" width="7.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="708.05" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,378 samples, 0.09%)</title><rect x="1188.9" y="709" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.89" y="719.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).insertKernelFrames (684,947 samples, 2.75%)</title><rect x="911.7" y="709" width="32.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="914.67" y="719.5" >go..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,463 samples, 0.09%)</title><rect x="1029.3" y="373" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1032.26" y="383.5" ></text>
</g>
<g >
<title>runtime.mallocgc (34,048 samples, 0.14%)</title><rect x="338.1" y="677" width="1.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="341.11" y="687.5" ></text>
</g>
<g >
<title>internal/poll.runtime_pollWait (221,906 samples, 0.89%)</title><rect x="1159.7" y="565" width="10.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1162.70" y="575.5" ></text>
</g>
<g >
<title>runtime.gopark (587,639 samples, 2.36%)</title><rect x="443.8" y="693" width="27.8" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="446.75" y="703.5" >r..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="421" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="431.5" ></text>
</g>
<g >
<title>fmt.(*pp).handleMethods (64,035 samples, 0.26%)</title><rect x="355.2" y="645" width="3.0" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="358.20" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,899 samples, 0.11%)</title><rect x="906.1" y="645" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="909.14" y="655.5" ></text>
</g>
<g >
<title>errors.Is (91,564 samples, 0.37%)</title><rect x="870.1" y="709" width="4.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="873.09" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,832 samples, 0.11%)</title><rect x="702.0" y="597" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="704.99" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,672 samples, 0.18%)</title><rect x="293.4" y="517" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="296.43" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (340,799 samples, 1.37%)</title><rect x="973.2" y="453" width="16.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="976.22" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="229" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="239.5" ></text>
</g>
<g >
<title>runtime.netpoll (37,044 samples, 0.15%)</title><rect x="289.0" y="677" width="1.8" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="292.04" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (157,510 samples, 0.63%)</title><rect x="1138.7" y="357" width="7.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1141.69" y="367.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).Marshal (80,005 samples, 0.32%)</title><rect x="531.8" y="517" width="3.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="534.84" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,105 samples, 0.09%)</title><rect x="586.8" y="597" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="589.76" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (233,982 samples, 0.94%)</title><rect x="1135.1" y="389" width="11.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1138.06" y="399.5" ></text>
</g>
<g >
<title>bpf_trampoline_6442495261 (22,714 samples, 0.09%)</title><rect x="449.4" y="581" width="1.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="452.42" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,105 samples, 0.09%)</title><rect x="586.8" y="613" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="589.76" y="623.5" ></text>
</g>
<g >
<title>runtime.morestack.abi0 (210,803 samples, 0.85%)</title><rect x="1180.0" y="757" width="10.0" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1183.00" y="767.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,879 samples, 0.13%)</title><rect x="863.7" y="341" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="866.70" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (157,089 samples, 0.63%)</title><rect x="428.1" y="437" width="7.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="431.09" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="437" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,655 samples, 0.20%)</title><rect x="854.8" y="533" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="857.82" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="435.5" y="485" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="438.53" y="495.5" ></text>
</g>
<g >
<title>os.newFile (81,972 samples, 0.33%)</title><rect x="845.1" y="645" width="3.9" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="848.13" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (465,887 samples, 1.87%)</title><rect x="967.3" y="549" width="22.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="970.29" y="559.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="453" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,484 samples, 0.26%)</title><rect x="716.2" y="549" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="719.18" y="559.5" ></text>
</g>
<g >
<title>runtime.sendDirect (32,978 samples, 0.13%)</title><rect x="951.2" y="677" width="1.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="954.19" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (112,157 samples, 0.45%)</title><rect x="1057.8" y="133" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1060.81" y="143.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).Add (69,896 samples, 0.28%)</title><rect x="918.7" y="677" width="3.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="921.69" y="687.5" ></text>
</g>
<g >
<title>runtime.newobject (32,859 samples, 0.13%)</title><rect x="412.6" y="693" width="1.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="415.62" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,990 samples, 0.08%)</title><rect x="1105.6" y="437" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1108.62" y="447.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*loopyWriter).headerHandler (88,024 samples, 0.35%)</title><rect x="1149.9" y="693" width="4.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1152.95" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,800 samples, 0.08%)</title><rect x="864.3" y="325" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="867.28" y="335.5" ></text>
</g>
<g >
<title>runtime.gopark (133,692 samples, 0.54%)</title><rect x="348.9" y="709" width="6.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="351.86" y="719.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (601,374 samples, 2.42%)</title><rect x="1044.7" y="581" width="28.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1047.66" y="591.5" >in..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="501" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="511.5" ></text>
</g>
<g >
<title>bpf_prog_359b7788798bd982_file_modify_event__emit (31,093 samples, 0.12%)</title><rect x="1071.7" y="469" width="1.5" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1074.70" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,344 samples, 0.20%)</title><rect x="348.9" y="549" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="351.86" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (47,232 samples, 0.19%)</title><rect x="1089.1" y="389" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1092.14" y="399.5" ></text>
</g>
<g >
<title>fmt.(*fmt).fmtInteger (22,948 samples, 0.09%)</title><rect x="595.5" y="629" width="1.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="598.51" y="639.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).findMappingForTrace (164,614 samples, 0.66%)</title><rect x="583.0" y="693" width="7.8" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="585.97" y="703.5" ></text>
</g>
<g >
<title>runtime.pidleget (44,536 samples, 0.18%)</title><rect x="1030.3" y="645" width="2.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1033.28" y="655.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/pprofile/pprofileotlp.(*grpcClient).Export (1,471,464 samples, 5.91%)</title><rect x="473.5" y="693" width="69.8" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="476.54" y="703.5" >go.open..</text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (8,958 samples, 0.04%)</title><rect x="1118.9" y="565" width="0.4" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="1121.92" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (254,439 samples, 1.02%)</title><rect x="1052.3" y="277" width="12.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1055.27" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,701 samples, 0.09%)</title><rect x="467.1" y="357" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="470.05" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="437" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (70,258 samples, 0.28%)</title><rect x="743.4" y="405" width="3.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="746.41" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="517" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="527.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (93,098 samples, 0.37%)</title><rect x="656.7" y="661" width="4.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="659.74" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="149" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="159.5" ></text>
</g>
<g >
<title>runtime.memmove (39,950 samples, 0.16%)</title><rect x="1157.8" y="613" width="1.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1160.81" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (66,801 samples, 0.27%)</title><rect x="446.3" y="565" width="3.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="449.25" y="575.5" ></text>
</g>
<g >
<title>google.golang.org/protobuf/internal/impl.legacyMarshal (80,005 samples, 0.32%)</title><rect x="531.8" y="533" width="3.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="534.84" y="543.5" ></text>
</g>
<g >
<title>runtime.chansend (23,683 samples, 0.10%)</title><rect x="1007.6" y="533" width="1.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1010.55" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (277,799 samples, 1.12%)</title><rect x="311.2" y="517" width="13.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="314.20" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="53" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="63.5" ></text>
</g>
<g >
<title>unique.Make[go.shape.string].func1 (72,725 samples, 0.29%)</title><rect x="940.7" y="677" width="3.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="943.70" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,552 samples, 0.22%)</title><rect x="630.6" y="565" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="633.59" y="575.5" ></text>
</g>
<g >
<title>runtime.stealWork (15,038 samples, 0.06%)</title><rect x="858.1" y="613" width="0.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="861.09" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,588 samples, 0.11%)</title><rect x="285.1" y="725" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="288.12" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (62,239 samples, 0.25%)</title><rect x="465.1" y="373" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="468.13" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,908 samples, 0.10%)</title><rect x="581.8" y="645" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="584.84" y="655.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*perfEventRing).Read (45,721 samples, 0.18%)</title><rect x="895.7" y="661" width="2.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="898.73" y="671.5" ></text>
</g>
<g >
<title>bufio.(*Scanner).Scan (1,033,138 samples, 4.15%)</title><rect x="762.3" y="661" width="49.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="765.29" y="671.5" >bufi..</text>
</g>
<g >
<title>context.WithTimeout (40,568 samples, 0.16%)</title><rect x="471.6" y="693" width="1.9" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="474.62" y="703.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (74,600 samples, 0.30%)</title><rect x="440.2" y="677" width="3.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="443.22" y="687.5" ></text>
</g>
<g >
<title>syscall.read (1,033,138 samples, 4.15%)</title><rect x="762.3" y="613" width="49.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="765.29" y="623.5" >sysc..</text>
</g>
<g >
<title>fmt.(*pp).doPrintf (42,125 samples, 0.17%)</title><rect x="758.1" y="661" width="2.0" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="761.07" y="671.5" ></text>
</g>
<g >
<title>runtime.(*timer).unlockAndRun (23,027 samples, 0.09%)</title><rect x="1186.6" y="629" width="1.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1189.58" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (147,427 samples, 0.59%)</title><rect x="461.1" y="501" width="7.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="464.09" y="511.5" ></text>
</g>
<g >
<title>compress/flate.(*compressor).writeBlock (466,912 samples, 1.88%)</title><rect x="498.0" y="517" width="22.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="500.95" y="527.5" >c..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,463 samples, 0.03%)</title><rect x="1039.5" y="389" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1042.51" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (147,427 samples, 0.59%)</title><rect x="461.1" y="485" width="7.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="464.09" y="495.5" ></text>
</g>
<g >
<title>sync.(*Pool).pin (57,331 samples, 0.23%)</title><rect x="302.7" y="741" width="2.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="305.68" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="533" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,548 samples, 0.10%)</title><rect x="457.0" y="533" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="459.95" y="543.5" ></text>
</g>
<g >
<title>runtime.makeslice (40,632 samples, 0.16%)</title><rect x="541.4" y="501" width="1.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="544.38" y="511.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf.fileID go.opentelemetry.io/ebpf-profiler/libpf.FileID: go.opentelemetry.io/ebpf-profiler/libpf.addressOrLineno go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno },go.shape.struct { LineNumber go.opentelemetry.io/ebpf-profiler/libpf.SourceLineno: FunctionOffset uint32: FunctionName go.opentelemetry.io/ebpf-profiler/libpf.String: FilePath go.opentelemetry.io/ebpf-profiler/libpf.String }]).getAndRefresh (148,828 samples, 0.60%)</title><rect x="923.2" y="661" width="7.0" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="926.16" y="671.5" ></text>
</g>
<g >
<title>runtime.park_m (133,692 samples, 0.54%)</title><rect x="348.9" y="677" width="6.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="351.86" y="687.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.startPerfEventMonitor.func1 (186,115 samples, 0.75%)</title><rect x="1034.8" y="741" width="8.9" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="1037.83" y="751.5" ></text>
</g>
<g >
<title>runtime.notesleep (395,271 samples, 1.59%)</title><rect x="1011.5" y="613" width="18.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1014.54" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,703 samples, 0.06%)</title><rect x="1169.5" y="325" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1172.48" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (295,160 samples, 1.19%)</title><rect x="1016.3" y="437" width="14.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.28" y="447.5" ></text>
</g>
<g >
<title>compress/flate.(*huffmanEncoder).generate (307,780 samples, 1.24%)</title><rect x="498.0" y="469" width="14.5" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="500.95" y="479.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.newClientStream.func3 (40,632 samples, 0.16%)</title><rect x="541.4" y="613" width="1.9" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="544.38" y="623.5" ></text>
</g>
<g >
<title>bpf_prog_13250d87b1eb9cbc_ebpf_pid_info__fill (27,241 samples, 0.11%)</title><rect x="1104.3" y="453" width="1.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1107.33" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,271 samples, 1.59%)</title><rect x="1011.5" y="581" width="18.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1014.54" y="591.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (42,769 samples, 0.17%)</title><rect x="598.5" y="581" width="2.0" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="601.48" y="591.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2/hpack.(*Decoder).decodeString (39,950 samples, 0.16%)</title><rect x="1157.8" y="629" width="1.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1160.81" y="639.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (230,388 samples, 0.93%)</title><rect x="1080.5" y="581" width="10.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1083.46" y="591.5" ></text>
</g>
<g >
<title>runtime.mapiterinit (23,044 samples, 0.09%)</title><rect x="587.9" y="677" width="1.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="590.86" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="181" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="191.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="517" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="527.5" ></text>
</g>
<g >
<title>runtime.chansend1 (78,358 samples, 0.31%)</title><rect x="950.1" y="725" width="3.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="953.12" y="735.5" ></text>
</g>
<g >
<title>runtime.runqsteal (66,775 samples, 0.27%)</title><rect x="292.3" y="661" width="3.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="295.33" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (157,089 samples, 0.63%)</title><rect x="428.1" y="485" width="7.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="431.09" y="495.5" ></text>
</g>
<g >
<title>runtime.gopark (221,906 samples, 0.89%)</title><rect x="1159.7" y="533" width="10.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1162.70" y="543.5" ></text>
</g>
<g >
<title>sort.pdqsort (103,040 samples, 0.41%)</title><rect x="507.7" y="421" width="4.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="510.66" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (324,377 samples, 1.30%)</title><rect x="731.4" y="517" width="15.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="734.37" y="527.5" ></text>
</g>
<g >
<title>runtime.selectgo (1,606,335 samples, 6.45%)</title><rect x="1073.8" y="693" width="76.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1076.79" y="703.5" >runtime...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,095 samples, 0.10%)</title><rect x="865.7" y="645" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.74" y="655.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.now (88,922 samples, 0.36%)</title><rect x="926.0" y="645" width="4.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="929.00" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="389" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="399.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (31,265 samples, 0.13%)</title><rect x="435.5" y="581" width="1.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="438.53" y="591.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (340,068 samples, 1.37%)</title><rect x="1159.7" y="597" width="16.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="1162.70" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (135,307 samples, 0.54%)</title><rect x="858.8" y="549" width="6.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="861.80" y="559.5" ></text>
</g>
<g >
<title>runtime.netpollBreak (19,330 samples, 0.08%)</title><rect x="857.2" y="613" width="0.9" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="860.17" y="623.5" ></text>
</g>
<g >
<title>errors.is (35,520 samples, 0.14%)</title><rect x="591.9" y="661" width="1.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="594.88" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,548 samples, 0.10%)</title><rect x="457.0" y="549" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="459.95" y="559.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/stringutil.FieldsN (177,701 samples, 0.71%)</title><rect x="811.3" y="661" width="8.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="814.27" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="373" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="383.5" ></text>
</g>
<g >
<title>os.OpenFile (204,201 samples, 0.82%)</title><rect x="845.1" y="677" width="9.7" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="848.13" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="373" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="421" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,750 samples, 0.09%)</title><rect x="952.8" y="565" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="955.76" y="575.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (21,455 samples, 0.09%)</title><rect x="747.8" y="581" width="1.0" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="750.78" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="117" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="127.5" ></text>
</g>
<g >
<title>context.(*cancelCtx).Done (24,108 samples, 0.10%)</title><rect x="1034.8" y="725" width="1.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1037.83" y="735.5" ></text>
</g>
<g >
<title>runtime.runqgrab (24,548 samples, 0.10%)</title><rect x="457.0" y="581" width="1.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="459.95" y="591.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*recvBufferReader).readMessageHeaderClient (51,518 samples, 0.21%)</title><rect x="473.5" y="469" width="2.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="476.54" y="479.5" ></text>
</g>
<g >
<title>runtime.notewakeup (21,994 samples, 0.09%)</title><rect x="748.8" y="597" width="1.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="751.80" y="607.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*loopyWriter).handle (88,024 samples, 0.35%)</title><rect x="1149.9" y="709" width="4.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1152.95" y="719.5" ></text>
</g>
<g >
<title>runtime.mcall (32,633 samples, 0.13%)</title><rect x="283.6" y="725" width="1.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="286.57" y="735.5" ></text>
</g>
<g >
<title>runtime.write1.abi0 (319,344 samples, 1.28%)</title><rect x="1091.4" y="581" width="15.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1094.38" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="501" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="501" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="511.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).MarshalToSizedBuffer (80,669 samples, 0.32%)</title><rect x="537.6" y="501" width="3.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="540.56" y="511.5" ></text>
</g>
<g >
<title>runtime.(*timers).run (23,027 samples, 0.09%)</title><rect x="1186.6" y="645" width="1.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1189.58" y="655.5" ></text>
</g>
<g >
<title>fmt.newPrinter (65,786 samples, 0.26%)</title><rect x="547.6" y="629" width="3.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="550.56" y="639.5" ></text>
</g>
<g >
<title>runtime.findRunnable (54,078 samples, 0.22%)</title><rect x="286.5" y="677" width="2.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="289.48" y="687.5" ></text>
</g>
<g >
<title>syscall.openat (122,229 samples, 0.49%)</title><rect x="849.0" y="613" width="5.8" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="852.02" y="623.5" ></text>
</g>
<g >
<title>runtime.netpoll (585,068 samples, 2.35%)</title><rect x="961.6" y="629" width="27.8" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="964.64" y="639.5" >r..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (47,232 samples, 0.19%)</title><rect x="1089.1" y="373" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1092.14" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (105,291 samples, 0.42%)</title><rect x="419.9" y="581" width="5.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="422.90" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="245" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,095 samples, 0.10%)</title><rect x="865.7" y="693" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.74" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,994 samples, 0.09%)</title><rect x="748.8" y="533" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="751.80" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,255 samples, 0.49%)</title><rect x="1163.1" y="373" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1166.06" y="383.5" ></text>
</g>
<g >
<title>runtime.(*limiterEvent).stop (32,409 samples, 0.13%)</title><rect x="993.3" y="613" width="1.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="996.30" y="623.5" ></text>
</g>
<g >
<title>runtime.heapSetType (46,491 samples, 0.19%)</title><rect x="570.4" y="629" width="2.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="573.38" y="639.5" ></text>
</g>
<g >
<title>syscall.Syscall (43,793 samples, 0.18%)</title><rect x="438.1" y="645" width="2.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="441.14" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="277" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="287.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*ClientStream).ReadMessageHeader (51,518 samples, 0.21%)</title><rect x="473.5" y="517" width="2.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="476.54" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,103 samples, 0.11%)</title><rect x="1116.7" y="357" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1119.69" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="341" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="351.5" ></text>
</g>
<g >
<title>runtime.notesleep (146,370 samples, 0.59%)</title><rect x="858.8" y="597" width="6.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="861.80" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (71,459 samples, 0.29%)</title><rect x="1088.0" y="421" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1090.99" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,378 samples, 0.09%)</title><rect x="1188.9" y="629" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.89" y="639.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (348,026 samples, 1.40%)</title><rect x="730.2" y="597" width="16.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="733.24" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,833 samples, 0.12%)</title><rect x="309.8" y="581" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="312.79" y="591.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).get (22,561 samples, 0.09%)</title><rect x="646.4" y="661" width="1.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="649.39" y="671.5" ></text>
</g>
<g >
<title>runtime.newobject (26,428 samples, 0.11%)</title><rect x="937.8" y="693" width="1.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="940.78" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="309" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="319.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (24,548 samples, 0.10%)</title><rect x="457.0" y="565" width="1.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="459.95" y="575.5" ></text>
</g>
<g >
<title>net.(*conn).Read (340,068 samples, 1.37%)</title><rect x="1159.7" y="629" width="16.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1162.70" y="639.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*csAttempt).newStream (40,632 samples, 0.16%)</title><rect x="541.4" y="549" width="1.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="544.38" y="559.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (277,799 samples, 1.12%)</title><rect x="311.2" y="597" width="13.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="314.20" y="607.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2/hpack.(*headerFieldTable).search (18,395 samples, 0.07%)</title><rect x="1151.4" y="613" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1154.36" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (81,052 samples, 0.33%)</title><rect x="1036.0" y="613" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1038.97" y="623.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*loopyWriter).writeHeader (48,081 samples, 0.19%)</title><rect x="1149.9" y="661" width="2.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="1152.95" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (465,887 samples, 1.87%)</title><rect x="967.3" y="533" width="22.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="970.29" y="543.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="485" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (103,238 samples, 0.41%)</title><rect x="984.5" y="357" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="987.48" y="367.5" ></text>
</g>
<g >
<title>reflect.Value.Addr (50,197 samples, 0.20%)</title><rect x="333.3" y="645" width="2.4" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="336.30" y="655.5" ></text>
</g>
<g >
<title>[unknown] (32,633 samples, 0.13%)</title><rect x="283.6" y="741" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="286.57" y="751.5" ></text>
</g>
<g >
<title>errors.Is (35,520 samples, 0.14%)</title><rect x="591.9" y="677" width="1.7" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="594.88" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,255 samples, 0.49%)</title><rect x="1163.1" y="405" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1166.06" y="415.5" ></text>
</g>
<g >
<title>runtime.ready (22,750 samples, 0.09%)</title><rect x="952.8" y="645" width="1.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="955.76" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,255 samples, 0.49%)</title><rect x="1163.1" y="389" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1166.06" y="399.5" ></text>
</g>
<g >
<title>google.golang.org/protobuf/proto.MarshalOptions.Size (121,199 samples, 0.49%)</title><rect x="535.6" y="565" width="5.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="538.63" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,113 samples, 0.09%)</title><rect x="1185.5" y="533" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.48" y="543.5" ></text>
</g>
<g >
<title>internal/weak.runtime_makeStrongFromWeak (57,081 samples, 0.23%)</title><rect x="842.4" y="645" width="2.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="845.43" y="655.5" ></text>
</g>
<g >
<title>runtime.schedule (133,692 samples, 0.54%)</title><rect x="348.9" y="661" width="6.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="351.86" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,703 samples, 0.06%)</title><rect x="1169.5" y="373" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1172.48" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,030 samples, 0.08%)</title><rect x="1100.4" y="453" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1103.37" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,408 samples, 0.10%)</title><rect x="994.8" y="565" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="997.84" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (277,799 samples, 1.12%)</title><rect x="311.2" y="581" width="13.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="314.20" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,207 samples, 0.11%)</title><rect x="855.9" y="501" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="858.93" y="511.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (66,775 samples, 0.27%)</title><rect x="292.3" y="629" width="3.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="295.33" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (229,812 samples, 0.92%)</title><rect x="735.8" y="453" width="10.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="738.85" y="463.5" ></text>
</g>
<g >
<title>compress/flate.(*huffmanEncoder).bitCounts (102,693 samples, 0.41%)</title><rect x="498.0" y="453" width="4.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="500.95" y="463.5" ></text>
</g>
<g >
<title>runtime.sigtrampgo (32,859 samples, 0.13%)</title><rect x="412.6" y="645" width="1.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="415.62" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,035 samples, 0.10%)</title><rect x="893.0" y="677" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="895.98" y="687.5" ></text>
</g>
<g >
<title>runtime.entersyscall (74,600 samples, 0.30%)</title><rect x="440.2" y="645" width="3.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="443.22" y="655.5" ></text>
</g>
<g >
<title>bpf_prog_0fcee46bb5d1ccd8_ebpf_file_info__fill (64,446 samples, 0.26%)</title><rect x="1101.3" y="453" width="3.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1104.28" y="463.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (36,562 samples, 0.15%)</title><rect x="1039.8" y="629" width="1.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1042.82" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="435.5" y="453" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="438.53" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (251,797 samples, 1.01%)</title><rect x="690.1" y="517" width="11.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="693.06" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).update (43,793 samples, 0.18%)</title><rect x="438.1" y="693" width="2.1" height="15.0" fill="rgb(233,128,30)" rx="2" ry="2" />
<text x="441.14" y="703.5" ></text>
</g>
<g >
<title>[[vdso]] (43,312 samples, 0.17%)</title><rect x="926.0" y="613" width="2.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="929.00" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="437" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (313,000 samples, 1.26%)</title><rect x="1131.3" y="405" width="14.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1134.32" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,095 samples, 0.10%)</title><rect x="865.7" y="661" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.74" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (38,186 samples, 0.15%)</title><rect x="1009.7" y="597" width="1.8" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="1012.73" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (193,656 samples, 0.78%)</title><rect x="426.4" y="533" width="9.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="429.35" y="543.5" ></text>
</g>
<g >
<title>runtime.send (12,766 samples, 0.05%)</title><rect x="1043.0" y="677" width="0.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1046.05" y="687.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (340,068 samples, 1.37%)</title><rect x="1159.7" y="677" width="16.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1162.70" y="687.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (28,147 samples, 0.11%)</title><rect x="750.9" y="597" width="1.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="753.94" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/epoll.(*Poller).Wait (117,614 samples, 0.47%)</title><rect x="1036.0" y="709" width="5.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1038.97" y="719.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (122,229 samples, 0.49%)</title><rect x="849.0" y="597" width="5.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="852.02" y="607.5" ></text>
</g>
<g >
<title>runtime.schedule (230,393 samples, 0.93%)</title><rect x="854.8" y="645" width="10.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="857.82" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,672 samples, 0.18%)</title><rect x="293.4" y="533" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="296.43" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="101" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,387 samples, 0.16%)</title><rect x="717.3" y="501" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="720.33" y="511.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (122,255 samples, 0.49%)</title><rect x="1163.1" y="437" width="5.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1166.06" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (514,800 samples, 2.07%)</title><rect x="1121.7" y="533" width="24.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1124.75" y="543.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,625 samples, 0.12%)</title><rect x="745.3" y="341" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="748.34" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,147 samples, 0.11%)</title><rect x="750.9" y="549" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="753.94" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,908 samples, 0.10%)</title><rect x="581.8" y="661" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="584.84" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (138,973 samples, 0.56%)</title><rect x="1056.5" y="149" width="6.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1059.54" y="159.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="421" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="133" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="143.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (61,212 samples, 0.25%)</title><rect x="989.4" y="581" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="591.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*clientStream).RecvMsg.func1 (51,518 samples, 0.21%)</title><rect x="473.5" y="597" width="2.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="476.54" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,378 samples, 0.09%)</title><rect x="1188.9" y="613" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.89" y="623.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (1,005,310 samples, 4.04%)</title><rect x="363.0" y="613" width="47.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="366.01" y="623.5" >inte..</text>
</g>
<g >
<title>type:.hash.go.opentelemetry.io/ebpf-profiler/reporter/samples.TraceAndMetaKey (40,881 samples, 0.16%)</title><rect x="669.8" y="677" width="1.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="672.80" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="261" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="271.5" ></text>
</g>
<g >
<title>runtime.(*timers).run (71,988 samples, 0.29%)</title><rect x="1111.5" y="565" width="3.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1114.52" y="575.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).resolveInternal (41,555 samples, 0.17%)</title><rect x="527.9" y="405" width="2.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="530.94" y="415.5" ></text>
</g>
<g >
<title>internal/concurrent.(*HashTrieMap[go.shape.string,go.shape.struct { internal/weak.u unsafe.Pointer }]).Load (119,955 samples, 0.48%)</title><rect x="627.5" y="645" width="5.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="630.49" y="655.5" ></text>
</g>
<g >
<title>runtime.futexsleep (11,063 samples, 0.04%)</title><rect x="865.2" y="581" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="868.21" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (151,029 samples, 0.61%)</title><rect x="982.2" y="373" width="7.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="985.22" y="383.5" ></text>
</g>
<g >
<title>all (24,887,175 samples, 100%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="799.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,899 samples, 0.11%)</title><rect x="906.1" y="677" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="909.14" y="687.5" ></text>
</g>
<g >
<title>runtime.netpoll (27,620 samples, 0.11%)</title><rect x="1146.2" y="613" width="1.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1149.16" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (421,484 samples, 1.69%)</title><rect x="788.1" y="437" width="20.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="791.10" y="447.5" ></text>
</g>
<g >
<title>runtime.stopm (455,642 samples, 1.83%)</title><rect x="1008.7" y="629" width="21.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1011.67" y="639.5" >r..</text>
</g>
<g >
<title>runtime.mProf_Malloc (41,555 samples, 0.17%)</title><rect x="527.9" y="501" width="2.0" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="530.94" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,896 samples, 0.13%)</title><rect x="283.6" y="437" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.61" y="447.5" ></text>
</g>
<g >
<title>runtime.gopark (1,486,965 samples, 5.97%)</title><rect x="679.3" y="709" width="70.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="682.34" y="719.5" >runtime..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,005,310 samples, 4.04%)</title><rect x="363.0" y="533" width="47.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="366.01" y="543.5" >[[ke..</text>
</g>
<g >
<title>google.golang.org/grpc.compress (1,137,439 samples, 4.57%)</title><rect x="476.0" y="597" width="53.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="478.98" y="607.5" >googl..</text>
</g>
<g >
<title>runtime.runqgrab (66,775 samples, 0.27%)</title><rect x="292.3" y="645" width="3.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="295.33" y="655.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (18,395 samples, 0.07%)</title><rect x="1151.4" y="597" width="0.8" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="1154.36" y="607.5" ></text>
</g>
<g >
<title>sort.partition (49,966 samples, 0.20%)</title><rect x="505.3" y="421" width="2.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="508.29" y="431.5" ></text>
</g>
<g >
<title>runtime.checkRunqsNoP (7,937 samples, 0.03%)</title><rect x="443.8" y="629" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="446.75" y="639.5" ></text>
</g>
<g >
<title>runtime.mapaccess2_faststr (38,328 samples, 0.15%)</title><rect x="662.3" y="677" width="1.8" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="665.26" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,655 samples, 0.20%)</title><rect x="854.8" y="517" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="857.82" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,899 samples, 0.11%)</title><rect x="906.1" y="693" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="909.14" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (392,919 samples, 1.58%)</title><rect x="970.7" y="469" width="18.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="973.75" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (35,825 samples, 0.14%)</title><rect x="421.5" y="469" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="424.46" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (68,172 samples, 0.27%)</title><rect x="914.4" y="549" width="3.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="917.35" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="437" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="309" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="319.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (28,147 samples, 0.11%)</title><rect x="750.9" y="693" width="1.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="753.94" y="703.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (61,627 samples, 0.25%)</title><rect x="947.2" y="661" width="2.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="950.20" y="671.5" ></text>
</g>
<g >
<title>runtime.(*timers).check (23,279 samples, 0.09%)</title><rect x="1181.1" y="677" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1184.09" y="687.5" ></text>
</g>
<g >
<title>runtime.selectgo (184,153 samples, 0.74%)</title><rect x="346.5" y="725" width="8.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="349.47" y="735.5" ></text>
</g>
<g >
<title>bpf_prog_7c5748b990fb0572_ebpf_cred_info__fill (18,990 samples, 0.08%)</title><rect x="1105.6" y="453" width="0.9" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="1108.62" y="463.5" ></text>
</g>
<g >
<title>runtime.newobject (39,943 samples, 0.16%)</title><rect x="1152.2" y="661" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1155.23" y="671.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (50,344 samples, 0.20%)</title><rect x="348.9" y="613" width="2.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="351.86" y="623.5" ></text>
</g>
<g >
<title>runtime.schedule (1,579,424 samples, 6.35%)</title><rect x="1073.8" y="629" width="74.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1076.79" y="639.5" >runtime...</text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/interpreter/go.(*goInstance).Symbolize (828,088 samples, 3.33%)</title><rect x="600.5" y="677" width="39.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="603.50" y="687.5" >go...</text>
</g>
<g >
<title>runtime.exitsyscallfast (67,286 samples, 0.27%)</title><rect x="808.1" y="565" width="3.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="811.08" y="575.5" ></text>
</g>
<g >
<title>runtime.growslice (52,781 samples, 0.21%)</title><rect x="517.6" y="437" width="2.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="520.59" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.readRawSample (32,999 samples, 0.13%)</title><rect x="894.2" y="677" width="1.5" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="897.17" y="687.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast_pidle (147,853 samples, 0.59%)</title><rect x="880.7" y="581" width="7.0" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="883.66" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (570,281 samples, 2.29%)</title><rect x="1044.7" y="485" width="27.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="495.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (487,092 samples, 1.96%)</title><rect x="1123.1" y="517" width="23.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1126.06" y="527.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,484 samples, 0.26%)</title><rect x="716.2" y="581" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="719.18" y="591.5" ></text>
</g>
<g >
<title>runtime.runqsteal (23,649 samples, 0.10%)</title><rect x="723.8" y="613" width="1.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="726.85" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,119 samples, 0.22%)</title><rect x="986.8" y="309" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="989.81" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,255 samples, 0.49%)</title><rect x="1163.1" y="357" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1166.06" y="367.5" ></text>
</g>
<g >
<title>runtime.futexsleep (26,462 samples, 0.11%)</title><rect x="301.4" y="645" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="304.42" y="655.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (27,918 samples, 0.11%)</title><rect x="1040.2" y="549" width="1.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1043.23" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (293,919 samples, 1.18%)</title><rect x="1092.6" y="533" width="13.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1095.59" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,271 samples, 1.59%)</title><rect x="1011.5" y="549" width="18.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1014.54" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (273,494 samples, 1.10%)</title><rect x="689.0" y="565" width="13.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="692.03" y="575.5" ></text>
</g>
<g >
<title>runtime.selectgo (230,393 samples, 0.93%)</title><rect x="854.8" y="709" width="10.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="857.82" y="719.5" ></text>
</g>
<g >
<title>runtime.releasep (24,789 samples, 0.10%)</title><rect x="1106.9" y="597" width="1.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1109.92" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,833 samples, 0.12%)</title><rect x="309.8" y="565" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="312.79" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,833 samples, 0.12%)</title><rect x="309.8" y="549" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="312.79" y="559.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (80,148 samples, 0.32%)</title><rect x="557.6" y="661" width="3.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="560.62" y="671.5" ></text>
</g>
<g >
<title>runtime.(*timer).unlockAndRun (82,953 samples, 0.33%)</title><rect x="1004.7" y="581" width="4.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1007.74" y="591.5" ></text>
</g>
<g >
<title>runtime.(*limiterEvent).stop (25,449 samples, 0.10%)</title><rect x="1147.5" y="565" width="1.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1150.47" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,098 samples, 0.37%)</title><rect x="656.7" y="565" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="659.74" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,793 samples, 0.18%)</title><rect x="438.1" y="533" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="441.14" y="543.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ConvertTrace (1,672,304 samples, 6.72%)</title><rect x="583.0" y="709" width="79.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="585.97" y="719.5" >go.opente..</text>
</g>
<g >
<title>runtime.findRunnable (287,661 samples, 1.16%)</title><rect x="289.0" y="693" width="13.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="292.04" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="517" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="527.5" ></text>
</g>
<g >
<title>nf_conntrack_in (26,453 samples, 0.11%)</title><rect x="1064.3" y="293" width="1.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="1067.33" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,478 samples, 0.05%)</title><rect x="457.6" y="469" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="460.57" y="479.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/common/v1.(*AnyValue_StringValue).MarshalTo (40,441 samples, 0.16%)</title><rect x="537.6" y="437" width="1.9" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="540.56" y="447.5" ></text>
</g>
<g >
<title>runtime.gopark (230,393 samples, 0.93%)</title><rect x="854.8" y="693" width="10.9" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="857.82" y="703.5" ></text>
</g>
<g >
<title>runtime.notesleep (83,348 samples, 0.33%)</title><rect x="351.2" y="613" width="4.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="354.25" y="623.5" ></text>
</g>
<g >
<title>os.openFileNolog (204,201 samples, 0.82%)</title><rect x="845.1" y="661" width="9.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="848.13" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (71,459 samples, 0.29%)</title><rect x="1088.0" y="453" width="3.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1090.99" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,387 samples, 0.16%)</title><rect x="717.3" y="453" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="720.33" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (601,374 samples, 2.42%)</title><rect x="1044.7" y="533" width="28.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="543.5" >[[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="517" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="527.5" ></text>
</g>
<g >
<title>runtime.mapiternext (23,044 samples, 0.09%)</title><rect x="587.9" y="661" width="1.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="590.86" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (47,232 samples, 0.19%)</title><rect x="1089.1" y="405" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1092.14" y="415.5" ></text>
</g>
<g >
<title>runtime.deferreturn (32,114 samples, 0.13%)</title><rect x="356.7" y="629" width="1.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="359.71" y="639.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (41,548 samples, 0.17%)</title><rect x="520.1" y="501" width="2.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="523.09" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (61,212 samples, 0.25%)</title><rect x="989.4" y="549" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="559.5" ></text>
</g>
<g >
<title>bpf_prog_7c5748b990fb0572_ebpf_cred_info__fill (22,056 samples, 0.09%)</title><rect x="448.4" y="469" width="1.0" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="451.37" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="261" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="271.5" ></text>
</g>
<g >
<title>runtime.mcall (1,612,375 samples, 6.48%)</title><rect x="956.9" y="693" width="76.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="959.95" y="703.5" >runtime...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (167,643 samples, 0.67%)</title><rect x="460.1" y="517" width="8.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="463.13" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*Reader).ReadInto (678,191 samples, 2.73%)</title><rect x="866.9" y="725" width="32.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="869.88" y="735.5" >gi..</text>
</g>
<g >
<title>runtime.mcall (423,469 samples, 1.70%)</title><rect x="416.9" y="693" width="20.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="419.94" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,463 samples, 0.03%)</title><rect x="1039.5" y="405" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1042.51" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.marshalMapSyscallInput (21,952 samples, 0.09%)</title><rect x="911.7" y="661" width="1.0" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="914.67" y="671.5" ></text>
</g>
<g >
<title>fmt.Errorf (105,403 samples, 0.42%)</title><rect x="595.5" y="677" width="5.0" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="598.51" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (570,281 samples, 2.29%)</title><rect x="1044.7" y="437" width="27.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="447.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,672 samples, 0.18%)</title><rect x="293.4" y="501" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="296.43" y="511.5" ></text>
</g>
<g >
<title>runtime.lock2 (147,853 samples, 0.59%)</title><rect x="880.7" y="565" width="7.0" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="883.66" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,896 samples, 0.13%)</title><rect x="283.6" y="421" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.61" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,908 samples, 0.10%)</title><rect x="581.8" y="597" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="584.84" y="607.5" ></text>
</g>
<g >
<title>runtime.notesleep (151,433 samples, 0.61%)</title><rect x="295.5" y="661" width="7.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="298.50" y="671.5" ></text>
</g>
<g >
<title>bpf_prog_d17ae192e0dd2d09_fexit__vfs_write (36,567 samples, 0.15%)</title><rect x="423.2" y="517" width="1.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="426.16" y="527.5" ></text>
</g>
<g >
<title>runtime.mapassign (148,821 samples, 0.60%)</title><rect x="561.4" y="661" width="7.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="564.42" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (42,769 samples, 0.17%)</title><rect x="598.5" y="597" width="2.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="601.48" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (181,985 samples, 0.73%)</title><rect x="693.4" y="437" width="8.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="696.37" y="447.5" ></text>
</g>
<g >
<title>runtime.newobject (85,391 samples, 0.34%)</title><rect x="341.2" y="693" width="4.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="344.17" y="703.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (36,877 samples, 0.15%)</title><rect x="673.5" y="629" width="1.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="676.48" y="639.5" ></text>
</g>
<g >
<title>bpf_trampoline_6442495261 (80,628 samples, 0.32%)</title><rect x="708.9" y="533" width="3.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="711.95" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,294 samples, 0.09%)</title><rect x="447.3" y="437" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="450.32" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="533" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="543.5" ></text>
</g>
<g >
<title>runtime.newobject (29,301 samples, 0.12%)</title><rect x="622.2" y="661" width="1.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="625.17" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (66,775 samples, 0.27%)</title><rect x="292.3" y="613" width="3.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="295.33" y="623.5" ></text>
</g>
<g >
<title>runtime.entersyscall (27,445 samples, 0.11%)</title><rect x="358.2" y="645" width="1.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="361.24" y="655.5" ></text>
</g>
<g >
<title>runtime.mcall (1,579,424 samples, 6.35%)</title><rect x="1073.8" y="661" width="74.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1076.79" y="671.5" >runtime...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="533" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="543.5" ></text>
</g>
<g >
<title>[[vdso]] (28,543 samples, 0.11%)</title><rect x="304.0" y="613" width="1.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="307.04" y="623.5" ></text>
</g>
<g >
<title>syscall.write (601,374 samples, 2.42%)</title><rect x="1044.7" y="613" width="28.5" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1047.66" y="623.5" >sy..</text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter/samples.(*AttrTableManager).AppendOptionalString (252,599 samples, 1.01%)</title><rect x="545.6" y="661" width="12.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="548.65" y="671.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast_pidle (27,918 samples, 0.11%)</title><rect x="1040.2" y="581" width="1.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1043.23" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,412 samples, 0.66%)</title><rect x="1056.5" y="213" width="7.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1059.54" y="223.5" ></text>
</g>
<g >
<title>runtime.heapSetType (26,428 samples, 0.11%)</title><rect x="937.8" y="661" width="1.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="940.78" y="671.5" ></text>
</g>
<g >
<title>internal/weak.Make[go.shape.string] (99,796 samples, 0.40%)</title><rect x="635.0" y="629" width="4.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="638.04" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="405" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="415.5" ></text>
</g>
<g >
<title>google.golang.org/protobuf/proto.MarshalOptions.marshal (80,005 samples, 0.32%)</title><rect x="531.8" y="549" width="3.8" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="534.84" y="559.5" ></text>
</g>
<g >
<title>runtime.stopm (83,348 samples, 0.33%)</title><rect x="351.2" y="629" width="4.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="354.25" y="639.5" ></text>
</g>
<g >
<title>net.(*netFD).Write (601,374 samples, 2.42%)</title><rect x="1044.7" y="645" width="28.5" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1047.66" y="655.5" >ne..</text>
</g>
<g >
<title>type:.hash.go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.locationInfo (40,365 samples, 0.16%)</title><rect x="572.6" y="661" width="1.9" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="575.59" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (61,627 samples, 0.25%)</title><rect x="947.2" y="677" width="2.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="950.20" y="687.5" ></text>
</g>
<g >
<title>runtime.mallocgc (61,298 samples, 0.25%)</title><rect x="666.9" y="661" width="2.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="669.89" y="671.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (41,555 samples, 0.17%)</title><rect x="527.9" y="453" width="2.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="530.94" y="463.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/nativeunwind/elfunwindinfo.(*Gopclntab).Symbolize.func1 (31,489 samples, 0.13%)</title><rect x="611.0" y="629" width="1.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="614.04" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,294 samples, 0.09%)</title><rect x="447.3" y="469" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="450.32" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,510 samples, 0.10%)</title><rect x="632.0" y="533" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="635.02" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (324,377 samples, 1.30%)</title><rect x="731.4" y="501" width="15.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="734.37" y="511.5" ></text>
</g>
<g >
<title>runtime.chansend (55,728 samples, 0.22%)</title><rect x="951.2" y="709" width="2.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="954.19" y="719.5" ></text>
</g>
<g >
<title>runtime.casgstatus (44,853 samples, 0.18%)</title><rect x="326.7" y="581" width="2.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="329.72" y="591.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2/hpack.(*Decoder).parseHeaderFieldRepr (39,950 samples, 0.16%)</title><rect x="1157.8" y="661" width="1.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1160.81" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="469" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="213" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="69" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,105 samples, 0.09%)</title><rect x="586.8" y="661" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="589.76" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="213" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,042 samples, 0.12%)</title><rect x="1144.7" y="325" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1147.73" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (11,478 samples, 0.05%)</title><rect x="457.6" y="453" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="460.57" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mspan).writeHeapBitsSmall (28,588 samples, 0.11%)</title><rect x="285.1" y="741" width="1.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="288.12" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,575 samples, 0.03%)</title><rect x="864.9" y="261" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="867.90" y="271.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (798,300 samples, 3.21%)</title><rect x="770.2" y="469" width="37.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="773.23" y="479.5" >[[k..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,344 samples, 0.20%)</title><rect x="348.9" y="581" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="351.86" y="591.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2/hpack.(*Decoder).parseFieldLiteral (39,950 samples, 0.16%)</title><rect x="1157.8" y="645" width="1.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1160.81" y="655.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartPIDEventProcessor.gowrap1 (2,270,903 samples, 9.12%)</title><rect x="758.1" y="741" width="107.6" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="761.07" y="751.5" >go.openteleme..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,757 samples, 0.10%)</title><rect x="1187.7" y="613" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1190.67" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="517" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="527.5" ></text>
</g>
<g >
<title>sort.pdqsort (153,006 samples, 0.61%)</title><rect x="505.3" y="437" width="7.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="508.29" y="447.5" ></text>
</g>
<g >
<title>runtime.send (55,728 samples, 0.22%)</title><rect x="951.2" y="693" width="2.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="954.19" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (36,567 samples, 0.15%)</title><rect x="423.2" y="469" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="426.16" y="479.5" ></text>
</g>
<g >
<title>runtime.sigreturn__sigaction.abi0 (61,307 samples, 0.25%)</title><rect x="308.3" y="693" width="2.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="311.30" y="703.5" ></text>
</g>
<g >
<title>runtime.checkRunqsNoP (54,078 samples, 0.22%)</title><rect x="286.5" y="661" width="2.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="289.48" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mspan).writeHeapBitsSmall (26,428 samples, 0.11%)</title><rect x="937.8" y="645" width="1.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="940.78" y="655.5" ></text>
</g>
<g >
<title>runtime.gopark (12,976 samples, 0.05%)</title><rect x="1073.2" y="693" width="0.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1076.17" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="485" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="495.5" ></text>
</g>
<g >
<title>runtime.netpoll (92,500 samples, 0.37%)</title><rect x="1182.2" y="677" width="4.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1185.19" y="687.5" ></text>
</g>
<g >
<title>time.Now (88,922 samples, 0.36%)</title><rect x="926.0" y="629" width="4.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="929.00" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,035 samples, 0.10%)</title><rect x="893.0" y="613" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="895.98" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="517" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="527.5" ></text>
</g>
<g >
<title>runtime.memmove (59,458 samples, 0.24%)</title><rect x="822.1" y="661" width="2.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="825.14" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (141,946 samples, 0.57%)</title><rect x="461.3" y="469" width="6.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="464.35" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (92,256 samples, 0.37%)</title><rect x="860.8" y="405" width="4.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="863.84" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mLockProfile).recordUnlock (21,826 samples, 0.09%)</title><rect x="746.7" y="613" width="1.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="749.75" y="623.5" ></text>
</g>
<g >
<title>bpf_prog_359b7788798bd982_file_modify_event__emit (140,248 samples, 0.56%)</title><rect x="1099.9" y="469" width="6.6" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1102.87" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="581" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="591.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*SyncedLRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf.fileID go.opentelemetry.io/ebpf-profiler/libpf.FileID: go.opentelemetry.io/ebpf-profiler/libpf.addressOrLineno go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno },go.shape.struct { LineNumber go.opentelemetry.io/ebpf-profiler/libpf.SourceLineno: FunctionOffset uint32: FunctionName go.opentelemetry.io/ebpf-profiler/libpf.String: FilePath go.opentelemetry.io/ebpf-profiler/libpf.String }]).GetAndRefresh (182,599 samples, 0.73%)</title><rect x="923.2" y="677" width="8.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="926.16" y="687.5" ></text>
</g>
<g >
<title>runtime.stealWork (267,462 samples, 1.07%)</title><rect x="996.0" y="629" width="12.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="998.99" y="639.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ProcessedUntil.deferwrap1 (23,947 samples, 0.10%)</title><rect x="907.4" y="709" width="1.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="910.41" y="719.5" ></text>
</g>
<g >
<title>ip_sabotage_in (25,439 samples, 0.10%)</title><rect x="1063.1" y="165" width="1.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1066.13" y="175.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (64,446 samples, 0.26%)</title><rect x="944.1" y="693" width="3.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="947.14" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (415,599 samples, 1.67%)</title><rect x="969.7" y="501" width="19.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="972.67" y="511.5" ></text>
</g>
<g >
<title>runtime.(*timers).run (22,926 samples, 0.09%)</title><rect x="722.8" y="597" width="1.0" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="725.76" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (36,877 samples, 0.15%)</title><rect x="673.5" y="645" width="1.7" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="676.48" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="245" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="255.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2.(*Framer).ReadFrame (422,651 samples, 1.70%)</title><rect x="1157.8" y="709" width="20.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1160.81" y="719.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Set (94,265 samples, 0.38%)</title><rect x="918.7" y="693" width="4.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="921.69" y="703.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).LookupWithFlags (567,461 samples, 2.28%)</title><rect x="311.2" y="693" width="26.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="314.20" y="703.5" >g..</text>
</g>
<g >
<title>github.com/zeebo/xxh3.accumAVX2.abi0 (42,984 samples, 0.17%)</title><rect x="909.6" y="709" width="2.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="912.63" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,392 samples, 0.19%)</title><rect x="1184.4" y="629" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.38" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="418.4" y="597" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="421.42" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,105 samples, 0.09%)</title><rect x="586.8" y="565" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="589.76" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,392 samples, 0.19%)</title><rect x="1184.4" y="565" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.38" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="197" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="207.5" ></text>
</g>
<g >
<title>runtime.park_m (1,579,424 samples, 6.35%)</title><rect x="1073.8" y="645" width="74.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1076.79" y="655.5" >runtime...</text>
</g>
<g >
<title>runtime.blockTimerChan (50,461 samples, 0.20%)</title><rect x="346.5" y="709" width="2.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="349.47" y="719.5" ></text>
</g>
<g >
<title>runtime.gcTrigger.test (22,335 samples, 0.09%)</title><rect x="936.7" y="661" width="1.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="939.72" y="671.5" ></text>
</g>
<g >
<title>reflect.MakeSlice (51,012 samples, 0.20%)</title><rect x="328.8" y="645" width="2.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="331.85" y="655.5" ></text>
</g>
<g >
<title>syscall.Syscall6.abi0 (323,880 samples, 1.30%)</title><rect x="874.4" y="677" width="15.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="877.43" y="687.5" ></text>
</g>
<g >
<title>bpf_prog_359b7788798bd982_file_modify_event__emit (36,567 samples, 0.15%)</title><rect x="423.2" y="501" width="1.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="426.16" y="511.5" ></text>
</g>
<g >
<title>runtime.mallocgc (82,455 samples, 0.33%)</title><rect x="596.6" y="645" width="3.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="599.59" y="655.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*clientStream).withRetry (51,518 samples, 0.21%)</title><rect x="473.5" y="613" width="2.5" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="476.54" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (141,946 samples, 0.57%)</title><rect x="461.3" y="453" width="6.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="464.35" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="581" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,227 samples, 0.06%)</title><rect x="467.4" y="341" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="470.36" y="351.5" ></text>
</g>
<g >
<title>runtime.resetspinning (31,265 samples, 0.13%)</title><rect x="435.5" y="645" width="1.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="438.53" y="655.5" ></text>
</g>
<g >
<title>runtime.chansend (23,027 samples, 0.09%)</title><rect x="1186.6" y="581" width="1.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1189.58" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,655 samples, 0.20%)</title><rect x="854.8" y="549" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="857.82" y="559.5" ></text>
</g>
<g >
<title>fmt.(*pp).fmtInteger (42,125 samples, 0.17%)</title><rect x="758.1" y="613" width="2.0" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="761.07" y="623.5" ></text>
</g>
<g >
<title>runtime.notewakeup (31,265 samples, 0.13%)</title><rect x="435.5" y="597" width="1.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="438.53" y="607.5" ></text>
</g>
<g >
<title>unique.Make[go.shape.string].func1 (99,796 samples, 0.40%)</title><rect x="635.0" y="645" width="4.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="638.04" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,255 samples, 0.49%)</title><rect x="1163.1" y="341" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1166.06" y="351.5" ></text>
</g>
<g >
<title>runtime.sigtramp.abi0 (32,859 samples, 0.13%)</title><rect x="412.6" y="661" width="1.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="415.62" y="671.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).nextKey (1,005,310 samples, 4.04%)</title><rect x="363.0" y="677" width="47.7" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="366.01" y="687.5" >gith..</text>
</g>
<g >
<title>errors.is (66,601 samples, 0.27%)</title><rect x="871.3" y="693" width="3.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="874.27" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="485" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).Update (43,793 samples, 0.18%)</title><rect x="438.1" y="709" width="2.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="441.14" y="719.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).FrameMetadata (203,150 samples, 0.82%)</title><rect x="612.5" y="661" width="9.7" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="615.54" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (103,238 samples, 0.41%)</title><rect x="984.5" y="341" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="987.48" y="351.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile (657,937 samples, 2.64%)</title><rect x="543.3" y="677" width="31.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="546.31" y="687.5" >go..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (66,801 samples, 0.27%)</title><rect x="446.3" y="581" width="3.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="449.25" y="591.5" ></text>
</g>
<g >
<title>runtime.stopm (459,333 samples, 1.85%)</title><rect x="725.0" y="629" width="21.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="727.97" y="639.5" >r..</text>
</g>
<g >
<title>runtime.(*mcache).refill (93,098 samples, 0.37%)</title><rect x="656.7" y="645" width="4.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="659.74" y="655.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (81,052 samples, 0.33%)</title><rect x="1036.0" y="645" width="3.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1038.97" y="655.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (69,419 samples, 0.28%)</title><rect x="1183.3" y="661" width="3.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1186.29" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (83,348 samples, 0.33%)</title><rect x="351.2" y="581" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="354.25" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,832 samples, 0.11%)</title><rect x="702.0" y="565" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="704.99" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,994 samples, 0.09%)</title><rect x="748.8" y="485" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="751.80" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="293" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="303.5" ></text>
</g>
<g >
<title>fmt.Sprintf (42,125 samples, 0.17%)</title><rect x="758.1" y="677" width="2.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="761.07" y="687.5" ></text>
</g>
<g >
<title>os.openFileNolog.func1 (122,229 samples, 0.49%)</title><rect x="849.0" y="645" width="5.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="852.02" y="655.5" ></text>
</g>
<g >
<title>runtime.findRunnable (138,806 samples, 0.56%)</title><rect x="1181.1" y="693" width="6.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1184.09" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (293,919 samples, 1.18%)</title><rect x="1092.6" y="565" width="13.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1095.59" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="501" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="309" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="319.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (35,825 samples, 0.14%)</title><rect x="421.5" y="501" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="424.46" y="511.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*ClientConn).Invoke (1,471,464 samples, 5.91%)</title><rect x="473.5" y="661" width="69.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="476.54" y="671.5" >google...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="501" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="511.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.recv (51,518 samples, 0.21%)</title><rect x="473.5" y="565" width="2.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="476.54" y="575.5" ></text>
</g>
<g >
<title>compress/gzip.(*Writer).Write (207,175 samples, 0.83%)</title><rect x="520.1" y="565" width="9.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="523.09" y="575.5" ></text>
</g>
<g >
<title>runtime.newstack (210,803 samples, 0.85%)</title><rect x="1180.0" y="741" width="10.0" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1183.00" y="751.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,344 samples, 0.20%)</title><rect x="348.9" y="517" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="351.86" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (465,887 samples, 1.87%)</title><rect x="967.3" y="517" width="22.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="970.29" y="527.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="453" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="463.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).FrameMetadata (128,212 samples, 0.52%)</title><rect x="612.5" y="645" width="6.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="615.54" y="655.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (135,307 samples, 0.54%)</title><rect x="858.8" y="581" width="6.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="861.80" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="213" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="223.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,451 samples, 0.09%)</title><rect x="445.2" y="533" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="448.19" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (193,656 samples, 0.78%)</title><rect x="426.4" y="581" width="9.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="429.35" y="591.5" ></text>
</g>
<g >
<title>[[vdso]] (21,455 samples, 0.09%)</title><rect x="747.8" y="565" width="1.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="750.78" y="575.5" ></text>
</g>
<g >
<title>runtime.mcall (54,078 samples, 0.22%)</title><rect x="286.5" y="725" width="2.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="289.48" y="735.5" ></text>
</g>
<g >
<title>runtime.stealWork (23,027 samples, 0.09%)</title><rect x="1186.6" y="677" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1189.58" y="687.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (915,726 samples, 3.68%)</title><rect x="764.7" y="581" width="43.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="767.67" y="591.5" >inte..</text>
</g>
<g >
<title>reflect.resolveTypeOff (50,197 samples, 0.20%)</title><rect x="333.3" y="613" width="2.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="336.30" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (249,678 samples, 1.00%)</title><rect x="1094.7" y="517" width="11.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1097.69" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,378 samples, 0.09%)</title><rect x="1188.9" y="597" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.89" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (203,811 samples, 0.82%)</title><rect x="692.3" y="501" width="9.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="695.33" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,793 samples, 0.18%)</title><rect x="438.1" y="549" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="441.14" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (91,204 samples, 0.37%)</title><rect x="697.7" y="405" width="4.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="700.67" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (564,202 samples, 2.27%)</title><rect x="781.3" y="453" width="26.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="784.33" y="463.5" >[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,294 samples, 0.09%)</title><rect x="447.3" y="373" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="450.32" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,162 samples, 0.47%)</title><rect x="1170.2" y="533" width="5.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1173.22" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,484 samples, 0.26%)</title><rect x="716.2" y="597" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="719.18" y="607.5" ></text>
</g>
<g >
<title>runtime.mcall (230,393 samples, 0.93%)</title><rect x="854.8" y="677" width="10.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="857.82" y="687.5" ></text>
</g>
<g >
<title>syscall.Syscall (81,972 samples, 0.33%)</title><rect x="845.1" y="597" width="3.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="848.13" y="607.5" ></text>
</g>
<g >
<title>compress/flate.(*compressor).deflate (930,264 samples, 3.74%)</title><rect x="476.0" y="533" width="44.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="478.98" y="543.5" >comp..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="245" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="255.5" ></text>
</g>
<g >
<title>compress/flate.(*compressor).init (41,548 samples, 0.17%)</title><rect x="520.1" y="549" width="2.0" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="523.09" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="341" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="351.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,899 samples, 0.11%)</title><rect x="906.1" y="629" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="909.14" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,698 samples, 0.16%)</title><rect x="850.9" y="469" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="853.88" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (66,801 samples, 0.27%)</title><rect x="446.3" y="549" width="3.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="449.25" y="559.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.New.collectInterpreterMetrics.func1 (122,476 samples, 0.49%)</title><rect x="305.4" y="725" width="5.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="308.40" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,548 samples, 0.10%)</title><rect x="457.0" y="517" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="459.95" y="527.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (62,530 samples, 0.25%)</title><rect x="416.9" y="613" width="3.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="419.94" y="623.5" ></text>
</g>
<g >
<title>runtime.sigreturn__sigaction.abi0 (32,859 samples, 0.13%)</title><rect x="412.6" y="677" width="1.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="415.62" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,412 samples, 0.66%)</title><rect x="1056.5" y="181" width="7.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1059.54" y="191.5" ></text>
</g>
<g >
<title>net.(*TCPConn).Write (601,374 samples, 2.42%)</title><rect x="1044.7" y="677" width="28.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1047.66" y="687.5" >ne..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="453" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="463.5" ></text>
</g>
<g >
<title>runtime.sigreturn__sigaction.abi0 (27,832 samples, 0.11%)</title><rect x="702.0" y="613" width="1.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="704.99" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,207 samples, 0.11%)</title><rect x="855.9" y="469" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="858.93" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (68,724 samples, 0.28%)</title><rect x="419.9" y="517" width="3.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="422.90" y="527.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).ProcessedUntil (23,947 samples, 0.10%)</title><rect x="907.4" y="725" width="1.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="910.41" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (193,656 samples, 0.78%)</title><rect x="426.4" y="565" width="9.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="429.35" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,095 samples, 0.10%)</title><rect x="865.7" y="725" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="868.74" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,918 samples, 0.11%)</title><rect x="1040.2" y="469" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1043.23" y="479.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (122,229 samples, 0.49%)</title><rect x="849.0" y="581" width="5.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="852.02" y="591.5" ></text>
</g>
<g >
<title>bpf_prog_13250d87b1eb9cbc_ebpf_pid_info__fill (45,697 samples, 0.18%)</title><rect x="710.6" y="485" width="2.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="713.60" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,103 samples, 0.11%)</title><rect x="1116.7" y="389" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1119.69" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (10,577 samples, 0.04%)</title><rect x="1162.2" y="437" width="0.5" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="1165.17" y="447.5" ></text>
</g>
<g >
<title>runtime.netpollBreak (105,291 samples, 0.42%)</title><rect x="419.9" y="629" width="5.0" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="422.90" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="565" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,392 samples, 0.19%)</title><rect x="1184.4" y="613" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.38" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,908 samples, 0.10%)</title><rect x="581.8" y="629" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="584.84" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,392 samples, 0.19%)</title><rect x="1184.4" y="581" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.38" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="293" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (229,812 samples, 0.92%)</title><rect x="735.8" y="469" width="10.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="738.85" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (66,225 samples, 0.27%)</title><rect x="862.1" y="373" width="3.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="865.07" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,344 samples, 0.20%)</title><rect x="348.9" y="597" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="351.86" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (534,334 samples, 2.15%)</title><rect x="1120.8" y="549" width="25.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1123.82" y="559.5" >[..</text>
</g>
<g >
<title>strconv.formatBits (139,580 samples, 0.56%)</title><rect x="650.1" y="661" width="6.6" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="653.13" y="671.5" ></text>
</g>
<g >
<title>runtime.mapassign (59,284 samples, 0.24%)</title><rect x="664.1" y="677" width="2.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="667.08" y="687.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (1,005,310 samples, 4.04%)</title><rect x="363.0" y="661" width="47.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="366.01" y="671.5" >gith..</text>
</g>
<g >
<title>runtime.pidlegetSpinning (21,455 samples, 0.09%)</title><rect x="747.8" y="613" width="1.0" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="750.78" y="623.5" ></text>
</g>
<g >
<title>runtime.mapiternext (28,467 samples, 0.11%)</title><rect x="305.4" y="693" width="1.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="308.40" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="69" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (49,655 samples, 0.20%)</title><rect x="854.8" y="581" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="857.82" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*Reader).ReadInto (117,614 samples, 0.47%)</title><rect x="1036.0" y="725" width="5.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1038.97" y="735.5" ></text>
</g>
<g >
<title>bpf_trampoline_6442495261 (21,463 samples, 0.09%)</title><rect x="992.3" y="597" width="1.0" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="995.28" y="607.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).startTraceEventMonitor.func1 (3,566,264 samples, 14.33%)</title><rect x="865.7" y="741" width="169.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="868.74" y="751.5" >go.opentelemetry.io/e..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (83,348 samples, 0.33%)</title><rect x="351.2" y="549" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="354.25" y="559.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*Reader).readRecordFromRing (148,447 samples, 0.60%)</title><rect x="890.9" y="709" width="7.0" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="893.86" y="719.5" ></text>
</g>
<g >
<title>runtime.getOrAddWeakHandle (99,796 samples, 0.40%)</title><rect x="635.0" y="597" width="4.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="638.04" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="453" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="463.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/profiles/v1development.(*ResourceProfiles).Size (40,069 samples, 0.16%)</title><rect x="533.7" y="485" width="1.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="536.73" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="197" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="207.5" ></text>
</g>
<g >
<title>reflect.(*rtype).ptrTo (50,197 samples, 0.20%)</title><rect x="333.3" y="629" width="2.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="336.30" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (69,199 samples, 0.28%)</title><rect x="861.9" y="389" width="3.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="864.93" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (348,026 samples, 1.40%)</title><rect x="730.2" y="533" width="16.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="733.24" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="421" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="469" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="479.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*csAttempt).recvMsg (51,518 samples, 0.21%)</title><rect x="473.5" y="581" width="2.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="476.54" y="591.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/common/v1.(*KeyValue).MarshalToSizedBuffer (40,441 samples, 0.16%)</title><rect x="537.6" y="469" width="1.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="540.56" y="479.5" ></text>
</g>
<g >
<title>time.now (36,230 samples, 0.15%)</title><rect x="613.7" y="565" width="1.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="616.66" y="575.5" ></text>
</g>
<g >
<title>sync.(*Pool).Get (40,671 samples, 0.16%)</title><rect x="529.9" y="549" width="1.9" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="532.91" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="357" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="229" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="239.5" ></text>
</g>
<g >
<title>internal/weak.runtime_registerWeakPointer (99,796 samples, 0.40%)</title><rect x="635.0" y="613" width="4.8" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="638.04" y="623.5" ></text>
</g>
<g >
<title>runtime.sigtrampgo (61,307 samples, 0.25%)</title><rect x="308.3" y="661" width="2.9" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="311.30" y="671.5" ></text>
</g>
<g >
<title>bpf_prog_d17ae192e0dd2d09_fexit__vfs_write (31,093 samples, 0.12%)</title><rect x="1071.7" y="485" width="1.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1074.70" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="293" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,649 samples, 0.10%)</title><rect x="723.8" y="437" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="726.85" y="447.5" ></text>
</g>
<g >
<title>time.Time.Sub (22,776 samples, 0.09%)</title><rect x="889.8" y="677" width="1.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="892.78" y="687.5" ></text>
</g>
<g >
<title>runtime.park_m (287,661 samples, 1.16%)</title><rect x="289.0" y="725" width="13.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="292.04" y="735.5" ></text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (38,567 samples, 0.15%)</title><rect x="727.1" y="597" width="1.9" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="730.13" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,484 samples, 0.26%)</title><rect x="716.2" y="613" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="719.18" y="623.5" ></text>
</g>
<g >
<title>fmt.(*fmt).fmtInteger (42,125 samples, 0.17%)</title><rect x="758.1" y="597" width="2.0" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="761.07" y="607.5" ></text>
</g>
<g >
<title>runtime.addspecial (24,038 samples, 0.10%)</title><rect x="635.0" y="581" width="1.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="638.04" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (69,419 samples, 0.28%)</title><rect x="1183.3" y="645" width="3.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1186.29" y="655.5" ></text>
</g>
<g >
<title>bpf_prog_7c5748b990fb0572_ebpf_cred_info__fill (31,093 samples, 0.12%)</title><rect x="1071.7" y="453" width="1.5" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="1074.70" y="463.5" ></text>
</g>
<g >
<title>fmt.(*pp).printArg (42,125 samples, 0.17%)</title><rect x="758.1" y="645" width="2.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="761.07" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (157,089 samples, 0.63%)</title><rect x="428.1" y="517" width="7.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="431.09" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (303,103 samples, 1.22%)</title><rect x="687.6" y="597" width="14.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="690.62" y="607.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1 (2,169,969 samples, 8.72%)</title><rect x="471.6" y="725" width="102.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="474.62" y="735.5" >go.opentelem..</text>
</g>
<g >
<title>runtime.convTnoptr (37,229 samples, 0.15%)</title><rect x="620.4" y="645" width="1.8" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="623.40" y="655.5" ></text>
</g>
<g >
<title>runtime.mapiterinit (38,578 samples, 0.16%)</title><rect x="644.6" y="677" width="1.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="647.56" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (102,853 samples, 0.41%)</title><rect x="912.7" y="597" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="915.71" y="607.5" ></text>
</g>
<g >
<title>runtime.doSigPreempt (61,307 samples, 0.25%)</title><rect x="308.3" y="645" width="2.9" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="311.30" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="405" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="415.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (39,672 samples, 0.16%)</title><rect x="934.8" y="613" width="1.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="937.84" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,153 samples, 0.18%)</title><rect x="1037.7" y="501" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1040.72" y="511.5" ></text>
</g>
<g >
<title>runtime.startm (28,147 samples, 0.11%)</title><rect x="750.9" y="629" width="1.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="753.94" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="277" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="287.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="85" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="95.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.newClientStream (40,632 samples, 0.16%)</title><rect x="541.4" y="629" width="1.9" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="544.38" y="639.5" ></text>
</g>
<g >
<title>runtime.lock2 (19,052 samples, 0.08%)</title><rect x="1078.6" y="597" width="0.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1081.63" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,451 samples, 0.09%)</title><rect x="445.2" y="565" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="448.19" y="575.5" ></text>
</g>
<g >
<title>runtime.wakep (43,449 samples, 0.17%)</title><rect x="747.8" y="629" width="2.0" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="750.78" y="639.5" ></text>
</g>
<g >
<title>runtime.write1.abi0 (82,675 samples, 0.33%)</title><rect x="989.4" y="613" width="3.9" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="992.38" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="165" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="175.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,378 samples, 0.09%)</title><rect x="1188.9" y="677" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.89" y="687.5" ></text>
</g>
<g >
<title>runtime.acquirep (10,584 samples, 0.04%)</title><rect x="458.1" y="597" width="0.5" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="461.11" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (10,701 samples, 0.04%)</title><rect x="1039.3" y="421" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1042.31" y="431.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.invoke (1,471,464 samples, 5.91%)</title><rect x="473.5" y="645" width="69.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="476.54" y="655.5" >google...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,750 samples, 0.09%)</title><rect x="952.8" y="517" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="955.76" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (112,157 samples, 0.45%)</title><rect x="1057.8" y="69" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1060.81" y="79.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (78,449 samples, 0.32%)</title><rect x="1066.7" y="117" width="3.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1069.72" y="127.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,523 samples, 0.09%)</title><rect x="878.5" y="549" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="881.45" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,620 samples, 0.11%)</title><rect x="1090.1" y="357" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1093.07" y="367.5" ></text>
</g>
<g >
<title>runtime.mapiternext (38,578 samples, 0.16%)</title><rect x="644.6" y="661" width="1.8" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="647.56" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,241 samples, 0.11%)</title><rect x="1104.3" y="437" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1107.33" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (112,157 samples, 0.45%)</title><rect x="1057.8" y="101" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1060.81" y="111.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (206,713 samples, 0.83%)</title><rect x="979.6" y="405" width="9.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="982.58" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (102,311 samples, 0.41%)</title><rect x="1065.6" y="357" width="4.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1068.59" y="367.5" ></text>
</g>
<g >
<title>runtime.heapSetType (40,815 samples, 0.16%)</title><rect x="522.1" y="517" width="1.9" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="525.06" y="527.5" ></text>
</g>
<g >
<title>runtime.stealWork (99,184 samples, 0.40%)</title><rect x="290.8" y="677" width="4.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="293.80" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,294 samples, 0.09%)</title><rect x="447.3" y="405" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="450.32" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (206,589 samples, 0.83%)</title><rect x="1081.6" y="533" width="9.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1084.59" y="543.5" ></text>
</g>
<g >
<title>runtime.sigtramp.abi0 (61,307 samples, 0.25%)</title><rect x="308.3" y="677" width="2.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="311.30" y="687.5" ></text>
</g>
<g >
<title>runtime.mallocgc (40,632 samples, 0.16%)</title><rect x="541.4" y="485" width="1.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="544.38" y="495.5" ></text>
</g>
<g >
<title>runtime.(*limiterEvent).stop (36,296 samples, 0.15%)</title><rect x="714.5" y="613" width="1.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="717.46" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,065 samples, 0.10%)</title><rect x="1094.7" y="501" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1097.69" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,446 samples, 0.44%)</title><rect x="874.4" y="597" width="5.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="877.43" y="607.5" ></text>
</g>
<g >
<title>runtime.makeslice (51,195 samples, 0.21%)</title><rect x="335.7" y="661" width="2.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="338.68" y="671.5" ></text>
</g>
<g >
<title>runtime.growWork (35,951 samples, 0.14%)</title><rect x="665.2" y="661" width="1.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="668.19" y="671.5" ></text>
</g>
<g >
<title>runtime.(*mLockProfile).recordUnlock (30,114 samples, 0.12%)</title><rect x="683.9" y="629" width="1.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="686.91" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="293" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,908 samples, 0.10%)</title><rect x="581.8" y="613" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="584.84" y="623.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/periodiccaller.StartWithManualTrigger.func1 (1,725,596 samples, 6.93%)</title><rect x="355.2" y="741" width="81.8" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="358.20" y="751.5" >go.opente..</text>
</g>
<g >
<title>runtime.runqsteal (30,727 samples, 0.12%)</title><rect x="424.9" y="613" width="1.5" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="427.90" y="623.5" ></text>
</g>
<g >
<title>runtime.(*timers).run (107,255 samples, 0.43%)</title><rect x="1003.6" y="597" width="5.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1006.59" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,446 samples, 0.44%)</title><rect x="874.4" y="581" width="5.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="877.43" y="591.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (49,408 samples, 0.20%)</title><rect x="324.4" y="581" width="2.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="327.38" y="591.5" ></text>
</g>
<g >
<title>runtime.ready (28,147 samples, 0.11%)</title><rect x="750.9" y="661" width="1.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="753.94" y="671.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2/hpack.(*Encoder).searchTable (48,081 samples, 0.19%)</title><rect x="1149.9" y="629" width="2.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1152.95" y="639.5" ></text>
</g>
<g >
<title>google.golang.org/grpc.(*parser).recvMsg (51,518 samples, 0.21%)</title><rect x="473.5" y="533" width="2.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="476.54" y="543.5" ></text>
</g>
<g >
<title>runtime.stopm (593,438 samples, 2.38%)</title><rect x="1118.0" y="597" width="28.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1121.02" y="607.5" >r..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,396 samples, 0.16%)</title><rect x="700.1" y="389" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="703.08" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="437" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="447.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (1,033,138 samples, 4.15%)</title><rect x="762.3" y="629" width="49.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="765.29" y="639.5" >inte..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,552 samples, 0.22%)</title><rect x="630.6" y="629" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="633.59" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,147 samples, 0.11%)</title><rect x="750.9" y="517" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="753.94" y="527.5" ></text>
</g>
<g >
<title>runtime.memmove (23,302 samples, 0.09%)</title><rect x="661.2" y="693" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="664.16" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (54,552 samples, 0.22%)</title><rect x="630.6" y="581" width="2.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="633.59" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="501" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="511.5" ></text>
</g>
<g >
<title>strconv.ParseUint (368,454 samples, 1.48%)</title><rect x="825.0" y="661" width="17.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="827.96" y="671.5" ></text>
</g>
<g >
<title>os.(*File).Read (1,033,138 samples, 4.15%)</title><rect x="762.3" y="645" width="49.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="765.29" y="655.5" >os.(..</text>
</g>
<g >
<title>runtime.selectgo (74,600 samples, 0.30%)</title><rect x="577.2" y="725" width="3.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="580.17" y="735.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.(*FD).Close (74,600 samples, 0.30%)</title><rect x="440.2" y="709" width="3.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="443.22" y="719.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/encoding/gzip.(*writer).Close (930,264 samples, 3.74%)</title><rect x="476.0" y="581" width="44.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="478.98" y="591.5" >goog..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (15,703 samples, 0.06%)</title><rect x="1169.5" y="389" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1172.48" y="399.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.goString (64,446 samples, 0.26%)</title><rect x="944.1" y="709" width="3.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="947.14" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (4,643 samples, 0.02%)</title><rect x="467.9" y="325" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="470.86" y="335.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,396 samples, 0.16%)</title><rect x="700.1" y="373" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="703.08" y="383.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (102,853 samples, 0.41%)</title><rect x="912.7" y="581" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="915.71" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (46,392 samples, 0.19%)</title><rect x="1184.4" y="597" width="2.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1187.38" y="607.5" ></text>
</g>
<g >
<title>bpf_trampoline_6442495261 (66,801 samples, 0.27%)</title><rect x="446.3" y="517" width="3.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="449.25" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (395,271 samples, 1.59%)</title><rect x="1011.5" y="565" width="18.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1014.54" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (41,843 samples, 0.17%)</title><rect x="491.6" y="437" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="494.59" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (203,811 samples, 0.82%)</title><rect x="692.3" y="485" width="9.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="695.33" y="495.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/mem.BufferSlice.Reader (39,943 samples, 0.16%)</title><rect x="1152.2" y="677" width="1.9" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1155.23" y="687.5" ></text>
</g>
<g >
<title>runtime.findRunnable (1,546,615 samples, 6.21%)</title><rect x="956.9" y="645" width="73.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="959.95" y="655.5" >runtime...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (295,160 samples, 1.19%)</title><rect x="1016.3" y="453" width="14.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1019.28" y="463.5" ></text>
</g>
<g >
<title>runtime.stopm (210,156 samples, 0.84%)</title><rect x="458.1" y="613" width="10.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="461.11" y="623.5" ></text>
</g>
<g >
<title>syscall.Syscall (126,108 samples, 0.51%)</title><rect x="912.7" y="629" width="6.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="915.71" y="639.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (42,769 samples, 0.17%)</title><rect x="598.5" y="629" width="2.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="601.48" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (157,089 samples, 0.63%)</title><rect x="428.1" y="469" width="7.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="431.09" y="479.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (81,972 samples, 0.33%)</title><rect x="845.1" y="581" width="3.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="848.13" y="591.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (303,103 samples, 1.22%)</title><rect x="687.6" y="613" width="14.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="690.62" y="623.5" ></text>
</g>
<g >
<title>runtime.netpoll (50,344 samples, 0.20%)</title><rect x="348.9" y="629" width="2.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="351.86" y="639.5" ></text>
</g>
<g >
<title>runtime.memhash64 (38,521 samples, 0.15%)</title><rect x="589.0" y="677" width="1.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="591.95" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (277,799 samples, 1.12%)</title><rect x="311.2" y="549" width="13.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="314.20" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="437" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="277" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="287.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.(*lruFileIDMapper).Get (22,561 samples, 0.09%)</title><rect x="646.4" y="693" width="1.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="649.39" y="703.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/reporter.(*baseReporter).ReportTraceEvent (199,791 samples, 0.80%)</title><rect x="662.3" y="693" width="9.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="665.26" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,800 samples, 0.08%)</title><rect x="864.3" y="293" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="867.28" y="303.5" ></text>
</g>
<g >
<title>runtime.mallocgc (46,391 samples, 0.19%)</title><rect x="343.0" y="677" width="2.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="346.02" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="549" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (130,493 samples, 0.52%)</title><rect x="429.3" y="421" width="6.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="432.35" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (61,212 samples, 0.25%)</title><rect x="989.4" y="565" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*forwardReader).loadHead (31,627 samples, 0.13%)</title><rect x="1041.5" y="725" width="1.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1044.55" y="735.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (22,180 samples, 0.09%)</title><rect x="676.3" y="693" width="1.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="679.30" y="703.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.NewHTTP2Client.func6 (2,407,598 samples, 9.67%)</title><rect x="1043.7" y="741" width="114.1" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="1046.65" y="751.5" >google.golang...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,387 samples, 0.16%)</title><rect x="717.3" y="517" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="720.33" y="527.5" ></text>
</g>
<g >
<title>runtime.stopm (32,633 samples, 0.13%)</title><rect x="283.6" y="661" width="1.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="286.57" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="421" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,035 samples, 0.10%)</title><rect x="893.0" y="629" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="895.98" y="639.5" ></text>
</g>
<g >
<title>runtime.makeslice (34,048 samples, 0.14%)</title><rect x="338.1" y="693" width="1.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="341.11" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,896 samples, 0.13%)</title><rect x="283.6" y="453" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.61" y="463.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).GetMappings (2,040,510 samples, 8.20%)</title><rect x="758.1" y="693" width="96.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="761.07" y="703.5" >go.opentele..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="565" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="575.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (187,425 samples, 0.75%)</title><rect x="1180.0" y="725" width="8.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1183.00" y="735.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*loopyWriter).processData (53,605 samples, 0.22%)</title><rect x="1154.1" y="709" width="2.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1157.12" y="719.5" ></text>
</g>
<g >
<title>runtime.profilealloc (41,555 samples, 0.17%)</title><rect x="527.9" y="517" width="2.0" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="530.94" y="527.5" ></text>
</g>
<g >
<title>internal/concurrent.(*HashTrieMap[go.shape.*internal/abi.Type,go.shape.interface {}]).Load (24,380 samples, 0.10%)</title><rect x="626.3" y="645" width="1.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="629.34" y="655.5" ></text>
</g>
<g >
<title>runtime.(*timers).check (22,926 samples, 0.09%)</title><rect x="722.8" y="613" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="725.76" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="405" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (105,291 samples, 0.42%)</title><rect x="419.9" y="549" width="5.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="422.90" y="559.5" ></text>
</g>
<g >
<title>runtime.slicebytetostring (85,723 samples, 0.34%)</title><rect x="550.7" y="629" width="4.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="553.68" y="639.5" ></text>
</g>
<g >
<title>runtime.mallocgc (45,502 samples, 0.18%)</title><rect x="1177.8" y="661" width="2.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1180.85" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="325" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="335.5" ></text>
</g>
<g >
<title>compress/flate.(*huffmanBitWriter).indexTokens (307,780 samples, 1.24%)</title><rect x="498.0" y="485" width="14.5" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="500.95" y="495.5" ></text>
</g>
<g >
<title>compress/flate.(*compressor).findMatch (92,317 samples, 0.37%)</title><rect x="493.6" y="517" width="4.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="496.57" y="527.5" ></text>
</g>
<g >
<title>runtime.send (23,683 samples, 0.10%)</title><rect x="1007.6" y="517" width="1.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1010.55" y="527.5" ></text>
</g>
<g >
<title>syscall.Syscall (372,060 samples, 1.49%)</title><rect x="311.2" y="613" width="17.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="314.20" y="623.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).triggerPidEvent-fm (12,766 samples, 0.05%)</title><rect x="1043.0" y="725" width="0.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1046.05" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="597" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,093 samples, 0.12%)</title><rect x="1071.7" y="437" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1074.70" y="447.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (112,157 samples, 0.45%)</title><rect x="1057.8" y="85" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1060.81" y="95.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (441,110 samples, 1.77%)</title><rect x="1125.2" y="469" width="21.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1128.24" y="479.5" ></text>
</g>
<g >
<title>runtime.selectgo (1,708,200 samples, 6.86%)</title><rect x="953.8" y="725" width="81.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="956.84" y="735.5" >runtime.s..</text>
</g>
<g >
<title>syscall.Syscall.abi0 (1,005,310 samples, 4.04%)</title><rect x="363.0" y="645" width="47.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="366.01" y="655.5" >sysc..</text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf/basehash.Hash128 }]).addWithLifetime (69,896 samples, 0.28%)</title><rect x="918.7" y="661" width="3.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="921.69" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (58,447 samples, 0.23%)</title><rect x="1037.0" y="549" width="2.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1040.04" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="373" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="383.5" ></text>
</g>
<g >
<title>runtime.park_m (57,331 samples, 0.23%)</title><rect x="302.7" y="709" width="2.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="305.68" y="719.5" ></text>
</g>
<g >
<title>runtime.schedule (54,078 samples, 0.22%)</title><rect x="286.5" y="693" width="2.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="289.48" y="703.5" ></text>
</g>
<g >
<title>[[vdso]] (40,568 samples, 0.16%)</title><rect x="471.6" y="629" width="1.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="474.62" y="639.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (39,672 samples, 0.16%)</title><rect x="934.8" y="629" width="1.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="937.84" y="639.5" ></text>
</g>
<g >
<title>runtime.findRunnable (32,633 samples, 0.13%)</title><rect x="283.6" y="677" width="1.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="286.57" y="687.5" ></text>
</g>
<g >
<title>runtime.mcall (221,906 samples, 0.89%)</title><rect x="1159.7" y="517" width="10.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1162.70" y="527.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (65,053 samples, 0.26%)</title><rect x="1114.9" y="549" width="3.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1117.94" y="559.5" ></text>
</g>
<g >
<title>sync.(*RWMutex).Unlock (33,771 samples, 0.14%)</title><rect x="930.2" y="661" width="1.6" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="933.21" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,994 samples, 0.09%)</title><rect x="748.8" y="549" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="751.80" y="559.5" ></text>
</g>
<g >
<title>compress/flate.(*huffmanBitWriter).writeTokens (105,809 samples, 0.43%)</title><rect x="515.1" y="485" width="5.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="518.07" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,620 samples, 0.11%)</title><rect x="1090.1" y="325" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1093.07" y="335.5" ></text>
</g>
<g >
<title>runtime.findRunnable (230,393 samples, 0.93%)</title><rect x="854.8" y="629" width="10.9" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="857.82" y="639.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (585,068 samples, 2.35%)</title><rect x="961.6" y="613" width="27.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="964.64" y="623.5" >i..</text>
</g>
<g >
<title>runtime.casgstatus (23,255 samples, 0.09%)</title><rect x="917.6" y="597" width="1.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="920.59" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,672 samples, 0.18%)</title><rect x="293.4" y="597" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="296.43" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,098 samples, 0.37%)</title><rect x="656.7" y="517" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="659.74" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (293,919 samples, 1.18%)</title><rect x="1092.6" y="549" width="13.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1095.59" y="559.5" ></text>
</g>
<g >
<title>google.golang.org/protobuf/internal/impl.legacyMarshal (80,669 samples, 0.32%)</title><rect x="537.6" y="533" width="3.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="540.56" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (93,098 samples, 0.37%)</title><rect x="656.7" y="581" width="4.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="659.74" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).LookupWithFlags (148,060 samples, 0.59%)</title><rect x="911.7" y="693" width="7.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="914.67" y="703.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*loopyWriter).run (2,407,598 samples, 9.67%)</title><rect x="1043.7" y="725" width="114.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1046.65" y="735.5" >google.golang...</text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,408 samples, 0.10%)</title><rect x="994.8" y="581" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="997.84" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,207 samples, 0.11%)</title><rect x="855.9" y="453" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="858.93" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (64,484 samples, 0.26%)</title><rect x="716.2" y="565" width="3.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="719.18" y="575.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (39,000 samples, 0.16%)</title><rect x="341.2" y="677" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="344.17" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (26,899 samples, 0.11%)</title><rect x="906.1" y="709" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="909.14" y="719.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (40,198 samples, 0.16%)</title><rect x="359.5" y="693" width="1.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="362.54" y="703.5" ></text>
</g>
<g >
<title>sync.(*RWMutex).Unlock (23,947 samples, 0.10%)</title><rect x="907.4" y="693" width="1.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="910.41" y="703.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2.(*Framer).readMetaFrame (39,950 samples, 0.16%)</title><rect x="1157.8" y="693" width="1.9" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="1160.81" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (83,348 samples, 0.33%)</title><rect x="351.2" y="565" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="354.25" y="575.5" ></text>
</g>
<g >
<title>runtime.notesleep (199,572 samples, 0.80%)</title><rect x="458.6" y="597" width="9.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="461.62" y="607.5" ></text>
</g>
<g >
<title>runtime.mapaccess1_fast32 (101,091 samples, 0.41%)</title><rect x="639.8" y="677" width="4.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="642.77" y="687.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).processPIDEvents (2,270,903 samples, 9.12%)</title><rect x="758.1" y="725" width="107.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="761.07" y="735.5" >go.openteleme..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (102,853 samples, 0.41%)</title><rect x="912.7" y="565" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="915.71" y="575.5" ></text>
</g>
<g >
<title>runtime.nanotime (40,568 samples, 0.16%)</title><rect x="471.6" y="645" width="1.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="474.62" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (164,412 samples, 0.66%)</title><rect x="1056.5" y="229" width="7.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1059.54" y="239.5" ></text>
</g>
<g >
<title>time.Until (22,776 samples, 0.09%)</title><rect x="889.8" y="693" width="1.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="892.78" y="703.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (79,274 samples, 0.32%)</title><rect x="297.7" y="645" width="3.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="300.67" y="655.5" ></text>
</g>
<g >
<title>runtime.pidleget (21,455 samples, 0.09%)</title><rect x="747.8" y="597" width="1.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="750.78" y="607.5" ></text>
</g>
<g >
<title>fmt.(*pp).free (36,746 samples, 0.15%)</title><rect x="608.2" y="645" width="1.7" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="611.19" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,408 samples, 0.10%)</title><rect x="994.8" y="597" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="997.84" y="607.5" ></text>
</g>
<g >
<title>runtime.schedule (23,378 samples, 0.09%)</title><rect x="1188.9" y="725" width="1.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1191.89" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="517" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (188,629 samples, 0.76%)</title><rect x="315.4" y="485" width="9.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="318.43" y="495.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (32,999 samples, 0.13%)</title><rect x="894.2" y="661" width="1.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="897.17" y="671.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*LRU[go.shape.struct { go.opentelemetry.io/ebpf-profiler/libpf.fileID go.opentelemetry.io/ebpf-profiler/libpf.FileID: go.opentelemetry.io/ebpf-profiler/libpf.addressOrLineno go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno },go.shape.struct { LineNumber go.opentelemetry.io/ebpf-profiler/libpf.SourceLineno: FunctionOffset uint32: FunctionName go.opentelemetry.io/ebpf-profiler/libpf.String: FilePath go.opentelemetry.io/ebpf-profiler/libpf.String }]).addWithLifetime (59,977 samples, 0.24%)</title><rect x="612.5" y="613" width="2.9" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="615.54" y="623.5" ></text>
</g>
<g >
<title>internal/weak.Make[go.shape.string] (72,725 samples, 0.29%)</title><rect x="940.7" y="661" width="3.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="943.70" y="671.5" ></text>
</g>
<g >
<title>runtime.findRunnable (206,203 samples, 0.83%)</title><rect x="1159.7" y="469" width="9.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1162.70" y="479.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (30,793 samples, 0.12%)</title><rect x="942.7" y="613" width="1.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="945.68" y="623.5" ></text>
</g>
<g >
<title>runtime.stealWork (57,331 samples, 0.23%)</title><rect x="302.7" y="661" width="2.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="305.68" y="671.5" ></text>
</g>
<g >
<title>runtime.selectnbsend (22,797 samples, 0.09%)</title><rect x="1113.9" y="517" width="1.0" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1116.86" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (135,307 samples, 0.54%)</title><rect x="858.8" y="485" width="6.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="861.80" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (42,769 samples, 0.17%)</title><rect x="598.5" y="453" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="601.48" y="463.5" ></text>
</g>
<g >
<title>runtime.mapaccess1_fast32 (50,197 samples, 0.20%)</title><rect x="333.3" y="597" width="2.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="336.30" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (81,052 samples, 0.33%)</title><rect x="1036.0" y="597" width="3.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1038.97" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (102,311 samples, 0.41%)</title><rect x="1065.6" y="373" width="4.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1068.59" y="383.5" ></text>
</g>
<g >
<title>runtime.pidleget (32,409 samples, 0.13%)</title><rect x="993.3" y="629" width="1.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="996.30" y="639.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/nativeunwind/elfunwindinfo.(*Gopclntab).Symbolize (54,974 samples, 0.22%)</title><rect x="609.9" y="661" width="2.6" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="612.93" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (105,291 samples, 0.42%)</title><rect x="419.9" y="597" width="5.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="422.90" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,832 samples, 0.11%)</title><rect x="702.0" y="549" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="704.99" y="559.5" ></text>
</g>
<g >
<title>runtime.wakep (25,757 samples, 0.10%)</title><rect x="1187.7" y="677" width="1.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1190.67" y="687.5" ></text>
</g>
<g >
<title>runtime.runqgrab (65,053 samples, 0.26%)</title><rect x="1114.9" y="565" width="3.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1117.94" y="575.5" ></text>
</g>
<g >
<title>runtime.netpoll (230,388 samples, 0.93%)</title><rect x="1080.5" y="597" width="10.9" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1083.46" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,162 samples, 0.47%)</title><rect x="1170.2" y="485" width="5.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1173.22" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcache).prepareForSweep (10,584 samples, 0.04%)</title><rect x="458.1" y="581" width="0.5" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="461.11" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (1,005,310 samples, 4.04%)</title><rect x="363.0" y="581" width="47.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="366.01" y="591.5" >[[ke..</text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).Delete (131,678 samples, 0.53%)</title><rect x="355.2" y="709" width="6.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="358.20" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,294 samples, 0.09%)</title><rect x="447.3" y="485" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="450.32" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (45,697 samples, 0.18%)</title><rect x="706.8" y="533" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="709.78" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (112,157 samples, 0.45%)</title><rect x="1057.8" y="117" width="5.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1060.81" y="127.5" ></text>
</g>
<g >
<title>runtime.stopm (151,433 samples, 0.61%)</title><rect x="295.5" y="677" width="7.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="298.50" y="687.5" ></text>
</g>
<g >
<title>runtime.getOrAddWeakHandle (72,725 samples, 0.29%)</title><rect x="940.7" y="629" width="3.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="943.70" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (105,291 samples, 0.42%)</title><rect x="419.9" y="565" width="5.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="422.90" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="197" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="207.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracehandler.(*traceHandler).HandleTrace (2,014,501 samples, 8.09%)</title><rect x="581.8" y="725" width="95.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="584.84" y="735.5" >go.opentele..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,103 samples, 0.11%)</title><rect x="1116.7" y="373" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1119.69" y="383.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/interpreter/go.(*goInstance).GetAndResetMetrics (32,702 samples, 0.13%)</title><rect x="306.7" y="693" width="1.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="309.75" y="703.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (387,606 samples, 1.56%)</title><rect x="1047.2" y="389" width="18.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1050.21" y="399.5" ></text>
</g>
<g >
<title>runtime.park_m (54,078 samples, 0.22%)</title><rect x="286.5" y="709" width="2.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="289.48" y="719.5" ></text>
</g>
<g >
<title>runtime.runqsteal (65,053 samples, 0.26%)</title><rect x="1114.9" y="581" width="3.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="1117.94" y="591.5" ></text>
</g>
<g >
<title>fmt.Sprintf (36,746 samples, 0.15%)</title><rect x="608.2" y="661" width="1.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="611.19" y="671.5" ></text>
</g>
<g >
<title>runtime.mapassign_fast64 (41,092 samples, 0.17%)</title><rect x="410.7" y="693" width="1.9" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="413.67" y="703.5" ></text>
</g>
<g >
<title>runtime.send.goready.func1 (22,797 samples, 0.09%)</title><rect x="1113.9" y="469" width="1.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1116.86" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (21,994 samples, 0.09%)</title><rect x="748.8" y="517" width="1.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="751.80" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,035 samples, 0.10%)</title><rect x="893.0" y="597" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="895.98" y="607.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="435.5" y="469" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="438.53" y="479.5" ></text>
</g>
<g >
<title>runtime.park_m (221,906 samples, 0.89%)</title><rect x="1159.7" y="501" width="10.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1162.70" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,229 samples, 0.49%)</title><rect x="849.0" y="517" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="852.02" y="527.5" ></text>
</g>
<g >
<title>runtime.send.goready.func1 (22,750 samples, 0.09%)</title><rect x="952.8" y="661" width="1.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="955.76" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,672 samples, 0.18%)</title><rect x="293.4" y="565" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="296.43" y="575.5" ></text>
</g>
<g >
<title>runtime.send (22,797 samples, 0.09%)</title><rect x="1113.9" y="485" width="1.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1116.86" y="495.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (32,633 samples, 0.13%)</title><rect x="283.6" y="629" width="1.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="286.57" y="639.5" ></text>
</g>
<g >
<title>aeshashbody (35,951 samples, 0.14%)</title><rect x="665.2" y="629" width="1.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="668.19" y="639.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2.readFrameHeader (340,068 samples, 1.37%)</title><rect x="1159.7" y="693" width="16.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1162.70" y="703.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (21,455 samples, 0.09%)</title><rect x="685.3" y="629" width="1.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="688.34" y="639.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*SyncedLRU[go.shape.uint64,go.shape.struct { Files []go.opentelemetry.io/ebpf-profiler/libpf.FileID: Linenos []go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno: FrameTypes []go.opentelemetry.io/ebpf-profiler/libpf.FrameType: MappingStart []go.opentelemetry.io/ebpf-profiler/libpf.Address: MappingEnd []go.opentelemetry.io/ebpf-profiler/libpf.Address: MappingFileOffsets []uint64: Hash go.opentelemetry.io/ebpf-profiler/libpf.TraceHash: CustomLabels map[string]string }]).Add (23,908 samples, 0.10%)</title><rect x="581.8" y="709" width="1.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="584.84" y="719.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (27,445 samples, 0.11%)</title><rect x="358.2" y="677" width="1.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="361.24" y="687.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (118,162 samples, 0.47%)</title><rect x="1170.2" y="549" width="5.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1173.22" y="559.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (44,911 samples, 0.18%)</title><rect x="1115.9" y="405" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1118.89" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (30,727 samples, 0.12%)</title><rect x="424.9" y="469" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="427.90" y="479.5" ></text>
</g>
<g >
<title>runtime.notewakeup (15,703 samples, 0.06%)</title><rect x="1169.5" y="421" width="0.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1172.48" y="431.5" ></text>
</g>
<g >
<title>syscall.Syscall (983,012 samples, 3.95%)</title><rect x="764.7" y="597" width="46.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="767.67" y="607.5" >sysc..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,833 samples, 0.12%)</title><rect x="309.8" y="629" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="312.79" y="639.5" ></text>
</g>
<g >
<title>runtime.addspecial (41,932 samples, 0.17%)</title><rect x="940.7" y="613" width="2.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="943.70" y="623.5" ></text>
</g>
<g >
<title>time.now (45,610 samples, 0.18%)</title><rect x="928.1" y="613" width="2.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="931.05" y="623.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).monitorPIDEventsMap (1,079,261 samples, 4.34%)</title><rect x="363.0" y="709" width="51.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="366.01" y="719.5" >go.op..</text>
</g>
<g >
<title>syscall.Syscall.abi0 (372,060 samples, 1.49%)</title><rect x="311.2" y="629" width="17.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="314.20" y="639.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (22,743 samples, 0.09%)</title><rect x="675.2" y="677" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="678.22" y="687.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (147,853 samples, 0.59%)</title><rect x="880.7" y="629" width="7.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="883.66" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (120,019 samples, 0.48%)</title><rect x="462.4" y="421" width="5.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="465.39" y="431.5" ></text>
</g>
<g >
<title>runtime.newobject (32,702 samples, 0.13%)</title><rect x="306.7" y="677" width="1.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="309.75" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (334,816 samples, 1.35%)</title><rect x="1014.4" y="485" width="15.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1017.40" y="495.5" ></text>
</g>
<g >
<title>internal/weak.runtime_registerWeakPointer (72,725 samples, 0.29%)</title><rect x="940.7" y="645" width="3.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="943.70" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (305,405 samples, 1.23%)</title><rect x="1051.1" y="357" width="14.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1054.11" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (18,990 samples, 0.08%)</title><rect x="1105.6" y="421" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1108.62" y="431.5" ></text>
</g>
<g >
<title>runtime.pidleput (94,816 samples, 0.38%)</title><rect x="450.5" y="613" width="4.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="453.50" y="623.5" ></text>
</g>
<g >
<title>runtime.mcall (1,486,965 samples, 5.97%)</title><rect x="679.3" y="693" width="70.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="682.34" y="703.5" >runtime..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (39,027 samples, 0.16%)</title><rect x="989.4" y="501" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="511.5" ></text>
</g>
<g >
<title>runtime.ready (22,797 samples, 0.09%)</title><rect x="1113.9" y="453" width="1.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1116.86" y="463.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/processmanager.updateMetricSummary (32,702 samples, 0.13%)</title><rect x="306.7" y="709" width="1.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="309.75" y="719.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (254,439 samples, 1.02%)</title><rect x="1052.3" y="293" width="12.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1055.27" y="303.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (366,561 samples, 1.47%)</title><rect x="790.7" y="421" width="17.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="793.70" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,105 samples, 0.09%)</title><rect x="586.8" y="581" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="589.76" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (33,004 samples, 0.13%)</title><rect x="353.6" y="389" width="1.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="356.63" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (135,307 samples, 0.54%)</title><rect x="858.8" y="565" width="6.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="861.80" y="575.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*http2Client).operateHeaders (45,502 samples, 0.18%)</title><rect x="1177.8" y="709" width="2.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1180.85" y="719.5" ></text>
</g>
<g >
<title>runtime.netpoll (49,655 samples, 0.20%)</title><rect x="854.8" y="613" width="2.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="857.82" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (31,265 samples, 0.13%)</title><rect x="435.5" y="533" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="438.53" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,387 samples, 0.16%)</title><rect x="717.3" y="469" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="720.33" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="485" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,793 samples, 0.18%)</title><rect x="438.1" y="581" width="2.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="441.14" y="591.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (199,572 samples, 0.80%)</title><rect x="458.6" y="581" width="9.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="461.62" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (73,721 samples, 0.30%)</title><rect x="1036.3" y="565" width="3.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1039.32" y="575.5" ></text>
</g>
<g >
<title>runtime.park_m (587,639 samples, 2.36%)</title><rect x="443.8" y="661" width="27.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="446.75" y="671.5" >r..</text>
</g>
<g >
<title>time.sendTime (23,683 samples, 0.10%)</title><rect x="1007.6" y="565" width="1.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1010.55" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (348,026 samples, 1.40%)</title><rect x="730.2" y="581" width="16.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="733.24" y="591.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (29,833 samples, 0.12%)</title><rect x="309.8" y="597" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="312.79" y="607.5" ></text>
</g>
<g >
<title>runtime.schedule (587,639 samples, 2.36%)</title><rect x="443.8" y="645" width="27.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="446.75" y="655.5" >r..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (847,884 samples, 3.41%)</title><rect x="767.9" y="501" width="40.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="770.88" y="511.5" >[[k..</text>
</g>
<g >
<title>runtime.recv.goready.func1 (28,147 samples, 0.11%)</title><rect x="750.9" y="677" width="1.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="753.94" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (103,101 samples, 0.41%)</title><rect x="860.3" y="421" width="4.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="863.33" y="431.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,378 samples, 0.09%)</title><rect x="1188.9" y="661" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1191.89" y="671.5" ></text>
</g>
<g >
<title>runtime.mallocgc (125,839 samples, 0.51%)</title><rect x="931.8" y="677" width="6.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="934.82" y="687.5" ></text>
</g>
<g >
<title>runtime.acquirep (38,567 samples, 0.15%)</title><rect x="727.1" y="613" width="1.9" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text x="730.13" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,396 samples, 0.16%)</title><rect x="700.1" y="357" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="703.08" y="367.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (118,162 samples, 0.47%)</title><rect x="1170.2" y="469" width="5.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1173.22" y="479.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (151,029 samples, 0.61%)</title><rect x="982.2" y="389" width="7.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="985.22" y="399.5" ></text>
</g>
<g >
<title>net.(*TCPConn).Read (340,068 samples, 1.37%)</title><rect x="1159.7" y="645" width="16.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1162.70" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (50,344 samples, 0.20%)</title><rect x="348.9" y="565" width="2.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="351.86" y="575.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="549" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="559.5" ></text>
</g>
<g >
<title>fmt.(*pp).doPrintf (41,053 samples, 0.16%)</title><rect x="593.6" y="677" width="1.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="596.56" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,908 samples, 0.10%)</title><rect x="581.8" y="565" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="584.84" y="575.5" ></text>
</g>
<g >
<title>runtime.recv (28,147 samples, 0.11%)</title><rect x="750.9" y="709" width="1.4" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="753.94" y="719.5" ></text>
</g>
<g >
<title>bpf_prog_d17ae192e0dd2d09_fexit__vfs_write (165,406 samples, 0.66%)</title><rect x="1098.7" y="485" width="7.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1101.68" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (22,750 samples, 0.09%)</title><rect x="952.8" y="677" width="1.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="955.76" y="687.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (122,229 samples, 0.49%)</title><rect x="849.0" y="533" width="5.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="852.02" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (23,113 samples, 0.09%)</title><rect x="1185.5" y="517" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1188.48" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="373" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="383.5" ></text>
</g>
<g >
<title>runtime.mallocgc (85,723 samples, 0.34%)</title><rect x="550.7" y="613" width="4.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="553.68" y="623.5" ></text>
</g>
<g >
<title>runtime.wakep (22,750 samples, 0.09%)</title><rect x="952.8" y="629" width="1.0" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="955.76" y="639.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (51,985 samples, 0.21%)</title><rect x="299.0" y="549" width="2.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="301.96" y="559.5" ></text>
</g>
<g >
<title>runtime.(*timers).check (157,780 samples, 0.63%)</title><rect x="1001.2" y="613" width="7.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1004.19" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (601,374 samples, 2.42%)</title><rect x="1044.7" y="565" width="28.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1047.66" y="575.5" >[[..</text>
</g>
<g >
<title>[[kernel.kallsyms]] (13,850 samples, 0.06%)</title><rect x="1098.0" y="421" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1101.02" y="431.5" ></text>
</g>
<g >
<title>[unknown] (102,311 samples, 0.41%)</title><rect x="1065.6" y="389" width="4.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1068.59" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (61,212 samples, 0.25%)</title><rect x="989.4" y="597" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="992.38" y="607.5" ></text>
</g>
<g >
<title>runtime.resetspinning (25,449 samples, 0.10%)</title><rect x="1147.5" y="613" width="1.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1150.47" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (225,157 samples, 0.90%)</title><rect x="1053.7" y="245" width="10.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1056.66" y="255.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="309" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="319.5" ></text>
</g>
<g >
<title>syscall.Syscall (601,374 samples, 2.42%)</title><rect x="1044.7" y="597" width="28.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1047.66" y="607.5" >sy..</text>
</g>
<g >
<title>fmt.(*pp).printArg (22,948 samples, 0.09%)</title><rect x="595.5" y="645" width="1.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="598.51" y="655.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (41,555 samples, 0.17%)</title><rect x="527.9" y="437" width="2.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="530.94" y="447.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.EpollWait (323,880 samples, 1.30%)</title><rect x="874.4" y="693" width="15.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="877.43" y="703.5" ></text>
</g>
<g >
<title>runtime.write1.abi0 (89,515 samples, 0.36%)</title><rect x="446.3" y="597" width="4.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="449.25" y="607.5" ></text>
</g>
<g >
<title>runtime.sellock (122,128 samples, 0.49%)</title><rect x="752.3" y="725" width="5.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="755.28" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (195,678 samples, 0.79%)</title><rect x="1021.0" y="405" width="9.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1024.00" y="415.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (334,816 samples, 1.35%)</title><rect x="1014.4" y="501" width="15.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1017.40" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (182,362 samples, 0.73%)</title><rect x="1082.7" y="517" width="8.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1085.74" y="527.5" ></text>
</g>
<g >
<title>runtime.write1.abi0 (105,291 samples, 0.42%)</title><rect x="419.9" y="613" width="5.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="422.90" y="623.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*forwardReader).loadHead (149,722 samples, 0.60%)</title><rect x="899.0" y="725" width="7.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="902.04" y="735.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (22,294 samples, 0.09%)</title><rect x="447.3" y="453" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="450.32" y="463.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/ebpf-profiler/traceutil.HashTrace (195,824 samples, 0.79%)</title><rect x="647.5" y="693" width="9.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="650.46" y="703.5" ></text>
</g>
<g >
<title>runtime.netpoll (22,451 samples, 0.09%)</title><rect x="445.2" y="613" width="1.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="448.19" y="623.5" ></text>
</g>
<g >
<title>runtime.mallocgc (32,702 samples, 0.13%)</title><rect x="306.7" y="661" width="1.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="309.75" y="671.5" ></text>
</g>
<g >
<title>runtime.mallocgc (86,676 samples, 0.35%)</title><rect x="568.5" y="645" width="4.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="571.48" y="655.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/mem.(*writer).Write (52,781 samples, 0.21%)</title><rect x="517.6" y="453" width="2.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="520.59" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (6,446 samples, 0.03%)</title><rect x="1168.6" y="197" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1171.55" y="207.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (40,643 samples, 0.16%)</title><rect x="847.1" y="501" width="1.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="850.09" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (32,633 samples, 0.13%)</title><rect x="283.6" y="613" width="1.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="286.57" y="623.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/perf.(*forwardReader).writeTail (24,840 samples, 0.10%)</title><rect x="890.9" y="693" width="1.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="893.86" y="703.5" ></text>
</g>
<g >
<title>go.opentelemetry.io/collector/pdata/internal/data/protogen/collector/profiles/v1development.(*ExportProfilesServiceRequest).Size (40,069 samples, 0.16%)</title><rect x="533.7" y="501" width="1.9" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="536.73" y="511.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (24,548 samples, 0.10%)</title><rect x="457.0" y="501" width="1.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="459.95" y="511.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (27,918 samples, 0.11%)</title><rect x="1040.2" y="613" width="1.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1043.23" y="623.5" ></text>
</g>
<g >
<title>github.com/elastic/go-freelru.(*LRU[go.shape.uint64,go.shape.struct { Files []go.opentelemetry.io/ebpf-profiler/libpf.FileID: Linenos []go.opentelemetry.io/ebpf-profiler/libpf.AddressOrLineno: FrameTypes []go.opentelemetry.io/ebpf-profiler/libpf.FrameType: MappingStart []go.opentelemetry.io/ebpf-profiler/libpf.Address: MappingEnd []go.opentelemetry.io/ebpf-profiler/libpf.Address: MappingFileOffsets []uint64: Hash go.opentelemetry.io/ebpf-profiler/libpf.TraceHash: CustomLabels map[string]string }]).addWithLifetime (23,908 samples, 0.10%)</title><rect x="581.8" y="693" width="1.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="584.84" y="703.5" ></text>
</g>
<g >
<title>bpf_trampoline_6442495261 (19,330 samples, 0.08%)</title><rect x="857.2" y="517" width="0.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="860.17" y="527.5" ></text>
</g>
<g >
<title>runtime.pcvalue (41,555 samples, 0.17%)</title><rect x="527.9" y="389" width="2.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="530.94" y="399.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (190,357 samples, 0.76%)</title><rect x="459.1" y="549" width="9.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="462.05" y="559.5" ></text>
</g>
<g >
<title>runtime.findRunnable (133,692 samples, 0.54%)</title><rect x="348.9" y="645" width="6.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="351.86" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (108,446 samples, 0.44%)</title><rect x="874.4" y="613" width="5.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="877.43" y="623.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (42,769 samples, 0.17%)</title><rect x="598.5" y="613" width="2.0" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="601.48" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (83,348 samples, 0.33%)</title><rect x="351.2" y="533" width="4.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="354.25" y="543.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (60,207 samples, 0.24%)</title><rect x="1095.8" y="485" width="2.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1098.83" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (43,267 samples, 0.17%)</title><rect x="852.8" y="485" width="2.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="855.76" y="495.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (229,812 samples, 0.92%)</title><rect x="735.8" y="485" width="10.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="738.85" y="495.5" ></text>
</g>
<g >
<title>google.golang.org/grpc/internal/transport.(*transportReader).ReadMessageHeader (51,518 samples, 0.21%)</title><rect x="473.5" y="485" width="2.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="476.54" y="495.5" ></text>
</g>
<g >
<title>runtime.notesleep (193,656 samples, 0.78%)</title><rect x="426.4" y="613" width="9.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="429.35" y="623.5" ></text>
</g>
<g >
<title>fmt.Sprintf (151,509 samples, 0.61%)</title><rect x="547.6" y="645" width="7.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="550.56" y="655.5" ></text>
</g>
<g >
<title>runtime.schedule (1,591,151 samples, 6.39%)</title><rect x="956.9" y="661" width="75.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="959.95" y="671.5" >runtime...</text>
</g>
<g >
<title>[[vdso]] (28,788 samples, 0.12%)</title><rect x="302.7" y="629" width="1.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="305.68" y="639.5" ></text>
</g>
<g >
<title>runtime.park_m (32,633 samples, 0.13%)</title><rect x="283.6" y="709" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="286.57" y="719.5" ></text>
</g>
<g >
<title>[unknown] (40,643 samples, 0.16%)</title><rect x="847.1" y="517" width="1.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="850.09" y="527.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (28,147 samples, 0.11%)</title><rect x="750.9" y="581" width="1.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="753.94" y="591.5" ></text>
</g>
<g >
<title>golang.org/x/net/http2/hpack.(*headerFieldTable).idToIndex (29,686 samples, 0.12%)</title><rect x="1149.9" y="613" width="1.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1152.95" y="623.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="101" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="111.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (36,877 samples, 0.15%)</title><rect x="673.5" y="661" width="1.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="676.48" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (27,918 samples, 0.11%)</title><rect x="1040.2" y="517" width="1.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1043.23" y="527.5" ></text>
</g>
<g >
<title>fmt.(*pp).printArg (64,035 samples, 0.26%)</title><rect x="355.2" y="661" width="3.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="358.20" y="671.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (19,330 samples, 0.08%)</title><rect x="857.2" y="453" width="0.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="860.17" y="463.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (25,035 samples, 0.10%)</title><rect x="893.0" y="645" width="1.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="895.98" y="655.5" ></text>
</g>
<g >
<title>[[kernel.kallsyms]] (37,229 samples, 0.15%)</title><rect x="1174.1" y="261" width="1.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1177.06" y="271.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment