Skip to content

Instantly share code, notes, and snippets.

@overvenus
Last active December 29, 2016 08:20
Show Gist options
  • Save overvenus/018e19ccc23555a7768e15774819f3af to your computer and use it in GitHub Desktop.
Save overvenus/018e19ccc23555a7768e15774819f3af to your computer and use it in GitHub Desktop.
long test go client with 40 goroutines
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="2114" onload="init(evt)" viewBox="0 0 1200 2114" 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. -->
<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">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
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 (func != null)
func = func.replace(/ .*/, "");
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;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
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") + 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;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
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);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "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;
searchbtn.style["opacity"] = "1.0";
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;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// 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.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2114.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="2097" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="2097" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (8 samples, 0.63%)</title><rect x="868.3" y="1761" width="7.4" height="15.0" fill="rgb(244,165,8)" rx="2" ry="2" />
<text text-anchor="" x="871.27" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="1167.7" y="1761" width="0.9" height="15.0" fill="rgb(217,92,17)" rx="2" ry="2" />
<text text-anchor="" x="1170.68" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::result_::FutureResult&lt;T, E&gt; as futures::future::Future&gt;::poll (2 samples, 0.16%)</title><rect x="996.6" y="1873" width="1.8" height="15.0" fill="rgb(252,85,2)" rx="2" ry="2" />
<text text-anchor="" x="999.59" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="59.3" y="1809" width="0.9" height="15.0" fill="rgb(226,162,52)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="825.5" y="1745" width="0.9" height="15.0" fill="rgb(247,102,1)" rx="2" ry="2" />
<text text-anchor="" x="828.49" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (93 samples, 7.33%)</title><rect x="128.1" y="193" width="86.5" height="15.0" fill="rgb(234,183,37)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (1 samples, 0.08%)</title><rect x="921.3" y="1649" width="0.9" height="15.0" fill="rgb(205,44,26)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_mss (3 samples, 0.24%)</title><rect x="294.5" y="1921" width="2.8" height="15.0" fill="rgb(236,137,9)" rx="2" ry="2" />
<text text-anchor="" x="297.54" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;solicit_fork::http::frame::data::DataFrame&lt;a&gt; as solicit_fork::http::frame::Frame&lt;a&gt;&gt;::from_raw (1 samples, 0.08%)</title><rect x="794.8" y="1793" width="0.9" height="15.0" fill="rgb(247,30,8)" rx="2" ry="2" />
<text text-anchor="" x="797.81" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (9 samples, 0.71%)</title><rect x="87.2" y="1889" width="8.3" height="15.0" fill="rgb(206,202,10)" rx="2" ry="2" />
<text text-anchor="" x="90.18" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::into_stream::IntoStream&lt;F&gt; as futures::stream::Stream&gt;::poll (116 samples, 9.14%)</title><rect x="983.6" y="1889" width="107.8" height="15.0" fill="rgb(253,221,10)" rx="2" ry="2" />
<text text-anchor="" x="986.57" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::fut..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="80.7" y="1889" width="0.9" height="15.0" fill="rgb(229,214,39)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>import_single_range (1 samples, 0.08%)</title><rect x="232.2" y="1953" width="1.0" height="15.0" fill="rgb(222,71,53)" rx="2" ry="2" />
<text text-anchor="" x="235.24" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (2 samples, 0.16%)</title><rect x="113.2" y="1857" width="1.9" height="15.0" fill="rgb(248,193,19)" rx="2" ry="2" />
<text text-anchor="" x="116.22" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_space_adjust (1 samples, 0.08%)</title><rect x="1165.8" y="1793" width="1.0" height="15.0" fill="rgb(249,36,6)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="53.7" y="1633" width="0.9" height="15.0" fill="rgb(233,174,24)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (22 samples, 1.73%)</title><rect x="278.7" y="2017" width="20.5" height="15.0" fill="rgb(241,0,46)" rx="2" ry="2" />
<text text-anchor="" x="281.73" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.16%)</title><rect x="563.3" y="1393" width="1.8" height="15.0" fill="rgb(214,39,7)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.08%)</title><rect x="1042.2" y="1633" width="0.9" height="15.0" fill="rgb(231,183,30)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (1 samples, 0.08%)</title><rect x="560.5" y="1617" width="0.9" height="15.0" fill="rgb(221,54,27)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="128.1" y="97" width="0.9" height="15.0" fill="rgb(226,141,0)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (3 samples, 0.24%)</title><rect x="244.3" y="1697" width="2.8" height="15.0" fill="rgb(211,136,0)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::net::tcp::TcpStream as std::io::Read&gt;::read (17 samples, 1.34%)</title><rect x="538.2" y="1777" width="15.8" height="15.0" fill="rgb(245,42,2)" rx="2" ry="2" />
<text text-anchor="" x="541.16" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="795.7" y="1713" width="1.0" height="15.0" fill="rgb(214,161,44)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.08%)</title><rect x="108.6" y="1937" width="0.9" height="15.0" fill="rgb(252,76,7)" rx="2" ry="2" />
<text text-anchor="" x="111.57" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="220.1" y="1873" width="1.0" height="15.0" fill="rgb(254,149,32)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="410.8" y="1841" width="0.9" height="15.0" fill="rgb(251,19,4)" rx="2" ry="2" />
<text text-anchor="" x="413.77" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="81.6" y="1953" width="0.9" height="15.0" fill="rgb(250,169,35)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (2 samples, 0.16%)</title><rect x="342.0" y="1905" width="1.8" height="15.0" fill="rgb(249,22,33)" rx="2" ry="2" />
<text text-anchor="" x="344.96" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.08%)</title><rect x="122.5" y="97" width="0.9" height="15.0" fill="rgb(238,202,3)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (1 samples, 0.08%)</title><rect x="413.6" y="1889" width="0.9" height="15.0" fill="rgb(253,144,43)" rx="2" ry="2" />
<text text-anchor="" x="416.56" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="218.3" y="401" width="0.9" height="15.0" fill="rgb(238,200,48)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="221.1" y="1713" width="0.9" height="15.0" fill="rgb(208,83,48)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="53.7" y="1697" width="0.9" height="15.0" fill="rgb(247,93,39)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="1170.5" y="1889" width="0.9" height="15.0" fill="rgb(234,0,45)" rx="2" ry="2" />
<text text-anchor="" x="1173.47" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="686.0" y="1729" width="0.9" height="15.0" fill="rgb(218,154,52)" rx="2" ry="2" />
<text text-anchor="" x="689.01" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="108.6" y="2001" width="0.9" height="15.0" fill="rgb(234,151,9)" rx="2" ry="2" />
<text text-anchor="" x="111.57" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="1171.4" y="1905" width="0.9" height="15.0" fill="rgb(254,11,33)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (840 samples, 66.19%)</title><rect x="408.9" y="2033" width="781.1" height="15.0" fill="rgb(229,27,1)" rx="2" ry="2" />
<text text-anchor="" x="411.91" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_data_queue (1 samples, 0.08%)</title><rect x="57.4" y="1473" width="1.0" height="15.0" fill="rgb(207,42,0)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sk_dst_check (1 samples, 0.08%)</title><rect x="243.4" y="1825" width="0.9" height="15.0" fill="rgb(240,217,36)" rx="2" ry="2" />
<text text-anchor="" x="246.40" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.16%)</title><rect x="963.1" y="1473" width="1.9" height="15.0" fill="rgb(215,227,35)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.08%)</title><rect x="968.7" y="1793" width="0.9" height="15.0" fill="rgb(215,142,38)" rx="2" ry="2" />
<text text-anchor="" x="971.69" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="130.9" y="113" width="1.8" height="15.0" fill="rgb(212,44,14)" rx="2" ry="2" />
<text text-anchor="" x="133.88" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="59.3" y="1857" width="0.9" height="15.0" fill="rgb(229,98,4)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::channel::Sender&lt;T&gt;&gt;::send (4 samples, 0.32%)</title><rect x="677.6" y="1793" width="3.8" height="15.0" fill="rgb(216,113,28)" rx="2" ry="2" />
<text text-anchor="" x="680.64" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1149.1" y="1889" width="0.9" height="15.0" fill="rgb(246,56,28)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1121" width="97.6" height="15.0" fill="rgb(223,51,29)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="47.2" y="1569" width="0.9" height="15.0" fill="rgb(214,197,0)" rx="2" ry="2" />
<text text-anchor="" x="50.19" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.08%)</title><rect x="290.8" y="1361" width="0.9" height="15.0" fill="rgb(242,210,4)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.08%)</title><rect x="1133.3" y="1777" width="0.9" height="15.0" fill="rgb(228,203,47)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (4 samples, 0.32%)</title><rect x="66.7" y="1841" width="3.7" height="15.0" fill="rgb(229,103,17)" rx="2" ry="2" />
<text text-anchor="" x="69.72" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (4 samples, 0.32%)</title><rect x="290.8" y="1745" width="3.7" height="15.0" fill="rgb(211,96,2)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="220.1" y="1921" width="1.0" height="15.0" fill="rgb(253,5,15)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.08%)</title><rect x="290.8" y="1441" width="0.9" height="15.0" fill="rgb(254,36,0)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_ack (1 samples, 0.08%)</title><rect x="291.7" y="1537" width="1.0" height="15.0" fill="rgb(246,129,42)" rx="2" ry="2" />
<text text-anchor="" x="294.75" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::http_server::GrpcHttpServerStream&lt;F&gt;&gt;::set_state (1 samples, 0.08%)</title><rect x="861.8" y="1825" width="0.9" height="15.0" fill="rgb(236,149,16)" rx="2" ry="2" />
<text text-anchor="" x="864.76" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_clone (1 samples, 0.08%)</title><rect x="1138.9" y="1729" width="0.9" height="15.0" fill="rgb(224,164,10)" rx="2" ry="2" />
<text text-anchor="" x="1141.86" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.39%)</title><rect x="116.9" y="1969" width="4.7" height="15.0" fill="rgb(237,178,31)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="693.5" y="1329" width="0.9" height="15.0" fill="rgb(237,102,16)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="107.6" y="1953" width="1.0" height="15.0" fill="rgb(252,52,50)" rx="2" ry="2" />
<text text-anchor="" x="110.64" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="218.3" y="529" width="0.9" height="15.0" fill="rgb(231,147,47)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.16%)</title><rect x="123.4" y="81" width="1.9" height="15.0" fill="rgb(223,175,0)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="221.1" y="1665" width="0.9" height="15.0" fill="rgb(252,38,53)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (2 samples, 0.16%)</title><rect x="51.8" y="1953" width="1.9" height="15.0" fill="rgb(207,126,7)" rx="2" ry="2" />
<text text-anchor="" x="54.84" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="290.8" y="1537" width="0.9" height="15.0" fill="rgb(216,65,13)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::RegistrationInner::set_readiness (1 samples, 0.08%)</title><rect x="1187.2" y="1921" width="0.9" height="15.0" fill="rgb(237,73,51)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="952.9" y="1601" width="1.8" height="15.0" fill="rgb(252,83,18)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="128.1" y="81" width="0.9" height="15.0" fill="rgb(208,168,15)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1073" width="97.6" height="15.0" fill="rgb(242,48,32)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.08%)</title><rect x="228.5" y="1905" width="0.9" height="15.0" fill="rgb(229,27,5)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="74.2" y="1969" width="0.9" height="15.0" fill="rgb(228,106,43)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (3 samples, 0.24%)</title><rect x="965.0" y="1841" width="2.8" height="15.0" fill="rgb(229,179,53)" rx="2" ry="2" />
<text text-anchor="" x="967.97" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="74.2" y="1937" width="0.9" height="15.0" fill="rgb(248,20,28)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.08%)</title><rect x="239.7" y="1857" width="0.9" height="15.0" fill="rgb(215,215,40)" rx="2" ry="2" />
<text text-anchor="" x="242.68" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="59.3" y="1825" width="0.9" height="15.0" fill="rgb(248,220,47)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::and_then::AndThen&lt;A, B, F&gt; as futures::future::Future&gt;::poll (14 samples, 1.10%)</title><rect x="57.4" y="2017" width="13.0" height="15.0" fill="rgb(252,139,29)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (5 samples, 0.39%)</title><rect x="1031.0" y="1809" width="4.6" height="15.0" fill="rgb(232,69,2)" rx="2" ry="2" />
<text text-anchor="" x="1033.99" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="221.1" y="1745" width="0.9" height="15.0" fill="rgb(251,178,52)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="1171.4" y="1857" width="0.9" height="15.0" fill="rgb(241,59,31)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="795.7" y="1665" width="1.0" height="15.0" fill="rgb(242,19,30)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.39%)</title><rect x="75.1" y="1985" width="4.6" height="15.0" fill="rgb(228,30,7)" rx="2" ry="2" />
<text text-anchor="" x="78.09" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="529" width="96.7" height="15.0" fill="rgb(210,205,1)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.08%)</title><rect x="939.9" y="1777" width="0.9" height="15.0" fill="rgb(219,132,34)" rx="2" ry="2" />
<text text-anchor="" x="942.87" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (2 samples, 0.16%)</title><rect x="297.3" y="1953" width="1.9" height="15.0" fill="rgb(224,52,21)" rx="2" ry="2" />
<text text-anchor="" x="300.33" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::chain::Chain&lt;A, B, C&gt;&gt;::poll (561 samples, 44.21%)</title><rect x="448.0" y="1905" width="521.6" height="15.0" fill="rgb(226,113,25)" rx="2" ry="2" />
<text text-anchor="" x="450.97" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::future::chain::Chain&lt;A, B, C&gt;&gt;::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter_iovec (1 samples, 0.08%)</title><rect x="104.8" y="1793" width="1.0" height="15.0" fill="rgb(253,124,34)" rx="2" ry="2" />
<text text-anchor="" x="107.85" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.08%)</title><rect x="834.8" y="1761" width="0.9" height="15.0" fill="rgb(241,16,36)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (22 samples, 1.73%)</title><rect x="278.7" y="2001" width="20.5" height="15.0" fill="rgb(227,120,21)" rx="2" ry="2" />
<text text-anchor="" x="281.73" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="340.1" y="1825" width="0.9" height="15.0" fill="rgb(213,73,12)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.16%)</title><rect x="1160.2" y="1729" width="1.9" height="15.0" fill="rgb(217,104,21)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (7 samples, 0.55%)</title><rect x="958.5" y="1825" width="6.5" height="15.0" fill="rgb(219,1,3)" rx="2" ry="2" />
<text text-anchor="" x="961.46" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="227.6" y="1441" width="0.9" height="15.0" fill="rgb(215,11,32)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (3 samples, 0.24%)</title><rect x="1162.1" y="1921" width="2.8" height="15.0" fill="rgb(220,110,11)" rx="2" ry="2" />
<text text-anchor="" x="1165.10" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (2 samples, 0.16%)</title><rect x="63.0" y="1857" width="1.9" height="15.0" fill="rgb(214,49,38)" rx="2" ry="2" />
<text text-anchor="" x="66.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1149.1" y="1921" width="0.9" height="15.0" fill="rgb(214,167,49)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (2 samples, 0.16%)</title><rect x="286.2" y="1921" width="1.8" height="15.0" fill="rgb(252,105,47)" rx="2" ry="2" />
<text text-anchor="" x="289.17" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (4 samples, 0.32%)</title><rect x="290.8" y="1729" width="3.7" height="15.0" fill="rgb(237,128,5)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.08%)</title><rect x="73.2" y="1921" width="1.0" height="15.0" fill="rgb(250,145,22)" rx="2" ry="2" />
<text text-anchor="" x="76.23" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="121.6" y="289" width="0.9" height="15.0" fill="rgb(241,226,5)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (2 samples, 0.16%)</title><rect x="130.9" y="97" width="1.8" height="15.0" fill="rgb(223,135,22)" rx="2" ry="2" />
<text text-anchor="" x="133.88" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="968.7" y="1873" width="0.9" height="15.0" fill="rgb(249,120,33)" rx="2" ry="2" />
<text text-anchor="" x="971.69" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="125.3" y="145" width="0.9" height="15.0" fill="rgb(219,136,28)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="929" width="97.6" height="15.0" fill="rgb(207,31,14)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="218.3" y="177" width="0.9" height="15.0" fill="rgb(233,94,23)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map::Map&lt;A, F&gt; as futures::future::Future&gt;::poll (532 samples, 41.92%)</title><rect x="448.0" y="1841" width="494.7" height="15.0" fill="rgb(217,196,12)" rx="2" ry="2" />
<text text-anchor="" x="450.97" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::future::map::Map&lt;A, F&gt; as futures::future::Future&gt;::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (1 samples, 0.08%)</title><rect x="44.4" y="1841" width="0.9" height="15.0" fill="rgb(209,14,20)" rx="2" ry="2" />
<text text-anchor="" x="47.41" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.08%)</title><rect x="693.5" y="1425" width="0.9" height="15.0" fill="rgb(217,96,18)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (1 samples, 0.08%)</title><rect x="545.6" y="1745" width="0.9" height="15.0" fill="rgb(246,31,18)" rx="2" ry="2" />
<text text-anchor="" x="548.60" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.08%)</title><rect x="701.8" y="1761" width="1.0" height="15.0" fill="rgb(217,228,38)" rx="2" ry="2" />
<text text-anchor="" x="704.82" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_tcache_event_hard (1 samples, 0.08%)</title><rect x="134.6" y="33" width="0.9" height="15.0" fill="rgb(246,0,30)" rx="2" ry="2" />
<text text-anchor="" x="137.60" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.08%)</title><rect x="10.0" y="1889" width="0.9" height="15.0" fill="rgb(250,30,3)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1217" width="97.6" height="15.0" fill="rgb(225,140,39)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="127.2" y="49" width="0.9" height="15.0" fill="rgb(211,105,7)" rx="2" ry="2" />
<text text-anchor="" x="130.16" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (4 samples, 0.32%)</title><rect x="113.2" y="1921" width="3.7" height="15.0" fill="rgb(212,195,32)" rx="2" ry="2" />
<text text-anchor="" x="116.22" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.16%)</title><rect x="58.4" y="1905" width="1.8" height="15.0" fill="rgb(213,196,23)" rx="2" ry="2" />
<text text-anchor="" x="61.35" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (3 samples, 0.24%)</title><rect x="214.6" y="145" width="2.8" height="15.0" fill="rgb(235,184,39)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="535.4" y="1729" width="0.9" height="15.0" fill="rgb(210,42,5)" rx="2" ry="2" />
<text text-anchor="" x="538.37" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::io_token::IoToken::drop_source (8 samples, 0.63%)</title><rect x="1084.0" y="1825" width="7.4" height="15.0" fill="rgb(243,64,5)" rx="2" ry="2" />
<text text-anchor="" x="1087.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (6 samples, 0.47%)</title><rect x="959.4" y="1745" width="5.6" height="15.0" fill="rgb(249,225,39)" rx="2" ry="2" />
<text text-anchor="" x="962.39" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="727.9" y="1745" width="0.9" height="15.0" fill="rgb(225,115,34)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_tree_remove (2 samples, 0.16%)</title><rect x="258.3" y="2017" width="1.8" height="15.0" fill="rgb(210,63,4)" rx="2" ry="2" />
<text text-anchor="" x="261.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.08%)</title><rect x="720.4" y="1697" width="0.9" height="15.0" fill="rgb(247,183,25)" rx="2" ry="2" />
<text text-anchor="" x="723.42" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="57.4" y="1537" width="1.0" height="15.0" fill="rgb(241,133,32)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="609" width="96.7" height="15.0" fill="rgb(225,222,18)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="289.9" y="1793" width="0.9" height="15.0" fill="rgb(225,211,14)" rx="2" ry="2" />
<text text-anchor="" x="292.89" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_confirm (1 samples, 0.08%)</title><rect x="47.2" y="1537" width="0.9" height="15.0" fill="rgb(208,13,32)" rx="2" ry="2" />
<text text-anchor="" x="50.19" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.08%)</title><rect x="1160.2" y="1697" width="1.0" height="15.0" fill="rgb(207,204,38)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (82 samples, 6.46%)</title><rect x="132.7" y="129" width="76.3" height="15.0" fill="rgb(224,188,28)" rx="2" ry="2" />
<text text-anchor="" x="135.74" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (4 samples, 0.32%)</title><rect x="290.8" y="1649" width="3.7" height="15.0" fill="rgb(231,180,18)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::into_stream::IntoStream&lt;F&gt; as futures::stream::Stream&gt;::poll (2 samples, 0.16%)</title><rect x="70.4" y="2017" width="1.9" height="15.0" fill="rgb(241,148,29)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::rt::read_singular_proto3_string_into (2 samples, 0.16%)</title><rect x="1058.9" y="1841" width="1.8" height="15.0" fill="rgb(231,183,16)" rx="2" ry="2" />
<text text-anchor="" x="1061.89" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="218.3" y="481" width="0.9" height="15.0" fill="rgb(253,19,28)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (235 samples, 18.52%)</title><rect x="55.6" y="2033" width="218.5" height="15.0" fill="rgb(207,21,5)" rx="2" ry="2" />
<text text-anchor="" x="58.56" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (81 samples, 6.38%)</title><rect x="132.7" y="113" width="75.4" height="15.0" fill="rgb(222,189,45)" rx="2" ry="2" />
<text text-anchor="" x="135.74" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="121.6" y="241" width="0.9" height="15.0" fill="rgb(253,46,54)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (2 samples, 0.16%)</title><rect x="226.7" y="1569" width="1.8" height="15.0" fill="rgb(223,184,6)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (2 samples, 0.16%)</title><rect x="292.7" y="1473" width="1.8" height="15.0" fill="rgb(243,216,52)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (1 samples, 0.08%)</title><rect x="693.5" y="1233" width="0.9" height="15.0" fill="rgb(219,116,33)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (4 samples, 0.32%)</title><rect x="561.4" y="1633" width="3.7" height="15.0" fill="rgb(237,6,13)" rx="2" ry="2" />
<text text-anchor="" x="564.41" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.8 (1 samples, 0.08%)</title><rect x="1159.3" y="1873" width="0.9" height="15.0" fill="rgb(215,148,52)" rx="2" ry="2" />
<text text-anchor="" x="1162.31" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::Registration::new (1 samples, 0.08%)</title><rect x="742.7" y="1793" width="1.0" height="15.0" fill="rgb(251,212,14)" rx="2" ry="2" />
<text text-anchor="" x="745.73" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="340.1" y="1633" width="0.9" height="15.0" fill="rgb(233,7,42)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="1171.4" y="1825" width="0.9" height="15.0" fill="rgb(245,93,25)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (102 samples, 8.04%)</title><rect x="122.5" y="241" width="94.9" height="15.0" fill="rgb(223,11,41)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (99 samples, 7.80%)</title><rect x="125.3" y="225" width="92.1" height="15.0" fill="rgb(241,206,3)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (7 samples, 0.55%)</title><rect x="110.4" y="1985" width="6.5" height="15.0" fill="rgb(215,174,48)" rx="2" ry="2" />
<text text-anchor="" x="113.43" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="108.6" y="1969" width="0.9" height="15.0" fill="rgb(222,123,46)" rx="2" ry="2" />
<text text-anchor="" x="111.57" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (5 samples, 0.39%)</title><rect x="65.8" y="1921" width="4.6" height="15.0" fill="rgb(254,129,19)" rx="2" ry="2" />
<text text-anchor="" x="68.79" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.08%)</title><rect x="228.5" y="1873" width="0.9" height="15.0" fill="rgb(247,78,8)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="273.2" y="1985" width="0.9" height="15.0" fill="rgb(246,41,11)" rx="2" ry="2" />
<text text-anchor="" x="276.15" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.08%)</title><rect x="228.5" y="1921" width="0.9" height="15.0" fill="rgb(205,10,22)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="78.8" y="1841" width="0.9" height="15.0" fill="rgb(232,149,50)" rx="2" ry="2" />
<text text-anchor="" x="81.81" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="63.9" y="1761" width="1.0" height="15.0" fill="rgb(210,157,21)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_entail (1 samples, 0.08%)</title><rect x="224.8" y="1905" width="0.9" height="15.0" fill="rgb(252,62,0)" rx="2" ry="2" />
<text text-anchor="" x="227.80" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="122.5" y="193" width="0.9" height="15.0" fill="rgb(219,3,15)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.16%)</title><rect x="827.4" y="1729" width="1.8" height="15.0" fill="rgb(217,95,18)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.08%)</title><rect x="932.4" y="1777" width="1.0" height="15.0" fill="rgb(254,196,50)" rx="2" ry="2" />
<text text-anchor="" x="935.43" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="693.5" y="1601" width="1.8" height="15.0" fill="rgb(235,99,18)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (1 samples, 0.08%)</title><rect x="693.5" y="1489" width="0.9" height="15.0" fill="rgb(226,217,52)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll (73 samples, 5.75%)</title><rect x="498.2" y="1809" width="67.9" height="15.0" fill="rgb(225,168,25)" rx="2" ry="2" />
<text text-anchor="" x="501.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;future..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="795.7" y="1585" width="1.0" height="15.0" fill="rgb(235,124,38)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (1 samples, 0.08%)</title><rect x="338.2" y="1905" width="1.0" height="15.0" fill="rgb(248,163,25)" rx="2" ry="2" />
<text text-anchor="" x="341.24" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.16%)</title><rect x="123.4" y="177" width="1.9" height="15.0" fill="rgb(212,9,19)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="1133.3" y="1905" width="0.9" height="15.0" fill="rgb(246,202,22)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="125.3" y="65" width="0.9" height="15.0" fill="rgb(217,21,43)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_nested (1 samples, 0.08%)</title><rect x="212.7" y="65" width="0.9" height="15.0" fill="rgb(227,0,48)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (2 samples, 0.16%)</title><rect x="1168.6" y="1873" width="1.9" height="15.0" fill="rgb(249,132,4)" rx="2" ry="2" />
<text text-anchor="" x="1171.61" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="59.3" y="1761" width="0.9" height="15.0" fill="rgb(227,60,47)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="561" width="96.7" height="15.0" fill="rgb(209,50,17)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="260.1" y="1937" width="1.0" height="15.0" fill="rgb(251,76,20)" rx="2" ry="2" />
<text text-anchor="" x="263.13" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1505" width="97.6" height="15.0" fill="rgb(253,224,50)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter_iovec (1 samples, 0.08%)</title><rect x="560.5" y="1601" width="0.9" height="15.0" fill="rgb(252,86,39)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="221.1" y="1857" width="0.9" height="15.0" fill="rgb(245,59,47)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::stream::map_err::MapErr&lt;S, F&gt; as futures::stream::Stream&gt;::poll (1 samples, 0.08%)</title><rect x="943.6" y="1841" width="0.9" height="15.0" fill="rgb(249,12,51)" rx="2" ry="2" />
<text text-anchor="" x="946.59" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="71.4" y="1921" width="0.9" height="15.0" fill="rgb(209,123,32)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (1 samples, 0.08%)</title><rect x="953.8" y="1313" width="0.9" height="15.0" fill="rgb(210,138,19)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (1 samples, 0.08%)</title><rect x="72.3" y="1969" width="0.9" height="15.0" fill="rgb(252,27,19)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (5 samples, 0.39%)</title><rect x="244.3" y="1825" width="4.7" height="15.0" fill="rgb(252,108,25)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="218.3" y="129" width="0.9" height="15.0" fill="rgb(251,229,11)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="693.5" y="1409" width="0.9" height="15.0" fill="rgb(239,57,52)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Remote::send (1 samples, 0.08%)</title><rect x="221.1" y="1937" width="0.9" height="15.0" fill="rgb(242,181,22)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.16%)</title><rect x="212.7" y="81" width="1.9" height="15.0" fill="rgb(218,127,24)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hpack::HeaderTable::find_header (19 samples, 1.50%)</title><rect x="904.5" y="1809" width="17.7" height="15.0" fill="rgb(237,49,10)" rx="2" ry="2" />
<text text-anchor="" x="907.53" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bictcp_cong_avoid (1 samples, 0.08%)</title><rect x="291.7" y="1521" width="1.0" height="15.0" fill="rgb(241,149,8)" rx="2" ry="2" />
<text text-anchor="" x="294.75" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="79.7" y="1905" width="1.0" height="15.0" fill="rgb(252,18,3)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (4 samples, 0.32%)</title><rect x="113.2" y="1905" width="3.7" height="15.0" fill="rgb(209,91,46)" rx="2" ry="2" />
<text text-anchor="" x="116.22" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::RegistrationInner::set_readiness (5 samples, 0.39%)</title><rect x="1069.1" y="1809" width="4.7" height="15.0" fill="rgb(206,169,35)" rx="2" ry="2" />
<text text-anchor="" x="1072.12" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (7 samples, 0.55%)</title><rect x="958.5" y="1809" width="6.5" height="15.0" fill="rgb(210,195,24)" rx="2" ry="2" />
<text text-anchor="" x="961.46" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (1 samples, 0.08%)</title><rect x="826.4" y="1761" width="1.0" height="15.0" fill="rgb(249,181,38)" rx="2" ry="2" />
<text text-anchor="" x="829.42" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1042.2" y="1825" width="0.9" height="15.0" fill="rgb(236,190,9)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::http_common::LoopInnerCommon&lt;S&gt;&gt;::remove_stream_if_closed (5 samples, 0.39%)</title><rect x="857.1" y="1825" width="4.7" height="15.0" fill="rgb(253,114,49)" rx="2" ry="2" />
<text text-anchor="" x="860.11" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="693.5" y="1361" width="0.9" height="15.0" fill="rgb(212,125,1)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (13 samples, 1.02%)</title><rect x="10.0" y="1985" width="12.1" height="15.0" fill="rgb(225,74,18)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="217.4" y="65" width="0.9" height="15.0" fill="rgb(208,36,51)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="10.0" y="1905" width="0.9" height="15.0" fill="rgb(243,149,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.08%)</title><rect x="554.9" y="1649" width="0.9" height="15.0" fill="rgb(252,171,0)" rx="2" ry="2" />
<text text-anchor="" x="557.90" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.08%)</title><rect x="228.5" y="1825" width="0.9" height="15.0" fill="rgb(235,3,25)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (2 samples, 0.16%)</title><rect x="247.1" y="1761" width="1.9" height="15.0" fill="rgb(245,83,44)" rx="2" ry="2" />
<text text-anchor="" x="250.12" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (1 samples, 0.08%)</title><rect x="104.8" y="1809" width="1.0" height="15.0" fill="rgb(218,48,53)" rx="2" ry="2" />
<text text-anchor="" x="107.85" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.08%)</title><rect x="1133.3" y="1841" width="0.9" height="15.0" fill="rgb(240,103,6)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (1 samples, 0.08%)</title><rect x="1179.8" y="1937" width="0.9" height="15.0" fill="rgb(251,49,30)" rx="2" ry="2" />
<text text-anchor="" x="1182.77" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="657" width="97.6" height="15.0" fill="rgb(235,76,34)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::http_common::HttpReadLoopInner::process_stream_frame (5 samples, 0.39%)</title><rect x="65.8" y="2001" width="4.6" height="15.0" fill="rgb(247,199,41)" rx="2" ry="2" />
<text text-anchor="" x="68.79" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="130.0" y="97" width="0.9" height="15.0" fill="rgb(205,176,1)" rx="2" ry="2" />
<text text-anchor="" x="132.95" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::net::tcp::TcpStream as std::io::Read&gt;::read (6 samples, 0.47%)</title><rect x="529.8" y="1761" width="5.6" height="15.0" fill="rgb(220,140,13)" rx="2" ry="2" />
<text text-anchor="" x="532.80" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (20 samples, 1.58%)</title><rect x="10.0" y="2033" width="18.6" height="15.0" fill="rgb(217,121,9)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="57.4" y="1729" width="1.0" height="15.0" fill="rgb(238,89,8)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (2 samples, 0.16%)</title><rect x="209.9" y="129" width="1.9" height="15.0" fill="rgb(237,161,43)" rx="2" ry="2" />
<text text-anchor="" x="212.92" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="74.2" y="1905" width="0.9" height="15.0" fill="rgb(206,69,43)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="250.8" y="1873" width="1.0" height="15.0" fill="rgb(250,85,25)" rx="2" ry="2" />
<text text-anchor="" x="253.84" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1457" width="97.6" height="15.0" fill="rgb(244,110,12)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="693.5" y="1345" width="0.9" height="15.0" fill="rgb(245,169,53)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (1 samples, 0.08%)</title><rect x="939.9" y="1729" width="0.9" height="15.0" fill="rgb(253,71,39)" rx="2" ry="2" />
<text text-anchor="" x="942.87" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="80.7" y="1953" width="0.9" height="15.0" fill="rgb(250,149,52)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (2 samples, 0.16%)</title><rect x="123.4" y="65" width="1.9" height="15.0" fill="rgb(223,21,26)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.08%)</title><rect x="535.4" y="1665" width="0.9" height="15.0" fill="rgb(244,136,18)" rx="2" ry="2" />
<text text-anchor="" x="538.37" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_entity (1 samples, 0.08%)</title><rect x="720.4" y="1665" width="0.9" height="15.0" fill="rgb(222,134,33)" rx="2" ry="2" />
<text text-anchor="" x="723.42" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.08%)</title><rect x="1175.1" y="1649" width="1.0" height="15.0" fill="rgb(245,159,46)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.08%)</title><rect x="1133.3" y="1761" width="0.9" height="15.0" fill="rgb(217,137,25)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="104.8" y="1825" width="1.0" height="15.0" fill="rgb(254,179,48)" rx="2" ry="2" />
<text text-anchor="" x="107.85" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="59.3" y="1889" width="0.9" height="15.0" fill="rgb(232,60,28)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="57.4" y="1937" width="1.0" height="15.0" fill="rgb(211,227,35)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (2 samples, 0.16%)</title><rect x="536.3" y="1761" width="1.9" height="15.0" fill="rgb(216,113,18)" rx="2" ry="2" />
<text text-anchor="" x="539.30" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="249.9" y="1889" width="0.9" height="15.0" fill="rgb(249,32,48)" rx="2" ry="2" />
<text text-anchor="" x="252.91" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (3 samples, 0.24%)</title><rect x="1107.2" y="1905" width="2.8" height="15.0" fill="rgb(226,187,34)" rx="2" ry="2" />
<text text-anchor="" x="1110.24" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="1104.5" y="1905" width="0.9" height="15.0" fill="rgb(232,57,21)" rx="2" ry="2" />
<text text-anchor="" x="1107.45" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="79.7" y="1617" width="1.0" height="15.0" fill="rgb(232,79,29)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (2 samples, 0.16%)</title><rect x="963.1" y="1489" width="1.9" height="15.0" fill="rgb(216,181,42)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>solicit_fork::http::&lt;impl core::convert::Into&lt;solicit_fork::http::Header&lt;n, v&gt;&gt; for (3 samples, 0.24%)</title><rect x="746.5" y="1793" width="2.7" height="15.0" fill="rgb(230,114,37)" rx="2" ry="2" />
<text text-anchor="" x="749.45" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="963.1" y="1345" width="0.9" height="15.0" fill="rgb(249,180,22)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="74.2" y="1825" width="0.9" height="15.0" fill="rgb(229,63,12)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (1 samples, 0.08%)</title><rect x="828.3" y="1553" width="0.9" height="15.0" fill="rgb(224,166,41)" rx="2" ry="2" />
<text text-anchor="" x="831.28" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::grpc_protobuf::MarshallerProtobuf as grpc::marshall::Marshaller&lt;M&gt;&gt;::read (19 samples, 1.50%)</title><rect x="1043.1" y="1857" width="17.6" height="15.0" fill="rgb(252,80,5)" rx="2" ry="2" />
<text text-anchor="" x="1046.08" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_sd_lb_stats (1 samples, 0.08%)</title><rect x="17.4" y="1857" width="1.0" height="15.0" fill="rgb(218,140,32)" rx="2" ry="2" />
<text text-anchor="" x="20.44" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="866.4" y="1777" width="0.9" height="15.0" fill="rgb(242,28,19)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="53.7" y="1777" width="0.9" height="15.0" fill="rgb(251,188,49)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (1 samples, 0.08%)</title><rect x="287.1" y="1873" width="0.9" height="15.0" fill="rgb(238,142,49)" rx="2" ry="2" />
<text text-anchor="" x="290.10" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="121.6" y="337" width="0.9" height="15.0" fill="rgb(223,159,21)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="641" width="96.7" height="15.0" fill="rgb(229,32,52)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (2 samples, 0.16%)</title><rect x="68.6" y="1521" width="1.8" height="15.0" fill="rgb(211,207,48)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="217.4" y="193" width="0.9" height="15.0" fill="rgb(240,43,20)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="1138.9" y="1777" width="0.9" height="15.0" fill="rgb(244,90,43)" rx="2" ry="2" />
<text text-anchor="" x="1141.86" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (5 samples, 0.39%)</title><rect x="116.9" y="1873" width="4.7" height="15.0" fill="rgb(239,209,45)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (2 samples, 0.16%)</title><rect x="58.4" y="1937" width="1.8" height="15.0" fill="rgb(209,119,3)" rx="2" ry="2" />
<text text-anchor="" x="61.35" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.16%)</title><rect x="563.3" y="1505" width="1.8" height="15.0" fill="rgb(236,65,48)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.16%)</title><rect x="947.3" y="1745" width="1.9" height="15.0" fill="rgb(230,76,48)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1089" width="97.6" height="15.0" fill="rgb(215,47,6)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::server::MethodHandlerDispatchImpl&lt;Req, Resp&gt; as grpc::server::MethodHandlerDispatch&gt;::start_request (1 samples, 0.08%)</title><rect x="107.6" y="2001" width="1.0" height="15.0" fill="rgb(230,185,3)" rx="2" ry="2" />
<text text-anchor="" x="110.64" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (2 samples, 0.16%)</title><rect x="68.6" y="1569" width="1.8" height="15.0" fill="rgb(211,130,32)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="46.3" y="1793" width="1.8" height="15.0" fill="rgb(212,193,2)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1425" width="97.6" height="15.0" fill="rgb(228,53,38)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (16 samples, 1.26%)</title><rect x="234.1" y="1921" width="14.9" height="15.0" fill="rgb(219,86,45)" rx="2" ry="2" />
<text text-anchor="" x="237.10" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1649" width="97.6" height="15.0" fill="rgb(225,211,44)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.32%)</title><rect x="224.8" y="1985" width="3.7" height="15.0" fill="rgb(215,219,10)" rx="2" ry="2" />
<text text-anchor="" x="227.80" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_clean_rtx_queue (1 samples, 0.08%)</title><rect x="964.0" y="1329" width="1.0" height="15.0" fill="rgb(216,94,2)" rx="2" ry="2" />
<text text-anchor="" x="967.04" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="1104.5" y="1873" width="0.9" height="15.0" fill="rgb(243,61,3)" rx="2" ry="2" />
<text text-anchor="" x="1107.45" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="208.1" y="81" width="0.9" height="15.0" fill="rgb(236,0,2)" rx="2" ry="2" />
<text text-anchor="" x="211.06" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (27 samples, 2.13%)</title><rect x="1066.3" y="1857" width="25.1" height="15.0" fill="rgb(223,33,51)" rx="2" ry="2" />
<text text-anchor="" x="1069.33" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (102 samples, 8.04%)</title><rect x="122.5" y="273" width="94.9" height="15.0" fill="rgb(235,135,24)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="795.7" y="1681" width="1.0" height="15.0" fill="rgb(209,20,14)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.16%)</title><rect x="872.9" y="1457" width="1.9" height="15.0" fill="rgb(243,47,29)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (3 samples, 0.24%)</title><rect x="77.0" y="1921" width="2.7" height="15.0" fill="rgb(209,99,43)" rx="2" ry="2" />
<text text-anchor="" x="79.95" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1233" width="97.6" height="15.0" fill="rgb(222,201,34)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="64.9" y="1873" width="0.9" height="15.0" fill="rgb(247,88,36)" rx="2" ry="2" />
<text text-anchor="" x="67.86" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="46.3" y="1825" width="1.8" height="15.0" fill="rgb(220,93,31)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (2 samples, 0.16%)</title><rect x="531.7" y="1729" width="1.8" height="15.0" fill="rgb(228,43,1)" rx="2" ry="2" />
<text text-anchor="" x="534.65" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::grpc_protobuf::MarshallerProtobuf as grpc::marshall::Marshaller&lt;M&gt;&gt;::write (1 samples, 0.08%)</title><rect x="79.7" y="2017" width="1.0" height="15.0" fill="rgb(222,145,49)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::server::GrpcHttpServerHandlerFactory as grpc::http_common::HttpService&gt;::new_request (44 samples, 3.47%)</title><rect x="630.2" y="1793" width="40.9" height="15.0" fill="rgb(245,177,8)" rx="2" ry="2" />
<text text-anchor="" x="633.22" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.16%)</title><rect x="292.7" y="1441" width="1.8" height="15.0" fill="rgb(242,217,1)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="46.3" y="1841" width="1.8" height="15.0" fill="rgb(241,4,44)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_deallocate (2 samples, 0.16%)</title><rect x="653.5" y="1777" width="1.8" height="15.0" fill="rgb(238,28,24)" rx="2" ry="2" />
<text text-anchor="" x="656.47" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.08%)</title><rect x="121.6" y="145" width="0.9" height="15.0" fill="rgb(241,110,26)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (2 samples, 0.16%)</title><rect x="249.9" y="1921" width="1.9" height="15.0" fill="rgb(236,162,43)" rx="2" ry="2" />
<text text-anchor="" x="252.91" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (4 samples, 0.32%)</title><rect x="952.9" y="1777" width="3.7" height="15.0" fill="rgb(224,208,15)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="220.1" y="1857" width="1.0" height="15.0" fill="rgb(216,73,5)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1041" width="97.6" height="15.0" fill="rgb(208,96,27)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (1 samples, 0.08%)</title><rect x="693.5" y="1185" width="0.9" height="15.0" fill="rgb(234,44,23)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (2 samples, 0.16%)</title><rect x="952.9" y="1537" width="1.8" height="15.0" fill="rgb(252,126,34)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (2 samples, 0.16%)</title><rect x="226.7" y="1649" width="1.8" height="15.0" fill="rgb(219,120,48)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (5 samples, 0.39%)</title><rect x="1165.8" y="1905" width="4.7" height="15.0" fill="rgb(205,79,48)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.16%)</title><rect x="1174.2" y="1841" width="1.9" height="15.0" fill="rgb(235,72,16)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (138 samples, 10.87%)</title><rect x="101.1" y="2017" width="128.3" height="15.0" fill="rgb(237,120,35)" rx="2" ry="2" />
<text text-anchor="" x="104.13" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.08%)</title><rect x="52.8" y="1937" width="0.9" height="15.0" fill="rgb(235,79,11)" rx="2" ry="2" />
<text text-anchor="" x="55.77" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (1 samples, 0.08%)</title><rect x="651.6" y="1601" width="0.9" height="15.0" fill="rgb(253,19,43)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="692.5" y="1601" width="1.0" height="15.0" fill="rgb(241,195,21)" rx="2" ry="2" />
<text text-anchor="" x="695.52" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_nested (1 samples, 0.08%)</title><rect x="792.0" y="1601" width="0.9" height="15.0" fill="rgb(252,181,0)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (2 samples, 0.16%)</title><rect x="222.9" y="1729" width="1.9" height="15.0" fill="rgb(242,20,11)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.08%)</title><rect x="69.5" y="1377" width="0.9" height="15.0" fill="rgb(253,76,17)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (2 samples, 0.16%)</title><rect x="954.7" y="1665" width="1.9" height="15.0" fill="rgb(247,168,6)" rx="2" ry="2" />
<text text-anchor="" x="957.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="834.8" y="1617" width="0.9" height="15.0" fill="rgb(239,120,48)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (3 samples, 0.24%)</title><rect x="244.3" y="1585" width="2.8" height="15.0" fill="rgb(221,193,33)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (1 samples, 0.08%)</title><rect x="340.1" y="1745" width="0.9" height="15.0" fill="rgb(213,66,46)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map::Map&lt;A, F&gt; as futures::future::Future&gt;::poll (8 samples, 0.63%)</title><rect x="72.3" y="2017" width="7.4" height="15.0" fill="rgb(217,69,23)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (4 samples, 0.32%)</title><rect x="290.8" y="1665" width="3.7" height="15.0" fill="rgb(209,208,30)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="217.4" y="97" width="0.9" height="15.0" fill="rgb(251,182,4)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="1114.7" y="1905" width="0.9" height="15.0" fill="rgb(229,60,9)" rx="2" ry="2" />
<text text-anchor="" x="1117.68" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (1 samples, 0.08%)</title><rect x="211.8" y="65" width="0.9" height="15.0" fill="rgb(227,170,6)" rx="2" ry="2" />
<text text-anchor="" x="214.78" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (4 samples, 0.32%)</title><rect x="952.9" y="1761" width="3.7" height="15.0" fill="rgb(240,6,26)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="208.1" y="65" width="0.9" height="15.0" fill="rgb(248,19,12)" rx="2" ry="2" />
<text text-anchor="" x="211.06" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.16%)</title><rect x="952.9" y="1585" width="1.8" height="15.0" fill="rgb(232,136,3)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="211.8" y="145" width="0.9" height="15.0" fill="rgb(249,57,20)" rx="2" ry="2" />
<text text-anchor="" x="214.78" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.16%)</title><rect x="827.4" y="1585" width="1.8" height="15.0" fill="rgb(227,11,25)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="218.3" y="193" width="0.9" height="15.0" fill="rgb(250,10,42)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="73.2" y="1969" width="1.0" height="15.0" fill="rgb(240,69,48)" rx="2" ry="2" />
<text text-anchor="" x="76.23" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (4 samples, 0.32%)</title><rect x="61.1" y="1889" width="3.8" height="15.0" fill="rgb(207,171,48)" rx="2" ry="2" />
<text text-anchor="" x="64.14" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="219.2" y="1777" width="0.9" height="15.0" fill="rgb(223,202,53)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (2 samples, 0.16%)</title><rect x="126.2" y="81" width="1.9" height="15.0" fill="rgb(249,82,1)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (9 samples, 0.71%)</title><rect x="335.5" y="1985" width="8.3" height="15.0" fill="rgb(225,208,17)" rx="2" ry="2" />
<text text-anchor="" x="338.45" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;long_tests::long_tests_pb::EchoRequest as protobuf::core::MessageStatic&gt;::new (1 samples, 0.08%)</title><rect x="1060.7" y="1857" width="1.0" height="15.0" fill="rgb(224,96,50)" rx="2" ry="2" />
<text text-anchor="" x="1063.75" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::channel::Sender&lt;T&gt;&gt;::send (1 samples, 0.08%)</title><rect x="1158.4" y="1937" width="0.9" height="15.0" fill="rgb(234,12,23)" rx="2" ry="2" />
<text text-anchor="" x="1161.38" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.08%)</title><rect x="956.6" y="1777" width="0.9" height="15.0" fill="rgb(238,183,36)" rx="2" ry="2" />
<text text-anchor="" x="959.60" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="340.1" y="1793" width="0.9" height="15.0" fill="rgb(209,132,49)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hpack::encoder::encode_integer_into (1 samples, 0.08%)</title><rect x="922.2" y="1809" width="0.9" height="15.0" fill="rgb(254,41,26)" rx="2" ry="2" />
<text text-anchor="" x="925.20" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="106.7" y="1841" width="0.9" height="15.0" fill="rgb(247,121,43)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="217.4" y="161" width="0.9" height="15.0" fill="rgb(249,112,8)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="562.3" y="1505" width="1.0" height="15.0" fill="rgb(230,195,39)" rx="2" ry="2" />
<text text-anchor="" x="565.34" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="54.6" y="2017" width="1.0" height="15.0" fill="rgb(235,126,53)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.08%)</title><rect x="1175.1" y="1617" width="1.0" height="15.0" fill="rgb(214,88,27)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="705" width="97.6" height="15.0" fill="rgb(207,172,9)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="284.3" y="1905" width="0.9" height="15.0" fill="rgb(224,43,1)" rx="2" ry="2" />
<text text-anchor="" x="287.31" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (5 samples, 0.39%)</title><rect x="560.5" y="1713" width="4.6" height="15.0" fill="rgb(219,20,17)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="1042.2" y="1729" width="0.9" height="15.0" fill="rgb(243,53,6)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.08%)</title><rect x="834.8" y="1729" width="0.9" height="15.0" fill="rgb(234,162,50)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="226.7" y="1825" width="1.8" height="15.0" fill="rgb(245,135,35)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (2 samples, 0.16%)</title><rect x="115.1" y="1809" width="1.8" height="15.0" fill="rgb(228,219,43)" rx="2" ry="2" />
<text text-anchor="" x="118.07" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="216.4" y="81" width="1.0" height="15.0" fill="rgb(217,99,13)" rx="2" ry="2" />
<text text-anchor="" x="219.43" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dst_release (1 samples, 0.08%)</title><rect x="953.8" y="1265" width="0.9" height="15.0" fill="rgb(249,173,47)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="79.7" y="1841" width="1.0" height="15.0" fill="rgb(221,45,20)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="106.7" y="1889" width="0.9" height="15.0" fill="rgb(224,179,19)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="125.3" y="129" width="0.9" height="15.0" fill="rgb(214,229,40)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="866.4" y="1665" width="0.9" height="15.0" fill="rgb(243,129,19)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_packet (1 samples, 0.08%)</title><rect x="795.7" y="1473" width="1.0" height="15.0" fill="rgb(226,175,36)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="963.1" y="1297" width="0.9" height="15.0" fill="rgb(247,136,52)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="1167.7" y="1777" width="0.9" height="15.0" fill="rgb(205,26,8)" rx="2" ry="2" />
<text text-anchor="" x="1170.68" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_reallocate (1 samples, 0.08%)</title><rect x="1106.3" y="1905" width="0.9" height="15.0" fill="rgb(223,35,16)" rx="2" ry="2" />
<text text-anchor="" x="1109.31" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="695.3" y="1617" width="0.9" height="15.0" fill="rgb(246,95,47)" rx="2" ry="2" />
<text text-anchor="" x="698.31" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="795.7" y="1649" width="1.0" height="15.0" fill="rgb(232,132,43)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.16%)</title><rect x="212.7" y="113" width="1.9" height="15.0" fill="rgb(217,213,1)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="825.5" y="1713" width="0.9" height="15.0" fill="rgb(207,98,6)" rx="2" ry="2" />
<text text-anchor="" x="828.49" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (4 samples, 0.32%)</title><rect x="61.1" y="1921" width="3.8" height="15.0" fill="rgb(226,149,30)" rx="2" ry="2" />
<text text-anchor="" x="64.14" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (2 samples, 0.16%)</title><rect x="115.1" y="1873" width="1.8" height="15.0" fill="rgb(245,197,9)" rx="2" ry="2" />
<text text-anchor="" x="118.07" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (103 samples, 8.12%)</title><rect x="122.5" y="369" width="95.8" height="15.0" fill="rgb(231,206,47)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedOutputStream::write_raw_bytes (1 samples, 0.08%)</title><rect x="1094.2" y="1841" width="1.0" height="15.0" fill="rgb(218,38,37)" rx="2" ry="2" />
<text text-anchor="" x="1097.22" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.08%)</title><rect x="57.4" y="1633" width="1.0" height="15.0" fill="rgb(247,86,24)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (3 samples, 0.24%)</title><rect x="244.3" y="1569" width="2.8" height="15.0" fill="rgb(212,174,25)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (108 samples, 8.51%)</title><rect x="121.6" y="1969" width="100.4" height="15.0" fill="rgb(213,116,11)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (3 samples, 0.24%)</title><rect x="1174.2" y="1905" width="2.8" height="15.0" fill="rgb(241,188,17)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="727.9" y="1713" width="0.9" height="15.0" fill="rgb(218,76,52)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_nested (2 samples, 0.16%)</title><rect x="41.6" y="1873" width="1.9" height="15.0" fill="rgb(227,30,9)" rx="2" ry="2" />
<text text-anchor="" x="44.62" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="47.2" y="1553" width="0.9" height="15.0" fill="rgb(213,226,9)" rx="2" ry="2" />
<text text-anchor="" x="50.19" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.08%)</title><rect x="561.4" y="1569" width="0.9" height="15.0" fill="rgb(217,150,18)" rx="2" ry="2" />
<text text-anchor="" x="564.41" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::channel::Receiver&lt;T&gt; as mio::io::Evented&gt;::register (8 samples, 0.63%)</title><rect x="775.3" y="1761" width="7.4" height="15.0" fill="rgb(245,97,25)" rx="2" ry="2" />
<text text-anchor="" x="778.28" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (1 samples, 0.08%)</title><rect x="71.4" y="1729" width="0.9" height="15.0" fill="rgb(249,44,10)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Remote::send (1 samples, 0.08%)</title><rect x="54.6" y="1969" width="1.0" height="15.0" fill="rgb(205,126,0)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.16%)</title><rect x="68.6" y="1745" width="1.8" height="15.0" fill="rgb(244,93,7)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (5 samples, 0.39%)</title><rect x="244.3" y="1809" width="4.7" height="15.0" fill="rgb(241,154,24)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="121.6" y="353" width="0.9" height="15.0" fill="rgb(240,101,38)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="211.8" y="129" width="0.9" height="15.0" fill="rgb(233,122,13)" rx="2" ry="2" />
<text text-anchor="" x="214.78" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.08%)</title><rect x="950.1" y="1793" width="0.9" height="15.0" fill="rgb(223,173,36)" rx="2" ry="2" />
<text text-anchor="" x="953.09" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (4 samples, 0.32%)</title><rect x="290.8" y="1825" width="3.7" height="15.0" fill="rgb(240,188,8)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.16%)</title><rect x="650.7" y="1777" width="1.8" height="15.0" fill="rgb(223,59,33)" rx="2" ry="2" />
<text text-anchor="" x="653.68" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="71.4" y="1633" width="0.9" height="15.0" fill="rgb(234,77,10)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (102 samples, 8.04%)</title><rect x="122.5" y="289" width="94.9" height="15.0" fill="rgb(221,192,28)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (40 samples, 3.15%)</title><rect x="135.5" y="33" width="37.2" height="15.0" fill="rgb(248,193,18)" rx="2" ry="2" />
<text text-anchor="" x="138.53" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.32%)</title><rect x="12.8" y="1825" width="3.7" height="15.0" fill="rgb(246,173,33)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.08%)</title><rect x="16.5" y="1841" width="0.9" height="15.0" fill="rgb(237,105,29)" rx="2" ry="2" />
<text text-anchor="" x="19.51" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (6 samples, 0.47%)</title><rect x="60.2" y="1969" width="5.6" height="15.0" fill="rgb(231,180,31)" rx="2" ry="2" />
<text text-anchor="" x="63.21" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="227.6" y="1489" width="0.9" height="15.0" fill="rgb(207,202,25)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="47.2" y="1617" width="0.9" height="15.0" fill="rgb(229,83,54)" rx="2" ry="2" />
<text text-anchor="" x="50.19" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (2 samples, 0.16%)</title><rect x="541.9" y="1681" width="1.8" height="15.0" fill="rgb(224,147,46)" rx="2" ry="2" />
<text text-anchor="" x="544.88" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="217.4" y="145" width="0.9" height="15.0" fill="rgb(205,203,53)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (2 samples, 0.16%)</title><rect x="693.5" y="1633" width="1.8" height="15.0" fill="rgb(240,161,12)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futures::task_impl::fresh_task_id (2 samples, 0.16%)</title><rect x="707.4" y="1793" width="1.9" height="15.0" fill="rgb(245,198,6)" rx="2" ry="2" />
<text text-anchor="" x="710.40" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::and_then::AndThen&lt;A, B, F&gt; as futures::future::Future&gt;::poll (343 samples, 27.03%)</title><rect x="483.3" y="1825" width="318.9" height="15.0" fill="rgb(210,49,38)" rx="2" ry="2" />
<text text-anchor="" x="486.30" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::future::and_then::AndThen&lt;A, B, F..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="1171.4" y="1793" width="0.9" height="15.0" fill="rgb(212,126,18)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (2 samples, 0.16%)</title><rect x="115.1" y="1825" width="1.8" height="15.0" fill="rgb(223,103,43)" rx="2" ry="2" />
<text text-anchor="" x="118.07" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="219.2" y="1873" width="0.9" height="15.0" fill="rgb(222,130,10)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (3 samples, 0.24%)</title><rect x="275.9" y="2017" width="2.8" height="15.0" fill="rgb(229,219,30)" rx="2" ry="2" />
<text text-anchor="" x="278.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (9 samples, 0.71%)</title><rect x="867.3" y="1825" width="8.4" height="15.0" fill="rgb(220,75,54)" rx="2" ry="2" />
<text text-anchor="" x="870.34" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::eof (1 samples, 0.08%)</title><rect x="1055.2" y="1825" width="0.9" height="15.0" fill="rgb(230,165,53)" rx="2" ry="2" />
<text text-anchor="" x="1058.17" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.08%)</title><rect x="533.5" y="1729" width="0.9" height="15.0" fill="rgb(244,37,14)" rx="2" ry="2" />
<text text-anchor="" x="536.51" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hpack::decoder::Decoder::decode::{{closure}} (10 samples, 0.79%)</title><rect x="721.3" y="1777" width="9.3" height="15.0" fill="rgb(222,181,9)" rx="2" ry="2" />
<text text-anchor="" x="724.35" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="57.4" y="1601" width="1.0" height="15.0" fill="rgb(217,213,17)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.08%)</title><rect x="68.6" y="1425" width="0.9" height="15.0" fill="rgb(241,138,43)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.16%)</title><rect x="563.3" y="1457" width="1.8" height="15.0" fill="rgb(207,191,18)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_fast_path_on (1 samples, 0.08%)</title><rect x="244.3" y="1505" width="1.0" height="15.0" fill="rgb(239,116,9)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="795.7" y="1505" width="1.0" height="15.0" fill="rgb(228,24,25)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1169" width="97.6" height="15.0" fill="rgb(230,15,5)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (5 samples, 0.39%)</title><rect x="116.9" y="1985" width="4.7" height="15.0" fill="rgb(207,64,39)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1809" width="97.6" height="15.0" fill="rgb(232,178,50)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="1171.4" y="1921" width="0.9" height="15.0" fill="rgb(211,209,3)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="873.8" y="1297" width="1.0" height="15.0" fill="rgb(235,62,22)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::num::&lt;impl core::fmt::Display for u32&gt;::fmt (5 samples, 0.39%)</title><rect x="702.8" y="1761" width="4.6" height="15.0" fill="rgb(206,157,31)" rx="2" ry="2" />
<text text-anchor="" x="705.75" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="70.4" y="1921" width="1.0" height="15.0" fill="rgb(220,12,29)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (2 samples, 0.16%)</title><rect x="963.1" y="1553" width="1.9" height="15.0" fill="rgb(235,203,39)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;collections::vec::Vec&lt;T&gt;&gt;::reserve (1 samples, 0.08%)</title><rect x="930.6" y="1777" width="0.9" height="15.0" fill="rgb(251,81,19)" rx="2" ry="2" />
<text text-anchor="" x="933.57" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.08%)</title><rect x="122.5" y="177" width="0.9" height="15.0" fill="rgb(241,6,23)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1793" width="97.6" height="15.0" fill="rgb(223,58,28)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="79.7" y="1649" width="1.0" height="15.0" fill="rgb(242,191,36)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (1 samples, 0.08%)</title><rect x="693.5" y="1281" width="0.9" height="15.0" fill="rgb(225,82,21)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (5 samples, 0.39%)</title><rect x="560.5" y="1729" width="4.6" height="15.0" fill="rgb(217,75,54)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_data_queue (1 samples, 0.08%)</title><rect x="69.5" y="1489" width="0.9" height="15.0" fill="rgb(220,181,53)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="74.2" y="1985" width="0.9" height="15.0" fill="rgb(206,195,40)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.08%)</title><rect x="795.7" y="1489" width="1.0" height="15.0" fill="rgb(213,203,21)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.16%)</title><rect x="682.3" y="1745" width="1.9" height="15.0" fill="rgb(213,225,27)" rx="2" ry="2" />
<text text-anchor="" x="685.29" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::channel::SenderCtl as core::ops::Drop&gt;::drop (1 samples, 0.08%)</title><rect x="1115.6" y="1921" width="0.9" height="15.0" fill="rgb(215,170,36)" rx="2" ry="2" />
<text text-anchor="" x="1118.61" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_tcache_bin_flush_small (1 samples, 0.08%)</title><rect x="355.9" y="2033" width="0.9" height="15.0" fill="rgb(245,77,0)" rx="2" ry="2" />
<text text-anchor="" x="358.91" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (12 samples, 0.95%)</title><rect x="37.0" y="1905" width="11.1" height="15.0" fill="rgb(235,59,0)" rx="2" ry="2" />
<text text-anchor="" x="39.97" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (3 samples, 0.24%)</title><rect x="249.0" y="1937" width="2.8" height="15.0" fill="rgb(218,164,38)" rx="2" ry="2" />
<text text-anchor="" x="251.98" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="1174.2" y="1921" width="2.8" height="15.0" fill="rgb(253,212,42)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="128.1" y="113" width="0.9" height="15.0" fill="rgb(219,3,48)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (9 samples, 0.71%)</title><rect x="687.9" y="1681" width="8.3" height="15.0" fill="rgb(250,127,43)" rx="2" ry="2" />
<text text-anchor="" x="690.87" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="57.4" y="1969" width="1.0" height="15.0" fill="rgb(223,174,23)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="739.9" y="1761" width="1.0" height="15.0" fill="rgb(242,55,7)" rx="2" ry="2" />
<text text-anchor="" x="742.94" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (2 samples, 0.16%)</title><rect x="222.9" y="1841" width="1.9" height="15.0" fill="rgb(215,12,10)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.08%)</title><rect x="1175.1" y="1729" width="1.0" height="15.0" fill="rgb(229,11,7)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="47.2" y="1585" width="0.9" height="15.0" fill="rgb(206,121,33)" rx="2" ry="2" />
<text text-anchor="" x="50.19" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (3 samples, 0.24%)</title><rect x="1165.8" y="1841" width="2.8" height="15.0" fill="rgb(240,187,40)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (2 samples, 0.16%)</title><rect x="1160.2" y="1713" width="1.9" height="15.0" fill="rgb(248,136,53)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="218.3" y="385" width="0.9" height="15.0" fill="rgb(205,95,38)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_established_options (1 samples, 0.08%)</title><rect x="874.8" y="1681" width="0.9" height="15.0" fill="rgb(245,227,25)" rx="2" ry="2" />
<text text-anchor="" x="877.78" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="108.6" y="1905" width="0.9" height="15.0" fill="rgb(246,223,22)" rx="2" ry="2" />
<text text-anchor="" x="111.57" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.16%)</title><rect x="68.6" y="1617" width="1.8" height="15.0" fill="rgb(217,79,39)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.8 (1 samples, 0.08%)</title><rect x="22.1" y="1985" width="0.9" height="15.0" fill="rgb(212,53,33)" rx="2" ry="2" />
<text text-anchor="" x="25.09" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (5 samples, 0.39%)</title><rect x="560.5" y="1681" width="4.6" height="15.0" fill="rgb(242,138,25)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="10.9" y="1953" width="1.0" height="15.0" fill="rgb(244,180,6)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>long_tests_serv (1,269 samples, 100.00%)</title><rect x="10.0" y="2049" width="1180.0" height="15.0" fill="rgb(216,31,49)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >long_tests_serv</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.08%)</title><rect x="834.8" y="1697" width="0.9" height="15.0" fill="rgb(236,109,25)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="340.1" y="1857" width="0.9" height="15.0" fill="rgb(214,217,3)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::rt::read_singular_proto3_string_into (10 samples, 0.79%)</title><rect x="1045.9" y="1825" width="9.3" height="15.0" fill="rgb(236,4,47)" rx="2" ry="2" />
<text text-anchor="" x="1048.87" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="79.7" y="1985" width="1.0" height="15.0" fill="rgb(247,142,6)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="795.7" y="1729" width="1.0" height="15.0" fill="rgb(216,204,24)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (2 samples, 0.16%)</title><rect x="554.0" y="1697" width="1.8" height="15.0" fill="rgb(216,11,1)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (1 samples, 0.08%)</title><rect x="564.2" y="1233" width="0.9" height="15.0" fill="rgb(243,195,5)" rx="2" ry="2" />
<text text-anchor="" x="567.20" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="130.0" y="145" width="0.9" height="15.0" fill="rgb(223,29,18)" rx="2" ry="2" />
<text text-anchor="" x="132.95" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (2 samples, 0.16%)</title><rect x="740.9" y="1777" width="1.8" height="15.0" fill="rgb(210,194,52)" rx="2" ry="2" />
<text text-anchor="" x="743.87" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.16%)</title><rect x="682.3" y="1681" width="1.9" height="15.0" fill="rgb(213,8,7)" rx="2" ry="2" />
<text text-anchor="" x="685.29" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (5 samples, 0.39%)</title><rect x="75.1" y="2001" width="4.6" height="15.0" fill="rgb(247,146,28)" rx="2" ry="2" />
<text text-anchor="" x="78.09" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="401" width="96.7" height="15.0" fill="rgb(250,191,32)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="218.3" y="145" width="0.9" height="15.0" fill="rgb(222,15,52)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (11 samples, 0.87%)</title><rect x="37.9" y="1889" width="10.2" height="15.0" fill="rgb(212,21,28)" rx="2" ry="2" />
<text text-anchor="" x="40.90" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.08%)</title><rect x="1175.1" y="1601" width="1.0" height="15.0" fill="rgb(234,207,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_tcache_fill_small (8 samples, 0.63%)</title><rect x="261.1" y="2017" width="7.4" height="15.0" fill="rgb(210,135,28)" rx="2" ry="2" />
<text text-anchor="" x="264.06" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="218.3" y="513" width="0.9" height="15.0" fill="rgb(250,34,20)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (2 samples, 0.16%)</title><rect x="543.7" y="1665" width="1.9" height="15.0" fill="rgb(238,74,36)" rx="2" ry="2" />
<text text-anchor="" x="546.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="80.7" y="1937" width="0.9" height="15.0" fill="rgb(235,104,42)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="216.4" y="65" width="1.0" height="15.0" fill="rgb(234,116,8)" rx="2" ry="2" />
<text text-anchor="" x="219.43" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="81.6" y="1969" width="0.9" height="15.0" fill="rgb(214,128,30)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::poll::RegistrationInner as core::ops::Drop&gt;::drop (5 samples, 0.39%)</title><rect x="1069.1" y="1825" width="4.7" height="15.0" fill="rgb(238,100,11)" rx="2" ry="2" />
<text text-anchor="" x="1072.12" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.08%)</title><rect x="1103.5" y="1793" width="1.0" height="15.0" fill="rgb(207,196,26)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (25 samples, 1.97%)</title><rect x="356.8" y="2033" width="23.3" height="15.0" fill="rgb(209,183,27)" rx="2" ry="2" />
<text text-anchor="" x="359.84" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (4 samples, 0.32%)</title><rect x="952.9" y="1729" width="3.7" height="15.0" fill="rgb(247,41,13)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.16%)</title><rect x="214.6" y="113" width="1.8" height="15.0" fill="rgb(212,191,22)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.08%)</title><rect x="685.1" y="1777" width="0.9" height="15.0" fill="rgb(242,104,24)" rx="2" ry="2" />
<text text-anchor="" x="688.08" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="56.5" y="1873" width="0.9" height="15.0" fill="rgb(217,137,53)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="792.0" y="1729" width="0.9" height="15.0" fill="rgb(242,191,39)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::read (2 samples, 0.16%)</title><rect x="1057.0" y="1793" width="1.9" height="15.0" fill="rgb(244,17,31)" rx="2" ry="2" />
<text text-anchor="" x="1060.03" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1537" width="97.6" height="15.0" fill="rgb(212,135,44)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="1042.2" y="1793" width="0.9" height="15.0" fill="rgb(237,217,25)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="81.6" y="1889" width="0.9" height="15.0" fill="rgb(205,3,22)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (1 samples, 0.08%)</title><rect x="964.0" y="1313" width="1.0" height="15.0" fill="rgb(216,102,50)" rx="2" ry="2" />
<text text-anchor="" x="967.04" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::RegistrationInner::set_readiness (1 samples, 0.08%)</title><rect x="1132.3" y="1889" width="1.0" height="15.0" fill="rgb(244,212,10)" rx="2" ry="2" />
<text text-anchor="" x="1135.35" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="128.1" y="129" width="0.9" height="15.0" fill="rgb(217,164,13)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="273.2" y="1953" width="0.9" height="15.0" fill="rgb(236,108,11)" rx="2" ry="2" />
<text text-anchor="" x="276.15" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.08%)</title><rect x="69.5" y="1409" width="0.9" height="15.0" fill="rgb(239,86,17)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="122.5" y="129" width="0.9" height="15.0" fill="rgb(226,75,37)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1665" width="97.6" height="15.0" fill="rgb(220,164,45)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="226.7" y="1809" width="1.8" height="15.0" fill="rgb(234,65,29)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (4 samples, 0.32%)</title><rect x="290.8" y="1601" width="3.7" height="15.0" fill="rgb(219,1,8)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="866.4" y="1761" width="0.9" height="15.0" fill="rgb(240,11,9)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="80.7" y="1793" width="0.9" height="15.0" fill="rgb(245,5,1)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="497" width="96.7" height="15.0" fill="rgb(224,133,13)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (1 samples, 0.08%)</title><rect x="59.3" y="1697" width="0.9" height="15.0" fill="rgb(209,125,25)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (2 samples, 0.16%)</title><rect x="245.3" y="1505" width="1.8" height="15.0" fill="rgb(253,96,35)" rx="2" ry="2" />
<text text-anchor="" x="248.26" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (5 samples, 0.39%)</title><rect x="244.3" y="1793" width="4.7" height="15.0" fill="rgb(231,17,34)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (2 samples, 0.16%)</title><rect x="1171.4" y="1937" width="1.9" height="15.0" fill="rgb(219,4,30)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.39%)</title><rect x="1165.8" y="1921" width="4.7" height="15.0" fill="rgb(239,117,20)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.32%)</title><rect x="541.9" y="1729" width="3.7" height="15.0" fill="rgb(239,61,33)" rx="2" ry="2" />
<text text-anchor="" x="544.88" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset (1 samples, 0.08%)</title><rect x="558.6" y="1777" width="1.0" height="15.0" fill="rgb(240,17,6)" rx="2" ry="2" />
<text text-anchor="" x="561.62" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1937" width="97.6" height="15.0" fill="rgb(247,149,7)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="862.7" y="1777" width="0.9" height="15.0" fill="rgb(249,148,52)" rx="2" ry="2" />
<text text-anchor="" x="865.69" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="69.5" y="1361" width="0.9" height="15.0" fill="rgb(216,60,29)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (9 samples, 0.71%)</title><rect x="335.5" y="1969" width="8.3" height="15.0" fill="rgb(210,148,16)" rx="2" ry="2" />
<text text-anchor="" x="338.45" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="220.1" y="1889" width="1.0" height="15.0" fill="rgb(243,66,15)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.08%)</title><rect x="217.4" y="113" width="0.9" height="15.0" fill="rgb(254,47,20)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="211.8" y="113" width="0.9" height="15.0" fill="rgb(226,194,50)" rx="2" ry="2" />
<text text-anchor="" x="214.78" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="218.3" y="257" width="0.9" height="15.0" fill="rgb(234,19,12)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (1 samples, 0.08%)</title><rect x="565.1" y="1793" width="1.0" height="15.0" fill="rgb(222,214,28)" rx="2" ry="2" />
<text text-anchor="" x="568.13" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.16%)</title><rect x="963.1" y="1585" width="1.9" height="15.0" fill="rgb(220,217,12)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (27 samples, 2.13%)</title><rect x="274.1" y="2033" width="25.1" height="15.0" fill="rgb(205,57,31)" rx="2" ry="2" />
<text text-anchor="" x="277.08" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="53.7" y="1825" width="0.9" height="15.0" fill="rgb(215,179,25)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.08%)</title><rect x="532.6" y="1633" width="0.9" height="15.0" fill="rgb(217,46,41)" rx="2" ry="2" />
<text text-anchor="" x="535.58" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (6 samples, 0.47%)</title><rect x="111.4" y="1969" width="5.5" height="15.0" fill="rgb(224,221,2)" rx="2" ry="2" />
<text text-anchor="" x="114.36" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="69.5" y="1457" width="0.9" height="15.0" fill="rgb(209,109,52)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (3 samples, 0.24%)</title><rect x="18.4" y="1889" width="2.8" height="15.0" fill="rgb(215,19,52)" rx="2" ry="2" />
<text text-anchor="" x="21.37" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="218.3" y="417" width="0.9" height="15.0" fill="rgb(212,190,50)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8 (2 samples, 0.16%)</title><rect x="655.3" y="1777" width="1.9" height="15.0" fill="rgb(220,109,22)" rx="2" ry="2" />
<text text-anchor="" x="658.33" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="1170.5" y="1921" width="0.9" height="15.0" fill="rgb(214,107,2)" rx="2" ry="2" />
<text text-anchor="" x="1173.47" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="55.6" y="1969" width="0.9" height="15.0" fill="rgb(215,88,22)" rx="2" ry="2" />
<text text-anchor="" x="58.56" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (2 samples, 0.16%)</title><rect x="123.4" y="113" width="1.9" height="15.0" fill="rgb(252,200,5)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (4 samples, 0.32%)</title><rect x="224.8" y="1937" width="3.7" height="15.0" fill="rgb(248,50,38)" rx="2" ry="2" />
<text text-anchor="" x="227.80" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="873.8" y="1265" width="1.0" height="15.0" fill="rgb(238,220,48)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_ack (1 samples, 0.08%)</title><rect x="226.7" y="1505" width="0.9" height="15.0" fill="rgb(246,27,24)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (4 samples, 0.32%)</title><rect x="48.1" y="1905" width="3.7" height="15.0" fill="rgb(243,166,26)" rx="2" ry="2" />
<text text-anchor="" x="51.12" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (4 samples, 0.32%)</title><rect x="871.1" y="1713" width="3.7" height="15.0" fill="rgb(228,132,22)" rx="2" ry="2" />
<text text-anchor="" x="874.06" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1153" width="97.6" height="15.0" fill="rgb(249,203,47)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1873" width="97.6" height="15.0" fill="rgb(236,220,11)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (1 samples, 0.08%)</title><rect x="795.7" y="1633" width="1.0" height="15.0" fill="rgb(235,201,4)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::io_token::IoToken::drop_source (2 samples, 0.16%)</title><rect x="220.1" y="1953" width="1.9" height="15.0" fill="rgb(216,192,23)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="126.2" y="49" width="1.0" height="15.0" fill="rgb(238,105,40)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::server::MethodHandlerUnary&lt;F&gt; as grpc::server::MethodHandler&lt;Req, Resp&gt;&gt;::handle (4 samples, 0.32%)</title><rect x="645.1" y="1729" width="3.7" height="15.0" fill="rgb(209,71,46)" rx="2" ry="2" />
<text text-anchor="" x="648.10" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (2 samples, 0.16%)</title><rect x="872.9" y="1393" width="1.9" height="15.0" fill="rgb(220,176,44)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="120.7" y="1809" width="0.9" height="15.0" fill="rgb(232,83,31)" rx="2" ry="2" />
<text text-anchor="" x="123.65" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.16%)</title><rect x="292.7" y="1393" width="1.8" height="15.0" fill="rgb(232,136,47)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.08%)</title><rect x="720.4" y="1681" width="0.9" height="15.0" fill="rgb(231,184,13)" rx="2" ry="2" />
<text text-anchor="" x="723.42" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (2 samples, 0.16%)</title><rect x="969.6" y="1825" width="1.9" height="15.0" fill="rgb(252,39,38)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_current_mss (2 samples, 0.16%)</title><rect x="295.5" y="1905" width="1.8" height="15.0" fill="rgb(253,11,22)" rx="2" ry="2" />
<text text-anchor="" x="298.47" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="94.6" y="1761" width="0.9" height="15.0" fill="rgb(254,195,21)" rx="2" ry="2" />
<text text-anchor="" x="97.62" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (1 samples, 0.08%)</title><rect x="663.7" y="1713" width="0.9" height="15.0" fill="rgb(243,23,39)" rx="2" ry="2" />
<text text-anchor="" x="666.70" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (3 samples, 0.24%)</title><rect x="244.3" y="1665" width="2.8" height="15.0" fill="rgb(226,59,9)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="913" width="97.6" height="15.0" fill="rgb(225,75,8)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.08%)</title><rect x="268.5" y="2017" width="0.9" height="15.0" fill="rgb(236,112,17)" rx="2" ry="2" />
<text text-anchor="" x="271.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (19 samples, 1.50%)</title><rect x="83.5" y="1969" width="17.6" height="15.0" fill="rgb(235,145,12)" rx="2" ry="2" />
<text text-anchor="" x="86.46" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="71.4" y="1937" width="0.9" height="15.0" fill="rgb(222,173,19)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (1 samples, 0.08%)</title><rect x="1175.1" y="1665" width="1.0" height="15.0" fill="rgb(230,225,10)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="53.7" y="1969" width="0.9" height="15.0" fill="rgb(231,30,1)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="106.7" y="1857" width="0.9" height="15.0" fill="rgb(231,57,48)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.08%)</title><rect x="921.3" y="1697" width="0.9" height="15.0" fill="rgb(252,215,39)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="121.6" y="257" width="0.9" height="15.0" fill="rgb(234,117,0)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (1 samples, 0.08%)</title><rect x="53.7" y="1617" width="0.9" height="15.0" fill="rgb(249,172,42)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (25 samples, 1.97%)</title><rect x="229.4" y="2017" width="23.3" height="15.0" fill="rgb(231,212,31)" rx="2" ry="2" />
<text text-anchor="" x="232.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.08%)</title><rect x="873.8" y="1169" width="1.0" height="15.0" fill="rgb(236,69,35)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="298.3" y="1937" width="0.9" height="15.0" fill="rgb(236,86,36)" rx="2" ry="2" />
<text text-anchor="" x="301.26" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="63.9" y="1809" width="1.0" height="15.0" fill="rgb(231,187,38)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedOutputStream::new (1 samples, 0.08%)</title><rect x="1097.9" y="1873" width="1.0" height="15.0" fill="rgb(208,80,20)" rx="2" ry="2" />
<text text-anchor="" x="1100.94" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="209.0" y="129" width="0.9" height="15.0" fill="rgb(221,6,20)" rx="2" ry="2" />
<text text-anchor="" x="211.99" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_md5_lookup (1 samples, 0.08%)</title><rect x="296.4" y="1889" width="0.9" height="15.0" fill="rgb(236,3,27)" rx="2" ry="2" />
<text text-anchor="" x="299.40" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="128.1" y="161" width="0.9" height="15.0" fill="rgb(206,17,12)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="246.2" y="1457" width="0.9" height="15.0" fill="rgb(211,58,21)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="340.1" y="1713" width="0.9" height="15.0" fill="rgb(207,157,1)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="59.3" y="1793" width="0.9" height="15.0" fill="rgb(217,126,1)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.08%)</title><rect x="227.6" y="1425" width="0.9" height="15.0" fill="rgb(224,138,25)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.16%)</title><rect x="274.1" y="2017" width="1.8" height="15.0" fill="rgb(254,152,50)" rx="2" ry="2" />
<text text-anchor="" x="277.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (1 samples, 0.08%)</title><rect x="651.6" y="1745" width="0.9" height="15.0" fill="rgb(228,229,25)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.16%)</title><rect x="209.9" y="81" width="1.9" height="15.0" fill="rgb(253,100,2)" rx="2" ry="2" />
<text text-anchor="" x="212.92" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::sync::mpsc::spsc_queue::Queue&lt;T&gt;&gt;::pop (5 samples, 0.39%)</title><rect x="1026.3" y="1809" width="4.7" height="15.0" fill="rgb(217,124,20)" rx="2" ry="2" />
<text text-anchor="" x="1029.34" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="218.3" y="337" width="0.9" height="15.0" fill="rgb(252,164,43)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;solicit_fork::http::frame::headers::HeadersFrame&lt;a&gt; as solicit_fork::http::frame::Frame&lt;a&gt;&gt;::is_set (1 samples, 0.08%)</title><rect x="900.8" y="1809" width="0.9" height="15.0" fill="rgb(223,171,43)" rx="2" ry="2" />
<text text-anchor="" x="903.81" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="1137.9" y="1905" width="2.8" height="15.0" fill="rgb(244,189,10)" rx="2" ry="2" />
<text text-anchor="" x="1140.93" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.08%)</title><rect x="686.0" y="1713" width="0.9" height="15.0" fill="rgb(217,128,30)" rx="2" ry="2" />
<text text-anchor="" x="689.01" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (2 samples, 0.16%)</title><rect x="115.1" y="1841" width="1.8" height="15.0" fill="rgb(236,191,1)" rx="2" ry="2" />
<text text-anchor="" x="118.07" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="260.1" y="1953" width="1.0" height="15.0" fill="rgb(253,207,18)" rx="2" ry="2" />
<text text-anchor="" x="263.13" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (2 samples, 0.16%)</title><rect x="563.3" y="1345" width="1.8" height="15.0" fill="rgb(254,203,20)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.08%)</title><rect x="59.3" y="1777" width="0.9" height="15.0" fill="rgb(212,150,41)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (3 samples, 0.24%)</title><rect x="244.3" y="1761" width="2.8" height="15.0" fill="rgb(218,35,28)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="56.5" y="1921" width="0.9" height="15.0" fill="rgb(249,182,15)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (2 samples, 0.16%)</title><rect x="68.6" y="1601" width="1.8" height="15.0" fill="rgb(214,121,25)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;collections::vec::Vec&lt;T&gt; as core::iter::traits::Extend&lt;T&gt;&gt;::extend (5 samples, 0.39%)</title><rect x="1006.8" y="1841" width="4.7" height="15.0" fill="rgb(208,63,10)" rx="2" ry="2" />
<text text-anchor="" x="1009.82" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="939.9" y="1793" width="0.9" height="15.0" fill="rgb(228,176,14)" rx="2" ry="2" />
<text text-anchor="" x="942.87" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll (1 samples, 0.08%)</title><rect x="74.2" y="2001" width="0.9" height="15.0" fill="rgb(249,183,48)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Core::notify (1 samples, 0.08%)</title><rect x="553.0" y="1729" width="1.0" height="15.0" fill="rgb(253,98,51)" rx="2" ry="2" />
<text text-anchor="" x="556.04" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (15 samples, 1.18%)</title><rect x="85.3" y="1953" width="14.0" height="15.0" fill="rgb(205,175,35)" rx="2" ry="2" />
<text text-anchor="" x="88.32" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="1098.9" y="1857" width="0.9" height="15.0" fill="rgb(252,93,44)" rx="2" ry="2" />
<text text-anchor="" x="1101.87" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_ack (1 samples, 0.08%)</title><rect x="872.9" y="1329" width="0.9" height="15.0" fill="rgb(205,19,34)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.08%)</title><rect x="245.3" y="1457" width="0.9" height="15.0" fill="rgb(223,204,47)" rx="2" ry="2" />
<text text-anchor="" x="248.26" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::arc::Arc&lt;T&gt;&gt;::drop_slow (2 samples, 0.16%)</title><rect x="1081.2" y="1809" width="1.9" height="15.0" fill="rgb(235,89,0)" rx="2" ry="2" />
<text text-anchor="" x="1084.21" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.08%)</title><rect x="969.6" y="1729" width="1.0" height="15.0" fill="rgb(208,136,29)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.08%)</title><rect x="564.2" y="1217" width="0.9" height="15.0" fill="rgb(211,27,14)" rx="2" ry="2" />
<text text-anchor="" x="567.20" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.08%)</title><rect x="535.4" y="1697" width="0.9" height="15.0" fill="rgb(233,58,7)" rx="2" ry="2" />
<text text-anchor="" x="538.37" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::solicit_misc::HttpFrameClassified::from_raw (7 samples, 0.55%)</title><rect x="793.9" y="1809" width="6.5" height="15.0" fill="rgb(231,203,50)" rx="2" ry="2" />
<text text-anchor="" x="796.88" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="10.0" y="1953" width="0.9" height="15.0" fill="rgb(210,15,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (2 samples, 0.16%)</title><rect x="116.9" y="1857" width="1.9" height="15.0" fill="rgb(206,60,25)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (3 samples, 0.24%)</title><rect x="118.8" y="1841" width="2.8" height="15.0" fill="rgb(251,24,49)" rx="2" ry="2" />
<text text-anchor="" x="121.79" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (2 samples, 0.16%)</title><rect x="954.7" y="1713" width="1.9" height="15.0" fill="rgb(210,14,2)" rx="2" ry="2" />
<text text-anchor="" x="957.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.16%)</title><rect x="947.3" y="1729" width="1.9" height="15.0" fill="rgb(250,177,13)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.08%)</title><rect x="221.1" y="1633" width="0.9" height="15.0" fill="rgb(217,175,35)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.08%)</title><rect x="865.5" y="1745" width="0.9" height="15.0" fill="rgb(245,190,46)" rx="2" ry="2" />
<text text-anchor="" x="868.48" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (6 samples, 0.47%)</title><rect x="959.4" y="1777" width="5.6" height="15.0" fill="rgb(225,69,40)" rx="2" ry="2" />
<text text-anchor="" x="962.39" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::Write::write_all (1 samples, 0.08%)</title><rect x="228.5" y="2001" width="0.9" height="15.0" fill="rgb(224,123,24)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="105.8" y="1969" width="0.9" height="15.0" fill="rgb(253,194,26)" rx="2" ry="2" />
<text text-anchor="" x="108.78" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.08%)</title><rect x="865.5" y="1729" width="0.9" height="15.0" fill="rgb(240,133,46)" rx="2" ry="2" />
<text text-anchor="" x="868.48" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="340.1" y="1841" width="0.9" height="15.0" fill="rgb(233,182,21)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="681.4" y="1777" width="2.8" height="15.0" fill="rgb(222,210,3)" rx="2" ry="2" />
<text text-anchor="" x="684.36" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (4 samples, 0.32%)</title><rect x="871.1" y="1681" width="3.7" height="15.0" fill="rgb(219,155,15)" rx="2" ry="2" />
<text text-anchor="" x="874.06" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="872.9" y="1617" width="1.9" height="15.0" fill="rgb(230,69,21)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.08%)</title><rect x="57.4" y="1681" width="1.0" height="15.0" fill="rgb(218,80,15)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="98.3" y="1825" width="1.0" height="15.0" fill="rgb(205,4,15)" rx="2" ry="2" />
<text text-anchor="" x="101.34" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="55.6" y="1953" width="0.9" height="15.0" fill="rgb(224,0,23)" rx="2" ry="2" />
<text text-anchor="" x="58.56" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1297" width="97.6" height="15.0" fill="rgb(239,25,50)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="73.2" y="1937" width="1.0" height="15.0" fill="rgb(205,24,8)" rx="2" ry="2" />
<text text-anchor="" x="76.23" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="221.1" y="1777" width="0.9" height="15.0" fill="rgb(210,157,50)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="56.5" y="1841" width="0.9" height="15.0" fill="rgb(216,214,28)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="532.6" y="1681" width="0.9" height="15.0" fill="rgb(250,98,29)" rx="2" ry="2" />
<text text-anchor="" x="535.58" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="53.7" y="1457" width="0.9" height="15.0" fill="rgb(236,195,4)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (98 samples, 7.72%)</title><rect x="126.2" y="209" width="91.2" height="15.0" fill="rgb(221,21,36)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="219.2" y="1921" width="0.9" height="15.0" fill="rgb(243,104,31)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.08%)</title><rect x="108.6" y="1921" width="0.9" height="15.0" fill="rgb(227,3,13)" rx="2" ry="2" />
<text text-anchor="" x="111.57" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="651.6" y="1713" width="0.9" height="15.0" fill="rgb(235,104,2)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (2 samples, 0.16%)</title><rect x="563.3" y="1377" width="1.8" height="15.0" fill="rgb(211,58,41)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.16%)</title><rect x="1160.2" y="1825" width="1.9" height="15.0" fill="rgb(221,188,17)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="959.4" y="1729" width="0.9" height="15.0" fill="rgb(207,93,35)" rx="2" ry="2" />
<text text-anchor="" x="962.39" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="1167.7" y="1745" width="0.9" height="15.0" fill="rgb(241,169,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.68" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (2 samples, 0.16%)</title><rect x="1165.8" y="1809" width="1.9" height="15.0" fill="rgb(209,29,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.08%)</title><rect x="228.5" y="1809" width="0.9" height="15.0" fill="rgb(209,211,22)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="963.1" y="1329" width="0.9" height="15.0" fill="rgb(242,214,26)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="56.5" y="1953" width="0.9" height="15.0" fill="rgb(228,148,28)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="961" width="97.6" height="15.0" fill="rgb(219,90,30)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (21 samples, 1.65%)</title><rect x="232.2" y="1969" width="19.6" height="15.0" fill="rgb(249,0,36)" rx="2" ry="2" />
<text text-anchor="" x="235.24" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="43.5" y="1841" width="0.9" height="15.0" fill="rgb(244,90,31)" rx="2" ry="2" />
<text text-anchor="" x="46.48" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;collections::vec::Vec&lt;T&gt;&gt;::reserve (1 samples, 0.08%)</title><rect x="662.8" y="1713" width="0.9" height="15.0" fill="rgb(251,104,50)" rx="2" ry="2" />
<text text-anchor="" x="665.77" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.16%)</title><rect x="1160.2" y="1809" width="1.9" height="15.0" fill="rgb(210,86,3)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (4 samples, 0.32%)</title><rect x="290.8" y="1793" width="3.7" height="15.0" fill="rgb(205,120,26)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="792.0" y="1649" width="0.9" height="15.0" fill="rgb(219,130,25)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_current_mss (1 samples, 0.08%)</title><rect x="874.8" y="1697" width="0.9" height="15.0" fill="rgb(211,219,22)" rx="2" ry="2" />
<text text-anchor="" x="877.78" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::solicit_misc::HttpConnectionEx::send_data_frame (1 samples, 0.08%)</title><rect x="876.6" y="1825" width="1.0" height="15.0" fill="rgb(241,10,40)" rx="2" ry="2" />
<text text-anchor="" x="879.64" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="340.1" y="1617" width="0.9" height="15.0" fill="rgb(243,195,42)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::channel::channel (33 samples, 2.60%)</title><rect x="752.0" y="1793" width="30.7" height="15.0" fill="rgb(244,137,49)" rx="2" ry="2" />
<text text-anchor="" x="755.03" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >to..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (2 samples, 0.16%)</title><rect x="51.8" y="1969" width="1.9" height="15.0" fill="rgb(251,129,0)" rx="2" ry="2" />
<text text-anchor="" x="54.84" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_dalloc_bin_locked_impl.isra.41 (6 samples, 0.47%)</title><rect x="252.7" y="2017" width="5.6" height="15.0" fill="rgb(242,229,42)" rx="2" ry="2" />
<text text-anchor="" x="255.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="53.7" y="1889" width="0.9" height="15.0" fill="rgb(244,142,21)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="968.7" y="1857" width="0.9" height="15.0" fill="rgb(234,130,3)" rx="2" ry="2" />
<text text-anchor="" x="971.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="864.5" y="1729" width="1.0" height="15.0" fill="rgb(226,213,35)" rx="2" ry="2" />
<text text-anchor="" x="867.55" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="795.7" y="1537" width="1.0" height="15.0" fill="rgb(248,84,53)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="273.2" y="1969" width="0.9" height="15.0" fill="rgb(219,27,14)" rx="2" ry="2" />
<text text-anchor="" x="276.15" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="53.7" y="2017" width="0.9" height="15.0" fill="rgb(224,114,13)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.08%)</title><rect x="57.4" y="1761" width="1.0" height="15.0" fill="rgb(217,31,42)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (1 samples, 0.08%)</title><rect x="953.8" y="1329" width="0.9" height="15.0" fill="rgb(245,104,10)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="1174.2" y="1761" width="1.9" height="15.0" fill="rgb(206,226,10)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="53.7" y="1553" width="0.9" height="15.0" fill="rgb(222,75,31)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="795.7" y="1793" width="1.0" height="15.0" fill="rgb(221,160,44)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="57.4" y="1921" width="1.0" height="15.0" fill="rgb(209,216,19)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::solicit_misc::HttpConnectionEx::send_data_frames (10 samples, 0.79%)</title><rect x="877.6" y="1825" width="9.3" height="15.0" fill="rgb(249,87,15)" rx="2" ry="2" />
<text text-anchor="" x="880.57" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="410.8" y="1937" width="0.9" height="15.0" fill="rgb(227,10,32)" rx="2" ry="2" />
<text text-anchor="" x="413.77" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (14 samples, 1.10%)</title><rect x="10.0" y="2001" width="13.0" height="15.0" fill="rgb(235,58,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="40.7" y="1873" width="0.9" height="15.0" fill="rgb(235,185,35)" rx="2" ry="2" />
<text text-anchor="" x="43.69" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::channel::ctl_pair (4 samples, 0.32%)</title><rect x="766.0" y="1777" width="3.7" height="15.0" fill="rgb(247,152,4)" rx="2" ry="2" />
<text text-anchor="" x="768.98" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (2 samples, 0.16%)</title><rect x="12.8" y="1777" width="1.8" height="15.0" fill="rgb(212,178,18)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="71.4" y="1809" width="0.9" height="15.0" fill="rgb(241,85,10)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (3 samples, 0.24%)</title><rect x="411.7" y="1921" width="2.8" height="15.0" fill="rgb(213,123,13)" rx="2" ry="2" />
<text text-anchor="" x="414.70" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::net::tcp::TcpStream as std::io::Write&gt;::write (1 samples, 0.08%)</title><rect x="833.9" y="1809" width="0.9" height="15.0" fill="rgb(247,76,14)" rx="2" ry="2" />
<text text-anchor="" x="836.86" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (2 samples, 0.16%)</title><rect x="226.7" y="1601" width="1.8" height="15.0" fill="rgb(228,135,15)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.08%)</title><rect x="1042.2" y="1761" width="0.9" height="15.0" fill="rgb(212,220,20)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="1175.1" y="1489" width="1.0" height="15.0" fill="rgb(229,95,30)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="433" width="96.7" height="15.0" fill="rgb(207,190,53)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::http_common::HttpReadLoopInner::process_stream_frame (1 samples, 0.08%)</title><rect x="73.2" y="1985" width="1.0" height="15.0" fill="rgb(219,212,40)" rx="2" ry="2" />
<text text-anchor="" x="76.23" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::poll::Registration as core::ops::Drop&gt;::drop (1 samples, 0.08%)</title><rect x="1157.5" y="1937" width="0.9" height="15.0" fill="rgb(221,202,34)" rx="2" ry="2" />
<text text-anchor="" x="1160.45" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (4 samples, 0.32%)</title><rect x="290.8" y="1777" width="3.7" height="15.0" fill="rgb(247,21,1)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="1098.9" y="1841" width="0.9" height="15.0" fill="rgb(227,172,48)" rx="2" ry="2" />
<text text-anchor="" x="1101.87" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::channel::ReceiverCtl::dec (5 samples, 0.39%)</title><rect x="1035.6" y="1809" width="4.7" height="15.0" fill="rgb(232,141,49)" rx="2" ry="2" />
<text text-anchor="" x="1038.64" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (102 samples, 8.04%)</title><rect x="122.5" y="257" width="94.9" height="15.0" fill="rgb(229,161,42)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.16%)</title><rect x="947.3" y="1761" width="1.9" height="15.0" fill="rgb(222,61,17)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::result_::FutureResult&lt;T, E&gt; as futures::future::Future&gt;::poll (3 samples, 0.24%)</title><rect x="566.1" y="1809" width="2.7" height="15.0" fill="rgb(222,171,10)" rx="2" ry="2" />
<text text-anchor="" x="569.06" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.08%)</title><rect x="1171.4" y="1729" width="0.9" height="15.0" fill="rgb(249,90,13)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.16%)</title><rect x="872.9" y="1585" width="1.9" height="15.0" fill="rgb(252,68,50)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (1 samples, 0.08%)</title><rect x="215.5" y="81" width="0.9" height="15.0" fill="rgb(228,55,47)" rx="2" ry="2" />
<text text-anchor="" x="218.50" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="391.2" y="1953" width="1.0" height="15.0" fill="rgb(242,201,21)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (7 samples, 0.55%)</title><rect x="958.5" y="1793" width="6.5" height="15.0" fill="rgb(238,139,32)" rx="2" ry="2" />
<text text-anchor="" x="961.46" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.08%)</title><rect x="210.9" y="49" width="0.9" height="15.0" fill="rgb(208,87,5)" rx="2" ry="2" />
<text text-anchor="" x="213.85" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="218.3" y="209" width="0.9" height="15.0" fill="rgb(249,166,39)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (2 samples, 0.16%)</title><rect x="68.6" y="1649" width="1.8" height="15.0" fill="rgb(212,89,45)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="651.6" y="1681" width="0.9" height="15.0" fill="rgb(212,2,2)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (2 samples, 0.16%)</title><rect x="226.7" y="1537" width="1.8" height="15.0" fill="rgb(229,95,47)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.08%)</title><rect x="532.6" y="1649" width="0.9" height="15.0" fill="rgb(220,102,43)" rx="2" ry="2" />
<text text-anchor="" x="535.58" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (5 samples, 0.39%)</title><rect x="65.8" y="1889" width="4.6" height="15.0" fill="rgb(243,70,54)" rx="2" ry="2" />
<text text-anchor="" x="68.79" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="79.7" y="1953" width="1.0" height="15.0" fill="rgb(218,205,42)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.08%)</title><rect x="102.1" y="1937" width="0.9" height="15.0" fill="rgb(232,134,6)" rx="2" ry="2" />
<text text-anchor="" x="105.06" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::sync::mpsc::stream::Packet&lt;T&gt;&gt;::send (5 samples, 0.39%)</title><rect x="619.1" y="1761" width="4.6" height="15.0" fill="rgb(252,15,18)" rx="2" ry="2" />
<text text-anchor="" x="622.06" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="107.6" y="1969" width="1.0" height="15.0" fill="rgb(249,104,23)" rx="2" ry="2" />
<text text-anchor="" x="110.64" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (2 samples, 0.16%)</title><rect x="872.9" y="1425" width="1.9" height="15.0" fill="rgb(224,80,28)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="727.9" y="1761" width="0.9" height="15.0" fill="rgb(233,214,36)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="79.7" y="1857" width="1.0" height="15.0" fill="rgb(254,46,13)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;long_tests::long_tests_pb::EchoRequest as protobuf::core::Message&gt;::merge_from (16 samples, 1.26%)</title><rect x="1044.0" y="1841" width="14.9" height="15.0" fill="rgb(213,167,29)" rx="2" ry="2" />
<text text-anchor="" x="1047.01" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (22 samples, 1.73%)</title><rect x="232.2" y="2001" width="20.5" height="15.0" fill="rgb(213,121,3)" rx="2" ry="2" />
<text text-anchor="" x="235.24" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedOutputStream::flush (3 samples, 0.24%)</title><rect x="1095.2" y="1873" width="2.7" height="15.0" fill="rgb(228,167,51)" rx="2" ry="2" />
<text text-anchor="" x="1098.15" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (5 samples, 0.39%)</title><rect x="16.5" y="1905" width="4.7" height="15.0" fill="rgb(226,83,26)" rx="2" ry="2" />
<text text-anchor="" x="19.51" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (2 samples, 0.16%)</title><rect x="1135.1" y="1745" width="1.9" height="15.0" fill="rgb(216,114,4)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="53.7" y="1585" width="0.9" height="15.0" fill="rgb(252,216,30)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (13 samples, 1.02%)</title><rect x="380.1" y="2033" width="12.1" height="15.0" fill="rgb(241,58,24)" rx="2" ry="2" />
<text text-anchor="" x="383.09" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.08%)</title><rect x="129.0" y="97" width="1.0" height="15.0" fill="rgb(227,65,50)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_entity (1 samples, 0.08%)</title><rect x="947.3" y="1713" width="0.9" height="15.0" fill="rgb(236,156,31)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (18 samples, 1.42%)</title><rect x="1074.7" y="1841" width="16.7" height="15.0" fill="rgb(254,66,8)" rx="2" ry="2" />
<text text-anchor="" x="1077.70" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="121.6" y="113" width="0.9" height="15.0" fill="rgb(248,26,14)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (3 samples, 0.24%)</title><rect x="829.2" y="1777" width="2.8" height="15.0" fill="rgb(235,99,33)" rx="2" ry="2" />
<text text-anchor="" x="832.21" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="54.6" y="2001" width="1.0" height="15.0" fill="rgb(249,94,16)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.16%)</title><rect x="693.5" y="1537" width="1.8" height="15.0" fill="rgb(249,227,42)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (2 samples, 0.16%)</title><rect x="339.2" y="1873" width="1.8" height="15.0" fill="rgb(233,139,15)" rx="2" ry="2" />
<text text-anchor="" x="342.17" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (2 samples, 0.16%)</title><rect x="554.0" y="1681" width="1.8" height="15.0" fill="rgb(212,223,53)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="54.6" y="1905" width="1.0" height="15.0" fill="rgb(242,38,1)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::grpc_frame::write_grpc_frame_to_vec (4 samples, 0.32%)</title><rect x="1110.0" y="1905" width="3.8" height="15.0" fill="rgb(224,11,22)" rx="2" ry="2" />
<text text-anchor="" x="1113.03" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.08%)</title><rect x="218.3" y="321" width="0.9" height="15.0" fill="rgb(253,30,35)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::net::tcp::TcpStream as std::io::Write&gt;::write (3 samples, 0.24%)</title><rect x="824.6" y="1777" width="2.8" height="15.0" fill="rgb(231,144,12)" rx="2" ry="2" />
<text text-anchor="" x="827.56" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="90.9" y="1857" width="0.9" height="15.0" fill="rgb(225,218,26)" rx="2" ry="2" />
<text text-anchor="" x="93.90" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::Events::get (2 samples, 0.16%)</title><rect x="1180.7" y="1937" width="1.9" height="15.0" fill="rgb(208,103,26)" rx="2" ry="2" />
<text text-anchor="" x="1183.70" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.16%)</title><rect x="1160.2" y="1793" width="1.9" height="15.0" fill="rgb(240,109,26)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (4 samples, 0.32%)</title><rect x="290.8" y="1713" width="3.7" height="15.0" fill="rgb(241,104,39)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="68.6" y="1457" width="0.9" height="15.0" fill="rgb(251,69,6)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (1 samples, 0.08%)</title><rect x="121.6" y="225" width="0.9" height="15.0" fill="rgb(223,7,52)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.16%)</title><rect x="682.3" y="1697" width="1.9" height="15.0" fill="rgb(244,222,53)" rx="2" ry="2" />
<text text-anchor="" x="685.29" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (2 samples, 0.16%)</title><rect x="563.3" y="1281" width="1.8" height="15.0" fill="rgb(228,216,22)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll (1 samples, 0.08%)</title><rect x="942.7" y="1841" width="0.9" height="15.0" fill="rgb(252,229,50)" rx="2" ry="2" />
<text text-anchor="" x="945.66" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="57.4" y="1777" width="1.0" height="15.0" fill="rgb(248,136,11)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.08%)</title><rect x="128.1" y="49" width="0.9" height="15.0" fill="rgb(209,54,16)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (2 samples, 0.16%)</title><rect x="1137.9" y="1809" width="1.9" height="15.0" fill="rgb(220,74,22)" rx="2" ry="2" />
<text text-anchor="" x="1140.93" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="53.7" y="1921" width="0.9" height="15.0" fill="rgb(231,36,39)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::poll::RegistrationInner as core::ops::Drop&gt;::drop (2 samples, 0.16%)</title><rect x="780.9" y="1713" width="1.8" height="15.0" fill="rgb(246,216,34)" rx="2" ry="2" />
<text text-anchor="" x="783.86" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (6 samples, 0.47%)</title><rect x="559.6" y="1793" width="5.5" height="15.0" fill="rgb(243,64,25)" rx="2" ry="2" />
<text text-anchor="" x="562.55" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::fmt::Write::write_fmt::Adapter&lt;a, T&gt; as core::fmt::Write&gt;::write_str (2 samples, 0.16%)</title><rect x="705.5" y="1729" width="1.9" height="15.0" fill="rgb(239,170,1)" rx="2" ry="2" />
<text text-anchor="" x="708.54" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (1 samples, 0.08%)</title><rect x="574.4" y="1809" width="1.0" height="15.0" fill="rgb(216,10,46)" rx="2" ry="2" />
<text text-anchor="" x="577.43" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::Write::write_all (1 samples, 0.08%)</title><rect x="273.2" y="2017" width="0.9" height="15.0" fill="rgb(219,83,33)" rx="2" ry="2" />
<text text-anchor="" x="276.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="969.6" y="1777" width="1.0" height="15.0" fill="rgb(205,3,29)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.08%)</title><rect x="129.0" y="81" width="1.0" height="15.0" fill="rgb(226,207,32)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="1174.2" y="1777" width="1.9" height="15.0" fill="rgb(215,177,12)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1409" width="97.6" height="15.0" fill="rgb(212,46,12)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="298.3" y="1921" width="0.9" height="15.0" fill="rgb(213,129,15)" rx="2" ry="2" />
<text text-anchor="" x="301.26" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="59.3" y="1873" width="0.9" height="15.0" fill="rgb(227,178,22)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="1175.1" y="1633" width="1.0" height="15.0" fill="rgb(223,221,17)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.08%)</title><rect x="686.0" y="1745" width="0.9" height="15.0" fill="rgb(228,82,1)" rx="2" ry="2" />
<text text-anchor="" x="689.01" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="410.8" y="1905" width="0.9" height="15.0" fill="rgb(239,126,9)" rx="2" ry="2" />
<text text-anchor="" x="413.77" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_sock (1 samples, 0.08%)</title><rect x="284.3" y="1921" width="0.9" height="15.0" fill="rgb(219,118,25)" rx="2" ry="2" />
<text text-anchor="" x="287.31" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="1176.1" y="1857" width="0.9" height="15.0" fill="rgb(241,201,37)" rx="2" ry="2" />
<text text-anchor="" x="1179.05" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (9 samples, 0.71%)</title><rect x="240.6" y="1905" width="8.4" height="15.0" fill="rgb(249,82,24)" rx="2" ry="2" />
<text text-anchor="" x="243.61" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_data_queue (3 samples, 0.24%)</title><rect x="244.3" y="1521" width="2.8" height="15.0" fill="rgb(207,174,28)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (81 samples, 6.38%)</title><rect x="132.7" y="97" width="75.4" height="15.0" fill="rgb(206,147,46)" rx="2" ry="2" />
<text text-anchor="" x="135.74" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="1138.9" y="1793" width="0.9" height="15.0" fill="rgb(206,43,1)" rx="2" ry="2" />
<text text-anchor="" x="1141.86" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedOutputStream::write_string (2 samples, 0.16%)</title><rect x="1093.3" y="1857" width="1.9" height="15.0" fill="rgb(245,147,25)" rx="2" ry="2" />
<text text-anchor="" x="1096.29" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb.isra.102.part.103 (1 samples, 0.08%)</title><rect x="94.6" y="1697" width="0.9" height="15.0" fill="rgb(225,11,35)" rx="2" ry="2" />
<text text-anchor="" x="97.62" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="1174.2" y="1697" width="0.9" height="15.0" fill="rgb(211,139,8)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="221.1" y="1905" width="0.9" height="15.0" fill="rgb(241,195,1)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="79.7" y="1777" width="1.0" height="15.0" fill="rgb(239,31,6)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1729" width="97.6" height="15.0" fill="rgb(210,226,49)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (2 samples, 0.16%)</title><rect x="68.6" y="1553" width="1.8" height="15.0" fill="rgb(215,216,31)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (2 samples, 0.16%)</title><rect x="827.4" y="1617" width="1.8" height="15.0" fill="rgb(205,137,39)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="221.1" y="1729" width="0.9" height="15.0" fill="rgb(237,34,19)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;solicit_fork::http::frame::data::DataFrame&lt;a&gt; as solicit_fork::http::frame::Frame&lt;a&gt;&gt;::get_header (1 samples, 0.08%)</title><rect x="879.4" y="1809" width="1.0" height="15.0" fill="rgb(233,152,8)" rx="2" ry="2" />
<text text-anchor="" x="882.42" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.08%)</title><rect x="221.1" y="1617" width="0.9" height="15.0" fill="rgb(248,83,36)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::Write::write_all (1 samples, 0.08%)</title><rect x="885.9" y="1809" width="1.0" height="15.0" fill="rgb(233,162,53)" rx="2" ry="2" />
<text text-anchor="" x="888.93" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="410.8" y="1953" width="0.9" height="15.0" fill="rgb(247,114,52)" rx="2" ry="2" />
<text text-anchor="" x="413.77" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="1174.2" y="1745" width="1.9" height="15.0" fill="rgb(245,223,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="212.7" y="161" width="1.9" height="15.0" fill="rgb(245,129,54)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (3 samples, 0.24%)</title><rect x="222.0" y="1985" width="2.8" height="15.0" fill="rgb(227,189,1)" rx="2" ry="2" />
<text text-anchor="" x="225.01" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (8 samples, 0.63%)</title><rect x="88.1" y="1873" width="7.4" height="15.0" fill="rgb(244,65,47)" rx="2" ry="2" />
<text text-anchor="" x="91.11" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (2 samples, 0.16%)</title><rect x="563.3" y="1313" width="1.8" height="15.0" fill="rgb(231,62,19)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (2 samples, 0.16%)</title><rect x="226.7" y="1729" width="1.8" height="15.0" fill="rgb(206,229,28)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (3 samples, 0.24%)</title><rect x="562.3" y="1569" width="2.8" height="15.0" fill="rgb(209,34,46)" rx="2" ry="2" />
<text text-anchor="" x="565.34" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="79.7" y="1585" width="1.0" height="15.0" fill="rgb(223,192,43)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="218.3" y="641" width="0.9" height="15.0" fill="rgb(224,32,44)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="71.4" y="1905" width="0.9" height="15.0" fill="rgb(205,53,48)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="1139.8" y="1841" width="0.9" height="15.0" fill="rgb(241,64,6)" rx="2" ry="2" />
<text text-anchor="" x="1142.79" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Remote::send (7 samples, 0.55%)</title><rect x="1084.9" y="1809" width="6.5" height="15.0" fill="rgb(212,173,18)" rx="2" ry="2" />
<text text-anchor="" x="1087.93" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (3 samples, 0.24%)</title><rect x="555.8" y="1777" width="2.8" height="15.0" fill="rgb(226,222,11)" rx="2" ry="2" />
<text text-anchor="" x="558.83" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="967.8" y="1841" width="0.9" height="15.0" fill="rgb(209,139,46)" rx="2" ry="2" />
<text text-anchor="" x="970.76" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="80.7" y="1921" width="0.9" height="15.0" fill="rgb(216,108,44)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="57.4" y="1441" width="1.0" height="15.0" fill="rgb(244,98,4)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.08%)</title><rect x="561.4" y="1585" width="0.9" height="15.0" fill="rgb(245,176,37)" rx="2" ry="2" />
<text text-anchor="" x="564.41" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.16%)</title><rect x="1137.9" y="1841" width="1.9" height="15.0" fill="rgb(226,90,53)" rx="2" ry="2" />
<text text-anchor="" x="1140.93" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.08%)</title><rect x="953.8" y="1297" width="0.9" height="15.0" fill="rgb(221,36,3)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="57.4" y="1745" width="1.0" height="15.0" fill="rgb(209,212,51)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="209.0" y="49" width="0.9" height="15.0" fill="rgb(246,143,25)" rx="2" ry="2" />
<text text-anchor="" x="211.99" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (4 samples, 0.32%)</title><rect x="66.7" y="1857" width="3.7" height="15.0" fill="rgb(240,72,23)" rx="2" ry="2" />
<text text-anchor="" x="69.72" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="57.4" y="1617" width="1.0" height="15.0" fill="rgb(218,197,36)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (6 samples, 0.47%)</title><rect x="559.6" y="1777" width="5.5" height="15.0" fill="rgb(249,42,31)" rx="2" ry="2" />
<text text-anchor="" x="562.55" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (20 samples, 1.58%)</title><rect x="82.5" y="2017" width="18.6" height="15.0" fill="rgb(222,8,35)" rx="2" ry="2" />
<text text-anchor="" x="85.53" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (1 samples, 0.08%)</title><rect x="80.7" y="1825" width="0.9" height="15.0" fill="rgb(247,217,4)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="217.4" y="257" width="0.9" height="15.0" fill="rgb(232,131,51)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="217.4" y="321" width="0.9" height="15.0" fill="rgb(233,127,29)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1329" width="97.6" height="15.0" fill="rgb(218,93,31)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::collections::hash::table::make_hash (1 samples, 0.08%)</title><rect x="860.8" y="1809" width="1.0" height="15.0" fill="rgb(226,6,48)" rx="2" ry="2" />
<text text-anchor="" x="863.83" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::io::read_exact::ReadExact&lt;A, T&gt; as futures::future::Future&gt;::poll (12 samples, 0.95%)</title><rect x="527.0" y="1777" width="11.2" height="15.0" fill="rgb(250,169,2)" rx="2" ry="2" />
<text text-anchor="" x="530.01" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (4 samples, 0.32%)</title><rect x="61.1" y="1905" width="3.8" height="15.0" fill="rgb(215,2,48)" rx="2" ry="2" />
<text text-anchor="" x="64.14" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (2 samples, 0.16%)</title><rect x="1160.2" y="1761" width="1.9" height="15.0" fill="rgb(214,75,52)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="593" width="96.7" height="15.0" fill="rgb(254,185,52)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (5 samples, 0.39%)</title><rect x="65.8" y="1905" width="4.6" height="15.0" fill="rgb(249,107,20)" rx="2" ry="2" />
<text text-anchor="" x="68.79" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_deallocate (1 samples, 0.08%)</title><rect x="1083.1" y="1809" width="0.9" height="15.0" fill="rgb(215,22,17)" rx="2" ry="2" />
<text text-anchor="" x="1086.07" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="290.8" y="1521" width="0.9" height="15.0" fill="rgb(251,59,44)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="68.6" y="1777" width="1.8" height="15.0" fill="rgb(216,161,45)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.08%)</title><rect x="1133.3" y="1793" width="0.9" height="15.0" fill="rgb(216,225,17)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="834.8" y="1681" width="0.9" height="15.0" fill="rgb(226,29,28)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="129.0" y="129" width="1.0" height="15.0" fill="rgb(225,40,30)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::join::MaybeDone&lt;A&gt;&gt;::poll (560 samples, 44.13%)</title><rect x="448.0" y="1857" width="520.7" height="15.0" fill="rgb(214,133,16)" rx="2" ry="2" />
<text text-anchor="" x="450.97" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::future::join::MaybeDone&lt;A&gt;&gt;::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.16%)</title><rect x="827.4" y="1761" width="1.8" height="15.0" fill="rgb(211,53,34)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::net::tcp::TcpStream as std::io::Read&gt;::read (1 samples, 0.08%)</title><rect x="80.7" y="2017" width="0.9" height="15.0" fill="rgb(232,170,48)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.16%)</title><rect x="563.3" y="1537" width="1.8" height="15.0" fill="rgb(249,139,40)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="212.7" y="49" width="0.9" height="15.0" fill="rgb(254,36,42)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_current_mss (1 samples, 0.08%)</title><rect x="213.6" y="49" width="1.0" height="15.0" fill="rgb(207,108,48)" rx="2" ry="2" />
<text text-anchor="" x="216.64" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="227.6" y="1377" width="0.9" height="15.0" fill="rgb(250,40,32)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (4 samples, 0.32%)</title><rect x="95.5" y="1889" width="3.8" height="15.0" fill="rgb(252,226,8)" rx="2" ry="2" />
<text text-anchor="" x="98.55" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::grpc_protobuf::MarshallerProtobuf as grpc::marshall::Marshaller&lt;M&gt;&gt;::write (1 samples, 0.08%)</title><rect x="1102.6" y="1905" width="0.9" height="15.0" fill="rgb(216,152,34)" rx="2" ry="2" />
<text text-anchor="" x="1105.59" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="53.7" y="1841" width="0.9" height="15.0" fill="rgb(219,213,49)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (2 samples, 0.16%)</title><rect x="693.5" y="1617" width="1.8" height="15.0" fill="rgb(250,125,46)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (4 samples, 0.32%)</title><rect x="66.7" y="1873" width="3.7" height="15.0" fill="rgb(205,172,28)" rx="2" ry="2" />
<text text-anchor="" x="69.72" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="769" width="97.6" height="15.0" fill="rgb(239,195,48)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="218.3" y="577" width="0.9" height="15.0" fill="rgb(214,225,31)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map::Map&lt;A, F&gt; as futures::future::Future&gt;::poll (561 samples, 44.21%)</title><rect x="448.0" y="1889" width="521.6" height="15.0" fill="rgb(219,38,33)" rx="2" ry="2" />
<text text-anchor="" x="450.97" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::future::map::Map&lt;A, F&gt; as futures::future::Future&gt;::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.08%)</title><rect x="121.6" y="97" width="0.9" height="15.0" fill="rgb(251,121,45)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___slab_alloc (1 samples, 0.08%)</title><rect x="287.1" y="1857" width="0.9" height="15.0" fill="rgb(210,19,46)" rx="2" ry="2" />
<text text-anchor="" x="290.10" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.08%)</title><rect x="241.5" y="1777" width="1.0" height="15.0" fill="rgb(251,159,26)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (3 samples, 0.24%)</title><rect x="222.0" y="1937" width="2.8" height="15.0" fill="rgb(223,130,42)" rx="2" ry="2" />
<text text-anchor="" x="225.01" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="1175.1" y="1505" width="1.0" height="15.0" fill="rgb(206,113,4)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="241.5" y="1793" width="1.0" height="15.0" fill="rgb(247,165,25)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="881" width="97.6" height="15.0" fill="rgb(234,104,7)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (6 samples, 0.47%)</title><rect x="243.4" y="1857" width="5.6" height="15.0" fill="rgb(217,3,53)" rx="2" ry="2" />
<text text-anchor="" x="246.40" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="465" width="96.7" height="15.0" fill="rgb(237,212,26)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (5 samples, 0.39%)</title><rect x="75.1" y="1969" width="4.6" height="15.0" fill="rgb(228,62,27)" rx="2" ry="2" />
<text text-anchor="" x="78.09" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="921.3" y="1777" width="0.9" height="15.0" fill="rgb(211,66,45)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="873.8" y="1185" width="1.0" height="15.0" fill="rgb(237,5,17)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (3 samples, 0.24%)</title><rect x="1165.8" y="1857" width="2.8" height="15.0" fill="rgb(217,186,31)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (4 samples, 0.32%)</title><rect x="290.8" y="1681" width="3.7" height="15.0" fill="rgb(249,115,30)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.16%)</title><rect x="963.1" y="1521" width="1.9" height="15.0" fill="rgb(250,197,20)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (5 samples, 0.39%)</title><rect x="716.7" y="1777" width="4.6" height="15.0" fill="rgb(248,170,10)" rx="2" ry="2" />
<text text-anchor="" x="719.70" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::io_token::IoToken::take_readiness (1 samples, 0.08%)</title><rect x="1041.2" y="1809" width="1.0" height="15.0" fill="rgb(218,128,9)" rx="2" ry="2" />
<text text-anchor="" x="1044.22" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (2 samples, 0.16%)</title><rect x="103.9" y="1873" width="1.9" height="15.0" fill="rgb(253,83,32)" rx="2" ry="2" />
<text text-anchor="" x="106.92" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (4 samples, 0.32%)</title><rect x="48.1" y="1889" width="3.7" height="15.0" fill="rgb(229,229,0)" rx="2" ry="2" />
<text text-anchor="" x="51.12" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.16%)</title><rect x="58.4" y="1921" width="1.8" height="15.0" fill="rgb(240,49,10)" rx="2" ry="2" />
<text text-anchor="" x="61.35" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1569" width="97.6" height="15.0" fill="rgb(244,61,21)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (3 samples, 0.24%)</title><rect x="743.7" y="1793" width="2.8" height="15.0" fill="rgb(205,9,28)" rx="2" ry="2" />
<text text-anchor="" x="746.66" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.08%)</title><rect x="651.6" y="1697" width="0.9" height="15.0" fill="rgb(239,17,24)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1025" width="97.6" height="15.0" fill="rgb(233,95,28)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="219.2" y="1825" width="0.9" height="15.0" fill="rgb(244,12,20)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="391.2" y="1985" width="1.0" height="15.0" fill="rgb(244,97,18)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="218.3" y="289" width="0.9" height="15.0" fill="rgb(253,177,15)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="739.9" y="1697" width="1.0" height="15.0" fill="rgb(208,114,15)" rx="2" ry="2" />
<text text-anchor="" x="742.94" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (4 samples, 0.32%)</title><rect x="12.8" y="1809" width="3.7" height="15.0" fill="rgb(206,24,26)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (4 samples, 0.32%)</title><rect x="224.8" y="1921" width="3.7" height="15.0" fill="rgb(220,50,22)" rx="2" ry="2" />
<text text-anchor="" x="227.80" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (2 samples, 0.16%)</title><rect x="126.2" y="113" width="1.9" height="15.0" fill="rgb(209,223,5)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.08%)</title><rect x="728.8" y="1761" width="0.9" height="15.0" fill="rgb(250,81,54)" rx="2" ry="2" />
<text text-anchor="" x="731.79" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="391.2" y="1937" width="1.0" height="15.0" fill="rgb(226,53,35)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="81.6" y="1921" width="0.9" height="15.0" fill="rgb(231,17,3)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.08%)</title><rect x="651.6" y="1649" width="0.9" height="15.0" fill="rgb(238,44,44)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.08%)</title><rect x="16.5" y="1825" width="0.9" height="15.0" fill="rgb(229,59,37)" rx="2" ry="2" />
<text text-anchor="" x="19.51" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="1170.5" y="1905" width="0.9" height="15.0" fill="rgb(254,216,53)" rx="2" ry="2" />
<text text-anchor="" x="1173.47" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (9 samples, 0.71%)</title><rect x="867.3" y="1777" width="8.4" height="15.0" fill="rgb(212,15,29)" rx="2" ry="2" />
<text text-anchor="" x="870.34" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="47.2" y="1601" width="0.9" height="15.0" fill="rgb(214,126,23)" rx="2" ry="2" />
<text text-anchor="" x="50.19" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.16%)</title><rect x="952.9" y="1553" width="1.8" height="15.0" fill="rgb(250,56,12)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.08%)</title><rect x="921.3" y="1713" width="0.9" height="15.0" fill="rgb(241,88,5)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.08%)</title><rect x="651.6" y="1585" width="0.9" height="15.0" fill="rgb(250,63,45)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>solicit_fork::http::connection::HttpFrame::from_raw (4 samples, 0.32%)</title><rect x="796.7" y="1793" width="3.7" height="15.0" fill="rgb(218,21,2)" rx="2" ry="2" />
<text text-anchor="" x="799.67" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.08%)</title><rect x="873.8" y="1249" width="1.0" height="15.0" fill="rgb(249,155,14)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="792.0" y="1713" width="0.9" height="15.0" fill="rgb(209,195,27)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (2 samples, 0.16%)</title><rect x="130.9" y="65" width="1.8" height="15.0" fill="rgb(254,21,8)" rx="2" ry="2" />
<text text-anchor="" x="133.88" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.16%)</title><rect x="682.3" y="1729" width="1.9" height="15.0" fill="rgb(236,26,25)" rx="2" ry="2" />
<text text-anchor="" x="685.29" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::from_bytes (1 samples, 0.08%)</title><rect x="1062.6" y="1857" width="0.9" height="15.0" fill="rgb(248,142,25)" rx="2" ry="2" />
<text text-anchor="" x="1065.61" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="866.4" y="1729" width="0.9" height="15.0" fill="rgb(233,9,41)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (2 samples, 0.16%)</title><rect x="963.1" y="1457" width="1.9" height="15.0" fill="rgb(218,3,48)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.08%)</title><rect x="694.4" y="1473" width="0.9" height="15.0" fill="rgb(227,147,28)" rx="2" ry="2" />
<text text-anchor="" x="697.38" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (4 samples, 0.32%)</title><rect x="224.8" y="1969" width="3.7" height="15.0" fill="rgb(240,203,45)" rx="2" ry="2" />
<text text-anchor="" x="227.80" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (1 samples, 0.08%)</title><rect x="273.2" y="1937" width="0.9" height="15.0" fill="rgb(217,189,8)" rx="2" ry="2" />
<text text-anchor="" x="276.15" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="63.9" y="1745" width="1.0" height="15.0" fill="rgb(236,184,37)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="866.4" y="1681" width="0.9" height="15.0" fill="rgb(208,140,27)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (1 samples, 0.08%)</title><rect x="53.7" y="1601" width="0.9" height="15.0" fill="rgb(249,68,26)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="46.3" y="1809" width="1.8" height="15.0" fill="rgb(216,180,5)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="241.5" y="1825" width="1.0" height="15.0" fill="rgb(211,128,15)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="412.6" y="1857" width="1.0" height="15.0" fill="rgb(229,108,14)" rx="2" ry="2" />
<text text-anchor="" x="415.63" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.08%)</title><rect x="694.4" y="1489" width="0.9" height="15.0" fill="rgb(222,52,25)" rx="2" ry="2" />
<text text-anchor="" x="697.38" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="866.4" y="1793" width="0.9" height="15.0" fill="rgb(253,69,37)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::http_common::HttpReadLoopInner::process_stream_frame (235 samples, 18.52%)</title><rect x="575.4" y="1809" width="218.5" height="15.0" fill="rgb(239,87,54)" rx="2" ry="2" />
<text text-anchor="" x="578.36" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >grpc::http_common::HttpReadL..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (2 samples, 0.16%)</title><rect x="541.9" y="1665" width="1.8" height="15.0" fill="rgb(242,172,24)" rx="2" ry="2" />
<text text-anchor="" x="544.88" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="391.2" y="1905" width="1.0" height="15.0" fill="rgb(245,110,44)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="281.5" y="1937" width="1.0" height="15.0" fill="rgb(210,91,39)" rx="2" ry="2" />
<text text-anchor="" x="284.52" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="64.9" y="1889" width="0.9" height="15.0" fill="rgb(231,119,52)" rx="2" ry="2" />
<text text-anchor="" x="67.86" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (4 samples, 0.32%)</title><rect x="871.1" y="1697" width="3.7" height="15.0" fill="rgb(208,190,20)" rx="2" ry="2" />
<text text-anchor="" x="874.06" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_clean_rtx_queue (1 samples, 0.08%)</title><rect x="564.2" y="1249" width="0.9" height="15.0" fill="rgb(254,54,24)" rx="2" ry="2" />
<text text-anchor="" x="567.20" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="963.1" y="1633" width="1.9" height="15.0" fill="rgb(250,127,13)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="108.6" y="1985" width="0.9" height="15.0" fill="rgb(239,40,3)" rx="2" ry="2" />
<text text-anchor="" x="111.57" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::arc::Arc&lt;T&gt;&gt;::drop_slow (1 samples, 0.08%)</title><rect x="1034.7" y="1793" width="0.9" height="15.0" fill="rgb(215,60,48)" rx="2" ry="2" />
<text text-anchor="" x="1037.71" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="692.5" y="1617" width="1.0" height="15.0" fill="rgb(233,108,49)" rx="2" ry="2" />
<text text-anchor="" x="695.52" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.08%)</title><rect x="211.8" y="49" width="0.9" height="15.0" fill="rgb(242,214,32)" rx="2" ry="2" />
<text text-anchor="" x="214.78" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (2 samples, 0.16%)</title><rect x="222.9" y="1777" width="1.9" height="15.0" fill="rgb(223,156,9)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_data_queue (2 samples, 0.16%)</title><rect x="292.7" y="1537" width="1.8" height="15.0" fill="rgb(244,212,46)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="57.4" y="1553" width="1.0" height="15.0" fill="rgb(246,52,0)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="792.0" y="1697" width="0.9" height="15.0" fill="rgb(225,88,36)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="10.0" y="1937" width="0.9" height="15.0" fill="rgb(235,60,53)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.08%)</title><rect x="246.2" y="1329" width="0.9" height="15.0" fill="rgb(207,93,22)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="1134.2" y="1761" width="0.9" height="15.0" fill="rgb(228,65,49)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.08%)</title><rect x="957.5" y="1777" width="1.0" height="15.0" fill="rgb(218,1,21)" rx="2" ry="2" />
<text text-anchor="" x="960.53" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.16%)</title><rect x="132.7" y="49" width="1.9" height="15.0" fill="rgb(227,170,7)" rx="2" ry="2" />
<text text-anchor="" x="135.74" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="409.8" y="1953" width="1.0" height="15.0" fill="rgb(226,119,37)" rx="2" ry="2" />
<text text-anchor="" x="412.84" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (9 samples, 0.71%)</title><rect x="867.3" y="1809" width="8.4" height="15.0" fill="rgb(212,148,32)" rx="2" ry="2" />
<text text-anchor="" x="870.34" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.16%)</title><rect x="214.6" y="97" width="1.8" height="15.0" fill="rgb(237,157,23)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksize (1 samples, 0.08%)</title><rect x="215.5" y="49" width="0.9" height="15.0" fill="rgb(246,182,28)" rx="2" ry="2" />
<text text-anchor="" x="218.50" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="391.2" y="2017" width="1.0" height="15.0" fill="rgb(230,31,4)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="963.1" y="1649" width="1.9" height="15.0" fill="rgb(239,213,8)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.16%)</title><rect x="872.9" y="1505" width="1.9" height="15.0" fill="rgb(226,184,38)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (2 samples, 0.16%)</title><rect x="226.7" y="1521" width="1.8" height="15.0" fill="rgb(219,142,50)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.08%)</title><rect x="563.3" y="1249" width="0.9" height="15.0" fill="rgb(253,84,31)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (4 samples, 0.32%)</title><rect x="961.3" y="1729" width="3.7" height="15.0" fill="rgb(205,139,22)" rx="2" ry="2" />
<text text-anchor="" x="964.25" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="228.5" y="1953" width="0.9" height="15.0" fill="rgb(222,219,1)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="570.7" y="1729" width="0.9" height="15.0" fill="rgb(221,35,44)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.08%)</title><rect x="122.5" y="49" width="0.9" height="15.0" fill="rgb(247,114,10)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.08%)</title><rect x="535.4" y="1649" width="0.9" height="15.0" fill="rgb(218,119,23)" rx="2" ry="2" />
<text text-anchor="" x="538.37" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (6 samples, 0.47%)</title><rect x="1159.3" y="1937" width="5.6" height="15.0" fill="rgb(226,6,19)" rx="2" ry="2" />
<text text-anchor="" x="1162.31" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1889" width="97.6" height="15.0" fill="rgb(205,165,47)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.16%)</title><rect x="1135.1" y="1777" width="1.9" height="15.0" fill="rgb(240,108,52)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (4 samples, 0.32%)</title><rect x="113.2" y="1889" width="3.7" height="15.0" fill="rgb(253,131,13)" rx="2" ry="2" />
<text text-anchor="" x="116.22" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (1 samples, 0.08%)</title><rect x="57.4" y="1489" width="1.0" height="15.0" fill="rgb(247,199,8)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (4 samples, 0.32%)</title><rect x="290.8" y="1617" width="3.7" height="15.0" fill="rgb(226,229,19)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>solicit_fork::http::Header::name (1 samples, 0.08%)</title><rect x="749.2" y="1793" width="1.0" height="15.0" fill="rgb(216,108,42)" rx="2" ry="2" />
<text text-anchor="" x="752.24" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="59.3" y="1841" width="0.9" height="15.0" fill="rgb(223,49,23)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.16%)</title><rect x="1160.2" y="1777" width="1.9" height="15.0" fill="rgb(213,10,44)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::io::cursor::Cursor&lt;collections::vec::Vec&lt;u8&gt;&gt; as std::io::Write&gt;::write (2 samples, 0.16%)</title><rect x="884.1" y="1777" width="1.8" height="15.0" fill="rgb(209,182,39)" rx="2" ry="2" />
<text text-anchor="" x="887.07" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (1 samples, 0.08%)</title><rect x="683.2" y="1633" width="1.0" height="15.0" fill="rgb(222,48,12)" rx="2" ry="2" />
<text text-anchor="" x="686.22" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Inner::spawn (12 samples, 0.95%)</title><rect x="782.7" y="1793" width="11.2" height="15.0" fill="rgb(218,145,30)" rx="2" ry="2" />
<text text-anchor="" x="785.72" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (2 samples, 0.16%)</title><rect x="12.8" y="1745" width="1.8" height="15.0" fill="rgb(216,125,31)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_packet (1 samples, 0.08%)</title><rect x="1174.2" y="1649" width="0.9" height="15.0" fill="rgb(210,66,48)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (2 samples, 0.16%)</title><rect x="12.8" y="1761" width="1.8" height="15.0" fill="rgb(238,56,2)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="122.5" y="209" width="0.9" height="15.0" fill="rgb(217,86,27)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="410.8" y="1921" width="0.9" height="15.0" fill="rgb(234,37,39)" rx="2" ry="2" />
<text text-anchor="" x="413.77" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.16%)</title><rect x="827.4" y="1713" width="1.8" height="15.0" fill="rgb(228,137,48)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (1 samples, 0.08%)</title><rect x="853.4" y="1809" width="0.9" height="15.0" fill="rgb(222,219,22)" rx="2" ry="2" />
<text text-anchor="" x="856.39" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (2 samples, 0.16%)</title><rect x="46.3" y="1873" width="1.8" height="15.0" fill="rgb(205,105,53)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (4 samples, 0.32%)</title><rect x="290.8" y="1585" width="3.7" height="15.0" fill="rgb(243,25,35)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1473" width="97.6" height="15.0" fill="rgb(240,44,34)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (4 samples, 0.32%)</title><rect x="48.1" y="1857" width="3.7" height="15.0" fill="rgb(252,198,4)" rx="2" ry="2" />
<text text-anchor="" x="51.12" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="69.5" y="1345" width="0.9" height="15.0" fill="rgb(229,129,38)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="513" width="96.7" height="15.0" fill="rgb(206,14,1)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="334.5" y="1969" width="1.0" height="15.0" fill="rgb(215,48,54)" rx="2" ry="2" />
<text text-anchor="" x="337.52" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="121.6" y="305" width="0.9" height="15.0" fill="rgb(247,119,25)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="825.5" y="1761" width="0.9" height="15.0" fill="rgb(246,176,29)" rx="2" ry="2" />
<text text-anchor="" x="828.49" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (2 samples, 0.16%)</title><rect x="554.0" y="1665" width="1.8" height="15.0" fill="rgb(210,124,46)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (20 samples, 1.58%)</title><rect x="82.5" y="1985" width="18.6" height="15.0" fill="rgb(222,113,22)" rx="2" ry="2" />
<text text-anchor="" x="85.53" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="570.7" y="1809" width="0.9" height="15.0" fill="rgb(225,90,27)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (3 samples, 0.24%)</title><rect x="244.3" y="1745" width="2.8" height="15.0" fill="rgb(229,93,40)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (79 samples, 6.23%)</title><rect x="134.6" y="49" width="73.5" height="15.0" fill="rgb(233,210,4)" rx="2" ry="2" />
<text text-anchor="" x="137.60" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="209.0" y="97" width="0.9" height="15.0" fill="rgb(214,93,28)" rx="2" ry="2" />
<text text-anchor="" x="211.99" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.08%)</title><rect x="122.5" y="65" width="0.9" height="15.0" fill="rgb(212,182,34)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="864.5" y="1713" width="1.0" height="15.0" fill="rgb(213,218,24)" rx="2" ry="2" />
<text text-anchor="" x="867.55" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.08%)</title><rect x="53.7" y="1441" width="0.9" height="15.0" fill="rgb(222,169,9)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (5 samples, 0.39%)</title><rect x="116.9" y="1889" width="4.7" height="15.0" fill="rgb(214,92,34)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_skb_features (1 samples, 0.08%)</title><rect x="94.6" y="1681" width="0.9" height="15.0" fill="rgb(224,57,21)" rx="2" ry="2" />
<text text-anchor="" x="97.62" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="260.1" y="2001" width="1.0" height="15.0" fill="rgb(212,195,18)" rx="2" ry="2" />
<text text-anchor="" x="263.13" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.32%)</title><rect x="12.8" y="1905" width="3.7" height="15.0" fill="rgb(222,156,1)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="963.1" y="1313" width="0.9" height="15.0" fill="rgb(207,140,17)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="1105.4" y="1905" width="0.9" height="15.0" fill="rgb(234,203,3)" rx="2" ry="2" />
<text text-anchor="" x="1108.38" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.08%)</title><rect x="218.3" y="433" width="0.9" height="15.0" fill="rgb(248,89,16)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.08%)</title><rect x="53.7" y="1489" width="0.9" height="15.0" fill="rgb(209,29,50)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.16%)</title><rect x="1160.2" y="1745" width="1.9" height="15.0" fill="rgb(253,91,48)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (3 samples, 0.24%)</title><rect x="1137.9" y="1857" width="2.8" height="15.0" fill="rgb(241,194,28)" rx="2" ry="2" />
<text text-anchor="" x="1140.93" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (3 samples, 0.24%)</title><rect x="118.8" y="1857" width="2.8" height="15.0" fill="rgb(219,222,31)" rx="2" ry="2" />
<text text-anchor="" x="121.79" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="228.5" y="1985" width="0.9" height="15.0" fill="rgb(211,169,29)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="70.4" y="1905" width="1.0" height="15.0" fill="rgb(237,64,37)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="71.4" y="1761" width="0.9" height="15.0" fill="rgb(224,173,2)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="289.9" y="1809" width="0.9" height="15.0" fill="rgb(220,21,2)" rx="2" ry="2" />
<text text-anchor="" x="292.89" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="94.6" y="1745" width="0.9" height="15.0" fill="rgb(207,214,41)" rx="2" ry="2" />
<text text-anchor="" x="97.62" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="123.4" y="209" width="1.9" height="15.0" fill="rgb(209,105,10)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (5 samples, 0.39%)</title><rect x="65.8" y="1937" width="4.6" height="15.0" fill="rgb(226,174,16)" rx="2" ry="2" />
<text text-anchor="" x="68.79" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::net::tcp::TcpStream as std::io::Read&gt;::read (10 samples, 0.79%)</title><rect x="541.0" y="1761" width="9.3" height="15.0" fill="rgb(248,225,17)" rx="2" ry="2" />
<text text-anchor="" x="543.95" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (2 samples, 0.16%)</title><rect x="563.3" y="1473" width="1.8" height="15.0" fill="rgb(206,155,27)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (3 samples, 0.24%)</title><rect x="225.7" y="1857" width="2.8" height="15.0" fill="rgb(250,104,52)" rx="2" ry="2" />
<text text-anchor="" x="228.73" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1489" width="97.6" height="15.0" fill="rgb(219,139,46)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="209.9" y="145" width="1.9" height="15.0" fill="rgb(236,49,32)" rx="2" ry="2" />
<text text-anchor="" x="212.92" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.16%)</title><rect x="226.7" y="1777" width="1.8" height="15.0" fill="rgb(214,117,0)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.08%)</title><rect x="69.5" y="1329" width="0.9" height="15.0" fill="rgb(218,113,29)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="71.4" y="1825" width="0.9" height="15.0" fill="rgb(247,114,43)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_ralloc (38 samples, 2.99%)</title><rect x="308.5" y="2033" width="35.3" height="15.0" fill="rgb(214,62,17)" rx="2" ry="2" />
<text text-anchor="" x="311.49" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >je..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.08%)</title><rect x="71.4" y="1793" width="0.9" height="15.0" fill="rgb(246,186,33)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="864.5" y="1761" width="1.0" height="15.0" fill="rgb(249,228,41)" rx="2" ry="2" />
<text text-anchor="" x="867.55" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.32%)</title><rect x="945.4" y="1825" width="3.8" height="15.0" fill="rgb(231,100,40)" rx="2" ry="2" />
<text text-anchor="" x="948.45" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="70.4" y="1873" width="1.0" height="15.0" fill="rgb(213,107,13)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="57.4" y="1665" width="1.0" height="15.0" fill="rgb(250,16,32)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (1 samples, 0.08%)</title><rect x="544.7" y="1601" width="0.9" height="15.0" fill="rgb(252,83,0)" rx="2" ry="2" />
<text text-anchor="" x="547.67" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::poll::RegistrationInner as core::ops::Drop&gt;::drop (1 samples, 0.08%)</title><rect x="1178.8" y="1921" width="1.0" height="15.0" fill="rgb(233,98,27)" rx="2" ry="2" />
<text text-anchor="" x="1181.84" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (2 samples, 0.16%)</title><rect x="212.7" y="177" width="1.9" height="15.0" fill="rgb(240,137,13)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll (54 samples, 4.26%)</title><rect x="509.3" y="1793" width="50.3" height="15.0" fill="rgb(241,134,8)" rx="2" ry="2" />
<text text-anchor="" x="512.34" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="68.6" y="1489" width="0.9" height="15.0" fill="rgb(214,201,34)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (4 samples, 0.32%)</title><rect x="945.4" y="1841" width="3.8" height="15.0" fill="rgb(248,200,19)" rx="2" ry="2" />
<text text-anchor="" x="948.45" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.08%)</title><rect x="834.8" y="1745" width="0.9" height="15.0" fill="rgb(219,96,42)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="1175.1" y="1697" width="1.0" height="15.0" fill="rgb(223,38,31)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="273.2" y="2001" width="0.9" height="15.0" fill="rgb(249,172,0)" rx="2" ry="2" />
<text text-anchor="" x="276.15" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::Write::write_all (2 samples, 0.16%)</title><rect x="884.1" y="1793" width="1.8" height="15.0" fill="rgb(228,195,34)" rx="2" ry="2" />
<text text-anchor="" x="887.07" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (2 samples, 0.16%)</title><rect x="688.8" y="1633" width="1.9" height="15.0" fill="rgb(244,26,10)" rx="2" ry="2" />
<text text-anchor="" x="691.80" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="1174.2" y="1681" width="0.9" height="15.0" fill="rgb(227,133,33)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (2 samples, 0.16%)</title><rect x="123.4" y="129" width="1.9" height="15.0" fill="rgb(205,44,54)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="1176.1" y="1825" width="0.9" height="15.0" fill="rgb(218,226,35)" rx="2" ry="2" />
<text text-anchor="" x="1179.05" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.08%)</title><rect x="63.9" y="1793" width="1.0" height="15.0" fill="rgb(215,89,32)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="866.4" y="1713" width="0.9" height="15.0" fill="rgb(207,40,22)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (7 samples, 0.55%)</title><rect x="288.0" y="1921" width="6.5" height="15.0" fill="rgb(240,150,28)" rx="2" ry="2" />
<text text-anchor="" x="291.03" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="81.6" y="1937" width="0.9" height="15.0" fill="rgb(252,209,34)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::sync::mpsc::stream::Packet&lt;T&gt;&gt;::send (2 samples, 0.16%)</title><rect x="603.3" y="1777" width="1.8" height="15.0" fill="rgb(206,106,14)" rx="2" ry="2" />
<text text-anchor="" x="606.25" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.08%)</title><rect x="129.0" y="49" width="1.0" height="15.0" fill="rgb(215,129,47)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_nagle_check (1 samples, 0.08%)</title><rect x="62.1" y="1857" width="0.9" height="15.0" fill="rgb(236,13,36)" rx="2" ry="2" />
<text text-anchor="" x="65.07" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="80.7" y="1809" width="0.9" height="15.0" fill="rgb(244,214,52)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (2 samples, 0.16%)</title><rect x="46.3" y="1857" width="1.8" height="15.0" fill="rgb(217,182,43)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (1 samples, 0.08%)</title><rect x="720.4" y="1745" width="0.9" height="15.0" fill="rgb(236,43,1)" rx="2" ry="2" />
<text text-anchor="" x="723.42" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (22 samples, 1.73%)</title><rect x="278.7" y="1985" width="20.5" height="15.0" fill="rgb(242,167,53)" rx="2" ry="2" />
<text text-anchor="" x="281.73" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="545" width="96.7" height="15.0" fill="rgb(238,42,11)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;core::fmt::Write::write_fmt::Adapter&lt;a, T&gt; as core::fmt::Write&gt;::write_str (5 samples, 0.39%)</title><rect x="660.0" y="1729" width="4.6" height="15.0" fill="rgb(236,163,10)" rx="2" ry="2" />
<text text-anchor="" x="662.98" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="792.0" y="1745" width="0.9" height="15.0" fill="rgb(219,88,45)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.08%)</title><rect x="1103.5" y="1777" width="1.0" height="15.0" fill="rgb(212,176,12)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="58.4" y="1889" width="0.9" height="15.0" fill="rgb(234,68,22)" rx="2" ry="2" />
<text text-anchor="" x="61.35" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (1 samples, 0.08%)</title><rect x="1173.3" y="1937" width="0.9" height="15.0" fill="rgb(234,150,5)" rx="2" ry="2" />
<text text-anchor="" x="1176.26" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.08%)</title><rect x="1167.7" y="1809" width="0.9" height="15.0" fill="rgb(207,49,23)" rx="2" ry="2" />
<text text-anchor="" x="1170.68" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.08%)</title><rect x="873.8" y="1153" width="1.0" height="15.0" fill="rgb(226,192,21)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.08%)</title><rect x="246.2" y="1409" width="0.9" height="15.0" fill="rgb(246,146,3)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (2 samples, 0.16%)</title><rect x="872.9" y="1409" width="1.9" height="15.0" fill="rgb(253,198,51)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (3 samples, 0.24%)</title><rect x="1134.2" y="1921" width="2.8" height="15.0" fill="rgb(208,42,25)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>solicit_fork::http::Header::value (1 samples, 0.08%)</title><rect x="940.8" y="1825" width="0.9" height="15.0" fill="rgb(231,123,11)" rx="2" ry="2" />
<text text-anchor="" x="943.80" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1149.1" y="1905" width="0.9" height="15.0" fill="rgb(252,127,19)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="74.2" y="1873" width="0.9" height="15.0" fill="rgb(239,105,51)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.08%)</title><rect x="1169.5" y="1825" width="1.0" height="15.0" fill="rgb(214,0,6)" rx="2" ry="2" />
<text text-anchor="" x="1172.54" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (1 samples, 0.08%)</title><rect x="125.3" y="49" width="0.9" height="15.0" fill="rgb(227,101,53)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::and_then::AndThen&lt;A, B, F&gt; as futures::future::Future&gt;::poll (2 samples, 0.16%)</title><rect x="72.3" y="2001" width="1.9" height="15.0" fill="rgb(251,91,45)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (3 samples, 0.24%)</title><rect x="1134.2" y="1809" width="2.8" height="15.0" fill="rgb(247,40,48)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="10.0" y="1969" width="0.9" height="15.0" fill="rgb(234,175,19)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;collections::vec::Vec&lt;T&gt;&gt;::reserve (2 samples, 0.16%)</title><rect x="705.5" y="1713" width="1.9" height="15.0" fill="rgb(225,35,39)" rx="2" ry="2" />
<text text-anchor="" x="708.54" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_sock (2 samples, 0.16%)</title><rect x="43.5" y="1873" width="1.8" height="15.0" fill="rgb(242,133,8)" rx="2" ry="2" />
<text text-anchor="" x="46.48" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (2 samples, 0.16%)</title><rect x="864.5" y="1793" width="1.9" height="15.0" fill="rgb(245,94,46)" rx="2" ry="2" />
<text text-anchor="" x="867.55" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (2 samples, 0.16%)</title><rect x="46.3" y="1729" width="1.8" height="15.0" fill="rgb(208,18,51)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (2 samples, 0.16%)</title><rect x="68.6" y="1537" width="1.8" height="15.0" fill="rgb(229,53,14)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.08%)</title><rect x="71.4" y="1665" width="0.9" height="15.0" fill="rgb(229,28,33)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (90 samples, 7.09%)</title><rect x="129.0" y="177" width="83.7" height="15.0" fill="rgb(244,204,4)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_mss (1 samples, 0.08%)</title><rect x="213.6" y="65" width="1.0" height="15.0" fill="rgb(218,108,13)" rx="2" ry="2" />
<text text-anchor="" x="216.64" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::server::ServerServiceDefinition::find_method (1 samples, 0.08%)</title><rect x="260.1" y="2017" width="1.0" height="15.0" fill="rgb(250,114,37)" rx="2" ry="2" />
<text text-anchor="" x="263.13" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.08%)</title><rect x="1149.1" y="1841" width="0.9" height="15.0" fill="rgb(212,40,16)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="71.4" y="1777" width="0.9" height="15.0" fill="rgb(254,212,20)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (3 samples, 0.24%)</title><rect x="244.3" y="1601" width="2.8" height="15.0" fill="rgb(213,212,29)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="68.6" y="1377" width="0.9" height="15.0" fill="rgb(241,74,53)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="80.7" y="1729" width="0.9" height="15.0" fill="rgb(248,171,26)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.08%)</title><rect x="116.9" y="1777" width="1.0" height="15.0" fill="rgb(224,122,11)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.16%)</title><rect x="46.3" y="1761" width="1.8" height="15.0" fill="rgb(208,73,31)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::Formatter::pad (3 samples, 0.24%)</title><rect x="664.6" y="1729" width="2.8" height="15.0" fill="rgb(223,130,39)" rx="2" ry="2" />
<text text-anchor="" x="667.63" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (4 samples, 0.32%)</title><rect x="961.3" y="1713" width="3.7" height="15.0" fill="rgb(225,77,3)" rx="2" ry="2" />
<text text-anchor="" x="964.25" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.16%)</title><rect x="41.6" y="1857" width="1.9" height="15.0" fill="rgb(206,39,33)" rx="2" ry="2" />
<text text-anchor="" x="44.62" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="47.2" y="1649" width="0.9" height="15.0" fill="rgb(233,107,4)" rx="2" ry="2" />
<text text-anchor="" x="50.19" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="63.9" y="1777" width="1.0" height="15.0" fill="rgb(226,182,49)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (2 samples, 0.16%)</title><rect x="222.9" y="1745" width="1.9" height="15.0" fill="rgb(243,75,30)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.08%)</title><rect x="964.0" y="1281" width="1.0" height="15.0" fill="rgb(219,110,17)" rx="2" ry="2" />
<text text-anchor="" x="967.04" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="56.5" y="1825" width="0.9" height="15.0" fill="rgb(231,129,11)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="10.0" y="1857" width="0.9" height="15.0" fill="rgb(252,2,52)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (3 samples, 0.24%)</title><rect x="244.3" y="1649" width="2.8" height="15.0" fill="rgb(238,144,5)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="121.6" y="385" width="0.9" height="15.0" fill="rgb(214,126,42)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="963.1" y="1681" width="1.9" height="15.0" fill="rgb(229,95,31)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.16%)</title><rect x="543.7" y="1681" width="1.9" height="15.0" fill="rgb(209,18,16)" rx="2" ry="2" />
<text text-anchor="" x="546.74" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="218.3" y="545" width="0.9" height="15.0" fill="rgb(206,25,12)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="1103.5" y="1873" width="1.0" height="15.0" fill="rgb(244,85,50)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="834.8" y="1793" width="0.9" height="15.0" fill="rgb(208,28,42)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Remote::send::{{closure}} (5 samples, 0.39%)</title><rect x="1086.8" y="1793" width="4.6" height="15.0" fill="rgb(211,95,1)" rx="2" ry="2" />
<text text-anchor="" x="1089.78" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.8 (1 samples, 0.08%)</title><rect x="946.4" y="1777" width="0.9" height="15.0" fill="rgb(232,55,32)" rx="2" ry="2" />
<text text-anchor="" x="949.38" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (1 samples, 0.08%)</title><rect x="683.2" y="1601" width="1.0" height="15.0" fill="rgb(223,11,14)" rx="2" ry="2" />
<text text-anchor="" x="686.22" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.08%)</title><rect x="1042.2" y="1649" width="0.9" height="15.0" fill="rgb(251,228,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (2 samples, 0.16%)</title><rect x="126.2" y="97" width="1.9" height="15.0" fill="rgb(225,162,49)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.16%)</title><rect x="952.9" y="1441" width="1.8" height="15.0" fill="rgb(219,60,6)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.08%)</title><rect x="1061.7" y="1857" width="0.9" height="15.0" fill="rgb(236,114,10)" rx="2" ry="2" />
<text text-anchor="" x="1064.68" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (5 samples, 0.39%)</title><rect x="289.9" y="1841" width="4.6" height="15.0" fill="rgb(227,179,37)" rx="2" ry="2" />
<text text-anchor="" x="292.89" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (1 samples, 0.08%)</title><rect x="10.0" y="1809" width="0.9" height="15.0" fill="rgb(233,176,41)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (3 samples, 0.24%)</title><rect x="302.9" y="2033" width="2.8" height="15.0" fill="rgb(227,61,8)" rx="2" ry="2" />
<text text-anchor="" x="305.91" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="63.9" y="1825" width="1.0" height="15.0" fill="rgb(232,161,2)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="106.7" y="1905" width="0.9" height="15.0" fill="rgb(235,2,30)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="834.8" y="1569" width="0.9" height="15.0" fill="rgb(228,80,46)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.08%)</title><rect x="532.6" y="1665" width="0.9" height="15.0" fill="rgb(247,132,31)" rx="2" ry="2" />
<text text-anchor="" x="535.58" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (1 samples, 0.08%)</title><rect x="693.5" y="1297" width="0.9" height="15.0" fill="rgb(246,112,12)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::stream::and_then::AndThen&lt;S, F, U&gt; as futures::stream::Stream&gt;::poll (1 samples, 0.08%)</title><rect x="1091.4" y="1889" width="1.0" height="15.0" fill="rgb(254,36,7)" rx="2" ry="2" />
<text text-anchor="" x="1094.43" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (79 samples, 6.23%)</title><rect x="134.6" y="65" width="73.5" height="15.0" fill="rgb(230,101,22)" rx="2" ry="2" />
<text text-anchor="" x="137.60" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="1134.2" y="1793" width="0.9" height="15.0" fill="rgb(228,98,28)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="53.7" y="1665" width="0.9" height="15.0" fill="rgb(254,161,5)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="532.6" y="1713" width="0.9" height="15.0" fill="rgb(232,56,10)" rx="2" ry="2" />
<text text-anchor="" x="535.58" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (1 samples, 0.08%)</title><rect x="17.4" y="1873" width="1.0" height="15.0" fill="rgb(230,206,7)" rx="2" ry="2" />
<text text-anchor="" x="20.44" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.32%)</title><rect x="12.8" y="1873" width="3.7" height="15.0" fill="rgb(251,68,37)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="1175.1" y="1521" width="1.0" height="15.0" fill="rgb(233,76,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="93.7" y="1777" width="1.8" height="15.0" fill="rgb(240,2,36)" rx="2" ry="2" />
<text text-anchor="" x="96.69" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rearm_rto (1 samples, 0.08%)</title><rect x="962.2" y="1665" width="0.9" height="15.0" fill="rgb(236,186,21)" rx="2" ry="2" />
<text text-anchor="" x="965.18" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="953.8" y="1361" width="0.9" height="15.0" fill="rgb(233,209,46)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="921.3" y="1793" width="0.9" height="15.0" fill="rgb(250,25,32)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.08%)</title><rect x="1160.2" y="1665" width="1.0" height="15.0" fill="rgb(232,50,36)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_sample_event_took (1 samples, 0.08%)</title><rect x="13.7" y="1713" width="0.9" height="15.0" fill="rgb(241,80,6)" rx="2" ry="2" />
<text text-anchor="" x="16.72" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="57.4" y="1425" width="1.0" height="15.0" fill="rgb(205,84,19)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="334.5" y="2001" width="1.0" height="15.0" fill="rgb(245,24,49)" rx="2" ry="2" />
<text text-anchor="" x="337.52" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::http_common::LoopInnerCommon&lt;S&gt;&gt;::remove_stream (2 samples, 0.16%)</title><rect x="859.0" y="1809" width="1.8" height="15.0" fill="rgb(252,56,14)" rx="2" ry="2" />
<text text-anchor="" x="861.97" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.08%)</title><rect x="968.7" y="1825" width="0.9" height="15.0" fill="rgb(212,74,54)" rx="2" ry="2" />
<text text-anchor="" x="971.69" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1681" width="97.6" height="15.0" fill="rgb(228,29,24)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (2 samples, 0.16%)</title><rect x="342.0" y="1921" width="1.8" height="15.0" fill="rgb(228,136,1)" rx="2" ry="2" />
<text text-anchor="" x="344.96" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (7 samples, 0.55%)</title><rect x="958.5" y="1841" width="6.5" height="15.0" fill="rgb(205,154,14)" rx="2" ry="2" />
<text text-anchor="" x="961.46" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.08%)</title><rect x="1174.2" y="1729" width="0.9" height="15.0" fill="rgb(226,164,42)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.8 (2 samples, 0.16%)</title><rect x="10.9" y="1969" width="1.9" height="15.0" fill="rgb(227,187,11)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_sock (1 samples, 0.08%)</title><rect x="53.7" y="1857" width="0.9" height="15.0" fill="rgb(223,168,34)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.16%)</title><rect x="1174.2" y="1857" width="1.9" height="15.0" fill="rgb(253,155,6)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="1175.1" y="1553" width="1.0" height="15.0" fill="rgb(210,57,46)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="577" width="96.7" height="15.0" fill="rgb(222,221,19)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.08%)</title><rect x="1133.3" y="1873" width="0.9" height="15.0" fill="rgb(225,67,2)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="217.4" y="81" width="0.9" height="15.0" fill="rgb(221,208,11)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="872.9" y="1633" width="1.9" height="15.0" fill="rgb(212,229,54)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (14 samples, 1.10%)</title><rect x="10.0" y="2017" width="13.0" height="15.0" fill="rgb(214,109,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.08%)</title><rect x="221.1" y="1649" width="0.9" height="15.0" fill="rgb(212,130,47)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="569.8" y="1793" width="0.9" height="15.0" fill="rgb(246,81,40)" rx="2" ry="2" />
<text text-anchor="" x="572.78" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (1 samples, 0.08%)</title><rect x="1189.1" y="1921" width="0.9" height="15.0" fill="rgb(210,173,36)" rx="2" ry="2" />
<text text-anchor="" x="1192.07" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (2 samples, 0.16%)</title><rect x="827.4" y="1569" width="1.8" height="15.0" fill="rgb(238,176,5)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (2 samples, 0.16%)</title><rect x="126.2" y="161" width="1.9" height="15.0" fill="rgb(226,124,45)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.08%)</title><rect x="283.4" y="1921" width="0.9" height="15.0" fill="rgb(227,92,18)" rx="2" ry="2" />
<text text-anchor="" x="286.38" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (17 samples, 1.34%)</title><rect x="281.5" y="1953" width="15.8" height="15.0" fill="rgb(229,85,5)" rx="2" ry="2" />
<text text-anchor="" x="284.52" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_ack (1 samples, 0.08%)</title><rect x="964.0" y="1345" width="1.0" height="15.0" fill="rgb(211,44,35)" rx="2" ry="2" />
<text text-anchor="" x="967.04" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.08%)</title><rect x="108.6" y="1889" width="0.9" height="15.0" fill="rgb(243,194,2)" rx="2" ry="2" />
<text text-anchor="" x="111.57" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (3 samples, 0.24%)</title><rect x="1134.2" y="1889" width="2.8" height="15.0" fill="rgb(217,156,8)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (2 samples, 0.16%)</title><rect x="68.6" y="1633" width="1.8" height="15.0" fill="rgb(233,6,25)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.16%)</title><rect x="963.1" y="1601" width="1.9" height="15.0" fill="rgb(221,125,53)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_allocate (1 samples, 0.08%)</title><rect x="652.5" y="1777" width="1.0" height="15.0" fill="rgb(249,3,38)" rx="2" ry="2" />
<text text-anchor="" x="655.54" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="71.4" y="1601" width="0.9" height="15.0" fill="rgb(231,215,20)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (2 samples, 0.16%)</title><rect x="77.9" y="1873" width="1.8" height="15.0" fill="rgb(232,36,28)" rx="2" ry="2" />
<text text-anchor="" x="80.88" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::channel::Sender&lt;T&gt;&gt;::send (1 samples, 0.08%)</title><rect x="568.8" y="1809" width="1.0" height="15.0" fill="rgb(229,117,47)" rx="2" ry="2" />
<text text-anchor="" x="571.85" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="260.1" y="1905" width="1.0" height="15.0" fill="rgb(215,126,47)" rx="2" ry="2" />
<text text-anchor="" x="263.13" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (1 samples, 0.08%)</title><rect x="1134.2" y="1745" width="0.9" height="15.0" fill="rgb(218,99,41)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.08%)</title><rect x="921.3" y="1665" width="0.9" height="15.0" fill="rgb(209,61,23)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1313" width="97.6" height="15.0" fill="rgb(210,196,47)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="290.8" y="1505" width="0.9" height="15.0" fill="rgb(224,161,29)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.08%)</title><rect x="1171.4" y="1745" width="0.9" height="15.0" fill="rgb(220,113,13)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="56.5" y="1969" width="0.9" height="15.0" fill="rgb(247,5,27)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="70.4" y="1889" width="1.0" height="15.0" fill="rgb(248,52,20)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="693.5" y="1585" width="1.8" height="15.0" fill="rgb(241,171,19)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="993" width="97.6" height="15.0" fill="rgb(243,31,44)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (1 samples, 0.08%)</title><rect x="1082.1" y="1777" width="1.0" height="15.0" fill="rgb(229,40,23)" rx="2" ry="2" />
<text text-anchor="" x="1085.14" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (3 samples, 0.24%)</title><rect x="1165.8" y="1825" width="2.8" height="15.0" fill="rgb(235,135,29)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (2 samples, 0.16%)</title><rect x="58.4" y="1953" width="1.8" height="15.0" fill="rgb(242,30,7)" rx="2" ry="2" />
<text text-anchor="" x="61.35" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;solicit_fork::http::HeaderPart&lt;a&gt; as core::convert::From&lt;&amp;a str&gt;&gt;::from (2 samples, 0.16%)</title><rect x="648.8" y="1777" width="1.9" height="15.0" fill="rgb(246,38,17)" rx="2" ry="2" />
<text text-anchor="" x="651.82" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="391.2" y="1889" width="1.0" height="15.0" fill="rgb(220,5,9)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (2 samples, 0.16%)</title><rect x="12.8" y="1793" width="1.8" height="15.0" fill="rgb(243,135,13)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="80.7" y="1873" width="0.9" height="15.0" fill="rgb(212,53,50)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll (1 samples, 0.08%)</title><rect x="57.4" y="1985" width="1.0" height="15.0" fill="rgb(252,227,35)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (2 samples, 0.16%)</title><rect x="91.8" y="1857" width="1.9" height="15.0" fill="rgb(219,70,49)" rx="2" ry="2" />
<text text-anchor="" x="94.83" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (2 samples, 0.16%)</title><rect x="563.3" y="1425" width="1.8" height="15.0" fill="rgb(229,79,13)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="544.7" y="1649" width="0.9" height="15.0" fill="rgb(228,84,41)" rx="2" ry="2" />
<text text-anchor="" x="547.67" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="222.0" y="1969" width="2.8" height="15.0" fill="rgb(252,40,52)" rx="2" ry="2" />
<text text-anchor="" x="225.01" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="227.6" y="1457" width="0.9" height="15.0" fill="rgb(219,111,49)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="570.7" y="1761" width="0.9" height="15.0" fill="rgb(208,119,43)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.08%)</title><rect x="1166.8" y="1761" width="0.9" height="15.0" fill="rgb(206,196,49)" rx="2" ry="2" />
<text text-anchor="" x="1169.75" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="340.1" y="1761" width="0.9" height="15.0" fill="rgb(240,178,30)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="57.4" y="1857" width="1.0" height="15.0" fill="rgb(223,35,7)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (7 samples, 0.55%)</title><rect x="1140.7" y="1921" width="6.5" height="15.0" fill="rgb(231,36,35)" rx="2" ry="2" />
<text text-anchor="" x="1143.72" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="218.3" y="593" width="0.9" height="15.0" fill="rgb(227,71,31)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (11 samples, 0.87%)</title><rect x="686.9" y="1745" width="10.3" height="15.0" fill="rgb(239,215,49)" rx="2" ry="2" />
<text text-anchor="" x="689.94" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.16%)</title><rect x="292.7" y="1489" width="1.8" height="15.0" fill="rgb(234,177,21)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="103.0" y="1937" width="0.9" height="15.0" fill="rgb(234,82,47)" rx="2" ry="2" />
<text text-anchor="" x="105.99" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="1175.1" y="1713" width="1.0" height="15.0" fill="rgb(242,218,37)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="70.4" y="2001" width="1.0" height="15.0" fill="rgb(235,26,32)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="554.0" y="1649" width="0.9" height="15.0" fill="rgb(242,72,32)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="107.6" y="1921" width="1.0" height="15.0" fill="rgb(231,68,8)" rx="2" ry="2" />
<text text-anchor="" x="110.64" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="106.7" y="1873" width="0.9" height="15.0" fill="rgb(223,78,29)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.08%)</title><rect x="1042.2" y="1665" width="0.9" height="15.0" fill="rgb(250,8,37)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="693.5" y="1505" width="0.9" height="15.0" fill="rgb(205,215,1)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (38 samples, 2.99%)</title><rect x="172.7" y="33" width="35.4" height="15.0" fill="rgb(218,99,45)" rx="2" ry="2" />
<text text-anchor="" x="175.73" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sd..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="79.7" y="1825" width="1.0" height="15.0" fill="rgb(232,9,31)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.16%)</title><rect x="126.2" y="129" width="1.9" height="15.0" fill="rgb(216,60,9)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.08%)</title><rect x="218.3" y="305" width="0.9" height="15.0" fill="rgb(232,42,22)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.08%)</title><rect x="727.9" y="1633" width="0.9" height="15.0" fill="rgb(241,108,47)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (1 samples, 0.08%)</title><rect x="720.4" y="1729" width="0.9" height="15.0" fill="rgb(238,107,3)" rx="2" ry="2" />
<text text-anchor="" x="723.42" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (1 samples, 0.08%)</title><rect x="651.6" y="1761" width="0.9" height="15.0" fill="rgb(226,166,20)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__inet_lookup_established (1 samples, 0.08%)</title><rect x="1175.1" y="1473" width="1.0" height="15.0" fill="rgb(242,226,9)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="1166.8" y="1777" width="0.9" height="15.0" fill="rgb(246,92,50)" rx="2" ry="2" />
<text text-anchor="" x="1169.75" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (18 samples, 1.42%)</title><rect x="392.2" y="2033" width="16.7" height="15.0" fill="rgb(240,48,34)" rx="2" ry="2" />
<text text-anchor="" x="395.17" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.08%)</title><rect x="241.5" y="1729" width="1.0" height="15.0" fill="rgb(231,170,11)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="795.7" y="1777" width="1.0" height="15.0" fill="rgb(223,199,46)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (1 samples, 0.08%)</title><rect x="105.8" y="1953" width="0.9" height="15.0" fill="rgb(215,221,14)" rx="2" ry="2" />
<text text-anchor="" x="108.78" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="47.2" y="1633" width="0.9" height="15.0" fill="rgb(236,161,50)" rx="2" ry="2" />
<text text-anchor="" x="50.19" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="739.9" y="1745" width="1.0" height="15.0" fill="rgb(247,68,54)" rx="2" ry="2" />
<text text-anchor="" x="742.94" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (2 samples, 0.16%)</title><rect x="963.1" y="1441" width="1.9" height="15.0" fill="rgb(230,54,51)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="410.8" y="1857" width="0.9" height="15.0" fill="rgb(231,139,46)" rx="2" ry="2" />
<text text-anchor="" x="413.77" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="106.7" y="1921" width="0.9" height="15.0" fill="rgb(217,84,0)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (2 samples, 0.16%)</title><rect x="969.6" y="1905" width="1.9" height="15.0" fill="rgb(250,205,31)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (4 samples, 0.32%)</title><rect x="935.2" y="1793" width="3.7" height="15.0" fill="rgb(221,169,20)" rx="2" ry="2" />
<text text-anchor="" x="938.22" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="825.5" y="1729" width="0.9" height="15.0" fill="rgb(249,97,5)" rx="2" ry="2" />
<text text-anchor="" x="828.49" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="71.4" y="1857" width="0.9" height="15.0" fill="rgb(240,216,26)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="221.1" y="1873" width="0.9" height="15.0" fill="rgb(231,145,54)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_mss (1 samples, 0.08%)</title><rect x="874.8" y="1713" width="0.9" height="15.0" fill="rgb(222,120,1)" rx="2" ry="2" />
<text text-anchor="" x="877.78" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (3 samples, 0.24%)</title><rect x="244.3" y="1713" width="2.8" height="15.0" fill="rgb(243,144,23)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.08%)</title><rect x="695.3" y="1665" width="0.9" height="15.0" fill="rgb(243,51,5)" rx="2" ry="2" />
<text text-anchor="" x="698.31" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipt_do_table (1 samples, 0.08%)</title><rect x="289.9" y="1761" width="0.9" height="15.0" fill="rgb(208,49,41)" rx="2" ry="2" />
<text text-anchor="" x="292.89" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::server::GrpcHttpServerHandlerFactory as grpc::http_common::HttpService&gt;::new_request (7 samples, 0.55%)</title><rect x="101.1" y="2001" width="6.5" height="15.0" fill="rgb(216,14,2)" rx="2" ry="2" />
<text text-anchor="" x="104.13" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (2 samples, 0.16%)</title><rect x="230.4" y="2001" width="1.8" height="15.0" fill="rgb(234,159,54)" rx="2" ry="2" />
<text text-anchor="" x="233.38" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="792.0" y="1681" width="0.9" height="15.0" fill="rgb(216,41,28)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="834.8" y="1649" width="0.9" height="15.0" fill="rgb(221,130,54)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (1 samples, 0.08%)</title><rect x="79.7" y="1729" width="1.0" height="15.0" fill="rgb(216,134,46)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="834.8" y="1713" width="0.9" height="15.0" fill="rgb(238,36,9)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.08%)</title><rect x="79.7" y="1713" width="1.0" height="15.0" fill="rgb(251,160,32)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (6 samples, 0.47%)</title><rect x="959.4" y="1761" width="5.6" height="15.0" fill="rgb(213,95,9)" rx="2" ry="2" />
<text text-anchor="" x="962.39" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (13 samples, 1.02%)</title><rect x="87.2" y="1905" width="12.1" height="15.0" fill="rgb(249,109,1)" rx="2" ry="2" />
<text text-anchor="" x="90.18" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="753" width="97.6" height="15.0" fill="rgb(249,120,54)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.16%)</title><rect x="563.3" y="1521" width="1.8" height="15.0" fill="rgb(213,158,4)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (2 samples, 0.16%)</title><rect x="77.9" y="1889" width="1.8" height="15.0" fill="rgb(243,194,18)" rx="2" ry="2" />
<text text-anchor="" x="80.88" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (3 samples, 0.24%)</title><rect x="225.7" y="1905" width="2.8" height="15.0" fill="rgb(226,178,44)" rx="2" ry="2" />
<text text-anchor="" x="228.73" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (21 samples, 1.65%)</title><rect x="32.3" y="1969" width="19.5" height="15.0" fill="rgb(228,99,48)" rx="2" ry="2" />
<text text-anchor="" x="35.32" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (2 samples, 0.16%)</title><rect x="872.9" y="1377" width="1.9" height="15.0" fill="rgb(241,54,17)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (2 samples, 0.16%)</title><rect x="933.4" y="1777" width="1.8" height="15.0" fill="rgb(210,129,44)" rx="2" ry="2" />
<text text-anchor="" x="936.36" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="219.2" y="1857" width="0.9" height="15.0" fill="rgb(242,170,54)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="70.4" y="1857" width="1.0" height="15.0" fill="rgb(218,62,26)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (1 samples, 0.08%)</title><rect x="121.6" y="209" width="0.9" height="15.0" fill="rgb(210,133,31)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (2 samples, 0.16%)</title><rect x="1135.1" y="1761" width="1.9" height="15.0" fill="rgb(247,169,40)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="79.7" y="1873" width="1.0" height="15.0" fill="rgb(229,156,6)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (8 samples, 0.63%)</title><rect x="336.4" y="1953" width="7.4" height="15.0" fill="rgb(211,18,22)" rx="2" ry="2" />
<text text-anchor="" x="339.38" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (3 samples, 0.24%)</title><rect x="214.6" y="129" width="2.8" height="15.0" fill="rgb(221,156,28)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::arc::Arc&lt;T&gt;&gt;::drop_slow (2 samples, 0.16%)</title><rect x="55.6" y="2017" width="1.8" height="15.0" fill="rgb(231,199,38)" rx="2" ry="2" />
<text text-anchor="" x="58.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (2 samples, 0.16%)</title><rect x="872.9" y="1553" width="1.9" height="15.0" fill="rgb(243,96,6)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (2 samples, 0.16%)</title><rect x="50.0" y="1841" width="1.8" height="15.0" fill="rgb(249,130,37)" rx="2" ry="2" />
<text text-anchor="" x="52.98" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="548.4" y="1745" width="1.9" height="15.0" fill="rgb(222,17,42)" rx="2" ry="2" />
<text text-anchor="" x="551.39" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="251.8" y="1969" width="0.9" height="15.0" fill="rgb(234,42,38)" rx="2" ry="2" />
<text text-anchor="" x="254.77" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="544.7" y="1569" width="0.9" height="15.0" fill="rgb(213,124,8)" rx="2" ry="2" />
<text text-anchor="" x="547.67" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.16%)</title><rect x="827.4" y="1633" width="1.8" height="15.0" fill="rgb(242,160,33)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (3 samples, 0.24%)</title><rect x="244.3" y="1729" width="2.8" height="15.0" fill="rgb(219,68,52)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (4 samples, 0.32%)</title><rect x="113.2" y="1937" width="3.7" height="15.0" fill="rgb(211,227,1)" rx="2" ry="2" />
<text text-anchor="" x="116.22" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (1 samples, 0.08%)</title><rect x="949.2" y="1825" width="0.9" height="15.0" fill="rgb(247,57,20)" rx="2" ry="2" />
<text text-anchor="" x="952.16" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="130.0" y="65" width="0.9" height="15.0" fill="rgb(225,122,0)" rx="2" ry="2" />
<text text-anchor="" x="132.95" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll (36 samples, 2.84%)</title><rect x="802.2" y="1825" width="33.5" height="15.0" fill="rgb(247,200,26)" rx="2" ry="2" />
<text text-anchor="" x="805.25" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="79.7" y="1601" width="1.0" height="15.0" fill="rgb(221,210,49)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="80.7" y="1857" width="0.9" height="15.0" fill="rgb(211,152,54)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="945.4" y="1777" width="1.0" height="15.0" fill="rgb(254,101,4)" rx="2" ry="2" />
<text text-anchor="" x="948.45" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="57.4" y="1841" width="1.0" height="15.0" fill="rgb(208,179,41)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (8 samples, 0.63%)</title><rect x="868.3" y="1729" width="7.4" height="15.0" fill="rgb(241,167,51)" rx="2" ry="2" />
<text text-anchor="" x="871.27" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.08%)</title><rect x="227.6" y="1393" width="0.9" height="15.0" fill="rgb(214,15,38)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::net::tcp::TcpStream as std::io::Read&gt;::read (5 samples, 0.39%)</title><rect x="530.7" y="1745" width="4.7" height="15.0" fill="rgb(253,119,35)" rx="2" ry="2" />
<text text-anchor="" x="533.72" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="535.4" y="1745" width="0.9" height="15.0" fill="rgb(219,0,46)" rx="2" ry="2" />
<text text-anchor="" x="538.37" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (1 samples, 0.08%)</title><rect x="57.4" y="1505" width="1.0" height="15.0" fill="rgb(241,104,49)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.16%)</title><rect x="563.3" y="1441" width="1.8" height="15.0" fill="rgb(239,212,14)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="334.5" y="1985" width="1.0" height="15.0" fill="rgb(251,220,7)" rx="2" ry="2" />
<text text-anchor="" x="337.52" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="217.4" y="241" width="0.9" height="15.0" fill="rgb(205,80,3)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="391.2" y="1969" width="1.0" height="15.0" fill="rgb(253,118,15)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_page_frag_refill (1 samples, 0.08%)</title><rect x="285.2" y="1921" width="1.0" height="15.0" fill="rgb(217,179,26)" rx="2" ry="2" />
<text text-anchor="" x="288.24" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (2 samples, 0.16%)</title><rect x="563.3" y="1329" width="1.8" height="15.0" fill="rgb(231,94,29)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::grpc_frame::GrpcFrameFromHttpFramesStreamRequest as futures::stream::Stream&gt;::poll (45 samples, 3.55%)</title><rect x="1001.2" y="1857" width="41.9" height="15.0" fill="rgb(249,205,34)" rx="2" ry="2" />
<text text-anchor="" x="1004.24" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::channel::SenderCtl as core::clone::Clone&gt;::clone (5 samples, 0.39%)</title><rect x="761.3" y="1777" width="4.7" height="15.0" fill="rgb(218,132,37)" rx="2" ry="2" />
<text text-anchor="" x="764.33" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (2 samples, 0.16%)</title><rect x="299.2" y="2033" width="1.8" height="15.0" fill="rgb(251,96,26)" rx="2" ry="2" />
<text text-anchor="" x="302.19" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_data_queue (1 samples, 0.08%)</title><rect x="227.6" y="1505" width="0.9" height="15.0" fill="rgb(230,79,16)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.08%)</title><rect x="16.5" y="1857" width="0.9" height="15.0" fill="rgb(242,94,20)" rx="2" ry="2" />
<text text-anchor="" x="19.51" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.08%)</title><rect x="1103.5" y="1841" width="1.0" height="15.0" fill="rgb(210,176,51)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="79.7" y="1889" width="1.0" height="15.0" fill="rgb(229,179,32)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_ct_l4proto_find (1 samples, 0.08%)</title><rect x="217.4" y="49" width="0.9" height="15.0" fill="rgb(206,67,16)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hpack::decoder::Decoder::decode::{{closure}} (1 samples, 0.08%)</title><rect x="715.8" y="1793" width="0.9" height="15.0" fill="rgb(226,112,18)" rx="2" ry="2" />
<text text-anchor="" x="718.77" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (3 samples, 0.24%)</title><rect x="863.6" y="1825" width="2.8" height="15.0" fill="rgb(213,50,20)" rx="2" ry="2" />
<text text-anchor="" x="866.62" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="128.1" y="65" width="0.9" height="15.0" fill="rgb(250,2,31)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="53.7" y="1505" width="0.9" height="15.0" fill="rgb(215,52,35)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="71.4" y="1569" width="0.9" height="15.0" fill="rgb(208,157,4)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.08%)</title><rect x="1112.8" y="1889" width="1.0" height="15.0" fill="rgb(216,178,9)" rx="2" ry="2" />
<text text-anchor="" x="1115.82" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.16%)</title><rect x="123.4" y="161" width="1.9" height="15.0" fill="rgb(225,126,5)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="250.8" y="1889" width="1.0" height="15.0" fill="rgb(222,178,9)" rx="2" ry="2" />
<text text-anchor="" x="253.84" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (2 samples, 0.16%)</title><rect x="952.9" y="1665" width="1.8" height="15.0" fill="rgb(254,193,0)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.08%)</title><rect x="246.2" y="1361" width="0.9" height="15.0" fill="rgb(238,59,31)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="873.8" y="1281" width="1.0" height="15.0" fill="rgb(218,16,13)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="727.9" y="1729" width="0.9" height="15.0" fill="rgb(207,207,29)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1521" width="97.6" height="15.0" fill="rgb(251,77,52)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (2 samples, 0.16%)</title><rect x="126.2" y="65" width="1.9" height="15.0" fill="rgb(236,93,0)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (3 samples, 0.24%)</title><rect x="225.7" y="1889" width="2.8" height="15.0" fill="rgb(215,147,36)" rx="2" ry="2" />
<text text-anchor="" x="228.73" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="873.8" y="1201" width="1.0" height="15.0" fill="rgb(206,127,23)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="1099.8" y="1809" width="0.9" height="15.0" fill="rgb(254,208,25)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="535.4" y="1713" width="0.9" height="15.0" fill="rgb(250,31,28)" rx="2" ry="2" />
<text text-anchor="" x="538.37" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.08%)</title><rect x="228.5" y="1937" width="0.9" height="15.0" fill="rgb(235,44,32)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="71.4" y="1617" width="0.9" height="15.0" fill="rgb(224,92,42)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panicking::try::do_call (4 samples, 0.32%)</title><rect x="645.1" y="1745" width="3.7" height="15.0" fill="rgb(231,39,37)" rx="2" ry="2" />
<text text-anchor="" x="648.10" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (2 samples, 0.16%)</title><rect x="123.4" y="193" width="1.9" height="15.0" fill="rgb(227,84,35)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.08%)</title><rect x="939.9" y="1713" width="0.9" height="15.0" fill="rgb(243,79,49)" rx="2" ry="2" />
<text text-anchor="" x="942.87" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (2 samples, 0.16%)</title><rect x="132.7" y="65" width="1.9" height="15.0" fill="rgb(249,153,7)" rx="2" ry="2" />
<text text-anchor="" x="135.74" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (5 samples, 0.39%)</title><rect x="65.8" y="1985" width="4.6" height="15.0" fill="rgb(238,215,6)" rx="2" ry="2" />
<text text-anchor="" x="68.79" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="221.1" y="1793" width="0.9" height="15.0" fill="rgb(233,130,12)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="1099.8" y="1825" width="0.9" height="15.0" fill="rgb(209,172,42)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8 (1 samples, 0.08%)</title><rect x="1045.9" y="1793" width="0.9" height="15.0" fill="rgb(213,117,47)" rx="2" ry="2" />
<text text-anchor="" x="1048.87" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (2 samples, 0.16%)</title><rect x="563.3" y="1361" width="1.8" height="15.0" fill="rgb(251,198,44)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="57.4" y="1825" width="1.0" height="15.0" fill="rgb(228,99,0)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.08%)</title><rect x="248.0" y="1729" width="1.0" height="15.0" fill="rgb(244,130,24)" rx="2" ry="2" />
<text text-anchor="" x="251.05" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1953" width="97.6" height="15.0" fill="rgb(218,143,51)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="1149.1" y="1857" width="0.9" height="15.0" fill="rgb(247,117,51)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="209.0" y="113" width="0.9" height="15.0" fill="rgb(244,14,15)" rx="2" ry="2" />
<text text-anchor="" x="211.99" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="246.2" y="1377" width="0.9" height="15.0" fill="rgb(212,106,28)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="693.5" y="1553" width="1.8" height="15.0" fill="rgb(224,36,36)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (2 samples, 0.16%)</title><rect x="872.9" y="1345" width="1.9" height="15.0" fill="rgb(226,192,17)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (2 samples, 0.16%)</title><rect x="292.7" y="1457" width="1.8" height="15.0" fill="rgb(214,66,19)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.08%)</title><rect x="800.4" y="1809" width="0.9" height="15.0" fill="rgb(226,27,27)" rx="2" ry="2" />
<text text-anchor="" x="803.39" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="71.4" y="1585" width="0.9" height="15.0" fill="rgb(208,193,13)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="1103.5" y="1905" width="1.0" height="15.0" fill="rgb(251,224,48)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="563.3" y="1553" width="1.8" height="15.0" fill="rgb(218,64,37)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1553" width="97.6" height="15.0" fill="rgb(253,214,50)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.16%)</title><rect x="554.0" y="1729" width="1.8" height="15.0" fill="rgb(241,59,47)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="69.5" y="1473" width="0.9" height="15.0" fill="rgb(237,123,7)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="208.1" y="97" width="0.9" height="15.0" fill="rgb(219,90,0)" rx="2" ry="2" />
<text text-anchor="" x="211.06" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.16%)</title><rect x="864.5" y="1777" width="1.9" height="15.0" fill="rgb(205,113,33)" rx="2" ry="2" />
<text text-anchor="" x="867.55" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (5 samples, 0.39%)</title><rect x="116.9" y="1905" width="4.7" height="15.0" fill="rgb(236,35,10)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.16%)</title><rect x="872.9" y="1569" width="1.9" height="15.0" fill="rgb(220,224,46)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (3 samples, 0.24%)</title><rect x="77.0" y="1937" width="2.7" height="15.0" fill="rgb(243,110,51)" rx="2" ry="2" />
<text text-anchor="" x="79.95" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="93.7" y="1809" width="1.8" height="15.0" fill="rgb(231,220,50)" rx="2" ry="2" />
<text text-anchor="" x="96.69" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="953.8" y="1409" width="0.9" height="15.0" fill="rgb(232,188,33)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.16%)</title><rect x="682.3" y="1713" width="1.9" height="15.0" fill="rgb(234,154,42)" rx="2" ry="2" />
<text text-anchor="" x="685.29" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.08%)</title><rect x="108.6" y="1953" width="0.9" height="15.0" fill="rgb(223,85,8)" rx="2" ry="2" />
<text text-anchor="" x="111.57" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1009" width="97.6" height="15.0" fill="rgb(222,181,44)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1601" width="97.6" height="15.0" fill="rgb(243,156,50)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (2 samples, 0.16%)</title><rect x="963.1" y="1505" width="1.9" height="15.0" fill="rgb(231,146,46)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::channel::ReceiverCtl::dec (3 samples, 0.24%)</title><rect x="854.3" y="1809" width="2.8" height="15.0" fill="rgb(211,182,30)" rx="2" ry="2" />
<text text-anchor="" x="857.32" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1697" width="97.6" height="15.0" fill="rgb(237,223,28)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_sse2_unaligned (1 samples, 0.08%)</title><rect x="1047.7" y="1777" width="1.0" height="15.0" fill="rgb(240,75,16)" rx="2" ry="2" />
<text text-anchor="" x="1050.73" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="214.6" y="65" width="0.9" height="15.0" fill="rgb(249,71,40)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="727.9" y="1649" width="0.9" height="15.0" fill="rgb(222,21,29)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="862.7" y="1825" width="0.9" height="15.0" fill="rgb(221,173,23)" rx="2" ry="2" />
<text text-anchor="" x="865.69" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1905" width="97.6" height="15.0" fill="rgb(220,39,17)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.08%)</title><rect x="121.6" y="81" width="0.9" height="15.0" fill="rgb(225,7,35)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="57.4" y="1953" width="1.0" height="15.0" fill="rgb(226,6,16)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.16%)</title><rect x="226.7" y="1761" width="1.8" height="15.0" fill="rgb(236,144,18)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="214.6" y="49" width="0.9" height="15.0" fill="rgb(238,130,28)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.08%)</title><rect x="57.4" y="1649" width="1.0" height="15.0" fill="rgb(212,170,17)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="968.7" y="1841" width="0.9" height="15.0" fill="rgb(208,175,24)" rx="2" ry="2" />
<text text-anchor="" x="971.69" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="410.8" y="1873" width="0.9" height="15.0" fill="rgb(236,78,27)" rx="2" ry="2" />
<text text-anchor="" x="413.77" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="125.3" y="193" width="0.9" height="15.0" fill="rgb(214,211,21)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.08%)</title><rect x="278.7" y="1969" width="1.0" height="15.0" fill="rgb(230,173,39)" rx="2" ry="2" />
<text text-anchor="" x="281.73" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="71.4" y="1873" width="0.9" height="15.0" fill="rgb(217,55,7)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.16%)</title><rect x="827.4" y="1665" width="1.8" height="15.0" fill="rgb(240,131,0)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (9 samples, 0.71%)</title><rect x="950.1" y="1809" width="8.4" height="15.0" fill="rgb(228,126,21)" rx="2" ry="2" />
<text text-anchor="" x="953.09" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (2 samples, 0.16%)</title><rect x="1081.2" y="1793" width="1.9" height="15.0" fill="rgb(245,105,22)" rx="2" ry="2" />
<text text-anchor="" x="1084.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="1099.8" y="1841" width="0.9" height="15.0" fill="rgb(217,195,36)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hpack::decoder::Decoder::decode (28 samples, 2.21%)</title><rect x="716.7" y="1793" width="26.0" height="15.0" fill="rgb(205,22,7)" rx="2" ry="2" />
<text text-anchor="" x="719.70" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="1166.8" y="1793" width="0.9" height="15.0" fill="rgb(238,134,36)" rx="2" ry="2" />
<text text-anchor="" x="1169.75" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (9 samples, 0.71%)</title><rect x="240.6" y="1889" width="8.4" height="15.0" fill="rgb(209,110,10)" rx="2" ry="2" />
<text text-anchor="" x="243.61" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1105" width="97.6" height="15.0" fill="rgb(214,35,32)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="216.4" y="97" width="1.0" height="15.0" fill="rgb(247,198,29)" rx="2" ry="2" />
<text text-anchor="" x="219.43" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="53.7" y="1953" width="0.9" height="15.0" fill="rgb(239,227,37)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="727.9" y="1697" width="0.9" height="15.0" fill="rgb(225,224,1)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::SetReadiness::set_readiness (1 samples, 0.08%)</title><rect x="1187.2" y="1937" width="0.9" height="15.0" fill="rgb(229,173,31)" rx="2" ry="2" />
<text text-anchor="" x="1190.21" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="117.9" y="1825" width="0.9" height="15.0" fill="rgb(233,201,7)" rx="2" ry="2" />
<text text-anchor="" x="120.86" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (1 samples, 0.08%)</title><rect x="53.7" y="1809" width="0.9" height="15.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (2 samples, 0.16%)</title><rect x="93.7" y="1841" width="1.8" height="15.0" fill="rgb(241,222,2)" rx="2" ry="2" />
<text text-anchor="" x="96.69" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="834.8" y="1777" width="0.9" height="15.0" fill="rgb(229,229,23)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (2 samples, 0.16%)</title><rect x="16.5" y="1889" width="1.9" height="15.0" fill="rgb(250,83,53)" rx="2" ry="2" />
<text text-anchor="" x="19.51" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>clock_gettime@plt (1 samples, 0.08%)</title><rect x="1177.0" y="1937" width="0.9" height="15.0" fill="rgb(232,144,52)" rx="2" ry="2" />
<text text-anchor="" x="1179.98" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="544.7" y="1585" width="0.9" height="15.0" fill="rgb(235,148,26)" rx="2" ry="2" />
<text text-anchor="" x="547.67" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (2 samples, 0.16%)</title><rect x="123.4" y="49" width="1.9" height="15.0" fill="rgb(236,138,36)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="217.4" y="209" width="0.9" height="15.0" fill="rgb(236,215,44)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.08%)</title><rect x="1103.5" y="1729" width="1.0" height="15.0" fill="rgb(247,82,44)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="792.0" y="1761" width="0.9" height="15.0" fill="rgb(243,23,6)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_ack (1 samples, 0.08%)</title><rect x="564.2" y="1265" width="0.9" height="15.0" fill="rgb(239,39,15)" rx="2" ry="2" />
<text text-anchor="" x="567.20" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::server::MethodHandlerDispatchImpl&lt;Req, Resp&gt; as grpc::server::MethodHandlerDispatch&gt;::start_request (10 samples, 0.79%)</title><rect x="639.5" y="1777" width="9.3" height="15.0" fill="rgb(230,68,1)" rx="2" ry="2" />
<text text-anchor="" x="642.52" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="106.7" y="1969" width="0.9" height="15.0" fill="rgb(252,201,14)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="834.8" y="1809" width="0.9" height="15.0" fill="rgb(213,60,22)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="1042.2" y="1713" width="0.9" height="15.0" fill="rgb(214,148,24)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (2 samples, 0.16%)</title><rect x="209.9" y="113" width="1.9" height="15.0" fill="rgb(228,70,24)" rx="2" ry="2" />
<text text-anchor="" x="212.92" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="53.7" y="1537" width="0.9" height="15.0" fill="rgb(206,15,38)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="80.7" y="1713" width="0.9" height="15.0" fill="rgb(251,80,26)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="532.6" y="1697" width="0.9" height="15.0" fill="rgb(229,99,29)" rx="2" ry="2" />
<text text-anchor="" x="535.58" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (7 samples, 0.55%)</title><rect x="288.0" y="1889" width="6.5" height="15.0" fill="rgb(231,195,1)" rx="2" ry="2" />
<text text-anchor="" x="291.03" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (3 samples, 0.24%)</title><rect x="1152.8" y="1905" width="2.8" height="15.0" fill="rgb(205,145,1)" rx="2" ry="2" />
<text text-anchor="" x="1155.81" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (2 samples, 0.16%)</title><rect x="247.1" y="1745" width="1.9" height="15.0" fill="rgb(223,223,6)" rx="2" ry="2" />
<text text-anchor="" x="250.12" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (1 samples, 0.08%)</title><rect x="71.4" y="1537" width="0.9" height="15.0" fill="rgb(236,221,14)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="107.6" y="1905" width="1.0" height="15.0" fill="rgb(217,166,8)" rx="2" ry="2" />
<text text-anchor="" x="110.64" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="570.7" y="1745" width="0.9" height="15.0" fill="rgb(220,191,36)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::solicit_misc::HttpConnectionEx::send_data_frame (6 samples, 0.47%)</title><rect x="880.4" y="1809" width="5.5" height="15.0" fill="rgb(211,72,46)" rx="2" ry="2" />
<text text-anchor="" x="883.35" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_nagle_check (1 samples, 0.08%)</title><rect x="289.0" y="1873" width="0.9" height="15.0" fill="rgb(235,57,10)" rx="2" ry="2" />
<text text-anchor="" x="291.96" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.16%)</title><rect x="963.1" y="1537" width="1.9" height="15.0" fill="rgb(251,66,40)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="59.3" y="1729" width="0.9" height="15.0" fill="rgb(234,149,51)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="219.2" y="1937" width="0.9" height="15.0" fill="rgb(239,147,31)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="101.1" y="1985" width="1.0" height="15.0" fill="rgb(237,90,53)" rx="2" ry="2" />
<text text-anchor="" x="104.13" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="693.5" y="1457" width="0.9" height="15.0" fill="rgb(229,159,9)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::channel::SenderCtl::inc (4 samples, 0.32%)</title><rect x="1129.6" y="1905" width="3.7" height="15.0" fill="rgb(219,114,11)" rx="2" ry="2" />
<text text-anchor="" x="1132.56" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="1164.9" y="1921" width="0.9" height="15.0" fill="rgb(205,18,16)" rx="2" ry="2" />
<text text-anchor="" x="1167.89" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="305.7" y="2033" width="2.8" height="15.0" fill="rgb(252,13,50)" rx="2" ry="2" />
<text text-anchor="" x="308.70" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::http_server::GrpcHttpServerStream&lt;F&gt;&gt;::set_state (1 samples, 0.08%)</title><rect x="944.5" y="1841" width="0.9" height="15.0" fill="rgb(246,70,36)" rx="2" ry="2" />
<text text-anchor="" x="947.52" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (2 samples, 0.16%)</title><rect x="113.2" y="1873" width="1.9" height="15.0" fill="rgb(225,168,29)" rx="2" ry="2" />
<text text-anchor="" x="116.22" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (1 samples, 0.08%)</title><rect x="1034.7" y="1777" width="0.9" height="15.0" fill="rgb(246,204,6)" rx="2" ry="2" />
<text text-anchor="" x="1037.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::sync::mpsc::mpsc_queue::Queue&lt;T&gt;&gt;::pop (7 samples, 0.55%)</title><rect x="846.9" y="1809" width="6.5" height="15.0" fill="rgb(238,166,28)" rx="2" ry="2" />
<text text-anchor="" x="849.88" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (1 samples, 0.08%)</title><rect x="44.4" y="1857" width="0.9" height="15.0" fill="rgb(230,137,19)" rx="2" ry="2" />
<text text-anchor="" x="47.41" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (2 samples, 0.16%)</title><rect x="222.9" y="1761" width="1.9" height="15.0" fill="rgb(245,5,21)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.16%)</title><rect x="46.3" y="1681" width="1.8" height="15.0" fill="rgb(207,128,2)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.08%)</title><rect x="727.9" y="1665" width="0.9" height="15.0" fill="rgb(233,22,32)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;solicit_fork::http::frame::headers::HeadersFrame&lt;a&gt; as solicit_fork::http::frame::Frame&lt;a&gt;&gt;::get_header (3 samples, 0.24%)</title><rect x="898.0" y="1809" width="2.8" height="15.0" fill="rgb(233,165,9)" rx="2" ry="2" />
<text text-anchor="" x="901.02" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>attach_task (1 samples, 0.08%)</title><rect x="16.5" y="1873" width="0.9" height="15.0" fill="rgb(248,220,38)" rx="2" ry="2" />
<text text-anchor="" x="19.51" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_in_window (1 samples, 0.08%)</title><rect x="63.9" y="1697" width="1.0" height="15.0" fill="rgb(215,176,14)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="340.1" y="1585" width="0.9" height="15.0" fill="rgb(228,43,6)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_reallocate (1 samples, 0.08%)</title><rect x="931.5" y="1777" width="0.9" height="15.0" fill="rgb(250,123,12)" rx="2" ry="2" />
<text text-anchor="" x="934.50" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="54.6" y="1937" width="1.0" height="15.0" fill="rgb(250,144,41)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="817" width="97.6" height="15.0" fill="rgb(206,31,42)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (4 samples, 0.32%)</title><rect x="952.9" y="1745" width="3.7" height="15.0" fill="rgb(206,121,25)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (2 samples, 0.16%)</title><rect x="1174.2" y="1793" width="1.9" height="15.0" fill="rgb(209,108,49)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="125.3" y="209" width="0.9" height="15.0" fill="rgb(226,90,16)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (2 samples, 0.16%)</title><rect x="872.9" y="1441" width="1.9" height="15.0" fill="rgb(232,63,31)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="1175.1" y="1681" width="1.0" height="15.0" fill="rgb(240,137,41)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (2 samples, 0.16%)</title><rect x="212.7" y="145" width="1.9" height="15.0" fill="rgb(224,158,6)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.08%)</title><rect x="94.6" y="1713" width="0.9" height="15.0" fill="rgb(210,171,26)" rx="2" ry="2" />
<text text-anchor="" x="97.62" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (12 samples, 0.95%)</title><rect x="686.0" y="1777" width="11.2" height="15.0" fill="rgb(251,169,16)" rx="2" ry="2" />
<text text-anchor="" x="689.01" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="792.0" y="1617" width="0.9" height="15.0" fill="rgb(246,94,27)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="55.6" y="1985" width="0.9" height="15.0" fill="rgb(213,17,31)" rx="2" ry="2" />
<text text-anchor="" x="58.56" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.08%)</title><rect x="1134.2" y="1729" width="0.9" height="15.0" fill="rgb(246,66,0)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="106.7" y="1937" width="0.9" height="15.0" fill="rgb(225,220,43)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="219.2" y="1905" width="0.9" height="15.0" fill="rgb(219,58,31)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::write (8 samples, 0.63%)</title><rect x="660.0" y="1745" width="7.4" height="15.0" fill="rgb(239,116,28)" rx="2" ry="2" />
<text text-anchor="" x="662.98" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="53.7" y="1713" width="0.9" height="15.0" fill="rgb(231,8,23)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="625" width="96.7" height="15.0" fill="rgb(205,139,23)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="864.5" y="1809" width="1.9" height="15.0" fill="rgb(242,19,21)" rx="2" ry="2" />
<text text-anchor="" x="867.55" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="544.7" y="1553" width="0.9" height="15.0" fill="rgb(224,18,38)" rx="2" ry="2" />
<text text-anchor="" x="547.67" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="739.9" y="1713" width="1.0" height="15.0" fill="rgb(254,80,20)" rx="2" ry="2" />
<text text-anchor="" x="742.94" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="1105.4" y="1889" width="0.9" height="15.0" fill="rgb(229,26,22)" rx="2" ry="2" />
<text text-anchor="" x="1108.38" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (5 samples, 0.39%)</title><rect x="116.9" y="1921" width="4.7" height="15.0" fill="rgb(215,0,16)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (1 samples, 0.08%)</title><rect x="729.7" y="1761" width="0.9" height="15.0" fill="rgb(211,162,1)" rx="2" ry="2" />
<text text-anchor="" x="732.72" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="222.9" y="1793" width="1.9" height="15.0" fill="rgb(232,227,45)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (6 samples, 0.47%)</title><rect x="559.6" y="1761" width="5.5" height="15.0" fill="rgb(208,57,21)" rx="2" ry="2" />
<text text-anchor="" x="562.55" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="795.7" y="1521" width="1.0" height="15.0" fill="rgb(214,67,7)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (27 samples, 2.13%)</title><rect x="28.6" y="2033" width="25.1" height="15.0" fill="rgb(224,10,30)" rx="2" ry="2" />
<text text-anchor="" x="31.60" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (2 samples, 0.16%)</title><rect x="226.7" y="1713" width="1.8" height="15.0" fill="rgb(214,128,28)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="79.7" y="1969" width="1.0" height="15.0" fill="rgb(223,105,31)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="298.3" y="1905" width="0.9" height="15.0" fill="rgb(247,121,22)" rx="2" ry="2" />
<text text-anchor="" x="301.26" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Remote::send::{{closure}} (1 samples, 0.08%)</title><rect x="221.1" y="1921" width="0.9" height="15.0" fill="rgb(210,85,53)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.08%)</title><rect x="122.5" y="113" width="0.9" height="15.0" fill="rgb(236,96,18)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="209.9" y="49" width="1.0" height="15.0" fill="rgb(219,36,52)" rx="2" ry="2" />
<text text-anchor="" x="212.92" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1393" width="97.6" height="15.0" fill="rgb(251,79,27)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (7 samples, 0.55%)</title><rect x="952.0" y="1793" width="6.5" height="15.0" fill="rgb(238,144,40)" rx="2" ry="2" />
<text text-anchor="" x="954.95" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1777" width="97.6" height="15.0" fill="rgb(223,48,22)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="241.5" y="1841" width="1.0" height="15.0" fill="rgb(219,125,46)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (81 samples, 6.38%)</title><rect x="132.7" y="81" width="75.4" height="15.0" fill="rgb(233,65,52)" rx="2" ry="2" />
<text text-anchor="" x="135.74" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (2 samples, 0.16%)</title><rect x="130.9" y="81" width="1.8" height="15.0" fill="rgb(206,163,12)" rx="2" ry="2" />
<text text-anchor="" x="133.88" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (5 samples, 0.39%)</title><rect x="116.9" y="1953" width="4.7" height="15.0" fill="rgb(221,199,1)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.16%)</title><rect x="226.7" y="1681" width="1.8" height="15.0" fill="rgb(239,96,25)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.08%)</title><rect x="792.0" y="1569" width="0.9" height="15.0" fill="rgb(212,56,12)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="721" width="97.6" height="15.0" fill="rgb(230,7,22)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (2 samples, 0.16%)</title><rect x="954.7" y="1681" width="1.9" height="15.0" fill="rgb(207,26,9)" rx="2" ry="2" />
<text text-anchor="" x="957.74" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (3 samples, 0.24%)</title><rect x="1174.2" y="1889" width="2.8" height="15.0" fill="rgb(242,171,46)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="80.7" y="1985" width="0.9" height="15.0" fill="rgb(241,223,9)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_ct_get_tuple (1 samples, 0.08%)</title><rect x="80.7" y="1681" width="0.9" height="15.0" fill="rgb(253,30,30)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.16%)</title><rect x="245.3" y="1473" width="1.8" height="15.0" fill="rgb(214,21,3)" rx="2" ry="2" />
<text text-anchor="" x="248.26" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (2 samples, 0.16%)</title><rect x="130.9" y="129" width="1.8" height="15.0" fill="rgb(223,149,31)" rx="2" ry="2" />
<text text-anchor="" x="133.88" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (2 samples, 0.16%)</title><rect x="563.3" y="1489" width="1.8" height="15.0" fill="rgb(231,158,7)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.08%)</title><rect x="1042.2" y="1697" width="0.9" height="15.0" fill="rgb(244,186,41)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="695.3" y="1601" width="0.9" height="15.0" fill="rgb(229,105,33)" rx="2" ry="2" />
<text text-anchor="" x="698.31" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="218.3" y="561" width="0.9" height="15.0" fill="rgb(230,50,13)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="54.6" y="1921" width="1.0" height="15.0" fill="rgb(232,165,7)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="220.1" y="1905" width="1.0" height="15.0" fill="rgb(245,41,9)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::arc::Arc&lt;T&gt;&gt;::drop_slow (2 samples, 0.16%)</title><rect x="436.8" y="1937" width="1.9" height="15.0" fill="rgb(252,7,3)" rx="2" ry="2" />
<text text-anchor="" x="439.81" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (1 samples, 0.08%)</title><rect x="71.4" y="1521" width="0.9" height="15.0" fill="rgb(233,73,43)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="865" width="97.6" height="15.0" fill="rgb(219,104,36)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="221.1" y="1809" width="0.9" height="15.0" fill="rgb(228,71,13)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="211.8" y="161" width="0.9" height="15.0" fill="rgb(242,141,27)" rx="2" ry="2" />
<text text-anchor="" x="214.78" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="825.5" y="1681" width="0.9" height="15.0" fill="rgb(231,2,31)" rx="2" ry="2" />
<text text-anchor="" x="828.49" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="952.9" y="1633" width="1.8" height="15.0" fill="rgb(213,161,14)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="969.6" y="1761" width="1.0" height="15.0" fill="rgb(230,149,10)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="870.1" y="1713" width="1.0" height="15.0" fill="rgb(223,58,54)" rx="2" ry="2" />
<text text-anchor="" x="873.13" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (8 samples, 0.63%)</title><rect x="109.5" y="2001" width="7.4" height="15.0" fill="rgb(218,9,22)" rx="2" ry="2" />
<text text-anchor="" x="112.50" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.16%)</title><rect x="226.7" y="1745" width="1.8" height="15.0" fill="rgb(209,106,51)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (6 samples, 0.47%)</title><rect x="60.2" y="1953" width="5.6" height="15.0" fill="rgb(247,144,41)" rx="2" ry="2" />
<text text-anchor="" x="63.21" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_deallocate (1 samples, 0.08%)</title><rect x="1073.8" y="1841" width="0.9" height="15.0" fill="rgb(239,36,36)" rx="2" ry="2" />
<text text-anchor="" x="1076.77" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::read_bytes_into (9 samples, 0.71%)</title><rect x="1046.8" y="1793" width="8.4" height="15.0" fill="rgb(243,53,48)" rx="2" ry="2" />
<text text-anchor="" x="1049.80" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::Registration::new (7 samples, 0.55%)</title><rect x="776.2" y="1729" width="6.5" height="15.0" fill="rgb(254,6,29)" rx="2" ry="2" />
<text text-anchor="" x="779.21" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="57.4" y="1713" width="1.0" height="15.0" fill="rgb(238,189,28)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (2 samples, 0.16%)</title><rect x="103.9" y="1857" width="1.9" height="15.0" fill="rgb(231,100,54)" rx="2" ry="2" />
<text text-anchor="" x="106.92" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (2 samples, 0.16%)</title><rect x="554.0" y="1777" width="1.8" height="15.0" fill="rgb(253,78,8)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (2 samples, 0.16%)</title><rect x="286.2" y="1889" width="1.8" height="15.0" fill="rgb(222,103,48)" rx="2" ry="2" />
<text text-anchor="" x="289.17" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::arc::Arc&lt;T&gt;&gt;::drop_slow (2 samples, 0.16%)</title><rect x="1077.5" y="1825" width="1.8" height="15.0" fill="rgb(240,176,18)" rx="2" ry="2" />
<text text-anchor="" x="1080.49" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="56.5" y="1905" width="0.9" height="15.0" fill="rgb(227,138,9)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="53.7" y="1873" width="0.9" height="15.0" fill="rgb(218,35,49)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="410.8" y="1889" width="0.9" height="15.0" fill="rgb(228,41,35)" rx="2" ry="2" />
<text text-anchor="" x="413.77" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="220.1" y="1825" width="1.0" height="15.0" fill="rgb(213,56,2)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_to_iter (1 samples, 0.08%)</title><rect x="78.8" y="1825" width="0.9" height="15.0" fill="rgb(231,140,48)" rx="2" ry="2" />
<text text-anchor="" x="81.81" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (3 samples, 0.24%)</title><rect x="214.6" y="193" width="2.8" height="15.0" fill="rgb(247,226,19)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (1 samples, 0.08%)</title><rect x="1159.3" y="1857" width="0.9" height="15.0" fill="rgb(218,201,19)" rx="2" ry="2" />
<text text-anchor="" x="1162.31" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="45.3" y="1873" width="1.0" height="15.0" fill="rgb(246,17,44)" rx="2" ry="2" />
<text text-anchor="" x="48.33" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (6 samples, 0.47%)</title><rect x="336.4" y="1921" width="5.6" height="15.0" fill="rgb(219,162,20)" rx="2" ry="2" />
<text text-anchor="" x="339.38" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.16%)</title><rect x="222.9" y="1921" width="1.9" height="15.0" fill="rgb(225,20,31)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::channel::Sender&lt;T&gt; as core::clone::Clone&gt;::clone (7 samples, 0.55%)</title><rect x="671.1" y="1793" width="6.5" height="15.0" fill="rgb(205,102,25)" rx="2" ry="2" />
<text text-anchor="" x="674.13" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="273.2" y="1921" width="0.9" height="15.0" fill="rgb(235,154,37)" rx="2" ry="2" />
<text text-anchor="" x="276.15" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (1 samples, 0.08%)</title><rect x="215.5" y="65" width="0.9" height="15.0" fill="rgb(231,180,31)" rx="2" ry="2" />
<text text-anchor="" x="218.50" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (1 samples, 0.08%)</title><rect x="121.6" y="49" width="0.9" height="15.0" fill="rgb(241,8,46)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="220.1" y="1841" width="1.0" height="15.0" fill="rgb(228,79,33)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="211.8" y="81" width="0.9" height="15.0" fill="rgb(214,100,26)" rx="2" ry="2" />
<text text-anchor="" x="214.78" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (3 samples, 0.24%)</title><rect x="623.7" y="1761" width="2.8" height="15.0" fill="rgb(231,212,20)" rx="2" ry="2" />
<text text-anchor="" x="626.71" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="79.7" y="2001" width="1.0" height="15.0" fill="rgb(246,211,32)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (103 samples, 8.12%)</title><rect x="122.5" y="353" width="95.8" height="15.0" fill="rgb(208,32,9)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.08%)</title><rect x="80.7" y="1697" width="0.9" height="15.0" fill="rgb(244,14,31)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::io::cursor::Cursor&lt;collections::vec::Vec&lt;u8&gt;&gt; as std::io::Write&gt;::write (10 samples, 0.79%)</title><rect x="925.9" y="1793" width="9.3" height="15.0" fill="rgb(245,54,49)" rx="2" ry="2" />
<text text-anchor="" x="928.92" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="260.1" y="1969" width="1.0" height="15.0" fill="rgb(243,191,11)" rx="2" ry="2" />
<text text-anchor="" x="263.13" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (4 samples, 0.32%)</title><rect x="541.9" y="1713" width="3.7" height="15.0" fill="rgb(228,63,18)" rx="2" ry="2" />
<text text-anchor="" x="544.88" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.08%)</title><rect x="1103.5" y="1857" width="1.0" height="15.0" fill="rgb(215,200,49)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (12 samples, 0.95%)</title><rect x="686.0" y="1761" width="11.2" height="15.0" fill="rgb(211,96,1)" rx="2" ry="2" />
<text text-anchor="" x="689.01" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (4 samples, 0.32%)</title><rect x="961.3" y="1697" width="3.7" height="15.0" fill="rgb(222,105,2)" rx="2" ry="2" />
<text text-anchor="" x="964.25" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="535.4" y="1761" width="0.9" height="15.0" fill="rgb(217,102,12)" rx="2" ry="2" />
<text text-anchor="" x="538.37" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.08%)</title><rect x="1042.2" y="1681" width="0.9" height="15.0" fill="rgb(210,100,38)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (5 samples, 0.39%)</title><rect x="541.0" y="1745" width="4.6" height="15.0" fill="rgb(219,17,38)" rx="2" ry="2" />
<text text-anchor="" x="543.95" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.08%)</title><rect x="53.7" y="1761" width="0.9" height="15.0" fill="rgb(243,224,50)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (1 samples, 0.08%)</title><rect x="681.4" y="1745" width="0.9" height="15.0" fill="rgb(246,62,5)" rx="2" ry="2" />
<text text-anchor="" x="684.36" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1585" width="97.6" height="15.0" fill="rgb(215,60,16)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="70.4" y="1985" width="1.0" height="15.0" fill="rgb(226,33,23)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="570.7" y="1793" width="0.9" height="15.0" fill="rgb(207,224,4)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="952.9" y="1649" width="1.8" height="15.0" fill="rgb(227,7,54)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (9 samples, 0.71%)</title><rect x="950.1" y="1825" width="8.4" height="15.0" fill="rgb(239,41,7)" rx="2" ry="2" />
<text text-anchor="" x="953.09" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="218.3" y="465" width="0.9" height="15.0" fill="rgb(222,177,9)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="74.2" y="1889" width="0.9" height="15.0" fill="rgb(254,211,11)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="82.5" y="1969" width="1.0" height="15.0" fill="rgb(235,24,45)" rx="2" ry="2" />
<text text-anchor="" x="85.53" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_sock (1 samples, 0.08%)</title><rect x="692.5" y="1633" width="1.0" height="15.0" fill="rgb(219,158,27)" rx="2" ry="2" />
<text text-anchor="" x="695.52" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="795.7" y="1697" width="1.0" height="15.0" fill="rgb(232,173,48)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (3 samples, 0.24%)</title><rect x="118.8" y="1825" width="2.8" height="15.0" fill="rgb(208,148,2)" rx="2" ry="2" />
<text text-anchor="" x="121.79" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.08%)</title><rect x="562.3" y="1489" width="1.0" height="15.0" fill="rgb(254,152,20)" rx="2" ry="2" />
<text text-anchor="" x="565.34" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (2 samples, 0.16%)</title><rect x="130.9" y="49" width="1.8" height="15.0" fill="rgb(244,48,16)" rx="2" ry="2" />
<text text-anchor="" x="133.88" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::read_string_into (10 samples, 0.79%)</title><rect x="1045.9" y="1809" width="9.3" height="15.0" fill="rgb(230,17,9)" rx="2" ry="2" />
<text text-anchor="" x="1048.87" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.08%)</title><rect x="71.4" y="1681" width="0.9" height="15.0" fill="rgb(250,170,20)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.16%)</title><rect x="954.7" y="1697" width="1.9" height="15.0" fill="rgb(219,158,5)" rx="2" ry="2" />
<text text-anchor="" x="957.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (1 samples, 0.08%)</title><rect x="970.6" y="1761" width="0.9" height="15.0" fill="rgb(252,180,42)" rx="2" ry="2" />
<text text-anchor="" x="973.55" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="80.7" y="1777" width="0.9" height="15.0" fill="rgb(226,157,41)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="121.6" y="129" width="0.9" height="15.0" fill="rgb(244,30,23)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="921.3" y="1729" width="0.9" height="15.0" fill="rgb(219,23,3)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (21 samples, 1.65%)</title><rect x="32.3" y="1953" width="19.5" height="15.0" fill="rgb(215,172,9)" rx="2" ry="2" />
<text text-anchor="" x="35.32" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (1 samples, 0.08%)</title><rect x="795.7" y="1617" width="1.0" height="15.0" fill="rgb(241,87,20)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="121.6" y="177" width="0.9" height="15.0" fill="rgb(234,69,6)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.16%)</title><rect x="952.9" y="1489" width="1.8" height="15.0" fill="rgb(211,208,42)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_allocate (1 samples, 0.08%)</title><rect x="571.6" y="1809" width="1.0" height="15.0" fill="rgb(231,181,33)" rx="2" ry="2" />
<text text-anchor="" x="574.64" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="449" width="96.7" height="15.0" fill="rgb(236,111,0)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="953.8" y="1377" width="0.9" height="15.0" fill="rgb(242,19,47)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="801.3" y="1809" width="0.9" height="15.0" fill="rgb(218,169,30)" rx="2" ry="2" />
<text text-anchor="" x="804.32" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="79.7" y="1633" width="1.0" height="15.0" fill="rgb(222,215,9)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (2 samples, 0.16%)</title><rect x="245.3" y="1489" width="1.8" height="15.0" fill="rgb(220,146,13)" rx="2" ry="2" />
<text text-anchor="" x="248.26" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_do_timer (1 samples, 0.08%)</title><rect x="241.5" y="1761" width="1.0" height="15.0" fill="rgb(209,68,49)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (9 samples, 0.71%)</title><rect x="867.3" y="1793" width="8.4" height="15.0" fill="rgb(245,160,41)" rx="2" ry="2" />
<text text-anchor="" x="870.34" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="534.4" y="1729" width="1.0" height="15.0" fill="rgb(253,169,15)" rx="2" ry="2" />
<text text-anchor="" x="537.44" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.08%)</title><rect x="102.1" y="1905" width="0.9" height="15.0" fill="rgb(223,80,7)" rx="2" ry="2" />
<text text-anchor="" x="105.06" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (2 samples, 0.16%)</title><rect x="103.9" y="1841" width="1.9" height="15.0" fill="rgb(218,217,52)" rx="2" ry="2" />
<text text-anchor="" x="106.92" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.08%)</title><rect x="218.3" y="97" width="0.9" height="15.0" fill="rgb(229,99,24)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="218.3" y="449" width="0.9" height="15.0" fill="rgb(205,157,21)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.08%)</title><rect x="948.2" y="1713" width="1.0" height="15.0" fill="rgb(215,6,50)" rx="2" ry="2" />
<text text-anchor="" x="951.23" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.16%)</title><rect x="827.4" y="1681" width="1.8" height="15.0" fill="rgb(208,91,38)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (1 samples, 0.08%)</title><rect x="563.3" y="1265" width="0.9" height="15.0" fill="rgb(243,221,51)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="217.4" y="225" width="0.9" height="15.0" fill="rgb(233,26,17)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="849" width="97.6" height="15.0" fill="rgb(250,33,34)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (3 samples, 0.24%)</title><rect x="1165.8" y="1873" width="2.8" height="15.0" fill="rgb(227,60,3)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="56.5" y="1857" width="0.9" height="15.0" fill="rgb(211,219,16)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (3 samples, 0.24%)</title><rect x="244.3" y="1681" width="2.8" height="15.0" fill="rgb(243,49,7)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="217.4" y="305" width="0.9" height="15.0" fill="rgb(246,39,41)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1745" width="97.6" height="15.0" fill="rgb(240,66,43)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (16 samples, 1.26%)</title><rect x="37.0" y="1921" width="14.8" height="15.0" fill="rgb(210,126,33)" rx="2" ry="2" />
<text text-anchor="" x="39.97" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="54.6" y="1953" width="1.0" height="15.0" fill="rgb(251,164,4)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (30 samples, 2.36%)</title><rect x="1063.5" y="1873" width="27.9" height="15.0" fill="rgb(218,91,39)" rx="2" ry="2" />
<text text-anchor="" x="1066.54" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (102 samples, 8.04%)</title><rect x="122.5" y="305" width="94.9" height="15.0" fill="rgb(238,96,40)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (4 samples, 0.32%)</title><rect x="290.8" y="1633" width="3.7" height="15.0" fill="rgb(211,129,4)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.08%)</title><rect x="1133.3" y="1809" width="0.9" height="15.0" fill="rgb(245,140,9)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.08%)</title><rect x="340.1" y="1681" width="0.9" height="15.0" fill="rgb(246,2,49)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="220.1" y="1809" width="1.0" height="15.0" fill="rgb(244,36,3)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.55 (1 samples, 0.08%)</title><rect x="693.5" y="1169" width="0.9" height="15.0" fill="rgb(252,130,47)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::then::Then&lt;A, B, F&gt; as futures::future::Future&gt;::poll (1 samples, 0.08%)</title><rect x="1155.6" y="1937" width="0.9" height="15.0" fill="rgb(218,31,22)" rx="2" ry="2" />
<text text-anchor="" x="1158.59" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.08%)</title><rect x="532.6" y="1617" width="0.9" height="15.0" fill="rgb(227,124,30)" rx="2" ry="2" />
<text text-anchor="" x="535.58" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.08%)</title><rect x="246.2" y="1441" width="0.9" height="15.0" fill="rgb(230,198,53)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.08%)</title><rect x="239.7" y="1873" width="0.9" height="15.0" fill="rgb(239,3,53)" rx="2" ry="2" />
<text text-anchor="" x="242.68" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.08%)</title><rect x="873.8" y="1137" width="1.0" height="15.0" fill="rgb(254,102,33)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="1171.4" y="1889" width="0.9" height="15.0" fill="rgb(220,168,6)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (26 samples, 2.05%)</title><rect x="29.5" y="2017" width="24.2" height="15.0" fill="rgb(246,21,9)" rx="2" ry="2" />
<text text-anchor="" x="32.53" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="554.9" y="1601" width="0.9" height="15.0" fill="rgb(230,212,20)" rx="2" ry="2" />
<text text-anchor="" x="557.90" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>solicit_fork::http::frame::headers::HeadersFrame::new (1 samples, 0.08%)</title><rect x="941.7" y="1825" width="1.0" height="15.0" fill="rgb(232,78,4)" rx="2" ry="2" />
<text text-anchor="" x="944.73" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (3 samples, 0.24%)</title><rect x="681.4" y="1761" width="2.8" height="15.0" fill="rgb(231,97,31)" rx="2" ry="2" />
<text text-anchor="" x="684.36" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="217.4" y="273" width="0.9" height="15.0" fill="rgb(235,130,48)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="739.9" y="1649" width="1.0" height="15.0" fill="rgb(226,108,11)" rx="2" ry="2" />
<text text-anchor="" x="742.94" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::channel::Sender&lt;T&gt;&gt;::send (1 samples, 0.08%)</title><rect x="81.6" y="2017" width="0.9" height="15.0" fill="rgb(251,40,20)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="113.2" y="1841" width="0.9" height="15.0" fill="rgb(231,175,46)" rx="2" ry="2" />
<text text-anchor="" x="116.22" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="80.7" y="1745" width="0.9" height="15.0" fill="rgb(225,168,9)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="969.6" y="1889" width="1.9" height="15.0" fill="rgb(235,1,17)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::join::Join&lt;A, B&gt; as futures::future::Future&gt;::poll (560 samples, 44.13%)</title><rect x="448.0" y="1873" width="520.7" height="15.0" fill="rgb(254,17,18)" rx="2" ry="2" />
<text text-anchor="" x="450.97" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::future::join::Join&lt;A, B&gt; as futures::future::Future&gt;::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1841" width="97.6" height="15.0" fill="rgb(213,32,21)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.08%)</title><rect x="683.2" y="1649" width="1.0" height="15.0" fill="rgb(229,13,25)" rx="2" ry="2" />
<text text-anchor="" x="686.22" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="219.2" y="1889" width="0.9" height="15.0" fill="rgb(254,70,41)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="116.9" y="1809" width="1.0" height="15.0" fill="rgb(210,74,18)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.16%)</title><rect x="963.1" y="1617" width="1.9" height="15.0" fill="rgb(206,108,13)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="56.5" y="1985" width="0.9" height="15.0" fill="rgb(205,140,18)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.08%)</title><rect x="683.2" y="1665" width="1.0" height="15.0" fill="rgb(248,175,38)" rx="2" ry="2" />
<text text-anchor="" x="686.22" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedOutputStream::new (1 samples, 0.08%)</title><rect x="1100.7" y="1889" width="1.0" height="15.0" fill="rgb(211,168,3)" rx="2" ry="2" />
<text text-anchor="" x="1103.73" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="792.0" y="1633" width="0.9" height="15.0" fill="rgb(213,140,17)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (3 samples, 0.24%)</title><rect x="627.4" y="1777" width="2.8" height="15.0" fill="rgb(227,2,15)" rx="2" ry="2" />
<text text-anchor="" x="630.43" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="129.0" y="161" width="1.0" height="15.0" fill="rgb(213,19,31)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.08%)</title><rect x="682.3" y="1665" width="0.9" height="15.0" fill="rgb(205,197,6)" rx="2" ry="2" />
<text text-anchor="" x="685.29" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (1 samples, 0.08%)</title><rect x="547.5" y="1745" width="0.9" height="15.0" fill="rgb(250,109,39)" rx="2" ry="2" />
<text text-anchor="" x="550.46" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="785" width="97.6" height="15.0" fill="rgb(233,167,42)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.08%)</title><rect x="1170.5" y="1873" width="0.9" height="15.0" fill="rgb(253,167,27)" rx="2" ry="2" />
<text text-anchor="" x="1173.47" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (4 samples, 0.32%)</title><rect x="1137.0" y="1921" width="3.7" height="15.0" fill="rgb(221,59,37)" rx="2" ry="2" />
<text text-anchor="" x="1140.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="228.5" y="1889" width="0.9" height="15.0" fill="rgb(205,147,29)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::futures_misc::stream_with_eof_and_error::StreamWithEofAndError&lt;S, F&gt; as futures::stream::Stream&gt;::poll (33 samples, 2.60%)</title><rect x="1011.5" y="1841" width="30.7" height="15.0" fill="rgb(240,55,38)" rx="2" ry="2" />
<text text-anchor="" x="1014.47" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="409.8" y="1905" width="1.0" height="15.0" fill="rgb(214,99,27)" rx="2" ry="2" />
<text text-anchor="" x="412.84" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="1134.2" y="1777" width="0.9" height="15.0" fill="rgb(215,33,39)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.16%)</title><rect x="226.7" y="1793" width="1.8" height="15.0" fill="rgb(241,104,5)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.08%)</title><rect x="834.8" y="1585" width="0.9" height="15.0" fill="rgb(227,30,4)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (2 samples, 0.16%)</title><rect x="93.7" y="1857" width="1.8" height="15.0" fill="rgb(224,140,35)" rx="2" ry="2" />
<text text-anchor="" x="96.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="81.6" y="2001" width="0.9" height="15.0" fill="rgb(226,16,4)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="950.1" y="1777" width="0.9" height="15.0" fill="rgb(209,40,21)" rx="2" ry="2" />
<text text-anchor="" x="953.09" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (2 samples, 0.16%)</title><rect x="292.7" y="1521" width="1.8" height="15.0" fill="rgb(214,212,42)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (3 samples, 0.24%)</title><rect x="1174.2" y="1937" width="2.8" height="15.0" fill="rgb(226,133,8)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="246.2" y="1393" width="0.9" height="15.0" fill="rgb(250,215,15)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.08%)</title><rect x="682.3" y="1649" width="0.9" height="15.0" fill="rgb(254,214,2)" rx="2" ry="2" />
<text text-anchor="" x="685.29" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="866.4" y="1745" width="0.9" height="15.0" fill="rgb(205,133,11)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1185" width="97.6" height="15.0" fill="rgb(224,55,44)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1921" width="97.6" height="15.0" fill="rgb(239,181,49)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (2 samples, 0.16%)</title><rect x="292.7" y="1409" width="1.8" height="15.0" fill="rgb(206,13,20)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.08%)</title><rect x="68.6" y="1345" width="0.9" height="15.0" fill="rgb(245,136,36)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (2 samples, 0.16%)</title><rect x="1174.2" y="1825" width="1.9" height="15.0" fill="rgb(207,222,25)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="68.6" y="1361" width="0.9" height="15.0" fill="rgb(254,131,42)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (2 samples, 0.16%)</title><rect x="832.0" y="1793" width="1.9" height="15.0" fill="rgb(222,23,41)" rx="2" ry="2" />
<text text-anchor="" x="835.00" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="209.0" y="65" width="0.9" height="15.0" fill="rgb(229,190,15)" rx="2" ry="2" />
<text text-anchor="" x="211.99" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="945" width="97.6" height="15.0" fill="rgb(225,199,20)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::impls::&lt;impl std::io::Write for &amp;a mut W&gt;::write_all (3 samples, 0.24%)</title><rect x="1095.2" y="1857" width="2.7" height="15.0" fill="rgb(253,142,16)" rx="2" ry="2" />
<text text-anchor="" x="1098.15" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1377" width="97.6" height="15.0" fill="rgb(224,13,50)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::solicit_misc::HttpConnectionEx::send_headers (56 samples, 4.41%)</title><rect x="886.9" y="1825" width="52.0" height="15.0" fill="rgb(252,220,8)" rx="2" ry="2" />
<text text-anchor="" x="889.86" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >grpc:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="284.3" y="1889" width="0.9" height="15.0" fill="rgb(213,28,53)" rx="2" ry="2" />
<text text-anchor="" x="287.31" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (3 samples, 0.24%)</title><rect x="222.0" y="1953" width="2.8" height="15.0" fill="rgb(210,57,45)" rx="2" ry="2" />
<text text-anchor="" x="225.01" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="81.6" y="1985" width="0.9" height="15.0" fill="rgb(225,151,44)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="71.4" y="1985" width="0.9" height="15.0" fill="rgb(253,132,3)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="93.7" y="1793" width="1.8" height="15.0" fill="rgb(225,178,27)" rx="2" ry="2" />
<text text-anchor="" x="96.69" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (4 samples, 0.32%)</title><rect x="95.5" y="1873" width="3.8" height="15.0" fill="rgb(209,163,1)" rx="2" ry="2" />
<text text-anchor="" x="98.55" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (8 samples, 0.63%)</title><rect x="687.9" y="1665" width="7.4" height="15.0" fill="rgb(237,18,54)" rx="2" ry="2" />
<text text-anchor="" x="690.87" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="562.3" y="1537" width="1.0" height="15.0" fill="rgb(210,71,28)" rx="2" ry="2" />
<text text-anchor="" x="565.34" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="391.2" y="1921" width="1.0" height="15.0" fill="rgb(241,147,39)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (25 samples, 1.97%)</title><rect x="30.5" y="2001" width="23.2" height="15.0" fill="rgb(210,156,39)" rx="2" ry="2" />
<text text-anchor="" x="33.46" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="1171.4" y="1809" width="0.9" height="15.0" fill="rgb(209,169,44)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (2 samples, 0.16%)</title><rect x="226.7" y="1617" width="1.8" height="15.0" fill="rgb(241,139,4)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (2 samples, 0.16%)</title><rect x="872.9" y="1473" width="1.9" height="15.0" fill="rgb(234,83,5)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[long_tests_server] (2 samples, 0.16%)</title><rect x="53.7" y="2033" width="1.9" height="15.0" fill="rgb(227,117,41)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="71.4" y="1649" width="0.9" height="15.0" fill="rgb(222,35,11)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::arc::Arc&lt;T&gt;&gt;::drop_slow (7 samples, 0.55%)</title><rect x="1067.3" y="1841" width="6.5" height="15.0" fill="rgb(221,227,50)" rx="2" ry="2" />
<text text-anchor="" x="1070.26" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="79.7" y="1937" width="1.0" height="15.0" fill="rgb(219,199,12)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::poll::RegistrationInner as core::ops::Drop&gt;::drop (1 samples, 0.08%)</title><rect x="791.1" y="1761" width="0.9" height="15.0" fill="rgb(206,187,2)" rx="2" ry="2" />
<text text-anchor="" x="794.09" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.16%)</title><rect x="1160.2" y="1841" width="1.9" height="15.0" fill="rgb(245,70,38)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Core::notify (1 samples, 0.08%)</title><rect x="551.2" y="1745" width="0.9" height="15.0" fill="rgb(235,133,31)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.08%)</title><rect x="71.4" y="1889" width="0.9" height="15.0" fill="rgb(240,172,12)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (2 samples, 0.16%)</title><rect x="68.6" y="1585" width="1.8" height="15.0" fill="rgb(210,89,34)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.08%)</title><rect x="55.6" y="1937" width="0.9" height="15.0" fill="rgb(240,134,10)" rx="2" ry="2" />
<text text-anchor="" x="58.56" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="63.9" y="1841" width="1.0" height="15.0" fill="rgb(238,92,25)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1265" width="97.6" height="15.0" fill="rgb(209,92,23)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.16%)</title><rect x="952.9" y="1505" width="1.8" height="15.0" fill="rgb(241,106,0)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (4 samples, 0.32%)</title><rect x="113.2" y="1953" width="3.7" height="15.0" fill="rgb(223,221,49)" rx="2" ry="2" />
<text text-anchor="" x="116.22" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (4 samples, 0.32%)</title><rect x="290.8" y="1553" width="3.7" height="15.0" fill="rgb(215,101,19)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="562.3" y="1521" width="1.0" height="15.0" fill="rgb(253,16,35)" rx="2" ry="2" />
<text text-anchor="" x="565.34" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="1149.1" y="1873" width="0.9" height="15.0" fill="rgb(218,27,46)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="71.4" y="2001" width="0.9" height="15.0" fill="rgb(234,150,25)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.08%)</title><rect x="1042.2" y="1745" width="0.9" height="15.0" fill="rgb(234,182,44)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (4 samples, 0.32%)</title><rect x="12.8" y="1857" width="3.7" height="15.0" fill="rgb(222,65,50)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="114.1" y="1825" width="1.0" height="15.0" fill="rgb(209,138,30)" rx="2" ry="2" />
<text text-anchor="" x="117.14" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="93.7" y="1825" width="1.8" height="15.0" fill="rgb(219,182,39)" rx="2" ry="2" />
<text text-anchor="" x="96.69" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="570.7" y="1713" width="0.9" height="15.0" fill="rgb(240,124,10)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::channel::SenderCtl as core::clone::Clone&gt;::clone (2 samples, 0.16%)</title><rect x="675.8" y="1777" width="1.8" height="15.0" fill="rgb(227,116,40)" rx="2" ry="2" />
<text text-anchor="" x="678.78" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Core::notify (5 samples, 0.39%)</title><rect x="1086.8" y="1777" width="4.6" height="15.0" fill="rgb(251,187,0)" rx="2" ry="2" />
<text text-anchor="" x="1089.78" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::io_token::IoToken::new (14 samples, 1.10%)</title><rect x="769.7" y="1777" width="13.0" height="15.0" fill="rgb(249,119,2)" rx="2" ry="2" />
<text text-anchor="" x="772.70" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.08%)</title><rect x="1169.5" y="1841" width="1.0" height="15.0" fill="rgb(220,77,9)" rx="2" ry="2" />
<text text-anchor="" x="1172.54" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.08%)</title><rect x="535.4" y="1681" width="0.9" height="15.0" fill="rgb(215,27,17)" rx="2" ry="2" />
<text text-anchor="" x="538.37" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="105.8" y="1985" width="0.9" height="15.0" fill="rgb(242,46,43)" rx="2" ry="2" />
<text text-anchor="" x="108.78" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>solicit_fork::http::Header::name (3 samples, 0.24%)</title><rect x="668.3" y="1777" width="2.8" height="15.0" fill="rgb(249,214,18)" rx="2" ry="2" />
<text text-anchor="" x="671.35" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (1 samples, 0.08%)</title><rect x="695.3" y="1649" width="0.9" height="15.0" fill="rgb(226,93,30)" rx="2" ry="2" />
<text text-anchor="" x="698.31" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="125.3" y="113" width="0.9" height="15.0" fill="rgb(210,9,43)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_check_callbacks (1 samples, 0.08%)</title><rect x="1149.1" y="1793" width="0.9" height="15.0" fill="rgb(224,196,8)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (2 samples, 0.16%)</title><rect x="938.9" y="1825" width="1.9" height="15.0" fill="rgb(214,80,0)" rx="2" ry="2" />
<text text-anchor="" x="941.94" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (10 samples, 0.79%)</title><rect x="949.2" y="1841" width="9.3" height="15.0" fill="rgb(240,226,2)" rx="2" ry="2" />
<text text-anchor="" x="952.16" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (2 samples, 0.16%)</title><rect x="952.9" y="1457" width="1.8" height="15.0" fill="rgb(238,44,38)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (2 samples, 0.16%)</title><rect x="952.9" y="1681" width="1.8" height="15.0" fill="rgb(211,200,25)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (2 samples, 0.16%)</title><rect x="952.9" y="1425" width="1.8" height="15.0" fill="rgb(219,168,15)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="106.7" y="1953" width="0.9" height="15.0" fill="rgb(249,46,47)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.16%)</title><rect x="103.9" y="1937" width="1.9" height="15.0" fill="rgb(214,218,18)" rx="2" ry="2" />
<text text-anchor="" x="106.92" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (20 samples, 1.58%)</title><rect x="233.2" y="1953" width="18.6" height="15.0" fill="rgb(247,227,35)" rx="2" ry="2" />
<text text-anchor="" x="236.17" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_data_queue (1 samples, 0.08%)</title><rect x="873.8" y="1329" width="1.0" height="15.0" fill="rgb(246,133,49)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (16 samples, 1.26%)</title><rect x="282.5" y="1937" width="14.8" height="15.0" fill="rgb(246,219,18)" rx="2" ry="2" />
<text text-anchor="" x="285.45" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.08%)</title><rect x="693.5" y="1441" width="0.9" height="15.0" fill="rgb(247,191,21)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (6 samples, 0.47%)</title><rect x="1164.9" y="1937" width="5.6" height="15.0" fill="rgb(243,71,20)" rx="2" ry="2" />
<text text-anchor="" x="1167.89" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_sd_lb_stats (1 samples, 0.08%)</title><rect x="683.2" y="1617" width="1.0" height="15.0" fill="rgb(208,155,11)" rx="2" ry="2" />
<text text-anchor="" x="686.22" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="57.4" y="1569" width="1.0" height="15.0" fill="rgb(229,9,43)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="74.2" y="1857" width="0.9" height="15.0" fill="rgb(205,164,35)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (3 samples, 0.24%)</title><rect x="411.7" y="1905" width="2.8" height="15.0" fill="rgb(242,154,29)" rx="2" ry="2" />
<text text-anchor="" x="414.70" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (1 samples, 0.08%)</title><rect x="720.4" y="1761" width="0.9" height="15.0" fill="rgb(222,191,22)" rx="2" ry="2" />
<text text-anchor="" x="723.42" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (4 samples, 0.32%)</title><rect x="561.4" y="1617" width="3.7" height="15.0" fill="rgb(226,207,15)" rx="2" ry="2" />
<text text-anchor="" x="564.41" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Core::notify_handle (1 samples, 0.08%)</title><rect x="1189.1" y="1937" width="0.9" height="15.0" fill="rgb(241,14,18)" rx="2" ry="2" />
<text text-anchor="" x="1192.07" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="1099.8" y="1873" width="0.9" height="15.0" fill="rgb(222,224,54)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="963.1" y="1265" width="0.9" height="15.0" fill="rgb(211,13,25)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="70.4" y="1969" width="1.0" height="15.0" fill="rgb(211,172,42)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hpack::decoder::Decoder::decode_indexed (11 samples, 0.87%)</title><rect x="730.6" y="1777" width="10.3" height="15.0" fill="rgb(231,2,14)" rx="2" ry="2" />
<text text-anchor="" x="733.65" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="684.2" y="1777" width="0.9" height="15.0" fill="rgb(245,148,24)" rx="2" ry="2" />
<text text-anchor="" x="687.15" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.08%)</title><rect x="682.3" y="1633" width="0.9" height="15.0" fill="rgb(244,81,36)" rx="2" ry="2" />
<text text-anchor="" x="685.29" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::Formatter::pad_integral (4 samples, 0.32%)</title><rect x="703.7" y="1745" width="3.7" height="15.0" fill="rgb(231,108,44)" rx="2" ry="2" />
<text text-anchor="" x="706.68" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="64.9" y="1921" width="0.9" height="15.0" fill="rgb(251,184,52)" rx="2" ry="2" />
<text text-anchor="" x="67.86" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="341.0" y="1889" width="1.0" height="15.0" fill="rgb(229,114,19)" rx="2" ry="2" />
<text text-anchor="" x="344.03" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.08%)</title><rect x="693.5" y="1201" width="0.9" height="15.0" fill="rgb(233,9,34)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.16%)</title><rect x="226.7" y="1633" width="1.8" height="15.0" fill="rgb(254,164,2)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_nested (2 samples, 0.16%)</title><rect x="238.7" y="1905" width="1.9" height="15.0" fill="rgb(227,65,17)" rx="2" ry="2" />
<text text-anchor="" x="241.75" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.16%)</title><rect x="872.9" y="1521" width="1.9" height="15.0" fill="rgb(207,158,52)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (3 samples, 0.24%)</title><rect x="77.0" y="1905" width="2.7" height="15.0" fill="rgb(223,15,53)" rx="2" ry="2" />
<text text-anchor="" x="79.95" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="69.5" y="1425" width="0.9" height="15.0" fill="rgb(230,40,24)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::futures_misc::stream_concat3::Concat3&lt;S1, S2, S3&gt; as futures::stream::Stream&gt;::poll (155 samples, 12.21%)</title><rect x="971.5" y="1921" width="144.1" height="15.0" fill="rgb(216,98,17)" rx="2" ry="2" />
<text text-anchor="" x="974.48" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;grpc::futures_mis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.08%)</title><rect x="31.4" y="1969" width="0.9" height="15.0" fill="rgb(231,116,45)" rx="2" ry="2" />
<text text-anchor="" x="34.39" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="412.6" y="1889" width="1.0" height="15.0" fill="rgb(218,222,41)" rx="2" ry="2" />
<text text-anchor="" x="415.63" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.08%)</title><rect x="694.4" y="1505" width="0.9" height="15.0" fill="rgb(223,57,34)" rx="2" ry="2" />
<text text-anchor="" x="697.38" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (2 samples, 0.16%)</title><rect x="292.7" y="1425" width="1.8" height="15.0" fill="rgb(211,5,28)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (2 samples, 0.16%)</title><rect x="963.1" y="1361" width="1.9" height="15.0" fill="rgb(228,214,54)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="290.8" y="1409" width="0.9" height="15.0" fill="rgb(206,204,50)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="130.0" y="113" width="0.9" height="15.0" fill="rgb(231,104,16)" rx="2" ry="2" />
<text text-anchor="" x="132.95" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="219.2" y="1793" width="0.9" height="15.0" fill="rgb(218,191,21)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (3 samples, 0.24%)</title><rect x="681.4" y="1793" width="2.8" height="15.0" fill="rgb(236,116,9)" rx="2" ry="2" />
<text text-anchor="" x="684.36" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="737" width="97.6" height="15.0" fill="rgb(229,223,41)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Core::poll (833 samples, 65.64%)</title><rect x="415.4" y="1953" width="774.6" height="15.0" fill="rgb(253,37,38)" rx="2" ry="2" />
<text text-anchor="" x="418.42" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tokio_core::reactor::Core::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (2 samples, 0.16%)</title><rect x="249.9" y="1905" width="1.9" height="15.0" fill="rgb(222,176,52)" rx="2" ry="2" />
<text text-anchor="" x="252.91" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.08%)</title><rect x="53.7" y="1521" width="0.9" height="15.0" fill="rgb(246,149,42)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="54.6" y="1873" width="1.0" height="15.0" fill="rgb(219,174,42)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.16%)</title><rect x="212.7" y="97" width="1.9" height="15.0" fill="rgb(242,43,0)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="866.4" y="1697" width="0.9" height="15.0" fill="rgb(250,119,33)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="238.7" y="1889" width="1.0" height="15.0" fill="rgb(246,27,24)" rx="2" ry="2" />
<text text-anchor="" x="241.75" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (6 samples, 0.47%)</title><rect x="336.4" y="1937" width="5.6" height="15.0" fill="rgb(244,119,29)" rx="2" ry="2" />
<text text-anchor="" x="339.38" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="70.4" y="1841" width="1.0" height="15.0" fill="rgb(224,11,50)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (1 samples, 0.08%)</title><rect x="693.5" y="1217" width="0.9" height="15.0" fill="rgb(231,116,5)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.16%)</title><rect x="827.4" y="1601" width="1.8" height="15.0" fill="rgb(228,201,2)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (108 samples, 8.51%)</title><rect x="121.6" y="1985" width="100.4" height="15.0" fill="rgb(243,190,52)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (1 samples, 0.08%)</title><rect x="554.9" y="1633" width="0.9" height="15.0" fill="rgb(224,14,36)" rx="2" ry="2" />
<text text-anchor="" x="557.90" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="951.0" y="1793" width="1.0" height="15.0" fill="rgb(224,122,36)" rx="2" ry="2" />
<text text-anchor="" x="954.02" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.08%)</title><rect x="11.9" y="1953" width="0.9" height="15.0" fill="rgb(253,155,20)" rx="2" ry="2" />
<text text-anchor="" x="14.86" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="412.6" y="1873" width="1.0" height="15.0" fill="rgb(242,26,52)" rx="2" ry="2" />
<text text-anchor="" x="415.63" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="334.5" y="2017" width="1.0" height="15.0" fill="rgb(206,94,36)" rx="2" ry="2" />
<text text-anchor="" x="337.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (6 samples, 0.47%)</title><rect x="1150.0" y="1921" width="5.6" height="15.0" fill="rgb(249,196,39)" rx="2" ry="2" />
<text text-anchor="" x="1153.02" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.08%)</title><rect x="218.3" y="113" width="0.9" height="15.0" fill="rgb(254,25,35)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="221.1" y="1889" width="0.9" height="15.0" fill="rgb(223,87,3)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panicking::try::do_call (840 samples, 66.19%)</title><rect x="408.9" y="1969" width="781.1" height="15.0" fill="rgb(248,167,24)" rx="2" ry="2" />
<text text-anchor="" x="411.91" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::panicking::try::do_call</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::error::Error::kind (1 samples, 0.08%)</title><rect x="550.3" y="1761" width="0.9" height="15.0" fill="rgb(208,97,7)" rx="2" ry="2" />
<text text-anchor="" x="553.25" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (3 samples, 0.24%)</title><rect x="1159.3" y="1889" width="2.8" height="15.0" fill="rgb(247,129,36)" rx="2" ry="2" />
<text text-anchor="" x="1162.31" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (2 samples, 0.16%)</title><rect x="99.3" y="1953" width="1.8" height="15.0" fill="rgb(246,128,21)" rx="2" ry="2" />
<text text-anchor="" x="102.27" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="214.6" y="177" width="2.8" height="15.0" fill="rgb(218,141,20)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="875.7" y="1809" width="0.9" height="15.0" fill="rgb(213,219,43)" rx="2" ry="2" />
<text text-anchor="" x="878.71" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="739.9" y="1729" width="1.0" height="15.0" fill="rgb(223,150,7)" rx="2" ry="2" />
<text text-anchor="" x="742.94" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="417" width="96.7" height="15.0" fill="rgb(249,140,4)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.08%)</title><rect x="970.6" y="1729" width="0.9" height="15.0" fill="rgb(223,7,13)" rx="2" ry="2" />
<text text-anchor="" x="973.55" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.08%)</title><rect x="10.0" y="1825" width="0.9" height="15.0" fill="rgb(242,124,32)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="280.6" y="1969" width="0.9" height="15.0" fill="rgb(228,17,52)" rx="2" ry="2" />
<text text-anchor="" x="283.59" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="68.6" y="1409" width="0.9" height="15.0" fill="rgb(230,1,51)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.08%)</title><rect x="1103.5" y="1745" width="1.0" height="15.0" fill="rgb(253,146,10)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (103 samples, 8.12%)</title><rect x="122.5" y="385" width="95.8" height="15.0" fill="rgb(237,196,22)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>collections::fmt::format (11 samples, 0.87%)</title><rect x="697.2" y="1793" width="10.2" height="15.0" fill="rgb(207,154,50)" rx="2" ry="2" />
<text text-anchor="" x="700.17" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.08%)</title><rect x="218.3" y="49" width="0.9" height="15.0" fill="rgb(220,213,37)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (9 samples, 0.71%)</title><rect x="240.6" y="1873" width="8.4" height="15.0" fill="rgb(245,102,44)" rx="2" ry="2" />
<text text-anchor="" x="243.61" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.08%)</title><rect x="739.9" y="1681" width="1.0" height="15.0" fill="rgb(243,94,44)" rx="2" ry="2" />
<text text-anchor="" x="742.94" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.08%)</title><rect x="667.4" y="1777" width="0.9" height="15.0" fill="rgb(205,139,48)" rx="2" ry="2" />
<text text-anchor="" x="670.42" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="1171.4" y="1841" width="0.9" height="15.0" fill="rgb(206,185,44)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.08%)</title><rect x="10.0" y="1873" width="0.9" height="15.0" fill="rgb(222,89,51)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="1133.3" y="1825" width="0.9" height="15.0" fill="rgb(226,116,42)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (2 samples, 0.16%)</title><rect x="554.0" y="1745" width="1.8" height="15.0" fill="rgb(236,17,34)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (5 samples, 0.39%)</title><rect x="289.9" y="1873" width="4.6" height="15.0" fill="rgb(228,81,23)" rx="2" ry="2" />
<text text-anchor="" x="292.89" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.08%)</title><rect x="873.8" y="1217" width="1.0" height="15.0" fill="rgb(210,21,44)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="1098.9" y="1873" width="0.9" height="15.0" fill="rgb(206,203,33)" rx="2" ry="2" />
<text text-anchor="" x="1101.87" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__bitmap_intersects (1 samples, 0.08%)</title><rect x="921.3" y="1633" width="0.9" height="15.0" fill="rgb(230,4,20)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.08%)</title><rect x="564.2" y="1201" width="0.9" height="15.0" fill="rgb(235,78,7)" rx="2" ry="2" />
<text text-anchor="" x="567.20" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="952.9" y="1617" width="1.8" height="15.0" fill="rgb(211,183,40)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="1133.3" y="1921" width="0.9" height="15.0" fill="rgb(211,45,39)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="873.8" y="1233" width="1.0" height="15.0" fill="rgb(206,129,16)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.08%)</title><rect x="63.9" y="1729" width="1.0" height="15.0" fill="rgb(253,158,0)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.16%)</title><rect x="103.9" y="1921" width="1.9" height="15.0" fill="rgb(224,4,45)" rx="2" ry="2" />
<text text-anchor="" x="106.92" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;i32 as nix::errno::ErrnoSentinel&gt;::sentinel (1 samples, 0.08%)</title><rect x="1156.5" y="1937" width="1.0" height="15.0" fill="rgb(237,45,12)" rx="2" ry="2" />
<text text-anchor="" x="1159.52" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="130.0" y="129" width="0.9" height="15.0" fill="rgb(231,212,47)" rx="2" ry="2" />
<text text-anchor="" x="132.95" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (5 samples, 0.39%)</title><rect x="560.5" y="1649" width="4.6" height="15.0" fill="rgb(250,56,33)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="125.3" y="161" width="0.9" height="15.0" fill="rgb(206,154,43)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (5 samples, 0.39%)</title><rect x="1165.8" y="1889" width="4.7" height="15.0" fill="rgb(240,171,31)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="236.9" y="1905" width="0.9" height="15.0" fill="rgb(240,174,52)" rx="2" ry="2" />
<text text-anchor="" x="239.89" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="218.3" y="225" width="0.9" height="15.0" fill="rgb(238,88,25)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (116 samples, 9.14%)</title><rect x="116.9" y="2001" width="107.9" height="15.0" fill="rgb(227,192,0)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_nested (1 samples, 0.08%)</title><rect x="114.1" y="1841" width="1.0" height="15.0" fill="rgb(212,217,9)" rx="2" ry="2" />
<text text-anchor="" x="117.14" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.08%)</title><rect x="71.4" y="1713" width="0.9" height="15.0" fill="rgb(233,29,9)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="695.3" y="1633" width="0.9" height="15.0" fill="rgb(233,18,22)" rx="2" ry="2" />
<text text-anchor="" x="698.31" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="57.4" y="1585" width="1.0" height="15.0" fill="rgb(250,7,37)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="411.7" y="1937" width="2.8" height="15.0" fill="rgb(207,67,12)" rx="2" ry="2" />
<text text-anchor="" x="414.70" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="106.7" y="1985" width="0.9" height="15.0" fill="rgb(240,93,14)" rx="2" ry="2" />
<text text-anchor="" x="109.71" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="1176.1" y="1841" width="0.9" height="15.0" fill="rgb(234,134,9)" rx="2" ry="2" />
<text text-anchor="" x="1179.05" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.32%)</title><rect x="12.8" y="1889" width="3.7" height="15.0" fill="rgb(221,7,38)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1201" width="97.6" height="15.0" fill="rgb(251,70,4)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="102.1" y="1921" width="0.9" height="15.0" fill="rgb(218,49,6)" rx="2" ry="2" />
<text text-anchor="" x="105.06" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="795.7" y="1601" width="1.0" height="15.0" fill="rgb(254,36,34)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (2 samples, 0.16%)</title><rect x="103.9" y="1889" width="1.9" height="15.0" fill="rgb(213,144,7)" rx="2" ry="2" />
<text text-anchor="" x="106.92" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::io::write_all::WriteAll&lt;A, T&gt; as futures::future::Future&gt;::poll (23 samples, 1.81%)</title><rect x="812.5" y="1809" width="21.4" height="15.0" fill="rgb(241,209,29)" rx="2" ry="2" />
<text text-anchor="" x="815.47" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.08%)</title><rect x="246.2" y="1345" width="0.9" height="15.0" fill="rgb(248,208,36)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.16%)</title><rect x="222.9" y="1889" width="1.9" height="15.0" fill="rgb(209,139,38)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_deallocate (2 samples, 0.16%)</title><rect x="1147.2" y="1921" width="1.9" height="15.0" fill="rgb(254,59,25)" rx="2" ry="2" />
<text text-anchor="" x="1150.23" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="71.4" y="1841" width="0.9" height="15.0" fill="rgb(218,179,23)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (2 samples, 0.16%)</title><rect x="563.3" y="1297" width="1.8" height="15.0" fill="rgb(211,85,28)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="216.4" y="49" width="1.0" height="15.0" fill="rgb(233,74,44)" rx="2" ry="2" />
<text text-anchor="" x="219.43" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="10.0" y="1841" width="0.9" height="15.0" fill="rgb(217,32,37)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (4 samples, 0.32%)</title><rect x="48.1" y="1873" width="3.7" height="15.0" fill="rgb(243,187,51)" rx="2" ry="2" />
<text text-anchor="" x="51.12" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (3 samples, 0.24%)</title><rect x="562.3" y="1585" width="2.8" height="15.0" fill="rgb(230,3,21)" rx="2" ry="2" />
<text text-anchor="" x="565.34" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.08%)</title><rect x="79.7" y="1681" width="1.0" height="15.0" fill="rgb(223,211,8)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1825" width="97.6" height="15.0" fill="rgb(250,5,40)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="216.4" y="113" width="1.0" height="15.0" fill="rgb(220,188,15)" rx="2" ry="2" />
<text text-anchor="" x="219.43" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="79.7" y="1921" width="1.0" height="15.0" fill="rgb(227,4,52)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (2 samples, 0.16%)</title><rect x="126.2" y="193" width="1.9" height="15.0" fill="rgb(213,108,14)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="71.4" y="1969" width="0.9" height="15.0" fill="rgb(252,201,2)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="939.9" y="1809" width="0.9" height="15.0" fill="rgb(227,60,30)" rx="2" ry="2" />
<text text-anchor="" x="942.87" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="1133.3" y="1889" width="0.9" height="15.0" fill="rgb(232,165,33)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (6 samples, 0.47%)</title><rect x="559.6" y="1745" width="5.5" height="15.0" fill="rgb(210,29,19)" rx="2" ry="2" />
<text text-anchor="" x="562.55" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (2 samples, 0.16%)</title><rect x="46.3" y="1713" width="1.8" height="15.0" fill="rgb(220,104,43)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (1 samples, 0.08%)</title><rect x="80.7" y="1841" width="0.9" height="15.0" fill="rgb(245,164,28)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.08%)</title><rect x="53.7" y="1745" width="0.9" height="15.0" fill="rgb(222,139,35)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.16%)</title><rect x="222.9" y="1905" width="1.9" height="15.0" fill="rgb(222,74,8)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_space_adjust (1 samples, 0.08%)</title><rect x="87.2" y="1873" width="0.9" height="15.0" fill="rgb(212,157,54)" rx="2" ry="2" />
<text text-anchor="" x="90.18" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="130.0" y="81" width="0.9" height="15.0" fill="rgb(221,143,32)" rx="2" ry="2" />
<text text-anchor="" x="132.95" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (15 samples, 1.18%)</title><rect x="85.3" y="1937" width="14.0" height="15.0" fill="rgb(218,106,35)" rx="2" ry="2" />
<text text-anchor="" x="88.32" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="340.1" y="1665" width="0.9" height="15.0" fill="rgb(231,125,24)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.08%)</title><rect x="696.2" y="1713" width="1.0" height="15.0" fill="rgb(205,59,33)" rx="2" ry="2" />
<text text-anchor="" x="699.24" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_ack (1 samples, 0.08%)</title><rect x="693.5" y="1265" width="0.9" height="15.0" fill="rgb(243,28,50)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="1170.5" y="1937" width="0.9" height="15.0" fill="rgb(209,5,54)" rx="2" ry="2" />
<text text-anchor="" x="1173.47" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.08%)</title><rect x="693.5" y="1473" width="0.9" height="15.0" fill="rgb(225,53,45)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (2 samples, 0.16%)</title><rect x="12.8" y="1729" width="1.8" height="15.0" fill="rgb(220,71,15)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::channel::Sender&lt;T&gt;&gt;::send (24 samples, 1.89%)</title><rect x="605.1" y="1777" width="22.3" height="15.0" fill="rgb(235,111,33)" rx="2" ry="2" />
<text text-anchor="" x="608.11" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_clone (1 samples, 0.08%)</title><rect x="1138.9" y="1745" width="0.9" height="15.0" fill="rgb(221,168,22)" rx="2" ry="2" />
<text text-anchor="" x="1141.86" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.08%)</title><rect x="290.8" y="1377" width="0.9" height="15.0" fill="rgb(248,191,8)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_maybe_catch_panic (5 samples, 0.39%)</title><rect x="644.2" y="1761" width="4.6" height="15.0" fill="rgb(213,41,17)" rx="2" ry="2" />
<text text-anchor="" x="647.17" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.08%)</title><rect x="1171.4" y="1713" width="0.9" height="15.0" fill="rgb(226,106,43)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (5 samples, 0.39%)</title><rect x="116.9" y="1937" width="4.7" height="15.0" fill="rgb(251,152,24)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.39%)</title><rect x="65.8" y="1969" width="4.6" height="15.0" fill="rgb(207,228,25)" rx="2" ry="2" />
<text text-anchor="" x="68.79" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (2 samples, 0.16%)</title><rect x="872.9" y="1489" width="1.9" height="15.0" fill="rgb(223,120,8)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (2 samples, 0.16%)</title><rect x="286.2" y="1905" width="1.8" height="15.0" fill="rgb(209,206,21)" rx="2" ry="2" />
<text text-anchor="" x="289.17" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::poll::RegistrationInner as core::ops::Drop&gt;::drop (1 samples, 0.08%)</title><rect x="437.7" y="1921" width="1.0" height="15.0" fill="rgb(254,206,12)" rx="2" ry="2" />
<text text-anchor="" x="440.74" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.08%)</title><rect x="122.5" y="161" width="0.9" height="15.0" fill="rgb(211,188,35)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="43.5" y="1857" width="0.9" height="15.0" fill="rgb(214,24,22)" rx="2" ry="2" />
<text text-anchor="" x="46.48" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (4 samples, 0.32%)</title><rect x="102.1" y="1985" width="3.7" height="15.0" fill="rgb(212,116,47)" rx="2" ry="2" />
<text text-anchor="" x="105.06" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="570.7" y="1777" width="0.9" height="15.0" fill="rgb(215,202,42)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="953.8" y="1393" width="0.9" height="15.0" fill="rgb(244,89,2)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1633" width="97.6" height="15.0" fill="rgb(222,17,13)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1249" width="97.6" height="15.0" fill="rgb(240,51,34)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1713" width="97.6" height="15.0" fill="rgb(241,173,49)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="693.5" y="1313" width="0.9" height="15.0" fill="rgb(218,188,4)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (25 samples, 1.97%)</title><rect x="30.5" y="1985" width="23.2" height="15.0" fill="rgb(207,64,14)" rx="2" ry="2" />
<text text-anchor="" x="33.46" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (2 samples, 0.16%)</title><rect x="342.0" y="1937" width="1.8" height="15.0" fill="rgb(218,42,31)" rx="2" ry="2" />
<text text-anchor="" x="344.96" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (1 samples, 0.08%)</title><rect x="1113.8" y="1905" width="0.9" height="15.0" fill="rgb(221,214,26)" rx="2" ry="2" />
<text text-anchor="" x="1116.75" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.16%)</title><rect x="947.3" y="1777" width="1.9" height="15.0" fill="rgb(222,176,41)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (2 samples, 0.16%)</title><rect x="969.6" y="1809" width="1.9" height="15.0" fill="rgb(249,175,34)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (2 samples, 0.16%)</title><rect x="68.6" y="1713" width="1.8" height="15.0" fill="rgb(210,50,29)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (1 samples, 0.08%)</title><rect x="1167.7" y="1793" width="0.9" height="15.0" fill="rgb(243,173,28)" rx="2" ry="2" />
<text text-anchor="" x="1170.68" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (5 samples, 0.39%)</title><rect x="75.1" y="1953" width="4.6" height="15.0" fill="rgb(233,196,15)" rx="2" ry="2" />
<text text-anchor="" x="78.09" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="554.0" y="1633" width="0.9" height="15.0" fill="rgb(250,15,7)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.32%)</title><rect x="12.8" y="1841" width="3.7" height="15.0" fill="rgb(223,148,36)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="53.7" y="1905" width="0.9" height="15.0" fill="rgb(242,170,29)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="58.4" y="1969" width="1.8" height="15.0" fill="rgb(240,46,45)" rx="2" ry="2" />
<text text-anchor="" x="61.35" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (4 samples, 0.32%)</title><rect x="945.4" y="1809" width="3.8" height="15.0" fill="rgb(218,199,4)" rx="2" ry="2" />
<text text-anchor="" x="948.45" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.15 (1 samples, 0.08%)</title><rect x="1149.1" y="1825" width="0.9" height="15.0" fill="rgb(237,57,40)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>collections::fmt::format (10 samples, 0.79%)</title><rect x="658.1" y="1761" width="9.3" height="15.0" fill="rgb(222,26,18)" rx="2" ry="2" />
<text text-anchor="" x="661.12" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.08%)</title><rect x="834.8" y="1601" width="0.9" height="15.0" fill="rgb(249,210,12)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="73.2" y="1953" width="1.0" height="15.0" fill="rgb(236,51,24)" rx="2" ry="2" />
<text text-anchor="" x="76.23" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="74.2" y="1921" width="0.9" height="15.0" fill="rgb(208,65,36)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (2 samples, 0.16%)</title><rect x="872.9" y="1537" width="1.9" height="15.0" fill="rgb(208,3,8)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (2 samples, 0.16%)</title><rect x="541.9" y="1697" width="1.8" height="15.0" fill="rgb(233,170,28)" rx="2" ry="2" />
<text text-anchor="" x="544.88" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="53.7" y="1569" width="0.9" height="15.0" fill="rgb(252,120,22)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.08%)</title><rect x="865.5" y="1761" width="0.9" height="15.0" fill="rgb(229,161,53)" rx="2" ry="2" />
<text text-anchor="" x="868.48" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1857" width="97.6" height="15.0" fill="rgb(253,75,22)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.08%)</title><rect x="1174.2" y="1713" width="0.9" height="15.0" fill="rgb(227,201,21)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_nested (2 samples, 0.16%)</title><rect x="690.7" y="1633" width="1.8" height="15.0" fill="rgb(216,209,21)" rx="2" ry="2" />
<text text-anchor="" x="693.66" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.08%)</title><rect x="1149.1" y="1809" width="0.9" height="15.0" fill="rgb(229,95,36)" rx="2" ry="2" />
<text text-anchor="" x="1152.09" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (10 samples, 0.79%)</title><rect x="686.9" y="1729" width="9.3" height="15.0" fill="rgb(225,27,15)" rx="2" ry="2" />
<text text-anchor="" x="689.94" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_clean_rtx_queue (1 samples, 0.08%)</title><rect x="226.7" y="1489" width="0.9" height="15.0" fill="rgb(230,216,24)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="121.6" y="321" width="0.9" height="15.0" fill="rgb(252,224,47)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (5 samples, 0.39%)</title><rect x="1079.3" y="1825" width="4.7" height="15.0" fill="rgb(239,191,37)" rx="2" ry="2" />
<text text-anchor="" x="1082.35" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="81.6" y="1905" width="0.9" height="15.0" fill="rgb(219,84,31)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="57.4" y="1457" width="1.0" height="15.0" fill="rgb(230,161,48)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hpack::decoder::Decoder::decode (7 samples, 0.55%)</title><rect x="709.3" y="1793" width="6.5" height="15.0" fill="rgb(226,44,6)" rx="2" ry="2" />
<text text-anchor="" x="712.26" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (4 samples, 0.32%)</title><rect x="224.8" y="2001" width="3.7" height="15.0" fill="rgb(254,191,21)" rx="2" ry="2" />
<text text-anchor="" x="227.80" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::RegistrationInner::set_readiness (1 samples, 0.08%)</title><rect x="792.9" y="1761" width="1.0" height="15.0" fill="rgb(242,219,51)" rx="2" ry="2" />
<text text-anchor="" x="795.95" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_page_frag_refill (1 samples, 0.08%)</title><rect x="285.2" y="1905" width="1.0" height="15.0" fill="rgb(229,83,44)" rx="2" ry="2" />
<text text-anchor="" x="288.24" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.92 (1 samples, 0.08%)</title><rect x="218.3" y="65" width="0.9" height="15.0" fill="rgb(228,210,45)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="68.6" y="1793" width="1.8" height="15.0" fill="rgb(235,80,14)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.16%)</title><rect x="68.6" y="1729" width="1.8" height="15.0" fill="rgb(211,218,41)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (4 samples, 0.32%)</title><rect x="95.5" y="1841" width="3.8" height="15.0" fill="rgb(254,186,2)" rx="2" ry="2" />
<text text-anchor="" x="98.55" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.16%)</title><rect x="68.6" y="1761" width="1.8" height="15.0" fill="rgb(242,97,5)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (14 samples, 1.10%)</title><rect x="86.2" y="1921" width="13.1" height="15.0" fill="rgb(211,111,53)" rx="2" ry="2" />
<text text-anchor="" x="89.25" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="921.3" y="1745" width="0.9" height="15.0" fill="rgb(243,167,5)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="409.8" y="1937" width="1.0" height="15.0" fill="rgb(205,160,41)" rx="2" ry="2" />
<text text-anchor="" x="412.84" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="569.8" y="1809" width="0.9" height="15.0" fill="rgb(252,171,19)" rx="2" ry="2" />
<text text-anchor="" x="572.78" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="825.5" y="1665" width="0.9" height="15.0" fill="rgb(217,54,0)" rx="2" ry="2" />
<text text-anchor="" x="828.49" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="673" width="97.6" height="15.0" fill="rgb(245,173,14)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop (2 samples, 0.16%)</title><rect x="1177.9" y="1937" width="1.9" height="15.0" fill="rgb(209,153,22)" rx="2" ry="2" />
<text text-anchor="" x="1180.91" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (3 samples, 0.24%)</title><rect x="339.2" y="1905" width="2.8" height="15.0" fill="rgb(232,110,12)" rx="2" ry="2" />
<text text-anchor="" x="342.17" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.16%)</title><rect x="126.2" y="145" width="1.9" height="15.0" fill="rgb(208,195,43)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Remote::send::{{closure}} (2 samples, 0.16%)</title><rect x="552.1" y="1745" width="1.9" height="15.0" fill="rgb(215,220,33)" rx="2" ry="2" />
<text text-anchor="" x="555.11" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="554.0" y="1617" width="0.9" height="15.0" fill="rgb(252,44,11)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.08%)</title><rect x="562.3" y="1553" width="1.0" height="15.0" fill="rgb(229,45,50)" rx="2" ry="2" />
<text text-anchor="" x="565.34" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="221.1" y="1825" width="0.9" height="15.0" fill="rgb(229,54,9)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.16%)</title><rect x="693.5" y="1521" width="1.8" height="15.0" fill="rgb(208,28,52)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="691.6" y="1617" width="0.9" height="15.0" fill="rgb(228,73,27)" rx="2" ry="2" />
<text text-anchor="" x="694.59" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="79.7" y="1697" width="1.0" height="15.0" fill="rgb(213,159,37)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (4 samples, 0.32%)</title><rect x="290.8" y="1761" width="3.7" height="15.0" fill="rgb(244,152,22)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="217.4" y="289" width="0.9" height="15.0" fill="rgb(241,92,44)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (2 samples, 0.16%)</title><rect x="963.1" y="1393" width="1.9" height="15.0" fill="rgb(231,114,37)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="129.0" y="113" width="1.0" height="15.0" fill="rgb(240,78,31)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="56.5" y="1937" width="0.9" height="15.0" fill="rgb(245,127,28)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::collections::hash::table::make_hash (2 samples, 0.16%)</title><rect x="750.2" y="1793" width="1.8" height="15.0" fill="rgb(226,4,5)" rx="2" ry="2" />
<text text-anchor="" x="753.17" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="53.7" y="1649" width="0.9" height="15.0" fill="rgb(212,122,36)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="208.1" y="49" width="0.9" height="15.0" fill="rgb(208,37,16)" rx="2" ry="2" />
<text text-anchor="" x="211.06" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="57.4" y="1905" width="1.0" height="15.0" fill="rgb(244,214,42)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>loopback_xmit (1 samples, 0.08%)</title><rect x="248.0" y="1713" width="1.0" height="15.0" fill="rgb(253,183,27)" rx="2" ry="2" />
<text text-anchor="" x="251.05" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="1098.9" y="1889" width="0.9" height="15.0" fill="rgb(237,96,29)" rx="2" ry="2" />
<text text-anchor="" x="1101.87" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (5 samples, 0.39%)</title><rect x="289.9" y="1857" width="4.6" height="15.0" fill="rgb(237,223,49)" rx="2" ry="2" />
<text text-anchor="" x="292.89" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="340.1" y="1649" width="0.9" height="15.0" fill="rgb(228,69,40)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="795.7" y="1745" width="1.0" height="15.0" fill="rgb(231,101,46)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (4 samples, 0.32%)</title><rect x="269.4" y="2017" width="3.8" height="15.0" fill="rgb(223,205,47)" rx="2" ry="2" />
<text text-anchor="" x="272.43" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.08%)</title><rect x="129.0" y="65" width="1.0" height="15.0" fill="rgb(208,0,2)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_from_iter (1 samples, 0.08%)</title><rect x="237.8" y="1905" width="0.9" height="15.0" fill="rgb(208,1,28)" rx="2" ry="2" />
<text text-anchor="" x="240.82" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (3 samples, 0.24%)</title><rect x="901.7" y="1809" width="2.8" height="15.0" fill="rgb(245,64,41)" rx="2" ry="2" />
<text text-anchor="" x="904.74" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="792.0" y="1585" width="0.9" height="15.0" fill="rgb(239,1,33)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="226.7" y="1841" width="1.8" height="15.0" fill="rgb(222,6,20)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (6 samples, 0.47%)</title><rect x="23.0" y="2017" width="5.6" height="15.0" fill="rgb(248,37,50)" rx="2" ry="2" />
<text text-anchor="" x="26.02" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_event_data_recv (1 samples, 0.08%)</title><rect x="44.4" y="1825" width="0.9" height="15.0" fill="rgb(217,75,32)" rx="2" ry="2" />
<text text-anchor="" x="47.41" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::io_token::IoToken::drop_source (1 samples, 0.08%)</title><rect x="54.6" y="1985" width="1.0" height="15.0" fill="rgb(240,194,52)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (9 samples, 0.71%)</title><rect x="687.9" y="1697" width="8.3" height="15.0" fill="rgb(245,74,46)" rx="2" ry="2" />
<text text-anchor="" x="690.87" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="69.5" y="1393" width="0.9" height="15.0" fill="rgb(214,218,42)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="71.4" y="1953" width="0.9" height="15.0" fill="rgb(232,48,21)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (2 samples, 0.16%)</title><rect x="1168.6" y="1857" width="1.9" height="15.0" fill="rgb(244,43,25)" rx="2" ry="2" />
<text text-anchor="" x="1171.61" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_init_tso_segs (1 samples, 0.08%)</title><rect x="242.5" y="1857" width="0.9" height="15.0" fill="rgb(249,204,8)" rx="2" ry="2" />
<text text-anchor="" x="245.47" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_ralloc_no_move (13 samples, 1.02%)</title><rect x="343.8" y="2033" width="12.1" height="15.0" fill="rgb(217,158,40)" rx="2" ry="2" />
<text text-anchor="" x="346.82" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll (3 samples, 0.24%)</title><rect x="57.4" y="2001" width="2.8" height="15.0" fill="rgb(254,23,22)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="1138.9" y="1761" width="0.9" height="15.0" fill="rgb(248,183,25)" rx="2" ry="2" />
<text text-anchor="" x="1141.86" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="963.1" y="1665" width="1.9" height="15.0" fill="rgb(246,158,14)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="1136.1" y="1729" width="0.9" height="15.0" fill="rgb(205,10,37)" rx="2" ry="2" />
<text text-anchor="" x="1139.07" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="960.3" y="1713" width="1.0" height="15.0" fill="rgb(207,199,17)" rx="2" ry="2" />
<text text-anchor="" x="963.32" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (2 samples, 0.16%)</title><rect x="952.9" y="1697" width="1.8" height="15.0" fill="rgb(242,121,8)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.16%)</title><rect x="46.3" y="1777" width="1.8" height="15.0" fill="rgb(249,80,42)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1042.2" y="1809" width="0.9" height="15.0" fill="rgb(241,129,39)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (9 samples, 0.71%)</title><rect x="335.5" y="2017" width="8.3" height="15.0" fill="rgb(254,115,25)" rx="2" ry="2" />
<text text-anchor="" x="338.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (19 samples, 1.50%)</title><rect x="34.2" y="1937" width="17.6" height="15.0" fill="rgb(235,66,48)" rx="2" ry="2" />
<text text-anchor="" x="37.18" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (2 samples, 0.16%)</title><rect x="226.7" y="1665" width="1.8" height="15.0" fill="rgb(229,48,36)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (10 samples, 0.79%)</title><rect x="686.9" y="1713" width="9.3" height="15.0" fill="rgb(222,163,20)" rx="2" ry="2" />
<text text-anchor="" x="689.94" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="693.5" y="1393" width="0.9" height="15.0" fill="rgb(235,228,6)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="222.9" y="1825" width="1.9" height="15.0" fill="rgb(213,221,20)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll (771 samples, 60.76%)</title><rect x="438.7" y="1937" width="716.9" height="15.0" fill="rgb(220,54,10)" rx="2" ry="2" />
<text text-anchor="" x="441.67" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::future::map_err::MapErr&lt;A, F&gt; as futures::future::Future&gt;::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.16%)</title><rect x="209.9" y="97" width="1.9" height="15.0" fill="rgb(213,6,46)" rx="2" ry="2" />
<text text-anchor="" x="212.92" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (6 samples, 0.47%)</title><rect x="60.2" y="2001" width="5.6" height="15.0" fill="rgb(230,78,51)" rx="2" ry="2" />
<text text-anchor="" x="63.21" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (22 samples, 1.73%)</title><rect x="232.2" y="1985" width="20.5" height="15.0" fill="rgb(219,224,11)" rx="2" ry="2" />
<text text-anchor="" x="235.24" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="1134.2" y="1905" width="2.8" height="15.0" fill="rgb(227,138,42)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="963.1" y="1233" width="0.9" height="15.0" fill="rgb(251,166,22)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="218.3" y="625" width="0.9" height="15.0" fill="rgb(228,137,16)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.08%)</title><rect x="950.1" y="1761" width="0.9" height="15.0" fill="rgb(219,22,26)" rx="2" ry="2" />
<text text-anchor="" x="953.09" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tokio_core::reactor::Remote::send (3 samples, 0.24%)</title><rect x="551.2" y="1761" width="2.8" height="15.0" fill="rgb(221,211,33)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (104 samples, 8.20%)</title><rect x="121.6" y="481" width="96.7" height="15.0" fill="rgb(238,109,37)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1057" width="97.6" height="15.0" fill="rgb(206,167,22)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (9 samples, 0.71%)</title><rect x="12.8" y="1921" width="8.4" height="15.0" fill="rgb(240,102,23)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="246.2" y="1425" width="0.9" height="15.0" fill="rgb(209,39,48)" rx="2" ry="2" />
<text text-anchor="" x="249.19" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.08%)</title><rect x="68.6" y="1393" width="0.9" height="15.0" fill="rgb(226,204,21)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="53.7" y="1937" width="0.9" height="15.0" fill="rgb(209,139,4)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.08%)</title><rect x="221.1" y="1697" width="0.9" height="15.0" fill="rgb(209,93,36)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (2 samples, 0.16%)</title><rect x="1174.2" y="1809" width="1.9" height="15.0" fill="rgb(206,81,42)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.08%)</title><rect x="963.1" y="1217" width="0.9" height="15.0" fill="rgb(234,27,46)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="651.6" y="1665" width="0.9" height="15.0" fill="rgb(207,34,37)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.08%)</title><rect x="218.3" y="353" width="0.9" height="15.0" fill="rgb(225,22,37)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.08%)</title><rect x="241.5" y="1745" width="1.0" height="15.0" fill="rgb(209,223,32)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (2 samples, 0.16%)</title><rect x="963.1" y="1409" width="1.9" height="15.0" fill="rgb(232,214,30)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.08%)</title><rect x="970.6" y="1777" width="0.9" height="15.0" fill="rgb(216,13,16)" rx="2" ry="2" />
<text text-anchor="" x="973.55" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_event_new_data_sent (1 samples, 0.08%)</title><rect x="962.2" y="1681" width="0.9" height="15.0" fill="rgb(248,194,3)" rx="2" ry="2" />
<text text-anchor="" x="965.18" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="130.0" y="49" width="0.9" height="15.0" fill="rgb(235,151,39)" rx="2" ry="2" />
<text text-anchor="" x="132.95" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="80.7" y="2001" width="0.9" height="15.0" fill="rgb(231,65,28)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="71.4" y="1697" width="0.9" height="15.0" fill="rgb(237,102,13)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.16%)</title><rect x="68.6" y="1665" width="1.8" height="15.0" fill="rgb(212,200,10)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1761" width="97.6" height="15.0" fill="rgb(232,59,15)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (19 samples, 1.50%)</title><rect x="281.5" y="1969" width="17.7" height="15.0" fill="rgb(222,145,33)" rx="2" ry="2" />
<text text-anchor="" x="284.52" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="298.3" y="1889" width="0.9" height="15.0" fill="rgb(228,119,34)" rx="2" ry="2" />
<text text-anchor="" x="301.26" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (20 samples, 1.58%)</title><rect x="82.5" y="2001" width="18.6" height="15.0" fill="rgb(217,125,3)" rx="2" ry="2" />
<text text-anchor="" x="85.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="863.6" y="1809" width="0.9" height="15.0" fill="rgb(220,186,18)" rx="2" ry="2" />
<text text-anchor="" x="866.62" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (10 samples, 0.79%)</title><rect x="12.8" y="1969" width="9.3" height="15.0" fill="rgb(220,179,42)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.08%)</title><rect x="80.7" y="1761" width="0.9" height="15.0" fill="rgb(217,4,8)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (3 samples, 0.24%)</title><rect x="411.7" y="1953" width="2.8" height="15.0" fill="rgb(236,110,42)" rx="2" ry="2" />
<text text-anchor="" x="414.70" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (3 samples, 0.24%)</title><rect x="244.3" y="1537" width="2.8" height="15.0" fill="rgb(223,188,36)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;solicit_fork::http::frame::RawFrame&lt;a&gt; as core::convert::From&lt;collections::vec::Vec&lt;u8&gt;&gt;&gt;::from (3 samples, 0.24%)</title><rect x="524.2" y="1777" width="2.8" height="15.0" fill="rgb(205,142,7)" rx="2" ry="2" />
<text text-anchor="" x="527.22" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::stream::and_then::AndThen&lt;S, F, U&gt; as futures::stream::Stream&gt;::poll (70 samples, 5.52%)</title><rect x="998.4" y="1873" width="65.1" height="15.0" fill="rgb(221,3,41)" rx="2" ry="2" />
<text text-anchor="" x="1001.45" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;future..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="872.9" y="1665" width="1.9" height="15.0" fill="rgb(233,218,40)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="218.3" y="609" width="0.9" height="15.0" fill="rgb(225,171,48)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (2 samples, 0.16%)</title><rect x="68.6" y="1697" width="1.8" height="15.0" fill="rgb(210,75,43)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="74.2" y="1953" width="0.9" height="15.0" fill="rgb(254,46,38)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (4 samples, 0.32%)</title><rect x="224.8" y="1953" width="3.7" height="15.0" fill="rgb(246,162,42)" rx="2" ry="2" />
<text text-anchor="" x="227.80" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_inbound_md5_hash (1 samples, 0.08%)</title><rect x="340.1" y="1569" width="0.9" height="15.0" fill="rgb(244,183,18)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="69.5" y="1441" width="0.9" height="15.0" fill="rgb(246,132,40)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="833" width="97.6" height="15.0" fill="rgb(250,134,41)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="57.4" y="1521" width="1.0" height="15.0" fill="rgb(216,45,13)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (1 samples, 0.08%)</title><rect x="21.2" y="1921" width="0.9" height="15.0" fill="rgb(254,159,46)" rx="2" ry="2" />
<text text-anchor="" x="24.16" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="1171.4" y="1873" width="0.9" height="15.0" fill="rgb(240,219,49)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (17 samples, 1.34%)</title><rect x="233.2" y="1937" width="15.8" height="15.0" fill="rgb(241,142,39)" rx="2" ry="2" />
<text text-anchor="" x="236.17" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>import_single_range (1 samples, 0.08%)</title><rect x="279.7" y="1969" width="0.9" height="15.0" fill="rgb(245,120,53)" rx="2" ry="2" />
<text text-anchor="" x="282.66" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (1 samples, 0.08%)</title><rect x="939.9" y="1745" width="0.9" height="15.0" fill="rgb(240,69,29)" rx="2" ry="2" />
<text text-anchor="" x="942.87" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="79.7" y="1809" width="1.0" height="15.0" fill="rgb(233,214,53)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (2 samples, 0.16%)</title><rect x="116.9" y="1841" width="1.9" height="15.0" fill="rgb(252,186,26)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="968.7" y="1809" width="0.9" height="15.0" fill="rgb(241,199,19)" rx="2" ry="2" />
<text text-anchor="" x="971.69" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="10.0" y="1921" width="0.9" height="15.0" fill="rgb(231,147,14)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::future::then::Then&lt;A, B, F&gt; as futures::future::Future&gt;::poll (563 samples, 44.37%)</title><rect x="448.0" y="1921" width="523.5" height="15.0" fill="rgb(234,142,41)" rx="2" ry="2" />
<text text-anchor="" x="450.97" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::future::then::Then&lt;A, B, F&gt; as futures::future::Future&gt;::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_ssse3_back (2 samples, 0.16%)</title><rect x="301.0" y="2033" width="1.9" height="15.0" fill="rgb(231,112,44)" rx="2" ry="2" />
<text text-anchor="" x="304.05" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="921.3" y="1681" width="0.9" height="15.0" fill="rgb(250,65,18)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (2 samples, 0.16%)</title><rect x="952.9" y="1521" width="1.8" height="15.0" fill="rgb(230,80,7)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.16%)</title><rect x="827.4" y="1649" width="1.8" height="15.0" fill="rgb(237,56,7)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.08%)</title><rect x="94.6" y="1729" width="0.9" height="15.0" fill="rgb(213,35,5)" rx="2" ry="2" />
<text text-anchor="" x="97.62" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.08%)</title><rect x="128.1" y="177" width="0.9" height="15.0" fill="rgb(228,215,31)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (3 samples, 0.24%)</title><rect x="1134.2" y="1841" width="2.8" height="15.0" fill="rgb(237,120,18)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="128.1" y="145" width="0.9" height="15.0" fill="rgb(241,65,44)" rx="2" ry="2" />
<text text-anchor="" x="131.09" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="795.7" y="1569" width="1.0" height="15.0" fill="rgb(233,155,43)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (3 samples, 0.24%)</title><rect x="244.3" y="1633" width="2.8" height="15.0" fill="rgb(249,195,47)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_pkt_to_tuple (1 samples, 0.08%)</title><rect x="223.9" y="1697" width="0.9" height="15.0" fill="rgb(221,110,1)" rx="2" ry="2" />
<text text-anchor="" x="226.87" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_clock_gettime (1 samples, 0.08%)</title><rect x="1172.3" y="1921" width="1.0" height="15.0" fill="rgb(241,215,8)" rx="2" ry="2" />
<text text-anchor="" x="1175.33" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_clean_rtx_queue (1 samples, 0.08%)</title><rect x="693.5" y="1249" width="0.9" height="15.0" fill="rgb(209,210,24)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="221.1" y="1761" width="0.9" height="15.0" fill="rgb(211,148,17)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.08%)</title><rect x="70.4" y="1953" width="1.0" height="15.0" fill="rgb(242,195,45)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (3 samples, 0.24%)</title><rect x="1137.9" y="1889" width="2.8" height="15.0" fill="rgb(206,210,48)" rx="2" ry="2" />
<text text-anchor="" x="1140.93" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (1 samples, 0.08%)</title><rect x="28.6" y="2017" width="0.9" height="15.0" fill="rgb(216,220,10)" rx="2" ry="2" />
<text text-anchor="" x="31.60" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;collections::vec::Vec&lt;T&gt;&gt;::reserve (1 samples, 0.08%)</title><rect x="885.0" y="1761" width="0.9" height="15.0" fill="rgb(234,78,18)" rx="2" ry="2" />
<text text-anchor="" x="888.00" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="64.9" y="1857" width="0.9" height="15.0" fill="rgb(238,190,47)" rx="2" ry="2" />
<text text-anchor="" x="67.86" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="834.8" y="1665" width="0.9" height="15.0" fill="rgb(252,2,15)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (3 samples, 0.24%)</title><rect x="244.3" y="1553" width="2.8" height="15.0" fill="rgb(221,179,9)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="209.0" y="81" width="0.9" height="15.0" fill="rgb(246,13,18)" rx="2" ry="2" />
<text text-anchor="" x="211.99" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.08%)</title><rect x="228.5" y="1841" width="0.9" height="15.0" fill="rgb(236,140,24)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="866.4" y="1825" width="0.9" height="15.0" fill="rgb(218,167,51)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.08%)</title><rect x="946.4" y="1761" width="0.9" height="15.0" fill="rgb(225,101,5)" rx="2" ry="2" />
<text text-anchor="" x="949.38" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::server::ServerServiceDefinition::find_method (11 samples, 0.87%)</title><rect x="657.2" y="1777" width="10.2" height="15.0" fill="rgb(237,85,12)" rx="2" ry="2" />
<text text-anchor="" x="660.19" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;collections::vec::Vec&lt;T&gt;&gt;::into_boxed_slice (1 samples, 0.08%)</title><rect x="1097.9" y="1857" width="1.0" height="15.0" fill="rgb(251,119,10)" rx="2" ry="2" />
<text text-anchor="" x="1100.94" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.08%)</title><rect x="337.3" y="1905" width="0.9" height="15.0" fill="rgb(254,163,3)" rx="2" ry="2" />
<text text-anchor="" x="340.31" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="1137.0" y="1905" width="0.9" height="15.0" fill="rgb(217,133,18)" rx="2" ry="2" />
<text text-anchor="" x="1140.00" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="1101.7" y="1889" width="0.9" height="15.0" fill="rgb(237,107,49)" rx="2" ry="2" />
<text text-anchor="" x="1104.66" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="862.7" y="1793" width="0.9" height="15.0" fill="rgb(215,84,9)" rx="2" ry="2" />
<text text-anchor="" x="865.69" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (2 samples, 0.16%)</title><rect x="77.9" y="1857" width="1.8" height="15.0" fill="rgb(237,71,32)" rx="2" ry="2" />
<text text-anchor="" x="80.88" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="79.7" y="1569" width="1.0" height="15.0" fill="rgb(227,138,50)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (9 samples, 0.71%)</title><rect x="335.5" y="2001" width="8.3" height="15.0" fill="rgb(245,192,34)" rx="2" ry="2" />
<text text-anchor="" x="338.45" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.16%)</title><rect x="46.3" y="1745" width="1.8" height="15.0" fill="rgb(224,174,39)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.08%)</title><rect x="1161.2" y="1697" width="0.9" height="15.0" fill="rgb(215,29,9)" rx="2" ry="2" />
<text text-anchor="" x="1164.17" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="125.3" y="97" width="0.9" height="15.0" fill="rgb(235,155,37)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (85 samples, 6.70%)</title><rect x="130.9" y="145" width="79.0" height="15.0" fill="rgb(254,67,21)" rx="2" ry="2" />
<text text-anchor="" x="133.88" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.16%)</title><rect x="68.6" y="1825" width="1.8" height="15.0" fill="rgb(232,204,39)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::grpc_protobuf::MarshallerProtobuf as grpc::marshall::Marshaller&lt;M&gt;&gt;::write (7 samples, 0.55%)</title><rect x="1092.4" y="1889" width="6.5" height="15.0" fill="rgb(224,217,28)" rx="2" ry="2" />
<text text-anchor="" x="1095.36" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (2 samples, 0.16%)</title><rect x="872.9" y="1361" width="1.9" height="15.0" fill="rgb(210,105,44)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1137" width="97.6" height="15.0" fill="rgb(224,206,48)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1345" width="97.6" height="15.0" fill="rgb(231,72,15)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.16%)</title><rect x="14.6" y="1793" width="1.9" height="15.0" fill="rgb(249,221,46)" rx="2" ry="2" />
<text text-anchor="" x="17.65" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.08%)</title><rect x="544.7" y="1617" width="0.9" height="15.0" fill="rgb(248,206,22)" rx="2" ry="2" />
<text text-anchor="" x="547.67" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_nested (1 samples, 0.08%)</title><rect x="116.9" y="1825" width="1.0" height="15.0" fill="rgb(213,188,1)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="1175.1" y="1585" width="1.0" height="15.0" fill="rgb(212,219,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="391.2" y="2001" width="1.0" height="15.0" fill="rgb(230,164,43)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="1104.5" y="1889" width="0.9" height="15.0" fill="rgb(225,139,35)" rx="2" ry="2" />
<text text-anchor="" x="1107.45" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.08%)</title><rect x="827.4" y="1553" width="0.9" height="15.0" fill="rgb(241,124,21)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="222.9" y="1809" width="1.9" height="15.0" fill="rgb(230,195,22)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.08%)</title><rect x="221.1" y="1681" width="0.9" height="15.0" fill="rgb(254,124,49)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (2 samples, 0.16%)</title><rect x="563.3" y="1409" width="1.8" height="15.0" fill="rgb(210,56,54)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::net::tcp::TcpStream as std::io::Write&gt;::write (5 samples, 0.39%)</title><rect x="822.7" y="1793" width="4.7" height="15.0" fill="rgb(219,71,11)" rx="2" ry="2" />
<text text-anchor="" x="825.70" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="970.6" y="1745" width="0.9" height="15.0" fill="rgb(244,111,25)" rx="2" ry="2" />
<text text-anchor="" x="973.55" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="218.3" y="273" width="0.9" height="15.0" fill="rgb(217,132,40)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="260.1" y="1985" width="1.0" height="15.0" fill="rgb(220,138,18)" rx="2" ry="2" />
<text text-anchor="" x="263.13" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (103 samples, 8.12%)</title><rect x="122.5" y="337" width="95.8" height="15.0" fill="rgb(227,8,6)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="792.0" y="1665" width="0.9" height="15.0" fill="rgb(240,210,5)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (5 samples, 0.39%)</title><rect x="65.8" y="1953" width="4.6" height="15.0" fill="rgb(238,119,6)" rx="2" ry="2" />
<text text-anchor="" x="68.79" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.08%)</title><rect x="1103.5" y="1761" width="1.0" height="15.0" fill="rgb(215,183,14)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="554.9" y="1617" width="0.9" height="15.0" fill="rgb(248,197,6)" rx="2" ry="2" />
<text text-anchor="" x="557.90" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="54.6" y="1889" width="1.0" height="15.0" fill="rgb(229,159,10)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_rx (1 samples, 0.08%)</title><rect x="248.0" y="1697" width="1.0" height="15.0" fill="rgb(233,213,36)" rx="2" ry="2" />
<text text-anchor="" x="251.05" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.08%)</title><rect x="1160.2" y="1681" width="1.0" height="15.0" fill="rgb(241,24,16)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.08%)</title><rect x="340.1" y="1809" width="0.9" height="15.0" fill="rgb(234,182,48)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="1103.5" y="1809" width="1.0" height="15.0" fill="rgb(221,108,34)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (5 samples, 0.39%)</title><rect x="61.1" y="1937" width="4.7" height="15.0" fill="rgb(254,90,21)" rx="2" ry="2" />
<text text-anchor="" x="64.14" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="864.5" y="1745" width="1.0" height="15.0" fill="rgb(206,99,12)" rx="2" ry="2" />
<text text-anchor="" x="867.55" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.16%)</title><rect x="1160.2" y="1857" width="1.9" height="15.0" fill="rgb(205,44,42)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="872.9" y="1649" width="1.9" height="15.0" fill="rgb(219,150,32)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="1175.1" y="1569" width="1.0" height="15.0" fill="rgb(206,125,21)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (2 samples, 0.16%)</title><rect x="963.1" y="1569" width="1.9" height="15.0" fill="rgb(213,134,10)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::read_tag (2 samples, 0.16%)</title><rect x="1057.0" y="1809" width="1.9" height="15.0" fill="rgb(226,118,24)" rx="2" ry="2" />
<text text-anchor="" x="1060.03" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="834.8" y="1633" width="0.9" height="15.0" fill="rgb(243,94,10)" rx="2" ry="2" />
<text text-anchor="" x="837.79" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (1 samples, 0.08%)</title><rect x="57.4" y="1697" width="1.0" height="15.0" fill="rgb(244,45,20)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (6 samples, 0.47%)</title><rect x="243.4" y="1841" width="5.6" height="15.0" fill="rgb(233,150,37)" rx="2" ry="2" />
<text text-anchor="" x="246.40" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (3 samples, 0.24%)</title><rect x="562.3" y="1601" width="2.8" height="15.0" fill="rgb(237,201,49)" rx="2" ry="2" />
<text text-anchor="" x="565.34" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="120.7" y="1793" width="0.9" height="15.0" fill="rgb(211,100,41)" rx="2" ry="2" />
<text text-anchor="" x="123.65" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="651.6" y="1633" width="0.9" height="15.0" fill="rgb(224,30,47)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.08%)</title><rect x="795.7" y="1553" width="1.0" height="15.0" fill="rgb(217,11,30)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="241.5" y="1857" width="1.0" height="15.0" fill="rgb(249,42,33)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (3 samples, 0.24%)</title><rect x="1174.2" y="1873" width="2.8" height="15.0" fill="rgb(215,144,52)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="80.7" y="1969" width="0.9" height="15.0" fill="rgb(230,118,48)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="290.8" y="1489" width="0.9" height="15.0" fill="rgb(244,160,39)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::Poll::poll (5 samples, 0.39%)</title><rect x="1182.6" y="1937" width="4.6" height="15.0" fill="rgb(254,101,35)" rx="2" ry="2" />
<text text-anchor="" x="1185.56" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="71.4" y="1553" width="0.9" height="15.0" fill="rgb(241,174,34)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.16%)</title><rect x="969.6" y="1857" width="1.9" height="15.0" fill="rgb(207,12,27)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.16%)</title><rect x="226.7" y="1697" width="1.8" height="15.0" fill="rgb(243,78,6)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.08%)</title><rect x="122.5" y="145" width="0.9" height="15.0" fill="rgb(250,42,52)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.08%)</title><rect x="409.8" y="1921" width="1.0" height="15.0" fill="rgb(238,17,28)" rx="2" ry="2" />
<text text-anchor="" x="412.84" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (1 samples, 0.08%)</title><rect x="561.4" y="1601" width="0.9" height="15.0" fill="rgb(223,226,29)" rx="2" ry="2" />
<text text-anchor="" x="564.41" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.08%)</title><rect x="53.7" y="1729" width="0.9" height="15.0" fill="rgb(215,151,38)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="1040.3" y="1809" width="0.9" height="15.0" fill="rgb(206,1,31)" rx="2" ry="2" />
<text text-anchor="" x="1043.29" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="260.1" y="1921" width="1.0" height="15.0" fill="rgb(226,28,24)" rx="2" ry="2" />
<text text-anchor="" x="263.13" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="121.6" y="161" width="0.9" height="15.0" fill="rgb(211,8,40)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (6 samples, 0.47%)</title><rect x="60.2" y="1985" width="5.6" height="15.0" fill="rgb(232,185,34)" rx="2" ry="2" />
<text text-anchor="" x="63.21" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="290.8" y="1457" width="0.9" height="15.0" fill="rgb(241,5,45)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.08%)</title><rect x="948.2" y="1697" width="1.0" height="15.0" fill="rgb(251,125,18)" rx="2" ry="2" />
<text text-anchor="" x="951.23" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.08%)</title><rect x="411.7" y="1889" width="0.9" height="15.0" fill="rgb(235,67,32)" rx="2" ry="2" />
<text text-anchor="" x="414.70" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (5 samples, 0.39%)</title><rect x="244.3" y="1777" width="4.7" height="15.0" fill="rgb(208,170,23)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (2 samples, 0.16%)</title><rect x="58.4" y="1985" width="1.8" height="15.0" fill="rgb(253,39,25)" rx="2" ry="2" />
<text text-anchor="" x="61.35" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (2 samples, 0.16%)</title><rect x="952.9" y="1473" width="1.8" height="15.0" fill="rgb(238,97,41)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="1042.2" y="1841" width="0.9" height="15.0" fill="rgb(243,222,36)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="290.8" y="1425" width="0.9" height="15.0" fill="rgb(243,9,34)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;grpc::http_server::GrpcHttpServerStream&lt;F&gt;&gt;::set_state (32 samples, 2.52%)</title><rect x="600.5" y="1793" width="29.7" height="15.0" fill="rgb(209,58,28)" rx="2" ry="2" />
<text text-anchor="" x="603.46" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="1042.2" y="1777" width="0.9" height="15.0" fill="rgb(253,205,46)" rx="2" ry="2" />
<text text-anchor="" x="1045.15" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.08%)</title><rect x="340.1" y="1729" width="0.9" height="15.0" fill="rgb(250,128,37)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.08%)</title><rect x="963.1" y="1281" width="0.9" height="15.0" fill="rgb(225,13,36)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.16%)</title><rect x="952.9" y="1569" width="1.8" height="15.0" fill="rgb(249,111,27)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="53.7" y="1985" width="0.9" height="15.0" fill="rgb(221,19,27)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tokio_core::channel::Sender&lt;T&gt;&gt;::send (18 samples, 1.42%)</title><rect x="1116.5" y="1921" width="16.8" height="15.0" fill="rgb(223,5,32)" rx="2" ry="2" />
<text text-anchor="" x="1119.54" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.08%)</title><rect x="121.6" y="65" width="0.9" height="15.0" fill="rgb(221,68,18)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.16%)</title><rect x="46.3" y="1697" width="1.8" height="15.0" fill="rgb(237,187,54)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.08%)</title><rect x="112.3" y="1953" width="0.9" height="15.0" fill="rgb(205,226,49)" rx="2" ry="2" />
<text text-anchor="" x="115.29" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="801" width="97.6" height="15.0" fill="rgb(238,162,42)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (10 samples, 0.79%)</title><rect x="12.8" y="1953" width="9.3" height="15.0" fill="rgb(243,104,46)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.08%)</title><rect x="208.1" y="113" width="0.9" height="15.0" fill="rgb(219,143,18)" rx="2" ry="2" />
<text text-anchor="" x="211.06" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="218.3" y="241" width="0.9" height="15.0" fill="rgb(222,30,40)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.08%)</title><rect x="1104.5" y="1857" width="0.9" height="15.0" fill="rgb(232,148,8)" rx="2" ry="2" />
<text text-anchor="" x="1107.45" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.08%)</title><rect x="957.5" y="1761" width="1.0" height="15.0" fill="rgb(224,152,18)" rx="2" ry="2" />
<text text-anchor="" x="960.53" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (1 samples, 0.08%)</title><rect x="218.3" y="369" width="0.9" height="15.0" fill="rgb(218,141,30)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.08%)</title><rect x="963.1" y="1249" width="0.9" height="15.0" fill="rgb(234,186,50)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (1 samples, 0.08%)</title><rect x="651.6" y="1729" width="0.9" height="15.0" fill="rgb(207,121,28)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1441" width="97.6" height="15.0" fill="rgb(220,207,44)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="570.7" y="1681" width="0.9" height="15.0" fill="rgb(248,32,16)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.08%)</title><rect x="80.7" y="1905" width="0.9" height="15.0" fill="rgb(227,184,45)" rx="2" ry="2" />
<text text-anchor="" x="83.67" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.16%)</title><rect x="68.6" y="1681" width="1.8" height="15.0" fill="rgb(242,223,43)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (5 samples, 0.39%)</title><rect x="827.4" y="1793" width="4.6" height="15.0" fill="rgb(248,185,27)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.16%)</title><rect x="827.4" y="1697" width="1.8" height="15.0" fill="rgb(233,39,51)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.16%)</title><rect x="1137.9" y="1825" width="1.9" height="15.0" fill="rgb(232,197,53)" rx="2" ry="2" />
<text text-anchor="" x="1140.93" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_maybe_catch_panic (840 samples, 66.19%)</title><rect x="408.9" y="1985" width="781.1" height="15.0" fill="rgb(250,92,52)" rx="2" ry="2" />
<text text-anchor="" x="411.91" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__rust_maybe_catch_panic</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="71.4" y="1745" width="0.9" height="15.0" fill="rgb(219,145,35)" rx="2" ry="2" />
<text text-anchor="" x="74.37" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.16%)</title><rect x="1160.2" y="1873" width="1.9" height="15.0" fill="rgb(247,22,11)" rx="2" ry="2" />
<text text-anchor="" x="1163.24" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.16%)</title><rect x="872.9" y="1601" width="1.9" height="15.0" fill="rgb(214,183,43)" rx="2" ry="2" />
<text text-anchor="" x="875.92" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (5 samples, 0.39%)</title><rect x="560.5" y="1665" width="4.6" height="15.0" fill="rgb(217,107,43)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.08%)</title><rect x="563.3" y="1233" width="0.9" height="15.0" fill="rgb(225,65,54)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="126.2" y="177" width="1.9" height="15.0" fill="rgb(223,59,14)" rx="2" ry="2" />
<text text-anchor="" x="129.23" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_with_offset (1 samples, 0.08%)</title><rect x="248.0" y="1681" width="1.0" height="15.0" fill="rgb(248,84,45)" rx="2" ry="2" />
<text text-anchor="" x="251.05" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (8 samples, 0.63%)</title><rect x="868.3" y="1745" width="7.4" height="15.0" fill="rgb(229,221,26)" rx="2" ry="2" />
<text text-anchor="" x="871.27" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (4 samples, 0.32%)</title><rect x="290.8" y="1697" width="3.7" height="15.0" fill="rgb(235,229,22)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="53.7" y="2001" width="0.9" height="15.0" fill="rgb(218,216,21)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (3 samples, 0.24%)</title><rect x="1134.2" y="1857" width="2.8" height="15.0" fill="rgb(236,173,52)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (2 samples, 0.16%)</title><rect x="342.0" y="1889" width="1.8" height="15.0" fill="rgb(250,146,21)" rx="2" ry="2" />
<text text-anchor="" x="344.96" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="897" width="97.6" height="15.0" fill="rgb(218,151,53)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="220.1" y="1937" width="1.0" height="15.0" fill="rgb(230,191,44)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.08%)</title><rect x="116.9" y="1793" width="1.0" height="15.0" fill="rgb(212,182,17)" rx="2" ry="2" />
<text text-anchor="" x="119.93" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="121.6" y="273" width="0.9" height="15.0" fill="rgb(218,28,16)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="122.5" y="225" width="0.9" height="15.0" fill="rgb(240,92,27)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="218.3" y="497" width="0.9" height="15.0" fill="rgb(214,209,51)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="53.7" y="1681" width="0.9" height="15.0" fill="rgb(228,23,13)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (2 samples, 0.16%)</title><rect x="226.7" y="1585" width="1.8" height="15.0" fill="rgb(215,144,17)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::Formatter::pad_integral (1 samples, 0.08%)</title><rect x="875.7" y="1825" width="0.9" height="15.0" fill="rgb(240,146,48)" rx="2" ry="2" />
<text text-anchor="" x="878.71" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="229.4" y="2001" width="1.0" height="15.0" fill="rgb(247,34,20)" rx="2" ry="2" />
<text text-anchor="" x="232.45" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="827.4" y="1777" width="1.8" height="15.0" fill="rgb(236,113,35)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (3 samples, 0.24%)</title><rect x="62.1" y="1873" width="2.8" height="15.0" fill="rgb(241,11,26)" rx="2" ry="2" />
<text text-anchor="" x="65.07" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;long_tests::long_tests_pb::EchoResponse as protobuf::core::Message&gt;::compute_size (1 samples, 0.08%)</title><rect x="1092.4" y="1873" width="0.9" height="15.0" fill="rgb(222,14,3)" rx="2" ry="2" />
<text text-anchor="" x="1095.36" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.16%)</title><rect x="969.6" y="1841" width="1.9" height="15.0" fill="rgb(245,178,49)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.08%)</title><rect x="1174.2" y="1665" width="0.9" height="15.0" fill="rgb(254,57,37)" rx="2" ry="2" />
<text text-anchor="" x="1177.19" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (3 samples, 0.24%)</title><rect x="225.7" y="1873" width="2.8" height="15.0" fill="rgb(209,179,40)" rx="2" ry="2" />
<text text-anchor="" x="228.73" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="227.6" y="1473" width="0.9" height="15.0" fill="rgb(205,114,48)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (2 samples, 0.16%)</title><rect x="222.9" y="1873" width="1.9" height="15.0" fill="rgb(215,173,47)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::read_tag_unpack (3 samples, 0.24%)</title><rect x="1056.1" y="1825" width="2.8" height="15.0" fill="rgb(251,164,2)" rx="2" ry="2" />
<text text-anchor="" x="1059.10" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="68.6" y="1473" width="0.9" height="15.0" fill="rgb(226,201,7)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="221.1" y="1841" width="0.9" height="15.0" fill="rgb(244,106,22)" rx="2" ry="2" />
<text text-anchor="" x="224.08" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (4 samples, 0.32%)</title><rect x="290.8" y="1809" width="3.7" height="15.0" fill="rgb(219,12,41)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="921.3" y="1761" width="0.9" height="15.0" fill="rgb(211,151,6)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::stream::map_err::MapErr&lt;S, F&gt; as futures::stream::Stream&gt;::poll (28 samples, 2.21%)</title><rect x="1016.1" y="1825" width="26.1" height="15.0" fill="rgb(248,213,53)" rx="2" ry="2" />
<text text-anchor="" x="1019.12" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="217.4" y="177" width="0.9" height="15.0" fill="rgb(207,114,11)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_packet (1 samples, 0.08%)</title><rect x="63.9" y="1713" width="1.0" height="15.0" fill="rgb(242,13,48)" rx="2" ry="2" />
<text text-anchor="" x="66.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="241.5" y="1809" width="1.0" height="15.0" fill="rgb(226,144,52)" rx="2" ry="2" />
<text text-anchor="" x="244.54" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="79.7" y="1761" width="1.0" height="15.0" fill="rgb(242,219,25)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (4 samples, 0.32%)</title><rect x="102.1" y="1953" width="3.7" height="15.0" fill="rgb(214,97,7)" rx="2" ry="2" />
<text text-anchor="" x="105.06" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (1 samples, 0.08%)</title><rect x="1099.8" y="1857" width="0.9" height="15.0" fill="rgb(231,175,31)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;long_tests::long_tests_pb::EchoResponse as protobuf::core::Message&gt;::write_to_with_cached_sizes (2 samples, 0.16%)</title><rect x="1093.3" y="1873" width="1.9" height="15.0" fill="rgb(239,114,42)" rx="2" ry="2" />
<text text-anchor="" x="1096.29" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="211.8" y="97" width="0.9" height="15.0" fill="rgb(247,95,43)" rx="2" ry="2" />
<text text-anchor="" x="214.78" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="1171.4" y="1777" width="0.9" height="15.0" fill="rgb(216,196,2)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_swapgs (1 samples, 0.08%)</title><rect x="101.1" y="1969" width="1.0" height="15.0" fill="rgb(238,97,54)" rx="2" ry="2" />
<text text-anchor="" x="104.13" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.08%)</title><rect x="228.5" y="1857" width="0.9" height="15.0" fill="rgb(243,134,49)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.16%)</title><rect x="693.5" y="1569" width="1.8" height="15.0" fill="rgb(215,139,7)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (1 samples, 0.08%)</title><rect x="727.9" y="1617" width="0.9" height="15.0" fill="rgb(237,131,18)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (3 samples, 0.24%)</title><rect x="1134.2" y="1825" width="2.8" height="15.0" fill="rgb(232,139,20)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (2 samples, 0.16%)</title><rect x="46.3" y="1665" width="1.8" height="15.0" fill="rgb(211,65,53)" rx="2" ry="2" />
<text text-anchor="" x="49.26" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (2 samples, 0.16%)</title><rect x="209.9" y="161" width="1.9" height="15.0" fill="rgb(220,145,51)" rx="2" ry="2" />
<text text-anchor="" x="212.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1361" width="97.6" height="15.0" fill="rgb(247,225,24)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (2 samples, 0.16%)</title><rect x="212.7" y="129" width="1.9" height="15.0" fill="rgb(239,48,25)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.08%)</title><rect x="112.3" y="1921" width="0.9" height="15.0" fill="rgb(218,111,43)" rx="2" ry="2" />
<text text-anchor="" x="115.29" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (3 samples, 0.24%)</title><rect x="1137.9" y="1873" width="2.8" height="15.0" fill="rgb(240,67,31)" rx="2" ry="2" />
<text text-anchor="" x="1140.93" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.08%)</title><rect x="57.4" y="1793" width="1.0" height="15.0" fill="rgb(205,154,35)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (86 samples, 6.78%)</title><rect x="130.0" y="161" width="79.9" height="15.0" fill="rgb(245,184,23)" rx="2" ry="2" />
<text text-anchor="" x="132.95" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (2 samples, 0.16%)</title><rect x="969.6" y="1793" width="1.9" height="15.0" fill="rgb(222,52,13)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (2 samples, 0.16%)</title><rect x="1135.1" y="1793" width="1.9" height="15.0" fill="rgb(235,187,30)" rx="2" ry="2" />
<text text-anchor="" x="1138.14" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.08%)</title><rect x="109.5" y="1985" width="0.9" height="15.0" fill="rgb(234,40,25)" rx="2" ry="2" />
<text text-anchor="" x="112.50" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (2 samples, 0.16%)</title><rect x="963.1" y="1425" width="1.9" height="15.0" fill="rgb(240,188,8)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_to_iter (1 samples, 0.08%)</title><rect x="45.3" y="1857" width="1.0" height="15.0" fill="rgb(227,196,25)" rx="2" ry="2" />
<text text-anchor="" x="48.33" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (1 samples, 0.08%)</title><rect x="953.8" y="1281" width="0.9" height="15.0" fill="rgb(235,68,48)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.08%)</title><rect x="59.3" y="1713" width="0.9" height="15.0" fill="rgb(211,195,34)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="57.4" y="1889" width="1.0" height="15.0" fill="rgb(244,19,42)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>solicit_fork::http::frame::data::DataFrame::payload_len (1 samples, 0.08%)</title><rect x="883.1" y="1793" width="1.0" height="15.0" fill="rgb(254,215,1)" rx="2" ry="2" />
<text text-anchor="" x="886.14" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.16%)</title><rect x="115.1" y="1857" width="1.8" height="15.0" fill="rgb(232,148,22)" rx="2" ry="2" />
<text text-anchor="" x="118.07" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (1 samples, 0.08%)</title><rect x="1171.4" y="1761" width="0.9" height="15.0" fill="rgb(237,198,49)" rx="2" ry="2" />
<text text-anchor="" x="1174.40" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_dst_check (1 samples, 0.08%)</title><rect x="243.4" y="1809" width="0.9" height="15.0" fill="rgb(205,174,8)" rx="2" ry="2" />
<text text-anchor="" x="246.40" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::read (7 samples, 0.55%)</title><rect x="1048.7" y="1777" width="6.5" height="15.0" fill="rgb(221,23,17)" rx="2" ry="2" />
<text text-anchor="" x="1051.66" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="1188.1" y="1937" width="1.0" height="15.0" fill="rgb(252,162,19)" rx="2" ry="2" />
<text text-anchor="" x="1191.14" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (8 samples, 0.63%)</title><rect x="687.9" y="1649" width="7.4" height="15.0" fill="rgb(242,26,21)" rx="2" ry="2" />
<text text-anchor="" x="690.87" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="720.4" y="1713" width="0.9" height="15.0" fill="rgb(212,29,52)" rx="2" ry="2" />
<text text-anchor="" x="723.42" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="121.6" y="193" width="0.9" height="15.0" fill="rgb(227,142,53)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.08%)</title><rect x="72.3" y="1985" width="0.9" height="15.0" fill="rgb(224,52,37)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.08%)</title><rect x="1103.5" y="1825" width="1.0" height="15.0" fill="rgb(237,128,23)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.08%)</title><rect x="227.6" y="1361" width="0.9" height="15.0" fill="rgb(230,174,27)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.08%)</title><rect x="739.9" y="1665" width="1.0" height="15.0" fill="rgb(206,71,51)" rx="2" ry="2" />
<text text-anchor="" x="742.94" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.08%)</title><rect x="79.7" y="1665" width="1.0" height="15.0" fill="rgb(243,179,34)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.08%)</title><rect x="696.2" y="1729" width="1.0" height="15.0" fill="rgb(222,194,2)" rx="2" ry="2" />
<text text-anchor="" x="699.24" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.16%)</title><rect x="554.0" y="1713" width="1.8" height="15.0" fill="rgb(222,70,37)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys::imp::thread::Thread::new::thread_start (840 samples, 66.19%)</title><rect x="408.9" y="2017" width="781.1" height="15.0" fill="rgb(244,17,4)" rx="2" ry="2" />
<text text-anchor="" x="411.91" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::imp::thread::Thread::new::thread_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="64.9" y="1905" width="0.9" height="15.0" fill="rgb(212,121,17)" rx="2" ry="2" />
<text text-anchor="" x="67.86" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::SetReadiness::set_readiness (2 samples, 0.16%)</title><rect x="792.0" y="1777" width="1.9" height="15.0" fill="rgb(231,93,51)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="218.3" y="81" width="0.9" height="15.0" fill="rgb(222,105,51)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (2 samples, 0.16%)</title><rect x="123.4" y="145" width="1.9" height="15.0" fill="rgb(243,0,7)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.08%)</title><rect x="125.3" y="81" width="0.9" height="15.0" fill="rgb(228,100,30)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::stream::and_then::AndThen&lt;S, F, U&gt; as futures::stream::Stream&gt;::poll (134 samples, 10.56%)</title><rect x="978.0" y="1905" width="124.6" height="15.0" fill="rgb(240,224,23)" rx="2" ry="2" />
<text text-anchor="" x="980.99" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;futures::strea..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="121.6" y="369" width="0.9" height="15.0" fill="rgb(213,26,7)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.08%)</title><rect x="825.5" y="1697" width="0.9" height="15.0" fill="rgb(253,85,37)" rx="2" ry="2" />
<text text-anchor="" x="828.49" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="862.7" y="1809" width="0.9" height="15.0" fill="rgb(209,99,0)" rx="2" ry="2" />
<text text-anchor="" x="865.69" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::channel::ReceiverCtl as mio::io::Evented&gt;::register (8 samples, 0.63%)</title><rect x="775.3" y="1745" width="7.4" height="15.0" fill="rgb(219,194,31)" rx="2" ry="2" />
<text text-anchor="" x="778.28" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::channel::SenderCtl as core::ops::Drop&gt;::drop (1 samples, 0.08%)</title><rect x="602.3" y="1777" width="1.0" height="15.0" fill="rgb(206,118,33)" rx="2" ry="2" />
<text text-anchor="" x="605.32" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="866.4" y="1809" width="0.9" height="15.0" fill="rgb(244,76,13)" rx="2" ry="2" />
<text text-anchor="" x="869.41" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="228.5" y="1969" width="0.9" height="15.0" fill="rgb(207,140,28)" rx="2" ry="2" />
<text text-anchor="" x="231.52" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.08%)</title><rect x="79.7" y="1793" width="1.0" height="15.0" fill="rgb(233,109,7)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.08%)</title><rect x="964.0" y="1297" width="1.0" height="15.0" fill="rgb(242,94,3)" rx="2" ry="2" />
<text text-anchor="" x="967.04" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (2 samples, 0.16%)</title><rect x="123.4" y="97" width="1.9" height="15.0" fill="rgb(214,119,43)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.08%)</title><rect x="239.7" y="1889" width="0.9" height="15.0" fill="rgb(232,35,34)" rx="2" ry="2" />
<text text-anchor="" x="242.68" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="1099.8" y="1889" width="0.9" height="15.0" fill="rgb(207,89,24)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;mio::poll::RegistrationInner as core::ops::Drop&gt;::drop (2 samples, 0.16%)</title><rect x="55.6" y="2001" width="1.8" height="15.0" fill="rgb(237,7,53)" rx="2" ry="2" />
<text text-anchor="" x="58.56" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (2 samples, 0.16%)</title><rect x="68.6" y="1505" width="1.8" height="15.0" fill="rgb(211,129,52)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.08%)</title><rect x="939.9" y="1761" width="0.9" height="15.0" fill="rgb(254,5,11)" rx="2" ry="2" />
<text text-anchor="" x="942.87" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (2 samples, 0.16%)</title><rect x="543.7" y="1697" width="1.9" height="15.0" fill="rgb(244,152,43)" rx="2" ry="2" />
<text text-anchor="" x="546.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="57.4" y="1809" width="1.0" height="15.0" fill="rgb(217,135,43)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (10 samples, 0.79%)</title><rect x="12.8" y="1937" width="9.3" height="15.0" fill="rgb(243,41,48)" rx="2" ry="2" />
<text text-anchor="" x="15.79" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="873.8" y="1313" width="1.0" height="15.0" fill="rgb(217,110,54)" rx="2" ry="2" />
<text text-anchor="" x="876.85" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (3 samples, 0.24%)</title><rect x="244.3" y="1617" width="2.8" height="15.0" fill="rgb(225,189,5)" rx="2" ry="2" />
<text text-anchor="" x="247.33" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::Events::len (1 samples, 0.08%)</title><rect x="414.5" y="1953" width="0.9" height="15.0" fill="rgb(246,205,8)" rx="2" ry="2" />
<text text-anchor="" x="417.49" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="795.7" y="1761" width="1.0" height="15.0" fill="rgb(234,168,41)" rx="2" ry="2" />
<text text-anchor="" x="798.74" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.16%)</title><rect x="209.9" y="65" width="1.9" height="15.0" fill="rgb(213,195,26)" rx="2" ry="2" />
<text text-anchor="" x="212.92" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.08%)</title><rect x="125.3" y="177" width="0.9" height="15.0" fill="rgb(224,51,2)" rx="2" ry="2" />
<text text-anchor="" x="128.30" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="79.7" y="1745" width="1.0" height="15.0" fill="rgb(220,32,7)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.08%)</title><rect x="290.8" y="1393" width="0.9" height="15.0" fill="rgb(226,25,17)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (2 samples, 0.16%)</title><rect x="222.9" y="1857" width="1.9" height="15.0" fill="rgb(220,6,12)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="969.6" y="1745" width="1.0" height="15.0" fill="rgb(206,64,51)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="227.6" y="1409" width="0.9" height="15.0" fill="rgb(250,17,54)" rx="2" ry="2" />
<text text-anchor="" x="230.59" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (1 samples, 0.08%)</title><rect x="953.8" y="1345" width="0.9" height="15.0" fill="rgb(224,4,22)" rx="2" ry="2" />
<text text-anchor="" x="956.81" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.08%)</title><rect x="107.6" y="1937" width="1.0" height="15.0" fill="rgb(247,82,3)" rx="2" ry="2" />
<text text-anchor="" x="110.64" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="1103.5" y="1889" width="1.0" height="15.0" fill="rgb(230,131,50)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="57.4" y="1873" width="1.0" height="15.0" fill="rgb(228,74,44)" rx="2" ry="2" />
<text text-anchor="" x="60.42" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.08%)</title><rect x="290.8" y="1473" width="0.9" height="15.0" fill="rgb(254,216,43)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (7 samples, 0.55%)</title><rect x="288.0" y="1905" width="6.5" height="15.0" fill="rgb(254,89,38)" rx="2" ry="2" />
<text text-anchor="" x="291.03" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.08%)</title><rect x="59.3" y="1745" width="0.9" height="15.0" fill="rgb(252,154,46)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.08%)</title><rect x="289.9" y="1825" width="0.9" height="15.0" fill="rgb(220,50,0)" rx="2" ry="2" />
<text text-anchor="" x="292.89" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::Write::write_all (17 samples, 1.34%)</title><rect x="923.1" y="1809" width="15.8" height="15.0" fill="rgb(224,174,39)" rx="2" ry="2" />
<text text-anchor="" x="926.13" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (1 samples, 0.08%)</title><rect x="651.6" y="1617" width="0.9" height="15.0" fill="rgb(228,141,49)" rx="2" ry="2" />
<text text-anchor="" x="654.61" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="129.0" y="145" width="1.0" height="15.0" fill="rgb(228,52,22)" rx="2" ry="2" />
<text text-anchor="" x="132.02" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.08%)</title><rect x="563.3" y="1217" width="0.9" height="15.0" fill="rgb(239,123,47)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.08%)</title><rect x="546.5" y="1745" width="1.0" height="15.0" fill="rgb(249,152,32)" rx="2" ry="2" />
<text text-anchor="" x="549.53" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (5 samples, 0.39%)</title><rect x="560.5" y="1697" width="4.6" height="15.0" fill="rgb(249,122,25)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.08%)</title><rect x="53.7" y="1793" width="0.9" height="15.0" fill="rgb(228,175,40)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (1,269 samples, 100%)</title><rect x="10.0" y="2065" width="1180.0" height="15.0" fill="rgb(230,125,29)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (3 samples, 0.24%)</title><rect x="1159.3" y="1905" width="2.8" height="15.0" fill="rgb(235,134,36)" rx="2" ry="2" />
<text text-anchor="" x="1162.31" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.08%)</title><rect x="68.6" y="1441" width="0.9" height="15.0" fill="rgb(205,184,40)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.16%)</title><rect x="827.4" y="1745" width="1.8" height="15.0" fill="rgb(234,44,4)" rx="2" ry="2" />
<text text-anchor="" x="830.35" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.08%)</title><rect x="1133.3" y="1857" width="0.9" height="15.0" fill="rgb(241,140,21)" rx="2" ry="2" />
<text text-anchor="" x="1136.28" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (102 samples, 8.04%)</title><rect x="122.5" y="321" width="94.9" height="15.0" fill="rgb(209,97,36)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.24%)</title><rect x="1159.3" y="1921" width="2.8" height="15.0" fill="rgb(252,137,25)" rx="2" ry="2" />
<text text-anchor="" x="1162.31" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (3 samples, 0.24%)</title><rect x="1134.2" y="1873" width="2.8" height="15.0" fill="rgb(212,213,44)" rx="2" ry="2" />
<text text-anchor="" x="1137.21" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_sock (1 samples, 0.08%)</title><rect x="214.6" y="81" width="0.9" height="15.0" fill="rgb(254,212,26)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.08%)</title><rect x="217.4" y="129" width="0.9" height="15.0" fill="rgb(225,205,19)" rx="2" ry="2" />
<text text-anchor="" x="220.36" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="107.6" y="1889" width="1.0" height="15.0" fill="rgb(215,158,21)" rx="2" ry="2" />
<text text-anchor="" x="110.64" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.08%)</title><rect x="560.5" y="1633" width="0.9" height="15.0" fill="rgb(236,44,39)" rx="2" ry="2" />
<text text-anchor="" x="563.48" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (2 samples, 0.16%)</title><rect x="123.4" y="225" width="1.9" height="15.0" fill="rgb(228,146,51)" rx="2" ry="2" />
<text text-anchor="" x="126.44" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (2 samples, 0.16%)</title><rect x="103.9" y="1905" width="1.9" height="15.0" fill="rgb(248,15,26)" rx="2" ry="2" />
<text text-anchor="" x="106.92" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1617" width="97.6" height="15.0" fill="rgb(207,142,6)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.08%)</title><rect x="792.0" y="1553" width="0.9" height="15.0" fill="rgb(234,12,41)" rx="2" ry="2" />
<text text-anchor="" x="795.02" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (2 samples, 0.16%)</title><rect x="969.6" y="1873" width="1.9" height="15.0" fill="rgb(252,33,31)" rx="2" ry="2" />
<text text-anchor="" x="972.62" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (2 samples, 0.16%)</title><rect x="963.1" y="1377" width="1.9" height="15.0" fill="rgb(222,155,32)" rx="2" ry="2" />
<text text-anchor="" x="966.11" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="219.2" y="1809" width="0.9" height="15.0" fill="rgb(253,32,5)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="219.2" y="1841" width="0.9" height="15.0" fill="rgb(233,130,44)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.08%)</title><rect x="122.5" y="81" width="0.9" height="15.0" fill="rgb(233,222,12)" rx="2" ry="2" />
<text text-anchor="" x="125.51" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (4 samples, 0.32%)</title><rect x="945.4" y="1793" width="3.8" height="15.0" fill="rgb(222,70,6)" rx="2" ry="2" />
<text text-anchor="" x="948.45" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.16%)</title><rect x="554.0" y="1761" width="1.8" height="15.0" fill="rgb(245,79,48)" rx="2" ry="2" />
<text text-anchor="" x="556.97" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (3 samples, 0.24%)</title><rect x="214.6" y="161" width="2.8" height="15.0" fill="rgb(225,135,34)" rx="2" ry="2" />
<text text-anchor="" x="217.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.08%)</title><rect x="693.5" y="1377" width="0.9" height="15.0" fill="rgb(242,139,22)" rx="2" ry="2" />
<text text-anchor="" x="696.45" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.08%)</title><rect x="69.5" y="1313" width="0.9" height="15.0" fill="rgb(206,105,17)" rx="2" ry="2" />
<text text-anchor="" x="72.51" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (4 samples, 0.32%)</title><rect x="290.8" y="1569" width="3.7" height="15.0" fill="rgb(231,132,22)" rx="2" ry="2" />
<text text-anchor="" x="293.82" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="977" width="97.6" height="15.0" fill="rgb(253,41,17)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.08%)</title><rect x="340.1" y="1777" width="0.9" height="15.0" fill="rgb(206,186,24)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.08%)</title><rect x="112.3" y="1937" width="0.9" height="15.0" fill="rgb(254,120,36)" rx="2" ry="2" />
<text text-anchor="" x="115.29" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;F as alloc::boxed::FnBox&lt;A&gt;&gt;::call_box (840 samples, 66.19%)</title><rect x="408.9" y="2001" width="781.1" height="15.0" fill="rgb(239,177,6)" rx="2" ry="2" />
<text text-anchor="" x="411.91" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;F as alloc::boxed::FnBox&lt;A&gt;&gt;::call_box</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.08%)</title><rect x="1175.1" y="1537" width="1.0" height="15.0" fill="rgb(218,169,21)" rx="2" ry="2" />
<text text-anchor="" x="1178.12" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.32%)</title><rect x="102.1" y="1969" width="3.7" height="15.0" fill="rgb(254,42,33)" rx="2" ry="2" />
<text text-anchor="" x="105.06" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (2 samples, 0.16%)</title><rect x="292.7" y="1505" width="1.8" height="15.0" fill="rgb(246,59,26)" rx="2" ry="2" />
<text text-anchor="" x="295.68" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.08%)</title><rect x="74.2" y="1841" width="0.9" height="15.0" fill="rgb(229,101,35)" rx="2" ry="2" />
<text text-anchor="" x="77.16" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="220.1" y="1793" width="1.0" height="15.0" fill="rgb(239,69,53)" rx="2" ry="2" />
<text text-anchor="" x="223.15" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (2 samples, 0.16%)</title><rect x="952.9" y="1713" width="1.8" height="15.0" fill="rgb(243,91,28)" rx="2" ry="2" />
<text text-anchor="" x="955.88" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="70.4" y="1937" width="1.0" height="15.0" fill="rgb(219,157,51)" rx="2" ry="2" />
<text text-anchor="" x="73.44" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_sock (1 samples, 0.08%)</title><rect x="960.3" y="1729" width="1.0" height="15.0" fill="rgb(218,103,49)" rx="2" ry="2" />
<text text-anchor="" x="963.32" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iptable_filter_hook (1 samples, 0.08%)</title><rect x="289.9" y="1777" width="0.9" height="15.0" fill="rgb(213,32,46)" rx="2" ry="2" />
<text text-anchor="" x="292.89" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>collections::fmt::format (2 samples, 0.16%)</title><rect x="572.6" y="1809" width="1.8" height="15.0" fill="rgb(233,200,53)" rx="2" ry="2" />
<text text-anchor="" x="575.57" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (2 samples, 0.16%)</title><rect x="339.2" y="1889" width="1.8" height="15.0" fill="rgb(234,69,25)" rx="2" ry="2" />
<text text-anchor="" x="342.17" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::RegistrationInner::set_readiness (1 samples, 0.08%)</title><rect x="680.4" y="1777" width="1.0" height="15.0" fill="rgb(208,184,32)" rx="2" ry="2" />
<text text-anchor="" x="683.43" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.08%)</title><rect x="56.5" y="1889" width="0.9" height="15.0" fill="rgb(219,168,48)" rx="2" ry="2" />
<text text-anchor="" x="59.49" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="219.2" y="1953" width="0.9" height="15.0" fill="rgb(219,192,6)" rx="2" ry="2" />
<text text-anchor="" x="222.22" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="570.7" y="1697" width="0.9" height="15.0" fill="rgb(243,58,5)" rx="2" ry="2" />
<text text-anchor="" x="573.71" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;futures::stream::map_err::MapErr&lt;S, F&gt; as futures::stream::Stream&gt;::poll (23 samples, 1.81%)</title><rect x="835.7" y="1825" width="21.4" height="15.0" fill="rgb(236,46,21)" rx="2" ry="2" />
<text text-anchor="" x="838.72" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="218.3" y="161" width="0.9" height="15.0" fill="rgb(249,0,35)" rx="2" ry="2" />
<text text-anchor="" x="221.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (2 samples, 0.16%)</title><rect x="222.9" y="1713" width="1.9" height="15.0" fill="rgb(252,150,42)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::write (7 samples, 0.55%)</title><rect x="700.9" y="1777" width="6.5" height="15.0" fill="rgb(212,155,28)" rx="2" ry="2" />
<text text-anchor="" x="703.89" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.08%)</title><rect x="727.9" y="1681" width="0.9" height="15.0" fill="rgb(220,62,47)" rx="2" ry="2" />
<text text-anchor="" x="730.86" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="53.7" y="1473" width="0.9" height="15.0" fill="rgb(253,158,27)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.08%)</title><rect x="340.1" y="1697" width="0.9" height="15.0" fill="rgb(243,187,52)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (4 samples, 0.32%)</title><rect x="95.5" y="1857" width="3.8" height="15.0" fill="rgb(248,142,54)" rx="2" ry="2" />
<text text-anchor="" x="98.55" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="79.7" y="1553" width="1.0" height="15.0" fill="rgb(219,5,25)" rx="2" ry="2" />
<text text-anchor="" x="82.74" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_send (1 samples, 0.08%)</title><rect x="107.6" y="1985" width="1.0" height="15.0" fill="rgb(244,137,5)" rx="2" ry="2" />
<text text-anchor="" x="110.64" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (14 samples, 1.10%)</title><rect x="684.2" y="1793" width="13.0" height="15.0" fill="rgb(252,52,41)" rx="2" ry="2" />
<text text-anchor="" x="687.15" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (2 samples, 0.16%)</title><rect x="226.7" y="1553" width="1.8" height="15.0" fill="rgb(225,222,44)" rx="2" ry="2" />
<text text-anchor="" x="229.66" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.08%)</title><rect x="340.1" y="1601" width="0.9" height="15.0" fill="rgb(241,86,7)" rx="2" ry="2" />
<text text-anchor="" x="343.10" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::channel::SenderCtl::inc (1 samples, 0.08%)</title><rect x="626.5" y="1761" width="0.9" height="15.0" fill="rgb(205,217,5)" rx="2" ry="2" />
<text text-anchor="" x="629.50" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="689" width="97.6" height="15.0" fill="rgb(219,204,33)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="544.7" y="1633" width="0.9" height="15.0" fill="rgb(239,47,11)" rx="2" ry="2" />
<text text-anchor="" x="547.67" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mio::poll::Registration::new (5 samples, 0.39%)</title><rect x="787.4" y="1777" width="4.6" height="15.0" fill="rgb(213,143,47)" rx="2" ry="2" />
<text text-anchor="" x="790.37" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.16%)</title><rect x="68.6" y="1809" width="1.8" height="15.0" fill="rgb(216,129,41)" rx="2" ry="2" />
<text text-anchor="" x="71.58" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (105 samples, 8.27%)</title><rect x="121.6" y="1281" width="97.6" height="15.0" fill="rgb(224,158,23)" rx="2" ry="2" />
<text text-anchor="" x="124.58" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
</svg>
package main
import (
"fmt"
"io"
"log"
"math/rand"
"os"
"strconv"
"sync"
"golang.org/x/net/context"
"google.golang.org/grpc"
pb "../long_tests_pb"
)
const (
address = "localhost:23432"
)
func single_num_arg_or(cmd_args []string, or int) int {
if len(cmd_args) > 1 {
log.Fatalf("too many char_count params: %s", len(cmd_args))
return 0
} else if len(cmd_args) == 1 {
count_tmp, err := strconv.Atoi((cmd_args[0]))
if err != nil {
log.Fatalf("failed to parse int: %v", err)
}
return count_tmp
} else {
return or
}
}
func run_echo(c pb.LongTestsClient, cmd_args []string) {
count := single_num_arg_or(cmd_args, 1)
log.Printf("running %d iterations of echo", count)
ch := make(chan int, 100)
var wg sync.WaitGroup
for i := 0; i < 40; i++ {
go func() {
for {
i := <-ch
payload := fmt.Sprintf("payload %s", i)
r, err := c.Echo(context.Background(), &pb.EchoRequest{Payload: payload})
if err != nil {
log.Fatalf("could not greet: %v", err)
}
if r.Payload != payload {
log.Fatalf("wrong payload: %v", r)
}
wg.Done()
}
}()
}
wg.Add(count)
for i := 0; i < count; i++ {
ch <- count
}
wg.Wait()
log.Printf("done")
}
func run_char_count(c pb.LongTestsClient, cmd_args []string) {
count := single_num_arg_or(cmd_args, 10)
log.Printf("sending %d messages to count", count)
client, err := c.CharCount(context.Background())
if err != nil {
log.Fatalf("failed to start request: %v", err)
}
expected := uint64(0)
for i := 0; i < count; i += 1 {
s := "abcdefghijklmnopqrstuvwxyz0123456789"
part := s[:rand.Intn(len(s))]
client.Send(&pb.CharCountRequest{Part: part})
expected += uint64(len(part))
}
resp, err := client.CloseAndRecv()
if err != nil {
log.Fatalf("failed to get response: %v", err)
}
if expected != resp.CharCount {
log.Fatalf("expected: %s actual: %s", expected, resp.CharCount)
}
log.Printf("successfully got correct answer")
}
func run_random_strings(c pb.LongTestsClient, cmd_args []string) {
count := single_num_arg_or(cmd_args, 10)
log.Printf("requesting %d string from server", count)
client, err := c.RandomStrings(context.Background(), &pb.RandomStringsRequest{Count: uint64(count)})
if err != nil {
log.Fatalf("failed to execute request: %v", err)
}
for {
_, err := client.Recv()
if err == io.EOF {
log.Printf("got eof")
break
}
if err != nil {
log.Fatalf("could not read response part: %v", err)
}
}
}
func main() {
conn, err := grpc.Dial(address, grpc.WithInsecure())
if err != nil {
log.Fatalf("did not connect: %v", err)
}
defer conn.Close()
c := pb.NewLongTestsClient(conn)
if len(os.Args) < 2 {
log.Fatalf("too few args")
}
cmd := os.Args[1]
cmd_args := os.Args[2:]
switch cmd {
case "echo":
run_echo(c, cmd_args)
return
case "char_count":
run_char_count(c, cmd_args)
return
case "random_strings":
run_random_strings(c, cmd_args)
return
default:
log.Fatalf("unknown command: %s", cmd)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment