Skip to content

Instantly share code, notes, and snippets.

@passcod
Created September 21, 2024 12:20
Show Gist options
  • Save passcod/03273fba1f9fb9e2bcc0799f27f91682 to your computer and use it in GitHub Desktop.
Save passcod/03273fba1f9fb9e2bcc0799f27f91682 to your computer and use it in GitHub Desktop.
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="2134" onload="init(evt)" viewBox="0 0 1200 2134" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </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="2117" > </text>
<g id="frames">
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="997" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1007.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1589" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1599.5" ></text>
</g>
<g >
<title>change_protection (44,934 samples, 0.32%)</title><rect x="217.2" y="1877" width="3.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="220.23" y="1887.5" ></text>
</g>
<g >
<title>runtime.morestack.abi0 (799,986 samples, 5.72%)</title><rect x="999.9" y="2053" width="67.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1002.91" y="2063.5" >runtime..</text>
</g>
<g >
<title>__x64_sys_futex (3,604 samples, 0.03%)</title><rect x="193.1" y="1893" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="196.07" y="1903.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (2,307 samples, 0.02%)</title><rect x="35.8" y="149" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="38.78" y="159.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (368,343 samples, 2.64%)</title><rect x="380.3" y="1861" width="31.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="383.35" y="1871.5" >in..</text>
</g>
<g >
<title>getaddrinfo (846,261 samples, 6.05%)</title><rect x="92.4" y="2021" width="71.5" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="95.44" y="2031.5" >getaddri..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1701" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="693" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="703.5" ></text>
</g>
<g >
<title>get_page_from_freelist (797,147 samples, 5.70%)</title><rect x="1122.2" y="1733" width="67.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="1125.22" y="1743.5" >get_pag..</text>
</g>
<g >
<title>__handle_mm_fault (76,907 samples, 0.55%)</title><rect x="210.7" y="1893" width="6.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.74" y="1903.5" ></text>
</g>
<g >
<title>net.(*netFD).Read (368,343 samples, 2.64%)</title><rect x="380.3" y="1877" width="31.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="383.35" y="1887.5" >ne..</text>
</g>
<g >
<title>asm_exc_page_fault (729,436 samples, 5.22%)</title><rect x="924.6" y="2005" width="61.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="927.62" y="2015.5" >asm_ex..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,793 samples, 0.04%)</title><rect x="1189.5" y="2037" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1192.51" y="2047.5" ></text>
</g>
<g >
<title>pthread_create (2,307 samples, 0.02%)</title><rect x="35.8" y="261" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="38.78" y="271.5" ></text>
</g>
<g >
<title>crypto/internal/edwards25519/field.feSquare.abi0 (507,466 samples, 3.63%)</title><rect x="455.1" y="1893" width="42.9" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="458.13" y="1903.5" >cryp..</text>
</g>
<g >
<title>_cgo_try_pthread_create (3,244 samples, 0.02%)</title><rect x="35.2" y="149" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="38.24" y="159.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*connectionState).readPacket (433,192 samples, 3.10%)</title><rect x="380.3" y="1973" width="36.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="383.35" y="1983.5" >gol..</text>
</g>
<g >
<title>asm_exc_page_fault (76,907 samples, 0.55%)</title><rect x="210.7" y="1957" width="6.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="213.74" y="1967.5" ></text>
</g>
<g >
<title>memeqbody (648,822 samples, 4.64%)</title><rect x="1067.4" y="1957" width="54.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1070.45" y="1967.5" >memeq..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*handshakeTransport).readOnePacket (456,864 samples, 3.27%)</title><rect x="378.3" y="2005" width="38.6" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="381.35" y="2015.5" >gol..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1365" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1375.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (368,343 samples, 2.64%)</title><rect x="777.4" y="1733" width="31.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="780.40" y="1743.5" >en..</text>
</g>
<g >
<title>runtime.notesleep (155,915 samples, 1.12%)</title><rect x="657.9" y="1893" width="13.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="660.93" y="1903.5" ></text>
</g>
<g >
<title>runtime.gopark (485,142 samples, 3.47%)</title><rect x="337.4" y="1957" width="40.9" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="340.39" y="1967.5" >run..</text>
</g>
<g >
<title>do_mmap (42,931 samples, 0.31%)</title><rect x="207.1" y="1893" width="3.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="210.11" y="1903.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,307 samples, 0.02%)</title><rect x="35.8" y="229" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.78" y="239.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (304,855 samples, 2.18%)</title><rect x="167.3" y="1973" width="25.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="170.33" y="1983.5" >r..</text>
</g>
<g >
<title>do_syscall_64 (44,934 samples, 0.32%)</title><rect x="217.2" y="1941" width="3.8" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="220.23" y="1951.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (243,348 samples, 1.74%)</title><rect x="498.0" y="1909" width="20.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="500.97" y="1919.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,244 samples, 0.02%)</title><rect x="35.2" y="117" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.24" y="127.5" ></text>
</g>
<g >
<title>crypto/elliptic.initAll (716,998 samples, 5.13%)</title><rect x="808.5" y="1973" width="60.5" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="811.50" y="1983.5" >crypto..</text>
</g>
<g >
<title>begin_new_exec (5,793 samples, 0.04%)</title><rect x="1189.5" y="1941" width="0.5" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text x="1192.51" y="1951.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Write (876,666 samples, 6.27%)</title><rect x="518.5" y="1893" width="74.0" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="521.51" y="1903.5" >internal..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1493" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1503.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="789" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="799.5" ></text>
</g>
<g >
<title>net.(*conn).Write (368,343 samples, 2.64%)</title><rect x="777.4" y="1829" width="31.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="780.40" y="1839.5" >ne..</text>
</g>
<g >
<title>tcp_sendmsg_locked (876,666 samples, 6.27%)</title><rect x="518.5" y="1733" width="74.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="521.51" y="1743.5" >tcp_send..</text>
</g>
<g >
<title>do_futex (3,604 samples, 0.03%)</title><rect x="193.1" y="1877" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="196.07" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="933" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="943.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*handshakeTransport).client (750,814 samples, 5.37%)</title><rect x="455.1" y="1989" width="63.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="458.13" y="1999.5" >golang..</text>
</g>
<g >
<title>ksys_write (876,666 samples, 6.27%)</title><rect x="518.5" y="1797" width="74.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="521.51" y="1807.5" >ksys_write</text>
</g>
<g >
<title>do_vmi_align_munmap (125,839 samples, 0.90%)</title><rect x="221.0" y="1877" width="10.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="224.02" y="1887.5" ></text>
</g>
<g >
<title>gossh (13,972,302 samples, 99.96%)</title><rect x="10.0" y="2069" width="1179.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="13.00" y="2079.5" >gossh</text>
</g>
<g >
<title>runtime.park_m (64,849 samples, 0.46%)</title><rect x="411.4" y="1765" width="5.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="414.44" y="1775.5" ></text>
</g>
<g >
<title>runtime.schedule (64,849 samples, 0.46%)</title><rect x="411.4" y="1749" width="5.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="414.44" y="1759.5" ></text>
</g>
<g >
<title>mas_store_gfp (67,297 samples, 0.48%)</title><rect x="221.0" y="1861" width="5.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="224.02" y="1871.5" ></text>
</g>
<g >
<title>runtime.schedule (3,933 samples, 0.03%)</title><rect x="999.6" y="1941" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1002.58" y="1951.5" ></text>
</g>
<g >
<title>tcp_write_xmit (368,343 samples, 2.64%)</title><rect x="777.4" y="1605" width="31.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="780.40" y="1615.5" >tc..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1605" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1461" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1471.5" ></text>
</g>
<g >
<title>math/big.(*Int).SetString (716,998 samples, 5.13%)</title><rect x="808.5" y="1941" width="60.5" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="811.50" y="1951.5" >math/b..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*mux).OpenChannel (721,194 samples, 5.16%)</title><rect x="747.6" y="1957" width="60.9" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="750.62" y="1967.5" >golang..</text>
</g>
<g >
<title>net.socket (906,491 samples, 6.49%)</title><rect x="671.1" y="1861" width="76.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="674.09" y="1871.5" >net.socket</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1797" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1807.5" ></text>
</g>
<g >
<title>runtime.mcall (658,574 samples, 4.71%)</title><rect x="869.0" y="1957" width="55.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="872.03" y="1967.5" >runti..</text>
</g>
<g >
<title>__anon_vma_prepare (76,907 samples, 0.55%)</title><rect x="210.7" y="1845" width="6.5" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="213.74" y="1855.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (3,933 samples, 0.03%)</title><rect x="999.6" y="1669" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1002.58" y="1679.5" ></text>
</g>
<g >
<title>crypto/elliptic.initP256 (716,998 samples, 5.13%)</title><rect x="808.5" y="1957" width="60.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="811.50" y="1967.5" >crypto..</text>
</g>
<g >
<title>sysvec_call_function_single (3,188 samples, 0.02%)</title><rect x="35.5" y="53" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="38.52" y="63.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (125,839 samples, 0.90%)</title><rect x="221.0" y="1957" width="10.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="224.02" y="1967.5" ></text>
</g>
<g >
<title>srso_alias_safe_ret (3,244 samples, 0.02%)</title><rect x="35.2" y="37" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="38.24" y="47.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*connection).Wait (485,142 samples, 3.47%)</title><rect x="337.4" y="2021" width="40.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="340.39" y="2031.5" >gol..</text>
</g>
<g >
<title>runtime.chanrecv (162,460 samples, 1.16%)</title><rect x="986.2" y="2005" width="13.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="989.20" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="709" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="719.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (5,793 samples, 0.04%)</title><rect x="1189.5" y="1989" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1192.51" y="1999.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (5,033 samples, 0.04%)</title><rect x="1189.6" y="1909" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1192.58" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (162,752 samples, 1.16%)</title><rect x="193.4" y="1909" width="13.7" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="196.37" y="1919.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (368,343 samples, 2.64%)</title><rect x="380.3" y="1925" width="31.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="383.35" y="1935.5" >bu..</text>
</g>
<g >
<title>_dl_catch_exception (846,261 samples, 6.05%)</title><rect x="92.4" y="1877" width="71.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="95.44" y="1887.5" >_dl_catc..</text>
</g>
<g >
<title>_copy_to_iter (774,847 samples, 5.54%)</title><rect x="592.5" y="1589" width="65.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="595.52" y="1599.5" >_copy_t..</text>
</g>
<g >
<title>runtime.sysauxv (648,822 samples, 4.64%)</title><rect x="1067.4" y="1989" width="54.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1070.45" y="1999.5" >runti..</text>
</g>
<g >
<title>ktime_get (22,354 samples, 0.16%)</title><rect x="193.4" y="1845" width="1.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="196.37" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1509" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1519.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (774,847 samples, 5.54%)</title><rect x="592.5" y="1749" width="65.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="595.52" y="1759.5" >interna..</text>
</g>
<g >
<title>net.(*netFD).Write (368,343 samples, 2.64%)</title><rect x="777.4" y="1813" width="31.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="780.40" y="1823.5" >ne..</text>
</g>
<g >
<title>[libc.so.6] (846,261 samples, 6.05%)</title><rect x="92.4" y="1909" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="95.44" y="1919.5" >[libc.so..</text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (158,527 samples, 1.13%)</title><rect x="986.2" y="1829" width="13.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="989.20" y="1839.5" ></text>
</g>
<g >
<title>net.(*Dialer).DialContext (906,491 samples, 6.49%)</title><rect x="671.1" y="1973" width="76.5" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="674.09" y="1983.5" >net.(*Di..</text>
</g>
<g >
<title>runtime.(*mcache).nextFree (158,527 samples, 1.13%)</title><rect x="986.2" y="1941" width="13.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="989.20" y="1951.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (797,147 samples, 5.70%)</title><rect x="1122.2" y="1909" width="67.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1125.22" y="1919.5" >runtime..</text>
</g>
<g >
<title>hrtimer_start_range_ns (22,354 samples, 0.16%)</title><rect x="193.4" y="1877" width="1.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="196.37" y="1887.5" ></text>
</g>
<g >
<title>runtime.acquireSudog (158,527 samples, 1.13%)</title><rect x="986.2" y="1989" width="13.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="989.20" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (846,261 samples, 6.05%)</title><rect x="92.4" y="1717" width="71.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="95.44" y="1727.5" >entry_SY..</text>
</g>
<g >
<title>alloc_pages_mpol_noprof (12,426 samples, 0.09%)</title><rect x="32.7" y="1909" width="1.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="35.74" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="805" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="815.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="661" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="671.5" ></text>
</g>
<g >
<title>internal/singleflight.(*Group).DoChan.gowrap1 (774,847 samples, 5.54%)</title><rect x="592.5" y="2037" width="65.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="595.52" y="2047.5" >interna..</text>
</g>
<g >
<title>[libc.so.6] (846,261 samples, 6.05%)</title><rect x="92.4" y="1957" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="95.44" y="1967.5" >[libc.so..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1765" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1621" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="325" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="335.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="837" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="847.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (249,529 samples, 1.79%)</title><rect x="10.0" y="2037" width="21.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="13.00" y="2047.5" ></text>
</g>
<g >
<title>exc_page_fault (797,147 samples, 5.70%)</title><rect x="1122.2" y="1861" width="67.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1125.22" y="1871.5" >exc_pag..</text>
</g>
<g >
<title>runtime.park_m (485,142 samples, 3.47%)</title><rect x="337.4" y="1925" width="40.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="340.39" y="1935.5" >run..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*connectionState).writePacket (876,666 samples, 6.27%)</title><rect x="518.5" y="1973" width="74.0" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="521.51" y="1983.5" >golang.o..</text>
</g>
<g >
<title>schedule (485,142 samples, 3.47%)</title><rect x="337.4" y="1749" width="40.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="340.39" y="1759.5" >sch..</text>
</g>
<g >
<title>ksys_read (774,847 samples, 5.54%)</title><rect x="592.5" y="1653" width="65.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="595.52" y="1663.5" >ksys_read</text>
</g>
<g >
<title>clockevents_program_event (22,354 samples, 0.16%)</title><rect x="193.4" y="1861" width="1.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="196.37" y="1871.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*handshakeTransport).readLoop (909,557 samples, 6.51%)</title><rect x="378.3" y="2021" width="76.8" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="381.35" y="2031.5" >golang.o..</text>
</g>
<g >
<title>mas_wr_end_piv (42,931 samples, 0.31%)</title><rect x="207.1" y="1845" width="3.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="210.11" y="1855.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.newClientTransport.gowrap2 (1,627,480 samples, 11.64%)</title><rect x="455.1" y="2037" width="137.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="458.13" y="2047.5" >golang.org/x/cryp..</text>
</g>
<g >
<title>runtime.vdsoauxv (648,822 samples, 4.64%)</title><rect x="1067.4" y="1973" width="54.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1070.45" y="1983.5" >runti..</text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (876,666 samples, 6.27%)</title><rect x="518.5" y="1845" width="74.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="521.51" y="1855.5" >internal..</text>
</g>
<g >
<title>net.(*Resolver).lookupIPAddr.func1 (774,847 samples, 5.54%)</title><rect x="592.5" y="2005" width="65.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="595.52" y="2015.5" >net.(*R..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.init.0 (716,998 samples, 5.13%)</title><rect x="808.5" y="2005" width="60.5" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="811.50" y="2015.5" >golang..</text>
</g>
<g >
<title>runtime.netpoll (485,142 samples, 3.47%)</title><rect x="337.4" y="1877" width="40.9" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="340.39" y="1887.5" >run..</text>
</g>
<g >
<title>ctx_groups_sched_in (3,933 samples, 0.03%)</title><rect x="999.6" y="1685" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="1002.58" y="1695.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*handshakeTransport).writePacket (368,343 samples, 2.64%)</title><rect x="777.4" y="1909" width="31.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="780.40" y="1919.5" >go..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1669" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1679.5" ></text>
</g>
<g >
<title>vfs_read (774,847 samples, 5.54%)</title><rect x="592.5" y="1637" width="65.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="595.52" y="1647.5" >vfs_read</text>
</g>
<g >
<title>net.(*sysDialer).dialTCP (906,491 samples, 6.49%)</title><rect x="671.1" y="1909" width="76.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="674.09" y="1919.5" >net.(*sy..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1941" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1951.5" >[ld-linu..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1941" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="597" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="607.5" ></text>
</g>
<g >
<title>filemap_read (774,847 samples, 5.54%)</title><rect x="592.5" y="1621" width="65.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="595.52" y="1631.5" >filemap..</text>
</g>
<g >
<title>do_syscall_64 (774,847 samples, 5.54%)</title><rect x="592.5" y="1669" width="65.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="595.52" y="1679.5" >do_sysc..</text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (158,527 samples, 1.13%)</title><rect x="986.2" y="1797" width="13.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="989.20" y="1807.5" ></text>
</g>
<g >
<title>runtime.chanrecv1 (658,574 samples, 4.71%)</title><rect x="869.0" y="2005" width="55.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="872.03" y="2015.5" >runti..</text>
</g>
<g >
<title>runtime.sysmon (471,211 samples, 3.37%)</title><rect x="167.3" y="1989" width="39.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="170.33" y="1999.5" >run..</text>
</g>
<g >
<title>net.(*TCPConn).Read (368,343 samples, 2.64%)</title><rect x="380.3" y="1909" width="31.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="383.35" y="1919.5" >ne..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.newClientTransport.gowrap1 (909,557 samples, 6.51%)</title><rect x="378.3" y="2037" width="76.8" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="381.35" y="2047.5" >golang.o..</text>
</g>
<g >
<title>put_prev_entity (140,398 samples, 1.00%)</title><rect x="195.3" y="1829" width="11.8" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="198.26" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1093" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1103.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (368,343 samples, 2.64%)</title><rect x="380.3" y="1813" width="31.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="383.35" y="1823.5" >in..</text>
</g>
<g >
<title>vfs_write (876,666 samples, 6.27%)</title><rect x="518.5" y="1781" width="74.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="521.51" y="1791.5" >vfs_write</text>
</g>
<g >
<title>crypto/ecdh.(*x25519Curve).ecdh (507,466 samples, 3.63%)</title><rect x="455.1" y="1909" width="42.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="458.13" y="1919.5" >cryp..</text>
</g>
<g >
<title>runtime.send (452,693 samples, 3.24%)</title><rect x="416.9" y="1973" width="38.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="419.92" y="1983.5" >run..</text>
</g>
<g >
<title>golang.org/x/crypto/curve25519.x25519 (507,466 samples, 3.63%)</title><rect x="455.1" y="1941" width="42.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="458.13" y="1951.5" >gola..</text>
</g>
<g >
<title>clear_page_erms (797,147 samples, 5.70%)</title><rect x="1122.2" y="1717" width="67.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1125.22" y="1727.5" >clear_p..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*mux).Wait (485,142 samples, 3.47%)</title><rect x="337.4" y="2005" width="40.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="340.39" y="2015.5" >gol..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1749" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1759.5" ></text>
</g>
<g >
<title>schedule_tail (3,188 samples, 0.02%)</title><rect x="35.5" y="101" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="38.52" y="111.5" ></text>
</g>
<g >
<title>internal/poll.runtime_pollWait (64,849 samples, 0.46%)</title><rect x="411.4" y="1829" width="5.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="414.44" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="485" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="495.5" ></text>
</g>
<g >
<title>srso_alias_return_thunk (3,933 samples, 0.03%)</title><rect x="999.6" y="1637" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1002.58" y="1647.5" ></text>
</g>
<g >
<title>runtime.findRunnable (3,933 samples, 0.03%)</title><rect x="999.6" y="1925" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1002.58" y="1935.5" ></text>
</g>
<g >
<title>runtime.doInit1 (716,998 samples, 5.13%)</title><rect x="808.5" y="2021" width="60.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="811.50" y="2031.5" >runtim..</text>
</g>
<g >
<title>io.ReadAtLeast (64,849 samples, 0.46%)</title><rect x="411.4" y="1941" width="5.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="414.44" y="1951.5" ></text>
</g>
<g >
<title>__errno_location (667,898 samples, 4.78%)</title><rect x="36.1" y="2037" width="56.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="39.06" y="2047.5" >__err..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1541" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1551.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (876,666 samples, 6.27%)</title><rect x="518.5" y="1637" width="74.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="521.51" y="1647.5" >__dev_qu..</text>
</g>
<g >
<title>internal/poll.(*pollDesc).wait (64,849 samples, 0.46%)</title><rect x="411.4" y="1845" width="5.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="414.44" y="1855.5" ></text>
</g>
<g >
<title>__schedule (3,933 samples, 0.03%)</title><rect x="999.6" y="1733" width="0.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="1002.58" y="1743.5" ></text>
</g>
<g >
<title>mas_find (846,261 samples, 6.05%)</title><rect x="92.4" y="1589" width="71.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="95.44" y="1599.5" >mas_find</text>
</g>
<g >
<title>runtime.schedinit (797,147 samples, 5.70%)</title><rect x="1122.2" y="2037" width="67.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1125.22" y="2047.5" >runtime..</text>
</g>
<g >
<title>do_syscall_64 (846,261 samples, 6.05%)</title><rect x="92.4" y="1701" width="71.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="95.44" y="1711.5" >do_sysca..</text>
</g>
<g >
<title>runtime.(*scavengerState).park (155,915 samples, 1.12%)</title><rect x="657.9" y="2005" width="13.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="660.93" y="2015.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*transport).readPacket (433,192 samples, 3.10%)</title><rect x="380.3" y="1989" width="36.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="383.35" y="1999.5" >gol..</text>
</g>
<g >
<title>check_cfs_rq_runtime (140,398 samples, 1.00%)</title><rect x="195.3" y="1813" width="11.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="198.26" y="1823.5" ></text>
</g>
<g >
<title>do_syscall_64 (125,839 samples, 0.90%)</title><rect x="221.0" y="1941" width="10.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="224.02" y="1951.5" ></text>
</g>
<g >
<title>runtime.rt0_go.abi0 (1,445,969 samples, 10.34%)</title><rect x="1067.4" y="2053" width="122.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1070.45" y="2063.5" >runtime.rt0_go...</text>
</g>
<g >
<title>runtime.schedule (485,142 samples, 3.47%)</title><rect x="337.4" y="1909" width="40.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="340.39" y="1919.5" >run..</text>
</g>
<g >
<title>[libc.so.6] (3,244 samples, 0.02%)</title><rect x="35.2" y="101" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.24" y="111.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (2,064 samples, 0.01%)</title><rect x="35.1" y="1941" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="38.07" y="1951.5" ></text>
</g>
<g >
<title>merge_sched_in (2,307 samples, 0.02%)</title><rect x="35.8" y="85" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="38.78" y="95.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,793 samples, 0.04%)</title><rect x="1189.5" y="2021" width="0.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1192.51" y="2031.5" ></text>
</g>
<g >
<title>set_pte_range (729,436 samples, 5.22%)</title><rect x="924.6" y="1893" width="61.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="927.62" y="1903.5" >set_pt..</text>
</g>
<g >
<title>runtime.makechan (352,851 samples, 2.52%)</title><rect x="747.6" y="1909" width="29.8" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="750.62" y="1919.5" >ru..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1237" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1247.5" ></text>
</g>
<g >
<title>exc_page_fault (34,928 samples, 0.25%)</title><rect x="32.1" y="2021" width="3.0" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="35.12" y="2031.5" ></text>
</g>
<g >
<title>runtime.gopark (64,849 samples, 0.46%)</title><rect x="411.4" y="1797" width="5.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="414.44" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="2005" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="2015.5" ></text>
</g>
<g >
<title>runtime.send.goready.func1 (452,693 samples, 3.24%)</title><rect x="416.9" y="1941" width="38.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="419.92" y="1951.5" >run..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1893" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1903.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (774,847 samples, 5.54%)</title><rect x="592.5" y="1781" width="65.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="595.52" y="1791.5" >io.Read..</text>
</g>
<g >
<title>tcp_rbtree_insert (368,343 samples, 2.64%)</title><rect x="777.4" y="1573" width="31.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="780.40" y="1583.5" >tc..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="741" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="751.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*handshakeTransport).enterKeyExchange (750,814 samples, 5.37%)</title><rect x="455.1" y="2005" width="63.4" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="458.13" y="2015.5" >golang..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1653" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1663.5" ></text>
</g>
<g >
<title>__alloc_pages_noprof (12,426 samples, 0.09%)</title><rect x="32.7" y="1893" width="1.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="35.74" y="1903.5" ></text>
</g>
<g >
<title>perf_event_addr_filters_exec (5,033 samples, 0.04%)</title><rect x="1189.6" y="1893" width="0.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1192.58" y="1903.5" ></text>
</g>
<g >
<title>do_user_addr_fault (76,907 samples, 0.55%)</title><rect x="210.7" y="1925" width="6.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="213.74" y="1935.5" ></text>
</g>
<g >
<title>net.parseNSSConfFile (774,847 samples, 5.54%)</title><rect x="592.5" y="1829" width="65.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="595.52" y="1839.5" >net.par..</text>
</g>
<g >
<title>internal/cpu.doinit (797,147 samples, 5.70%)</title><rect x="1122.2" y="2005" width="67.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1125.22" y="2015.5" >interna..</text>
</g>
<g >
<title>runtime.ready (452,693 samples, 3.24%)</title><rect x="416.9" y="1925" width="38.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="419.92" y="1935.5" >run..</text>
</g>
<g >
<title>runtime.gopark (658,574 samples, 4.71%)</title><rect x="869.0" y="1973" width="55.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="872.03" y="1983.5" >runti..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*curve25519KeyPair).generate (243,348 samples, 1.74%)</title><rect x="498.0" y="1957" width="20.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="500.97" y="1967.5" ></text>
</g>
<g >
<title>load_elf_binary (40,913 samples, 0.29%)</title><rect x="163.9" y="1957" width="3.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="166.88" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="677" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="687.5" ></text>
</g>
<g >
<title>do_mmap (846,261 samples, 6.05%)</title><rect x="92.4" y="1653" width="71.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="95.44" y="1663.5" >do_mmap</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="437" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="447.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1013" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1023.5" ></text>
</g>
<g >
<title>__handle_mm_fault (648,822 samples, 4.64%)</title><rect x="1067.4" y="1877" width="54.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1070.45" y="1887.5" >__han..</text>
</g>
<g >
<title>runtime.mcall (485,142 samples, 3.47%)</title><rect x="337.4" y="1941" width="40.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="340.39" y="1951.5" >run..</text>
</g>
<g >
<title>runtime.notesleep (3,933 samples, 0.03%)</title><rect x="999.6" y="1893" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1002.58" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (368,343 samples, 2.64%)</title><rect x="380.3" y="1797" width="31.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="383.35" y="1807.5" >en..</text>
</g>
<g >
<title>net.(*TCPConn).Write (876,666 samples, 6.27%)</title><rect x="518.5" y="1941" width="74.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="521.51" y="1951.5" >net.(*TC..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1829" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1839.5" ></text>
</g>
<g >
<title>syscall.Syscall (774,847 samples, 5.54%)</title><rect x="592.5" y="1717" width="65.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="595.52" y="1727.5" >syscall..</text>
</g>
<g >
<title>_compound_head (799,986 samples, 5.72%)</title><rect x="231.6" y="1893" width="67.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="234.65" y="1903.5" >_compou..</text>
</g>
<g >
<title>srso_alias_safe_ret (3,933 samples, 0.03%)</title><rect x="999.6" y="1621" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1002.58" y="1631.5" ></text>
</g>
<g >
<title>folio_add_lru (774,847 samples, 5.54%)</title><rect x="592.5" y="1477" width="65.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="595.52" y="1487.5" >folio_a..</text>
</g>
<g >
<title>vm_mmap_pgoff (158,527 samples, 1.13%)</title><rect x="986.2" y="1605" width="13.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="989.20" y="1615.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,604 samples, 0.03%)</title><rect x="193.1" y="1925" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="196.07" y="1935.5" ></text>
</g>
<g >
<title>net.getSystemNSS (774,847 samples, 5.54%)</title><rect x="592.5" y="1909" width="65.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="595.52" y="1919.5" >net.get..</text>
</g>
<g >
<title>runtime.(*mcache).refill (158,527 samples, 1.13%)</title><rect x="986.2" y="1925" width="13.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="989.20" y="1935.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (797,147 samples, 5.70%)</title><rect x="1122.2" y="1941" width="67.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1125.22" y="1951.5" >runtime..</text>
</g>
<g >
<title>runtime.wakep (452,693 samples, 3.24%)</title><rect x="416.9" y="1909" width="38.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="419.92" y="1919.5" >run..</text>
</g>
<g >
<title>[libc.so.6] (846,261 samples, 6.05%)</title><rect x="92.4" y="2005" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="95.44" y="2015.5" >[libc.so..</text>
</g>
<g >
<title>runtime.mcall (64,849 samples, 0.46%)</title><rect x="411.4" y="1781" width="5.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="414.44" y="1791.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (158,527 samples, 1.13%)</title><rect x="986.2" y="1909" width="13.4" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="989.20" y="1919.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (64,849 samples, 0.46%)</title><rect x="411.4" y="1925" width="5.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="414.44" y="1935.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*transport).writePacket (876,666 samples, 6.27%)</title><rect x="518.5" y="1989" width="74.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="521.51" y="1999.5" >golang.o..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1925" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1781" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1791.5" ></text>
</g>
<g >
<title>do_syscall_64 (485,142 samples, 3.47%)</title><rect x="337.4" y="1829" width="40.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="340.39" y="1839.5" >do_..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1477" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1487.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (34,928 samples, 0.25%)</title><rect x="32.1" y="2037" width="3.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="35.12" y="2047.5" ></text>
</g>
<g >
<title>bprm_execve (40,913 samples, 0.29%)</title><rect x="163.9" y="1973" width="3.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="166.88" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1109" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,933 samples, 0.03%)</title><rect x="999.6" y="1861" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1002.58" y="1871.5" ></text>
</g>
<g >
<title>x64_sys_call (799,986 samples, 5.72%)</title><rect x="231.6" y="2021" width="67.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="234.65" y="2031.5" >x64_sys..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1813" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (6,432 samples, 0.05%)</title><rect x="35.2" y="277" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="287.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (3,933 samples, 0.03%)</title><rect x="999.6" y="1701" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1002.58" y="1711.5" ></text>
</g>
<g >
<title>math/big.(*Int).scan (716,998 samples, 5.13%)</title><rect x="808.5" y="1909" width="60.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="811.50" y="1919.5" >math/b..</text>
</g>
<g >
<title>perf_event_exec (5,793 samples, 0.04%)</title><rect x="1189.5" y="1925" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1192.51" y="1935.5" ></text>
</g>
<g >
<title>__vm_munmap (125,839 samples, 0.90%)</title><rect x="221.0" y="1909" width="10.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="224.02" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (876,666 samples, 6.27%)</title><rect x="518.5" y="1829" width="74.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="521.51" y="1839.5" >entry_SY..</text>
</g>
<g >
<title>tcp_event_new_data_sent (368,343 samples, 2.64%)</title><rect x="777.4" y="1589" width="31.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="780.40" y="1599.5" >tc..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="2021" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="2031.5" ></text>
</g>
<g >
<title>__schedule (485,142 samples, 3.47%)</title><rect x="337.4" y="1733" width="40.9" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="340.39" y="1743.5" >__s..</text>
</g>
<g >
<title>copy_page_to_iter (774,847 samples, 5.54%)</title><rect x="592.5" y="1605" width="65.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="595.52" y="1615.5" >copy_pa..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1733" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1743.5" ></text>
</g>
<g >
<title>do_epoll_wait (485,142 samples, 3.47%)</title><rect x="337.4" y="1781" width="40.9" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="340.39" y="1791.5" >do_..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1397" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1407.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (797,147 samples, 5.70%)</title><rect x="1122.2" y="1925" width="67.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1125.22" y="1935.5" >runtime..</text>
</g>
<g >
<title>mmap_region (846,261 samples, 6.05%)</title><rect x="92.4" y="1637" width="71.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="95.44" y="1647.5" >mmap_reg..</text>
</g>
<g >
<title>syscall.write (368,343 samples, 2.64%)</title><rect x="777.4" y="1781" width="31.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="780.40" y="1791.5" >sy..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1029" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1039.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,244 samples, 0.02%)</title><rect x="35.2" y="85" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.24" y="95.5" ></text>
</g>
<g >
<title>internal/singleflight.(*Group).doCall (774,847 samples, 5.54%)</title><rect x="592.5" y="2021" width="65.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="595.52" y="2031.5" >interna..</text>
</g>
<g >
<title>__handle_mm_fault (774,847 samples, 5.54%)</title><rect x="592.5" y="1509" width="65.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="595.52" y="1519.5" >__handl..</text>
</g>
<g >
<title>runtime.gopark (155,915 samples, 1.12%)</title><rect x="657.9" y="1989" width="13.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="660.93" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (158,527 samples, 1.13%)</title><rect x="986.2" y="1621" width="13.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="989.20" y="1631.5" ></text>
</g>
<g >
<title>__schedule (140,398 samples, 1.00%)</title><rect x="195.3" y="1861" width="11.8" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="198.26" y="1871.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*mux).newChannel (352,851 samples, 2.52%)</title><rect x="747.6" y="1925" width="29.8" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="750.62" y="1935.5" >go..</text>
</g>
<g >
<title>runtime.gcenable (658,574 samples, 4.71%)</title><rect x="869.0" y="2021" width="55.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="872.03" y="2031.5" >runti..</text>
</g>
<g >
<title>main.main.func1 (721,194 samples, 5.16%)</title><rect x="747.6" y="2005" width="60.9" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="750.62" y="2015.5" >main.m..</text>
</g>
<g >
<title>do_group_exit (799,986 samples, 5.72%)</title><rect x="231.6" y="1989" width="67.6" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="234.65" y="1999.5" >do_grou..</text>
</g>
<g >
<title>[libc.so.6] (3,188 samples, 0.02%)</title><rect x="35.5" y="149" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.52" y="159.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (799,986 samples, 5.72%)</title><rect x="231.6" y="2005" width="67.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="234.65" y="2015.5" >__x64_s..</text>
</g>
<g >
<title>runtime.(*mheap).alloc (158,527 samples, 1.13%)</title><rect x="986.2" y="1877" width="13.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="989.20" y="1887.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (716,998 samples, 5.13%)</title><rect x="808.5" y="1989" width="60.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="811.50" y="1999.5" >sync.(..</text>
</g>
<g >
<title>do_user_addr_fault (797,147 samples, 5.70%)</title><rect x="1122.2" y="1845" width="67.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1125.22" y="1855.5" >do_user..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="901" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="911.5" ></text>
</g>
<g >
<title>__munmap (125,839 samples, 0.90%)</title><rect x="221.0" y="1973" width="10.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="224.02" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1909" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1919.5" ></text>
</g>
<g >
<title>runtime.args.abi0 (648,822 samples, 4.64%)</title><rect x="1067.4" y="2037" width="54.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1070.45" y="2047.5" >runti..</text>
</g>
<g >
<title>runtime.(*mcentral).grow (158,527 samples, 1.13%)</title><rect x="986.2" y="1893" width="13.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="989.20" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1125" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1135.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="981" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="991.5" ></text>
</g>
<g >
<title>syscall.Syscall (368,343 samples, 2.64%)</title><rect x="777.4" y="1765" width="31.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="780.40" y="1775.5" >sy..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*gcmCipher).readCipherPacket (368,343 samples, 2.64%)</title><rect x="380.3" y="1957" width="31.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="383.35" y="1967.5" >go..</text>
</g>
<g >
<title>folio_batch_move_lru (774,847 samples, 5.54%)</title><rect x="592.5" y="1461" width="65.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="595.52" y="1471.5" >folio_b..</text>
</g>
<g >
<title>io.ReadAtLeast (368,343 samples, 2.64%)</title><rect x="380.3" y="1941" width="31.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="383.35" y="1951.5" >io..</text>
</g>
<g >
<title>folio_mapping (58,542 samples, 0.42%)</title><rect x="226.7" y="1781" width="4.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="229.70" y="1791.5" ></text>
</g>
<g >
<title>bufio.(*Writer).Flush (368,343 samples, 2.64%)</title><rect x="777.4" y="1861" width="31.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="780.40" y="1871.5" >bu..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="341" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (648,822 samples, 4.64%)</title><rect x="1067.4" y="1893" width="54.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1070.45" y="1903.5" >handl..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1573" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1583.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/curve25519.ScalarBaseMult (243,348 samples, 1.74%)</title><rect x="498.0" y="1941" width="20.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="500.97" y="1951.5" ></text>
</g>
<g >
<title>exc_page_fault (729,436 samples, 5.22%)</title><rect x="924.6" y="1989" width="61.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="927.62" y="1999.5" >exc_pa..</text>
</g>
<g >
<title>[unknown] (3,244 samples, 0.02%)</title><rect x="35.2" y="197" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="207.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (42,931 samples, 0.31%)</title><rect x="207.1" y="1909" width="3.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="210.11" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="853" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="863.5" ></text>
</g>
<g >
<title>net.(*netFD).Read (64,849 samples, 0.46%)</title><rect x="411.4" y="1877" width="5.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="414.44" y="1887.5" ></text>
</g>
<g >
<title>all (13,978,095 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/curve25519.ScalarMult (507,466 samples, 3.63%)</title><rect x="455.1" y="1957" width="42.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="458.13" y="1967.5" >gola..</text>
</g>
<g >
<title>schedule_tail (2,307 samples, 0.02%)</title><rect x="35.8" y="165" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="38.78" y="175.5" ></text>
</g>
<g >
<title>runtime.mallocgc (352,851 samples, 2.52%)</title><rect x="747.6" y="1893" width="29.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="750.62" y="1903.5" >ru..</text>
</g>
<g >
<title>runtime.schedule (155,915 samples, 1.12%)</title><rect x="657.9" y="1941" width="13.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="660.93" y="1951.5" ></text>
</g>
<g >
<title>runtime.persistentalloc (158,527 samples, 1.13%)</title><rect x="986.2" y="1781" width="13.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="989.20" y="1791.5" ></text>
</g>
<g >
<title>ret_from_fork (2,307 samples, 0.02%)</title><rect x="35.8" y="181" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="38.78" y="191.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (7,848,094 samples, 56.15%)</title><rect x="337.4" y="2053" width="662.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="340.39" y="2063.5" >runtime.goexit.abi0</text>
</g>
<g >
<title>put_prev_task_fair (140,398 samples, 1.00%)</title><rect x="195.3" y="1845" width="11.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="198.26" y="1855.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (797,147 samples, 5.70%)</title><rect x="1122.2" y="1877" width="67.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1125.22" y="1887.5" >asm_exc..</text>
</g>
<g >
<title>exit_mmap (799,986 samples, 5.72%)</title><rect x="231.6" y="1941" width="67.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="234.65" y="1951.5" >exit_mmap</text>
</g>
<g >
<title>psi_task_switch (485,142 samples, 3.47%)</title><rect x="337.4" y="1717" width="40.9" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="340.39" y="1727.5" >psi..</text>
</g>
<g >
<title>do_mprotect_pkey (44,934 samples, 0.32%)</title><rect x="217.2" y="1909" width="3.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="220.23" y="1919.5" ></text>
</g>
<g >
<title>current_objcg_update (12,426 samples, 0.09%)</title><rect x="32.7" y="1861" width="1.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="35.74" y="1871.5" ></text>
</g>
<g >
<title>sch_direct_xmit (876,666 samples, 6.27%)</title><rect x="518.5" y="1621" width="74.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="521.51" y="1631.5" >sch_dire..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1205" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1215.5" ></text>
</g>
<g >
<title>merge_sched_in (3,933 samples, 0.03%)</title><rect x="999.6" y="1653" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1002.58" y="1663.5" ></text>
</g>
<g >
<title>runtime.mstart1 (471,211 samples, 3.37%)</title><rect x="167.3" y="2005" width="39.8" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="170.33" y="2015.5" >run..</text>
</g>
<g >
<title>[libc.so.6] (12,484 samples, 0.09%)</title><rect x="31.1" y="2037" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="34.06" y="2047.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (2,307 samples, 0.02%)</title><rect x="35.8" y="197" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="38.78" y="207.5" ></text>
</g>
<g >
<title>unmap_region.constprop.0 (58,542 samples, 0.42%)</title><rect x="226.7" y="1861" width="4.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="229.70" y="1871.5" ></text>
</g>
<g >
<title>runtime.bgscavenge (155,915 samples, 1.12%)</title><rect x="657.9" y="2021" width="13.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="660.93" y="2031.5" ></text>
</g>
<g >
<title>runtime.netpoll (64,849 samples, 0.46%)</title><rect x="411.4" y="1717" width="5.5" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="414.44" y="1727.5" ></text>
</g>
<g >
<title>set_ptes.isra.0 (648,822 samples, 4.64%)</title><rect x="1067.4" y="1829" width="54.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1070.45" y="1839.5" >set_p..</text>
</g>
<g >
<title>perf_event_mmap (158,527 samples, 1.13%)</title><rect x="986.2" y="1557" width="13.4" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="989.20" y="1567.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="773" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="783.5" ></text>
</g>
<g >
<title>bprm_execve (5,793 samples, 0.04%)</title><rect x="1189.5" y="1973" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1192.51" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,244 samples, 0.02%)</title><rect x="35.2" y="53" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="38.24" y="63.5" ></text>
</g>
<g >
<title>net.(*Resolver).lookupIP-fm (774,847 samples, 5.54%)</title><rect x="592.5" y="1973" width="65.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="595.52" y="1983.5" >net.(*R..</text>
</g>
<g >
<title>[libc.so.6] (2,307 samples, 0.02%)</title><rect x="35.8" y="245" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.78" y="255.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="949" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="959.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (368,343 samples, 2.64%)</title><rect x="777.4" y="1749" width="31.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="780.40" y="1759.5" >in..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1861" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1871.5" ></text>
</g>
<g >
<title>lru_add_drain (58,542 samples, 0.42%)</title><rect x="226.7" y="1845" width="4.9" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="229.70" y="1855.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (249,529 samples, 1.79%)</title><rect x="10.0" y="2005" width="21.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="13.00" y="2015.5" ></text>
</g>
<g >
<title>runtime.newstack (799,986 samples, 5.72%)</title><rect x="999.9" y="2037" width="67.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1002.91" y="2047.5" >runtime..</text>
</g>
<g >
<title>runtime.mallocgc (158,527 samples, 1.13%)</title><rect x="986.2" y="1957" width="13.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="989.20" y="1967.5" ></text>
</g>
<g >
<title>[libc.so.6] (846,261 samples, 6.05%)</title><rect x="92.4" y="1989" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="95.44" y="1999.5" >[libc.so..</text>
</g>
<g >
<title>vfs_read (368,343 samples, 2.64%)</title><rect x="380.3" y="1749" width="31.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="383.35" y="1759.5" >vf..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="869" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="879.5" ></text>
</g>
<g >
<title>runtime.persistentalloc1 (158,527 samples, 1.13%)</title><rect x="986.2" y="1749" width="13.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="989.20" y="1759.5" ></text>
</g>
<g >
<title>runtime.persistentalloc.func1 (158,527 samples, 1.13%)</title><rect x="986.2" y="1765" width="13.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="989.20" y="1775.5" ></text>
</g>
<g >
<title>__mmap (42,931 samples, 0.31%)</title><rect x="207.1" y="1957" width="3.6" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="210.11" y="1967.5" ></text>
</g>
<g >
<title>math/big.nat.scan (716,998 samples, 5.13%)</title><rect x="808.5" y="1893" width="60.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="811.50" y="1903.5" >math/b..</text>
</g>
<g >
<title>futex_wait (3,604 samples, 0.03%)</title><rect x="193.1" y="1861" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="196.07" y="1871.5" ></text>
</g>
<g >
<title>runtime.sysAllocOS (158,527 samples, 1.13%)</title><rect x="986.2" y="1717" width="13.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="989.20" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="373" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="383.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (2,064 samples, 0.01%)</title><rect x="35.1" y="1957" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="38.07" y="1967.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (774,847 samples, 5.54%)</title><rect x="592.5" y="1877" width="65.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="595.52" y="1887.5" >sync.(*..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.NewClient.func1 (485,142 samples, 3.47%)</title><rect x="337.4" y="2037" width="40.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="340.39" y="2047.5" >gol..</text>
</g>
<g >
<title>do_mmap (158,527 samples, 1.13%)</title><rect x="986.2" y="1589" width="13.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="989.20" y="1599.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (876,666 samples, 6.27%)</title><rect x="518.5" y="1669" width="74.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="521.51" y="1679.5" >__ip_que..</text>
</g>
<g >
<title>inet_recvmsg (368,343 samples, 2.64%)</title><rect x="380.3" y="1701" width="31.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="383.35" y="1711.5" >in..</text>
</g>
<g >
<title>runtime.findRunnable (155,915 samples, 1.12%)</title><rect x="657.9" y="1925" width="13.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="660.93" y="1935.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (3,244 samples, 0.02%)</title><rect x="35.2" y="69" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="38.24" y="79.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1829" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1839.5" >[ld-linu..</text>
</g>
<g >
<title>irq_enter_rcu (3,188 samples, 0.02%)</title><rect x="35.5" y="37" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="38.52" y="47.5" ></text>
</g>
<g >
<title>[unknown] (5,793 samples, 0.04%)</title><rect x="1189.5" y="2053" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1192.51" y="2063.5" ></text>
</g>
<g >
<title>crypto/ecdh.(*PrivateKey).ECDH (507,466 samples, 3.63%)</title><rect x="455.1" y="1925" width="42.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="458.13" y="1935.5" >cryp..</text>
</g>
<g >
<title>runtime.args (648,822 samples, 4.64%)</title><rect x="1067.4" y="2021" width="54.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1070.45" y="2031.5" >runti..</text>
</g>
<g >
<title>hrtimer_cancel (3,065 samples, 0.02%)</title><rect x="193.1" y="1845" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="196.11" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1061" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1071.5" ></text>
</g>
<g >
<title>internal/cpu.Initialize (797,147 samples, 5.70%)</title><rect x="1122.2" y="2021" width="67.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1125.22" y="2031.5" >interna..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="821" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="831.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="965" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="975.5" ></text>
</g>
<g >
<title>[unknown] (9,675 samples, 0.07%)</title><rect x="35.2" y="2037" width="0.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1637" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1647.5" ></text>
</g>
<g >
<title>ret_from_fork (2,064 samples, 0.01%)</title><rect x="35.1" y="2005" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="38.07" y="2015.5" ></text>
</g>
<g >
<title>runtime.chansend1 (452,693 samples, 3.24%)</title><rect x="416.9" y="2005" width="38.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="419.92" y="2015.5" >run..</text>
</g>
<g >
<title>__memcg_slab_post_alloc_hook (76,907 samples, 0.55%)</title><rect x="210.7" y="1813" width="6.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="213.74" y="1823.5" ></text>
</g>
<g >
<title>__x64_sys_execve (5,793 samples, 0.04%)</title><rect x="1189.5" y="2005" width="0.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1192.51" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="565" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="575.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1045" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1055.5" ></text>
</g>
<g >
<title>do_huge_pmd_anonymous_page (797,147 samples, 5.70%)</title><rect x="1122.2" y="1797" width="67.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="1125.22" y="1807.5" >do_huge..</text>
</g>
<g >
<title>do_syscall_64 (368,343 samples, 2.64%)</title><rect x="380.3" y="1781" width="31.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="383.35" y="1791.5" >do..</text>
</g>
<g >
<title>runtime.(*stkframe).getStackMap (799,986 samples, 5.72%)</title><rect x="999.9" y="1989" width="67.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1002.91" y="1999.5" >runtime..</text>
</g>
<g >
<title>sync.runtime_notifyListWait (485,142 samples, 3.47%)</title><rect x="337.4" y="1973" width="40.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="340.39" y="1983.5" >syn..</text>
</g>
<g >
<title>runtime.systemstack.abi0 (158,527 samples, 1.13%)</title><rect x="986.2" y="1861" width="13.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="989.20" y="1871.5" ></text>
</g>
<g >
<title>net.(*sysDialer).dialParallel (906,491 samples, 6.49%)</title><rect x="671.1" y="1957" width="76.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="674.09" y="1967.5" >net.(*sy..</text>
</g>
<g >
<title>syscall.write (876,666 samples, 6.27%)</title><rect x="518.5" y="1877" width="74.0" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="521.51" y="1887.5" >syscall...</text>
</g>
<g >
<title>cfree (290,611 samples, 2.08%)</title><rect x="207.1" y="2021" width="24.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="210.11" y="2031.5" >c..</text>
</g>
<g >
<title>__x64_sys_futex (3,933 samples, 0.03%)</title><rect x="999.6" y="1829" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1002.58" y="1839.5" ></text>
</g>
<g >
<title>net.(*Resolver).lookupIP (774,847 samples, 5.54%)</title><rect x="592.5" y="1957" width="65.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="595.52" y="1967.5" >net.(*R..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="581" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="591.5" ></text>
</g>
<g >
<title>net.(*TCPConn).Write (368,343 samples, 2.64%)</title><rect x="777.4" y="1845" width="31.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="780.40" y="1855.5" >ne..</text>
</g>
<g >
<title>__x64_sys_execve (40,913 samples, 0.29%)</title><rect x="163.9" y="2005" width="3.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="166.88" y="2015.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.Dial (906,491 samples, 6.49%)</title><rect x="671.1" y="2005" width="76.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="674.09" y="2015.5" >golang.o..</text>
</g>
<g >
<title>exc_page_fault (76,907 samples, 0.55%)</title><rect x="210.7" y="1941" width="6.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="213.74" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1317" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1327.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (797,147 samples, 5.70%)</title><rect x="1122.2" y="1893" width="67.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1125.22" y="1903.5" >runtime..</text>
</g>
<g >
<title>runtime.park_m (3,933 samples, 0.03%)</title><rect x="999.6" y="1957" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1002.58" y="1967.5" ></text>
</g>
<g >
<title>__alloc_pages_noprof (797,147 samples, 5.70%)</title><rect x="1122.2" y="1749" width="67.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1125.22" y="1759.5" >__alloc..</text>
</g>
<g >
<title>[unknown] (6,432 samples, 0.05%)</title><rect x="35.2" y="245" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="255.5" ></text>
</g>
<g >
<title>ctx_groups_sched_in (2,307 samples, 0.02%)</title><rect x="35.8" y="117" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="38.78" y="127.5" ></text>
</g>
<g >
<title>runtime/cgo (290,611 samples, 2.08%)</title><rect x="207.1" y="2037" width="24.5" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="210.11" y="2047.5" >r..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1733" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1743.5" >[ld-linu..</text>
</g>
<g >
<title>crypto/ecdh.(*PrivateKey).PublicKey.func1 (243,348 samples, 1.74%)</title><rect x="498.0" y="1893" width="20.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="500.97" y="1903.5" ></text>
</g>
<g >
<title>net.DialTimeout (906,491 samples, 6.49%)</title><rect x="671.1" y="1989" width="76.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="674.09" y="1999.5" >net.Dial..</text>
</g>
<g >
<title>vma_alloc_folio_noprof (797,147 samples, 5.70%)</title><rect x="1122.2" y="1781" width="67.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1125.22" y="1791.5" >vma_all..</text>
</g>
<g >
<title>do_execveat_common.isra.0 (40,913 samples, 0.29%)</title><rect x="163.9" y="1989" width="3.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="166.88" y="1999.5" ></text>
</g>
<g >
<title>alloc_pages_mpol_noprof (797,147 samples, 5.70%)</title><rect x="1122.2" y="1765" width="67.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1125.22" y="1775.5" >alloc_p..</text>
</g>
<g >
<title>__vdso_clock_gettime (304,855 samples, 2.18%)</title><rect x="167.3" y="1957" width="25.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="170.33" y="1967.5" >_..</text>
</g>
<g >
<title>asm_sysvec_call_function_single (3,188 samples, 0.02%)</title><rect x="35.5" y="69" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="38.52" y="79.5" ></text>
</g>
<g >
<title>unmap_vmas (799,986 samples, 5.72%)</title><rect x="231.6" y="1925" width="67.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="234.65" y="1935.5" >unmap_v..</text>
</g>
<g >
<title>sync.init.0 (729,436 samples, 5.22%)</title><rect x="924.6" y="2021" width="61.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="927.62" y="2031.5" >sync.i..</text>
</g>
<g >
<title>do_syscall_64 (799,986 samples, 5.72%)</title><rect x="231.6" y="2037" width="67.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="234.65" y="2047.5" >do_sysc..</text>
</g>
<g >
<title>[libc.so.6] (2,307 samples, 0.02%)</title><rect x="35.8" y="213" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.78" y="223.5" ></text>
</g>
<g >
<title>runtime.chanrecv (658,574 samples, 4.71%)</title><rect x="869.0" y="1989" width="55.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="872.03" y="1999.5" >runti..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1845" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1855.5" ></text>
</g>
<g >
<title>ksys_write (368,343 samples, 2.64%)</title><rect x="777.4" y="1701" width="31.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="780.40" y="1711.5" >ks..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1221" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1231.5" ></text>
</g>
<g >
<title>net.init.func1 (774,847 samples, 5.54%)</title><rect x="592.5" y="1989" width="65.4" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="595.52" y="1999.5" >net.ini..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*Client).NewSession (721,194 samples, 5.16%)</title><rect x="747.6" y="1989" width="60.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="750.62" y="1999.5" >golang..</text>
</g>
<g >
<title>up_write (40,913 samples, 0.29%)</title><rect x="163.9" y="1925" width="3.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="166.88" y="1935.5" ></text>
</g>
<g >
<title>crypto/ecdh.(*x25519Curve).privateKeyToPublicKey (243,348 samples, 1.74%)</title><rect x="498.0" y="1877" width="20.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="500.97" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="757" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="767.5" ></text>
</g>
<g >
<title>psi_flags_change (485,142 samples, 3.47%)</title><rect x="337.4" y="1701" width="40.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="340.39" y="1711.5" >psi..</text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (774,847 samples, 5.54%)</title><rect x="592.5" y="1701" width="65.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="595.52" y="1711.5" >interna..</text>
</g>
<g >
<title>bufio.(*Writer).Flush (876,666 samples, 6.27%)</title><rect x="518.5" y="1957" width="74.0" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="521.51" y="1967.5" >bufio.(*..</text>
</g>
<g >
<title>tcp_sendmsg (876,666 samples, 6.27%)</title><rect x="518.5" y="1749" width="74.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="521.51" y="1759.5" >tcp_send..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1957" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1967.5" ></text>
</g>
<g >
<title>runtime.notetsleep (3,604 samples, 0.03%)</title><rect x="193.1" y="1973" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="196.07" y="1983.5" ></text>
</g>
<g >
<title>runtime.chansend (452,693 samples, 3.24%)</title><rect x="416.9" y="1989" width="38.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="419.92" y="1999.5" >run..</text>
</g>
<g >
<title>_dl_catch_exception (846,261 samples, 6.05%)</title><rect x="92.4" y="1797" width="71.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="95.44" y="1807.5" >_dl_catc..</text>
</g>
<g >
<title>runtime.findRunnable (485,142 samples, 3.47%)</title><rect x="337.4" y="1893" width="40.9" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="340.39" y="1903.5" >run..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (249,529 samples, 1.79%)</title><rect x="10.0" y="2021" width="21.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="13.00" y="2031.5" ></text>
</g>
<g >
<title>mmap_region (158,527 samples, 1.13%)</title><rect x="986.2" y="1573" width="13.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="989.20" y="1583.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (44,934 samples, 0.32%)</title><rect x="217.2" y="1957" width="3.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="220.23" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (485,142 samples, 3.47%)</title><rect x="337.4" y="1845" width="40.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="340.39" y="1855.5" >ent..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1557" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1567.5" ></text>
</g>
<g >
<title>sock_write_iter (368,343 samples, 2.64%)</title><rect x="777.4" y="1669" width="31.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="780.40" y="1679.5" >so..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="405" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="415.5" ></text>
</g>
<g >
<title>hrtimer_active (3,065 samples, 0.02%)</title><rect x="193.1" y="1829" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="196.11" y="1839.5" ></text>
</g>
<g >
<title>lru_add_fn (774,847 samples, 5.54%)</title><rect x="592.5" y="1445" width="65.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="595.52" y="1455.5" >lru_add..</text>
</g>
<g >
<title>net.(*nsswitchConfig).init (774,847 samples, 5.54%)</title><rect x="592.5" y="1845" width="65.4" height="15.0" fill="rgb(228,108,26)" rx="2" ry="2" />
<text x="595.52" y="1855.5" >net.(*n..</text>
</g>
<g >
<title>[libc.so.6] (846,261 samples, 6.05%)</title><rect x="92.4" y="1973" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="95.44" y="1983.5" >[libc.so..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="885" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="895.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,913 samples, 0.29%)</title><rect x="163.9" y="2021" width="3.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="166.88" y="2031.5" ></text>
</g>
<g >
<title>crypto/ecdh.x25519ScalarMult (243,348 samples, 1.74%)</title><rect x="498.0" y="1861" width="20.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="500.97" y="1871.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (876,666 samples, 6.27%)</title><rect x="518.5" y="1685" width="74.0" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="521.51" y="1695.5" >__tcp_tr..</text>
</g>
<g >
<title>__rcu_read_lock (12,426 samples, 0.09%)</title><rect x="32.7" y="1845" width="1.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="35.74" y="1855.5" ></text>
</g>
<g >
<title>_dl_catch_exception (846,261 samples, 6.05%)</title><rect x="92.4" y="1845" width="71.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="95.44" y="1855.5" >_dl_catc..</text>
</g>
<g >
<title>perf-exec (5,793 samples, 0.04%)</title><rect x="1189.5" y="2069" width="0.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1192.51" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="645" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="655.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="501" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="511.5" ></text>
</g>
<g >
<title>do_fault (648,822 samples, 4.64%)</title><rect x="1067.4" y="1861" width="54.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1070.45" y="1871.5" >do_fa..</text>
</g>
<g >
<title>__pte_alloc (20,590 samples, 0.15%)</title><rect x="32.7" y="1941" width="1.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="35.74" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,604 samples, 0.03%)</title><rect x="193.1" y="1909" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="196.07" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="389" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="399.5" ></text>
</g>
<g >
<title>runtime.newobject (158,527 samples, 1.13%)</title><rect x="986.2" y="1973" width="13.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="989.20" y="1983.5" ></text>
</g>
<g >
<title>__futex_wait (3,933 samples, 0.03%)</title><rect x="999.6" y="1781" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1002.58" y="1791.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (64,849 samples, 0.46%)</title><rect x="411.4" y="1861" width="5.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="414.44" y="1871.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*connection).OpenChannel (721,194 samples, 5.16%)</title><rect x="747.6" y="1973" width="60.9" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="750.62" y="1983.5" >golang..</text>
</g>
<g >
<title>do_vmi_munmap (846,261 samples, 6.05%)</title><rect x="92.4" y="1621" width="71.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="95.44" y="1631.5" >do_vmi_m..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1861" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1871.5" >[ld-linu..</text>
</g>
<g >
<title>ksys_read (368,343 samples, 2.64%)</title><rect x="380.3" y="1765" width="31.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="383.35" y="1775.5" >ks..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1269" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1279.5" ></text>
</g>
<g >
<title>schedule (3,933 samples, 0.03%)</title><rect x="999.6" y="1749" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1002.58" y="1759.5" ></text>
</g>
<g >
<title>do_exit (799,986 samples, 5.72%)</title><rect x="231.6" y="1973" width="67.6" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text x="234.65" y="1983.5" >do_exit</text>
</g>
<g >
<title>__handle_mm_fault (729,436 samples, 5.22%)</title><rect x="924.6" y="1941" width="61.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="927.62" y="1951.5" >__hand..</text>
</g>
<g >
<title>tcp_recvmsg_locked (368,343 samples, 2.64%)</title><rect x="380.3" y="1669" width="31.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="383.35" y="1679.5" >tc..</text>
</g>
<g >
<title>[libc.so.6] (2,064 samples, 0.01%)</title><rect x="35.1" y="2037" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.07" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1717" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1727.5" ></text>
</g>
<g >
<title>runtime.adjustframe (799,986 samples, 5.72%)</title><rect x="999.9" y="2005" width="67.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1002.91" y="2015.5" >runtime..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1413" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1423.5" ></text>
</g>
<g >
<title>do_anonymous_page (20,590 samples, 0.15%)</title><rect x="32.7" y="1957" width="1.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="35.74" y="1967.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (155,915 samples, 1.12%)</title><rect x="657.9" y="1877" width="13.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="660.93" y="1887.5" ></text>
</g>
<g >
<title>sock_recvmsg (368,343 samples, 2.64%)</title><rect x="380.3" y="1717" width="31.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="383.35" y="1727.5" >so..</text>
</g>
<g >
<title>do_syscall_64 (876,666 samples, 6.27%)</title><rect x="518.5" y="1813" width="74.0" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="521.51" y="1823.5" >do_sysca..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*mux).sendMessage (368,343 samples, 2.64%)</title><rect x="777.4" y="1925" width="31.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="780.40" y="1935.5" >go..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1173" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1183.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="549" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="559.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (3,188 samples, 0.02%)</title><rect x="35.5" y="133" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="38.52" y="143.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (2,064 samples, 0.01%)</title><rect x="35.1" y="1925" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="38.07" y="1935.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (162,752 samples, 1.16%)</title><rect x="193.4" y="1973" width="13.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="196.37" y="1983.5" ></text>
</g>
<g >
<title>runtime.findRunnable (64,849 samples, 0.46%)</title><rect x="411.4" y="1733" width="5.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="414.44" y="1743.5" ></text>
</g>
<g >
<title>runtime.mcall (155,915 samples, 1.12%)</title><rect x="657.9" y="1973" width="13.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="660.93" y="1983.5" ></text>
</g>
<g >
<title>unmap_page_range (799,986 samples, 5.72%)</title><rect x="231.6" y="1909" width="67.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="234.65" y="1919.5" >unmap_p..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="629" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="639.5" ></text>
</g>
<g >
<title>net.(*nsswitchConfig).tryUpdate (774,847 samples, 5.54%)</title><rect x="592.5" y="1893" width="65.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="595.52" y="1903.5" >net.(*n..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1893" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1903.5" >[ld-linu..</text>
</g>
<g >
<title>do_epoll_pwait.part.0 (485,142 samples, 3.47%)</title><rect x="337.4" y="1797" width="40.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="340.39" y="1807.5" >do_..</text>
</g>
<g >
<title>[libc.so.6] (12,484 samples, 0.09%)</title><rect x="31.1" y="2005" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="34.06" y="2015.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (125,839 samples, 0.90%)</title><rect x="221.0" y="1925" width="10.6" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="224.02" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (162,752 samples, 1.16%)</title><rect x="193.4" y="1957" width="13.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="196.37" y="1967.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,188 samples, 0.02%)</title><rect x="35.5" y="165" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.52" y="175.5" ></text>
</g>
<g >
<title>runtime.stopm (3,933 samples, 0.03%)</title><rect x="999.6" y="1909" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1002.58" y="1919.5" ></text>
</g>
<g >
<title>mmap_region (42,931 samples, 0.31%)</title><rect x="207.1" y="1877" width="3.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="210.11" y="1887.5" ></text>
</g>
<g >
<title>syscall.read (774,847 samples, 5.54%)</title><rect x="592.5" y="1733" width="65.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="595.52" y="1743.5" >syscall..</text>
</g>
<g >
<title>_cgo_04fbb8f65a5f_C2func_getaddrinfo (846,261 samples, 6.05%)</title><rect x="92.4" y="2037" width="71.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="95.44" y="2047.5" >_cgo_04f..</text>
</g>
<g >
<title>futex_wait (3,933 samples, 0.03%)</title><rect x="999.6" y="1797" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1002.58" y="1807.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (774,847 samples, 5.54%)</title><rect x="592.5" y="1429" width="65.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="595.52" y="1439.5" >lru_gen..</text>
</g>
<g >
<title>asm_exc_page_fault (774,847 samples, 5.54%)</title><rect x="592.5" y="1573" width="65.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="595.52" y="1583.5" >asm_exc..</text>
</g>
<g >
<title>crypto/internal/edwards25519/field.(*Element).carryPropagateGeneric (243,348 samples, 1.74%)</title><rect x="498.0" y="1845" width="20.5" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="500.97" y="1855.5" ></text>
</g>
<g >
<title>net.(*file).readLine (774,847 samples, 5.54%)</title><rect x="592.5" y="1797" width="65.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="595.52" y="1807.5" >net.(*f..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1141" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1151.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1285" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1295.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (471,211 samples, 3.37%)</title><rect x="167.3" y="2037" width="39.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="170.33" y="2047.5" >run..</text>
</g>
<g >
<title>runtime.newobject (797,147 samples, 5.70%)</title><rect x="1122.2" y="1989" width="67.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1125.22" y="1999.5" >runtime..</text>
</g>
<g >
<title>[unknown] (6,432 samples, 0.05%)</title><rect x="35.2" y="229" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="239.5" ></text>
</g>
<g >
<title>runtime.unique_runtime_registerUniqueMapCleanup.gowrap1 (162,460 samples, 1.16%)</title><rect x="986.2" y="2037" width="13.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="989.20" y="2047.5" ></text>
</g>
<g >
<title>do_nanosleep (162,752 samples, 1.16%)</title><rect x="193.4" y="1893" width="13.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="196.37" y="1903.5" ></text>
</g>
<g >
<title>handle_mm_fault (774,847 samples, 5.54%)</title><rect x="592.5" y="1525" width="65.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="595.52" y="1535.5" >handle_..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (42,931 samples, 0.31%)</title><rect x="207.1" y="1941" width="3.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="210.11" y="1951.5" ></text>
</g>
<g >
<title>sync.(*Cond).Wait (485,142 samples, 3.47%)</title><rect x="337.4" y="1989" width="40.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="340.39" y="1999.5" >syn..</text>
</g>
<g >
<title>x_cgo_mmap (158,527 samples, 1.13%)</title><rect x="986.2" y="1669" width="13.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="989.20" y="1679.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,913 samples, 0.29%)</title><rect x="163.9" y="2037" width="3.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="166.88" y="2047.5" ></text>
</g>
<g >
<title>access_error (7,391 samples, 0.05%)</title><rect x="32.1" y="1989" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="35.12" y="1999.5" ></text>
</g>
<g >
<title>runtime.(*mspan).writeHeapBitsSmall (352,851 samples, 2.52%)</title><rect x="747.6" y="1861" width="29.8" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="750.62" y="1871.5" >ru..</text>
</g>
<g >
<title>schedule_tail (2,064 samples, 0.01%)</title><rect x="35.1" y="1989" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="38.07" y="1999.5" ></text>
</g>
<g >
<title>_dl_catch_exception (846,261 samples, 6.05%)</title><rect x="92.4" y="1925" width="71.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="95.44" y="1935.5" >_dl_catc..</text>
</g>
<g >
<title>runtime.gopark (3,933 samples, 0.03%)</title><rect x="999.6" y="1989" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1002.58" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (368,343 samples, 2.64%)</title><rect x="777.4" y="1717" width="31.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="780.40" y="1727.5" >do..</text>
</g>
<g >
<title>lru_add_drain_cpu (58,542 samples, 0.42%)</title><rect x="226.7" y="1829" width="4.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="229.70" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1189" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1199.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="533" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="543.5" ></text>
</g>
<g >
<title>runtime.park_m (658,574 samples, 4.71%)</title><rect x="869.0" y="1941" width="55.6" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="872.03" y="1951.5" >runti..</text>
</g>
<g >
<title>runtime.main (3,732,693 samples, 26.70%)</title><rect x="671.1" y="2037" width="315.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="674.09" y="2047.5" >runtime.main</text>
</g>
<g >
<title>net.(*sysDialer).doDialTCPProto (906,491 samples, 6.49%)</title><rect x="671.1" y="1893" width="76.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="674.09" y="1903.5" >net.(*sy..</text>
</g>
<g >
<title>do_vmi_munmap (125,839 samples, 0.90%)</title><rect x="221.0" y="1893" width="10.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="224.02" y="1903.5" ></text>
</g>
<g >
<title>runtime.copystack (799,986 samples, 5.72%)</title><rect x="999.9" y="2021" width="67.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1002.91" y="2031.5" >runtime..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="293" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="303.5" ></text>
</g>
<g >
<title>perf_ibs_add (2,307 samples, 0.02%)</title><rect x="35.8" y="53" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="38.78" y="63.5" ></text>
</g>
<g >
<title>do_user_addr_fault (729,436 samples, 5.22%)</title><rect x="924.6" y="1973" width="61.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="927.62" y="1983.5" >do_use..</text>
</g>
<g >
<title>net.(*netFD).connect (906,491 samples, 6.49%)</title><rect x="671.1" y="1845" width="76.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="674.09" y="1855.5" >net.(*ne..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1781" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1791.5" >[ld-linu..</text>
</g>
<g >
<title>__tcp_push_pending_frames (876,666 samples, 6.27%)</title><rect x="518.5" y="1717" width="74.0" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="521.51" y="1727.5" >__tcp_pu..</text>
</g>
<g >
<title>do_vmi_align_munmap (846,261 samples, 6.05%)</title><rect x="92.4" y="1605" width="71.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="95.44" y="1615.5" >do_vmi_a..</text>
</g>
<g >
<title>runtime.mallocgc (797,147 samples, 5.70%)</title><rect x="1122.2" y="1973" width="67.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1125.22" y="1983.5" >runtime..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="725" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="735.5" ></text>
</g>
<g >
<title>[unknown] (2,328,633 samples, 16.66%)</title><rect x="35.1" y="2053" width="196.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.07" y="2063.5" >[unknown]</text>
</g>
<g >
<title>runtime.notetsleep_internal (3,604 samples, 0.03%)</title><rect x="193.1" y="1957" width="0.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="196.07" y="1967.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (249,529 samples, 1.79%)</title><rect x="10.0" y="2053" width="21.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="13.00" y="2063.5" ></text>
</g>
<g >
<title>math/big.(*Int).setFromScanner (716,998 samples, 5.13%)</title><rect x="808.5" y="1925" width="60.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="811.50" y="1935.5" >math/b..</text>
</g>
<g >
<title>runtime.execute (658,574 samples, 4.71%)</title><rect x="869.0" y="1909" width="55.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="872.03" y="1919.5" >runti..</text>
</g>
<g >
<title>tcp_recvmsg (368,343 samples, 2.64%)</title><rect x="380.3" y="1685" width="31.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="383.35" y="1695.5" >tc..</text>
</g>
<g >
<title>runtime.mmap (158,527 samples, 1.13%)</title><rect x="986.2" y="1701" width="13.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="989.20" y="1711.5" ></text>
</g>
<g >
<title>do_user_addr_fault (648,822 samples, 4.64%)</title><rect x="1067.4" y="1909" width="54.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1070.45" y="1919.5" >do_us..</text>
</g>
<g >
<title>runtime.chanrecv1 (162,460 samples, 1.16%)</title><rect x="986.2" y="2021" width="13.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="989.20" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1333" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1343.5" ></text>
</g>
<g >
<title>net.internetSocket (906,491 samples, 6.49%)</title><rect x="671.1" y="1877" width="76.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="674.09" y="1887.5" >net.inte..</text>
</g>
<g >
<title>net.(*conn).Read (64,849 samples, 0.46%)</title><rect x="411.4" y="1893" width="5.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="414.44" y="1903.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (846,261 samples, 6.05%)</title><rect x="92.4" y="1685" width="71.5" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="95.44" y="1695.5" >ksys_mma..</text>
</g>
<g >
<title>do_anonymous_page (76,907 samples, 0.55%)</title><rect x="210.7" y="1877" width="6.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="213.74" y="1887.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*streamPacketCipher).readCipherPacket (64,849 samples, 0.46%)</title><rect x="411.4" y="1957" width="5.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="414.44" y="1967.5" ></text>
</g>
<g >
<title>syscall.read (368,343 samples, 2.64%)</title><rect x="380.3" y="1845" width="31.1" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="383.35" y="1855.5" >sy..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1253" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1263.5" ></text>
</g>
<g >
<title>runtime.stopm (155,915 samples, 1.12%)</title><rect x="657.9" y="1909" width="13.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="660.93" y="1919.5" ></text>
</g>
<g >
<title>runtime.schedule (658,574 samples, 4.71%)</title><rect x="869.0" y="1925" width="55.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="872.03" y="1935.5" >runti..</text>
</g>
<g >
<title>do_futex (3,933 samples, 0.03%)</title><rect x="999.6" y="1813" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1002.58" y="1823.5" ></text>
</g>
<g >
<title>pte_alloc_one (20,590 samples, 0.15%)</title><rect x="32.7" y="1925" width="1.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="35.74" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1877" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1887.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (44,934 samples, 0.32%)</title><rect x="217.2" y="1925" width="3.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="220.23" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="357" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="367.5" ></text>
</g>
<g >
<title>event_sched_in (2,307 samples, 0.02%)</title><rect x="35.8" y="69" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="38.78" y="79.5" ></text>
</g>
<g >
<title>do_huge_pmd_anonymous_page (774,847 samples, 5.54%)</title><rect x="592.5" y="1493" width="65.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="595.52" y="1503.5" >do_huge..</text>
</g>
<g >
<title>do_syscall_64 (162,752 samples, 1.16%)</title><rect x="193.4" y="1941" width="13.7" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="196.37" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1429" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1439.5" ></text>
</g>
<g >
<title>ip_finish_output2 (876,666 samples, 6.27%)</title><rect x="518.5" y="1653" width="74.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="521.51" y="1663.5" >ip_finis..</text>
</g>
<g >
<title>__mod_zone_page_state (774,847 samples, 5.54%)</title><rect x="592.5" y="1413" width="65.4" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="595.52" y="1423.5" >__mod_z..</text>
</g>
<g >
<title>[unknown] (3,244 samples, 0.02%)</title><rect x="35.2" y="181" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="191.5" ></text>
</g>
<g >
<title>runtime.sysAlloc (158,527 samples, 1.13%)</title><rect x="986.2" y="1733" width="13.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="989.20" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="309" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="319.5" ></text>
</g>
<g >
<title>net.(*conn).Write (876,666 samples, 6.27%)</title><rect x="518.5" y="1925" width="74.0" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="521.51" y="1935.5" >net.(*co..</text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (158,527 samples, 1.13%)</title><rect x="986.2" y="1845" width="13.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="989.20" y="1855.5" ></text>
</g>
<g >
<title>runtime.park_m (155,915 samples, 1.12%)</title><rect x="657.9" y="1957" width="13.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="660.93" y="1967.5" ></text>
</g>
<g >
<title>syscall.Syscall (368,343 samples, 2.64%)</title><rect x="380.3" y="1829" width="31.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="383.35" y="1839.5" >sy..</text>
</g>
<g >
<title>__handle_mm_fault (797,147 samples, 5.70%)</title><rect x="1122.2" y="1813" width="67.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1125.22" y="1823.5" >__handl..</text>
</g>
<g >
<title>p256SqrInternal (452,693 samples, 3.24%)</title><rect x="299.2" y="2053" width="38.2" height="15.0" fill="rgb(218,59,14)" rx="2" ry="2" />
<text x="302.18" y="2063.5" >p25..</text>
</g>
<g >
<title>[libc.so.6] (290,611 samples, 2.08%)</title><rect x="207.1" y="1989" width="24.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="210.11" y="1999.5" >[..</text>
</g>
<g >
<title>runtime.futex.abi0 (3,604 samples, 0.03%)</title><rect x="193.1" y="1941" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="196.07" y="1951.5" ></text>
</g>
<g >
<title>_raw_spin_lock (876,666 samples, 6.27%)</title><rect x="518.5" y="1605" width="74.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="521.51" y="1615.5" >_raw_spi..</text>
</g>
<g >
<title>[unknown] (6,432 samples, 0.05%)</title><rect x="35.2" y="261" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="271.5" ></text>
</g>
<g >
<title>futex_wait_queue (3,933 samples, 0.03%)</title><rect x="999.6" y="1765" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1002.58" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1525" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1535.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1813" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1823.5" >[ld-linu..</text>
</g>
<g >
<title>setup_arg_pages (40,913 samples, 0.29%)</title><rect x="163.9" y="1941" width="3.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="166.88" y="1951.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*handshakeTransport).kexLoop (1,627,480 samples, 11.64%)</title><rect x="455.1" y="2021" width="137.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="458.13" y="2031.5" >golang.org/x/cryp..</text>
</g>
<g >
<title>asm_exc_page_fault (648,822 samples, 4.64%)</title><rect x="1067.4" y="1941" width="54.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="1070.45" y="1951.5" >asm_e..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="613" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="623.5" ></text>
</g>
<g >
<title>runtime.mstart0 (471,211 samples, 3.37%)</title><rect x="167.3" y="2021" width="39.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="170.33" y="2031.5" >run..</text>
</g>
<g >
<title>runtime.gcenable.gowrap2 (155,915 samples, 1.12%)</title><rect x="657.9" y="2037" width="13.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="660.93" y="2047.5" ></text>
</g>
<g >
<title>filemap_map_pages (648,822 samples, 4.64%)</title><rect x="1067.4" y="1845" width="54.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="1070.45" y="1855.5" >filem..</text>
</g>
<g >
<title>runtime.systemstack.abi0 (452,693 samples, 3.24%)</title><rect x="416.9" y="1957" width="38.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="419.92" y="1967.5" >run..</text>
</g>
<g >
<title>_cgo_try_pthread_create (2,307 samples, 0.02%)</title><rect x="35.8" y="277" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="38.78" y="287.5" ></text>
</g>
<g >
<title>filemap_map_pages (729,436 samples, 5.22%)</title><rect x="924.6" y="1909" width="61.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="927.62" y="1919.5" >filema..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="453" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="463.5" ></text>
</g>
<g >
<title>main.main (1,627,685 samples, 11.64%)</title><rect x="671.1" y="2021" width="137.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="674.09" y="2031.5" >main.main</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1349" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1359.5" ></text>
</g>
<g >
<title>mas_walk (6,947 samples, 0.05%)</title><rect x="34.5" y="1973" width="0.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="37.48" y="1983.5" ></text>
</g>
<g >
<title>visit_groups_merge.constprop.0.isra.0 (2,307 samples, 0.02%)</title><rect x="35.8" y="101" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="38.78" y="111.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1077" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1087.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (2,307 samples, 0.02%)</title><rect x="35.8" y="133" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="38.78" y="143.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocMSpanLocked (158,527 samples, 1.13%)</title><rect x="986.2" y="1813" width="13.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="989.20" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1989" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1999.5" ></text>
</g>
<g >
<title>internal/runtime/syscall.Syscall6 (485,142 samples, 3.47%)</title><rect x="337.4" y="1861" width="40.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="340.39" y="1871.5" >int..</text>
</g>
<g >
<title>runtime.heapSetType (352,851 samples, 2.52%)</title><rect x="747.6" y="1877" width="29.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="750.62" y="1887.5" >ru..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*transport).writePacket (368,343 samples, 2.64%)</title><rect x="777.4" y="1893" width="31.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="780.40" y="1903.5" >go..</text>
</g>
<g >
<title>internal/poll.(*FD).Write (368,343 samples, 2.64%)</title><rect x="777.4" y="1797" width="31.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="780.40" y="1807.5" >in..</text>
</g>
<g >
<title>__x64_sys_nanosleep (162,752 samples, 1.16%)</title><rect x="193.4" y="1925" width="13.7" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="196.37" y="1935.5" ></text>
</g>
<g >
<title>runtime.netpollblock (64,849 samples, 0.46%)</title><rect x="411.4" y="1813" width="5.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="414.44" y="1823.5" ></text>
</g>
<g >
<title>handle_mm_fault (20,590 samples, 0.15%)</title><rect x="32.7" y="1989" width="1.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="35.74" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="469" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (774,847 samples, 5.54%)</title><rect x="592.5" y="1685" width="65.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="595.52" y="1695.5" >entry_S..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1301" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1311.5" ></text>
</g>
<g >
<title>alloc_pages_noprof (8,164 samples, 0.06%)</title><rect x="33.8" y="1909" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="36.79" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1445" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1455.5" ></text>
</g>
<g >
<title>handle_mm_fault (729,436 samples, 5.22%)</title><rect x="924.6" y="1957" width="61.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="927.62" y="1967.5" >handle..</text>
</g>
<g >
<title>tcp_write_xmit (876,666 samples, 6.27%)</title><rect x="518.5" y="1701" width="74.0" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="521.51" y="1711.5" >tcp_writ..</text>
</g>
<g >
<title>__x64_sys_epoll_pwait (485,142 samples, 3.47%)</title><rect x="337.4" y="1813" width="40.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="340.39" y="1823.5" >__x..</text>
</g>
<g >
<title>net.(*conf).lookupOrder (774,847 samples, 5.54%)</title><rect x="592.5" y="1925" width="65.4" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="595.52" y="1935.5" >net.(*c..</text>
</g>
<g >
<title>[unknown] (3,244 samples, 0.02%)</title><rect x="35.2" y="213" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="223.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (6,947 samples, 0.05%)</title><rect x="34.5" y="1989" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="37.48" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="421" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="431.5" ></text>
</g>
<g >
<title>runtime.mcall (3,933 samples, 0.03%)</title><rect x="999.6" y="1973" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1002.58" y="1983.5" ></text>
</g>
<g >
<title>net.(*conn).Read (368,343 samples, 2.64%)</title><rect x="380.3" y="1893" width="31.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="383.35" y="1903.5" >ne..</text>
</g>
<g >
<title>runtime.futex.abi0 (3,933 samples, 0.03%)</title><rect x="999.6" y="1877" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1002.58" y="1887.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (3,188 samples, 0.02%)</title><rect x="35.5" y="85" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="38.52" y="95.5" ></text>
</g>
<g >
<title>__handle_mm_fault (20,590 samples, 0.15%)</title><rect x="32.7" y="1973" width="1.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="35.74" y="1983.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*connectionState).writePacket (368,343 samples, 2.64%)</title><rect x="777.4" y="1877" width="31.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="780.40" y="1887.5" >go..</text>
</g>
<g >
<title>runtime.sysargs (648,822 samples, 4.64%)</title><rect x="1067.4" y="2005" width="54.8" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1070.45" y="2015.5" >runti..</text>
</g>
<g >
<title>runtime.(*mcache).nextFree (797,147 samples, 5.70%)</title><rect x="1122.2" y="1957" width="67.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1125.22" y="1967.5" >runtime..</text>
</g>
<g >
<title>tcp_sendmsg_locked (368,343 samples, 2.64%)</title><rect x="777.4" y="1637" width="31.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="780.40" y="1647.5" >tc..</text>
</g>
<g >
<title>exc_page_fault (774,847 samples, 5.54%)</title><rect x="592.5" y="1557" width="65.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="595.52" y="1567.5" >exc_pag..</text>
</g>
<g >
<title>tcp_sendmsg (368,343 samples, 2.64%)</title><rect x="777.4" y="1653" width="31.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="780.40" y="1663.5" >tc..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*curve25519sha256).Client (750,814 samples, 5.37%)</title><rect x="455.1" y="1973" width="63.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="458.13" y="1983.5" >golang..</text>
</g>
<g >
<title>exc_page_fault (648,822 samples, 4.64%)</title><rect x="1067.4" y="1925" width="54.8" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="1070.45" y="1935.5" >exc_p..</text>
</g>
<g >
<title>vm_mmap_pgoff (846,261 samples, 6.05%)</title><rect x="92.4" y="1669" width="71.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="95.44" y="1679.5" >vm_mmap_..</text>
</g>
<g >
<title>net.(*TCPConn).Read (64,849 samples, 0.46%)</title><rect x="411.4" y="1909" width="5.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="414.44" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (158,527 samples, 1.13%)</title><rect x="986.2" y="1637" width="13.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="989.20" y="1647.5" ></text>
</g>
<g >
<title>do_user_addr_fault (774,847 samples, 5.54%)</title><rect x="592.5" y="1541" width="65.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="595.52" y="1551.5" >do_user..</text>
</g>
<g >
<title>lru_add_fn (58,542 samples, 0.42%)</title><rect x="226.7" y="1797" width="4.9" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="229.70" y="1807.5" ></text>
</g>
<g >
<title>handle_mm_fault (797,147 samples, 5.70%)</title><rect x="1122.2" y="1829" width="67.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1125.22" y="1839.5" >handle_..</text>
</g>
<g >
<title>entry_SYSCALL_64 (155,915 samples, 1.12%)</title><rect x="657.9" y="1861" width="13.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="660.93" y="1871.5" ></text>
</g>
<g >
<title>vmf_anon_prepare (76,907 samples, 0.55%)</title><rect x="210.7" y="1861" width="6.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="213.74" y="1871.5" ></text>
</g>
<g >
<title>vfs_write (368,343 samples, 2.64%)</title><rect x="777.4" y="1685" width="31.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="780.40" y="1695.5" >vf..</text>
</g>
<g >
<title>handle_mm_fault (76,907 samples, 0.55%)</title><rect x="210.7" y="1909" width="6.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="213.74" y="1919.5" ></text>
</g>
<g >
<title>mprotect_fixup (44,934 samples, 0.32%)</title><rect x="217.2" y="1893" width="3.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="220.23" y="1903.5" ></text>
</g>
<g >
<title>sock_read_iter (368,343 samples, 2.64%)</title><rect x="380.3" y="1733" width="31.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="383.35" y="1743.5" >so..</text>
</g>
<g >
<title>do_syscall_64 (3,933 samples, 0.03%)</title><rect x="999.6" y="1845" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="1002.58" y="1855.5" ></text>
</g>
<g >
<title>pthread_create (3,188 samples, 0.02%)</title><rect x="35.5" y="197" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="38.52" y="207.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1157" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1167.5" ></text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1765" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1775.5" >[ld-linu..</text>
</g>
<g >
<title>mas_preallocate (42,931 samples, 0.31%)</title><rect x="207.1" y="1861" width="3.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="210.11" y="1871.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (58,542 samples, 0.42%)</title><rect x="226.7" y="1813" width="4.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="229.70" y="1823.5" ></text>
</g>
<g >
<title>__mmput (799,986 samples, 5.72%)</title><rect x="231.6" y="1957" width="67.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="234.65" y="1967.5" >__mmput</text>
</g>
<g >
<title>net.(*sysDialer).dialSingle (906,491 samples, 6.49%)</title><rect x="671.1" y="1925" width="76.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="674.09" y="1935.5" >net.(*sy..</text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*handshakeTransport).sendKexInit (876,666 samples, 6.27%)</title><rect x="518.5" y="2005" width="74.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="521.51" y="2015.5" >golang.o..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (249,529 samples, 1.79%)</title><rect x="10.0" y="1989" width="21.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="13.00" y="1999.5" ></text>
</g>
<g >
<title>__memcg_kmem_charge_page (12,426 samples, 0.09%)</title><rect x="32.7" y="1877" width="1.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="35.74" y="1887.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_noprof (76,907 samples, 0.55%)</title><rect x="210.7" y="1829" width="6.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="213.74" y="1839.5" ></text>
</g>
<g >
<title>load_elf_binary (5,793 samples, 0.04%)</title><rect x="1189.5" y="1957" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1192.51" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (799,986 samples, 5.72%)</title><rect x="231.6" y="2053" width="67.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="234.65" y="2063.5" >entry_S..</text>
</g>
<g >
<title>[libc.so.6] (47,412 samples, 0.34%)</title><rect x="31.1" y="2053" width="4.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="34.06" y="2063.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,188 samples, 0.02%)</title><rect x="35.5" y="181" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="38.52" y="191.5" ></text>
</g>
<g >
<title>ret_from_fork (3,188 samples, 0.02%)</title><rect x="35.5" y="117" width="0.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="38.52" y="127.5" ></text>
</g>
<g >
<title>sock_write_iter (876,666 samples, 6.27%)</title><rect x="518.5" y="1765" width="74.0" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="521.51" y="1775.5" >sock_wri..</text>
</g>
<g >
<title>net.(*nsswitchConfig).init-fm (774,847 samples, 5.54%)</title><rect x="592.5" y="1861" width="65.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="595.52" y="1871.5" >net.(*n..</text>
</g>
<g >
<title>ret_from_fork_asm (2,064 samples, 0.01%)</title><rect x="35.1" y="2021" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="38.07" y="2031.5" ></text>
</g>
<g >
<title>[libc.so.6] (119,838 samples, 0.86%)</title><rect x="207.1" y="1973" width="10.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="210.11" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (42,931 samples, 0.31%)</title><rect x="207.1" y="1925" width="3.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="210.11" y="1935.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (485,142 samples, 3.47%)</title><rect x="337.4" y="1765" width="40.9" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="340.39" y="1775.5" >sch..</text>
</g>
<g >
<title>[libc.so.6] (290,611 samples, 2.08%)</title><rect x="207.1" y="2005" width="24.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="210.11" y="2015.5" >[..</text>
</g>
<g >
<title>pthread_create (3,244 samples, 0.02%)</title><rect x="35.2" y="133" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="38.24" y="143.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="917" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="927.5" ></text>
</g>
<g >
<title>runtime.mmap.func1 (158,527 samples, 1.13%)</title><rect x="986.2" y="1685" width="13.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="989.20" y="1695.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (368,343 samples, 2.64%)</title><rect x="777.4" y="1621" width="31.1" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="780.40" y="1631.5" >__..</text>
</g>
<g >
<title>[ld-linux-x86-64.so.2] (846,261 samples, 6.05%)</title><rect x="92.4" y="1749" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="95.44" y="1759.5" >[ld-linu..</text>
</g>
<g >
<title>__mmap (158,527 samples, 1.13%)</title><rect x="986.2" y="1653" width="13.4" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text x="989.20" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1973" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1983.5" ></text>
</g>
<g >
<title>crypto/ecdh.(*PrivateKey).PublicKey (243,348 samples, 1.74%)</title><rect x="498.0" y="1925" width="20.5" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="500.97" y="1935.5" ></text>
</g>
<g >
<title>do_fault (729,436 samples, 5.22%)</title><rect x="924.6" y="1925" width="61.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="927.62" y="1935.5" >do_fault</text>
</g>
<g >
<title>os.(*File).Read (774,847 samples, 5.54%)</title><rect x="592.5" y="1765" width="65.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="595.52" y="1775.5" >os.(*Fi..</text>
</g>
<g >
<title>mas_walk (846,261 samples, 6.05%)</title><rect x="92.4" y="1573" width="71.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="95.44" y="1583.5" >mas_walk</text>
</g>
<g >
<title>[libc.so.6] (12,484 samples, 0.09%)</title><rect x="31.1" y="2021" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="34.06" y="2031.5" ></text>
</g>
<g >
<title>schedule (140,398 samples, 1.00%)</title><rect x="195.3" y="1877" width="11.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="198.26" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (3,244 samples, 0.02%)</title><rect x="35.2" y="165" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="175.5" ></text>
</g>
<g >
<title>net.(*sysDialer).dialSerial (906,491 samples, 6.49%)</title><rect x="671.1" y="1941" width="76.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="674.09" y="1951.5" >net.(*sy..</text>
</g>
<g >
<title>net.(*conf).hostLookupOrder (774,847 samples, 5.54%)</title><rect x="592.5" y="1941" width="65.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="595.52" y="1951.5" >net.(*c..</text>
</g>
<g >
<title>syscall.Syscall (876,666 samples, 6.27%)</title><rect x="518.5" y="1861" width="74.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="521.51" y="1871.5" >syscall...</text>
</g>
<g >
<title>net.parseNSSConf (774,847 samples, 5.54%)</title><rect x="592.5" y="1813" width="65.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="595.52" y="1823.5" >net.par..</text>
</g>
<g >
<title>finish_task_switch.isra.0 (2,064 samples, 0.01%)</title><rect x="35.1" y="1973" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="38.07" y="1983.5" ></text>
</g>
<g >
<title>__mprotect (44,934 samples, 0.32%)</title><rect x="217.2" y="1973" width="3.8" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="220.23" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1381" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1391.5" ></text>
</g>
<g >
<title>_cgo_try_pthread_create (3,188 samples, 0.02%)</title><rect x="35.5" y="213" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="38.52" y="223.5" ></text>
</g>
<g >
<title>golang.org/x/crypto/ssh.(*mux).openChannel (721,194 samples, 5.16%)</title><rect x="747.6" y="1941" width="60.9" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="750.62" y="1951.5" >golang..</text>
</g>
<g >
<title>do_user_addr_fault (34,928 samples, 0.25%)</title><rect x="32.1" y="2005" width="3.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="35.12" y="2015.5" ></text>
</g>
<g >
<title>net.(*netFD).Write (876,666 samples, 6.27%)</title><rect x="518.5" y="1909" width="74.0" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="521.51" y="1919.5" >net.(*ne..</text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="1685" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="1695.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (3,933 samples, 0.03%)</title><rect x="999.6" y="1717" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1002.58" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (8,739 samples, 0.06%)</title><rect x="35.2" y="517" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="38.24" y="527.5" ></text>
</g>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment