Skip to content

Instantly share code, notes, and snippets.

@siddontang
Created June 25, 2017 05:23
Show Gist options
  • Save siddontang/7bcc86b9d8cca2b90ae39ba670b1f1d1 to your computer and use it in GitHub Desktop.
Save siddontang/7bcc86b9d8cca2b90ae39ba670b1f1d1 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="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 there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// 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>int_signal (16 samples, 0.12%)</title><rect x="401.8" y="2001" width="1.4" height="15.0" fill="rgb(226,142,26)" rx="2" ry="2" />
<text text-anchor="" x="404.82" 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>timer_callback (5 samples, 0.04%)</title><rect x="698.7" y="1985" width="0.4" height="15.0" fill="rgb(206,154,28)" rx="2" ry="2" />
<text text-anchor="" x="701.65" 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>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="466.2" y="1793" width="0.2" height="15.0" fill="rgb(226,213,10)" rx="2" ry="2" />
<text text-anchor="" x="469.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>__rust_maybe_catch_panic (409 samples, 3.03%)</title><rect x="661.9" y="1985" width="35.8" height="15.0" fill="rgb(254,202,17)" rx="2" ry="2" />
<text text-anchor="" x="664.92" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1393" width="3.2" height="15.0" fill="rgb(245,121,50)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>free (2 samples, 0.01%)</title><rect x="414.3" y="2017" width="0.2" height="15.0" fill="rgb(226,71,49)" rx="2" ry="2" />
<text text-anchor="" x="417.32" 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>rocksdb::MemTable::Add (42 samples, 0.31%)</title><rect x="832.8" y="1809" width="3.7" height="15.0" fill="rgb(242,209,20)" rx="2" ry="2" />
<text text-anchor="" x="835.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>_$LT$grpc..async..CqFuture$LT$T$GT$$u20$as$u20$futures..future..Future$GT$::poll::hd9fbf7b44a132b2c (2 samples, 0.01%)</title><rect x="685.9" y="1889" width="0.2" height="15.0" fill="rgb(249,170,29)" rx="2" ry="2" />
<text text-anchor="" x="688.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>sockfd_lookup_light (2 samples, 0.01%)</title><rect x="512.2" y="1953" width="0.2" height="15.0" fill="rgb(205,70,15)" rx="2" ry="2" />
<text text-anchor="" x="515.19" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1713" width="3.2" height="15.0" fill="rgb(206,13,0)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1793" width="1.8" height="15.0" fill="rgb(251,87,24)" rx="2" ry="2" />
<text text-anchor="" x="13.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>generic_file_aio_write (137 samples, 1.02%)</title><rect x="35.1" y="1665" width="12.0" height="15.0" fill="rgb(248,37,40)" rx="2" ry="2" />
<text text-anchor="" x="38.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1169" width="0.1" height="15.0" fill="rgb(235,128,1)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>pthread_mutex_lock (4 samples, 0.03%)</title><rect x="413.4" y="2001" width="0.4" height="15.0" fill="rgb(244,202,5)" rx="2" ry="2" />
<text text-anchor="" x="416.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>lock_acquire (4 samples, 0.03%)</title><rect x="1075.1" y="1553" width="0.3" height="15.0" fill="rgb(212,172,8)" rx="2" ry="2" />
<text text-anchor="" x="1078.08" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="1377" width="0.1" height="15.0" fill="rgb(223,76,52)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>lock_release (2 samples, 0.01%)</title><rect x="322.8" y="1921" width="0.1" height="15.0" fill="rgb(250,14,13)" rx="2" ry="2" />
<text text-anchor="" x="325.75" 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_slice_malloc (4 samples, 0.03%)</title><rect x="244.9" y="2033" width="0.4" height="15.0" fill="rgb(251,166,0)" rx="2" ry="2" />
<text text-anchor="" x="247.92" 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>mark_buffer_dirty (4 samples, 0.03%)</title><rect x="920.8" y="1521" width="0.4" height="15.0" fill="rgb(239,216,38)" rx="2" ry="2" />
<text text-anchor="" x="923.80" 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>__do_page_fault (7 samples, 0.05%)</title><rect x="398.8" y="1953" width="0.7" height="15.0" fill="rgb(240,43,10)" rx="2" ry="2" />
<text text-anchor="" x="401.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>local_bh_enable (4 samples, 0.03%)</title><rect x="730.9" y="1873" width="0.4" height="15.0" fill="rgb(227,219,38)" rx="2" ry="2" />
<text text-anchor="" x="733.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>jbd2_journal_get_write_access (8 samples, 0.06%)</title><rect x="919.8" y="1473" width="0.7" height="15.0" fill="rgb(230,5,21)" rx="2" ry="2" />
<text text-anchor="" x="922.84" 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>generic_file_buffered_write (36 samples, 0.27%)</title><rect x="982.5" y="1633" width="3.2" height="15.0" fill="rgb(206,74,46)" rx="2" ry="2" />
<text text-anchor="" x="985.55" 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>_raw_spin_unlock_irqrestore (40 samples, 0.30%)</title><rect x="351.6" y="1793" width="3.5" height="15.0" fill="rgb(219,228,1)" rx="2" ry="2" />
<text text-anchor="" x="354.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1121" width="1.9" height="15.0" fill="rgb(239,110,14)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="1131.5" font-size="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_ssse3_back (8 samples, 0.06%)</title><rect x="872.5" y="1857" width="0.7" height="15.0" fill="rgb(237,38,46)" rx="2" ry="2" />
<text text-anchor="" x="875.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>malloc (3 samples, 0.02%)</title><rect x="82.4" y="1873" width="0.3" height="15.0" fill="rgb(229,12,35)" rx="2" ry="2" />
<text text-anchor="" x="85.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1057" width="0.1" height="15.0" fill="rgb(249,207,29)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="1067.5" font-size="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] (3 samples, 0.02%)</title><rect x="831.7" y="337" width="0.2" height="15.0" fill="rgb(230,25,0)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="625" width="0.5" height="15.0" fill="rgb(221,197,8)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>arena_run_heap_remove_first (6 samples, 0.04%)</title><rect x="607.3" y="2017" width="0.5" height="15.0" fill="rgb(214,122,13)" rx="2" ry="2" />
<text text-anchor="" x="610.26" 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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="401" width="1.0" height="15.0" fill="rgb(219,136,0)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>__find_get_block_slow (9 samples, 0.07%)</title><rect x="1138.3" y="1665" width="0.8" height="15.0" fill="rgb(223,5,14)" rx="2" ry="2" />
<text text-anchor="" x="1141.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>tcp_schedule_loss_probe (56 samples, 0.42%)</title><rect x="546.5" y="1841" width="4.9" height="15.0" fill="rgb(253,85,34)" rx="2" ry="2" />
<text text-anchor="" x="549.47" 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_rcv_finish (165 samples, 1.22%)</title><rect x="366.0" y="1617" width="14.4" height="15.0" fill="rgb(220,64,1)" rx="2" ry="2" />
<text text-anchor="" x="368.96" 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>rocksdb::BlockBasedTableBuilder::WriteRawBlock (4 samples, 0.03%)</title><rect x="1134.3" y="1889" width="0.3" height="15.0" fill="rgb(206,109,1)" rx="2" ry="2" />
<text text-anchor="" x="1137.29" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::Valid (3 samples, 0.02%)</title><rect x="1130.9" y="1889" width="0.2" height="15.0" fill="rgb(229,208,5)" rx="2" ry="2" />
<text text-anchor="" x="1133.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>free_pages_and_swap_cache (2 samples, 0.01%)</title><rect x="976.6" y="1905" width="0.2" height="15.0" fill="rgb(208,175,29)" rx="2" ry="2" />
<text text-anchor="" x="979.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>skb_entail (2 samples, 0.01%)</title><rect x="347.0" y="1889" width="0.2" height="15.0" fill="rgb(239,176,37)" rx="2" ry="2" />
<text text-anchor="" x="349.98" 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>do_async_page_fault (2 samples, 0.01%)</title><rect x="306.8" y="1857" width="0.2" height="15.0" fill="rgb(219,176,33)" rx="2" ry="2" />
<text text-anchor="" x="309.84" 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>mpage_submit_page (21 samples, 0.16%)</title><rect x="1139.2" y="1713" width="1.8" height="15.0" fill="rgb(216,166,14)" rx="2" ry="2" />
<text text-anchor="" x="1142.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>free_buffer_head (7 samples, 0.05%)</title><rect x="992.6" y="1649" width="0.6" height="15.0" fill="rgb(250,43,27)" rx="2" ry="2" />
<text text-anchor="" x="995.60" 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] (12 samples, 0.09%)</title><rect x="181.1" y="849" width="1.0" height="15.0" fill="rgb(247,186,3)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="859.5" font-size="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_acquire (3 samples, 0.02%)</title><rect x="211.4" y="1921" width="0.3" height="15.0" fill="rgb(235,156,51)" rx="2" ry="2" />
<text text-anchor="" x="214.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>_$LT$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::hf45f1801d35c10b9 (417 samples, 3.09%)</title><rect x="251.1" y="2001" width="36.5" height="15.0" fill="rgb(240,4,49)" rx="2" ry="2" />
<text text-anchor="" x="254.13" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$kvproto..eraftpb..Message$u20$as$u20$protobuf..core..Message$GT$::merge_from::h07712a0ff18d0d93 (17 samples, 0.13%)</title><rect x="687.3" y="1873" width="1.5" height="15.0" fill="rgb(248,210,24)" rx="2" ry="2" />
<text text-anchor="" x="690.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1233" width="1.0" height="15.0" fill="rgb(239,1,8)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>might_fault (7 samples, 0.05%)</title><rect x="321.6" y="1921" width="0.6" height="15.0" fill="rgb(242,13,21)" rx="2" ry="2" />
<text text-anchor="" x="324.62" 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 (24 samples, 0.18%)</title><rect x="1174.3" y="1857" width="2.1" height="15.0" fill="rgb(218,139,42)" rx="2" ry="2" />
<text text-anchor="" x="1177.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>try_to_wake_up (26 samples, 0.19%)</title><rect x="434.6" y="1921" width="2.3" height="15.0" fill="rgb(213,50,0)" rx="2" ry="2" />
<text text-anchor="" x="437.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>__might_sleep (6 samples, 0.04%)</title><rect x="307.8" y="1841" width="0.5" height="15.0" fill="rgb(249,156,25)" rx="2" ry="2" />
<text text-anchor="" x="310.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>rocksdb::WritableFileWriter::Flush (5 samples, 0.04%)</title><rect x="976.9" y="1793" width="0.4" height="15.0" fill="rgb(211,61,29)" rx="2" ry="2" />
<text text-anchor="" x="979.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::CodedInputStream::read_raw_varint64::hd1c6da326d135def (9 samples, 0.07%)</title><rect x="74.7" y="1809" width="0.8" height="15.0" fill="rgb(248,117,0)" rx="2" ry="2" />
<text text-anchor="" x="77.72" 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>rocksdb::WriteBatchInternal::Put (2 samples, 0.01%)</title><rect x="88.0" y="1825" width="0.2" height="15.0" fill="rgb(237,96,52)" rx="2" ry="2" />
<text text-anchor="" x="91.01" 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::panicking::try::do_call::he58a2512d1240be2 (297 samples, 2.20%)</title><rect x="803.3" y="1969" width="25.9" height="15.0" fill="rgb(251,138,7)" rx="2" ry="2" />
<text text-anchor="" x="806.26" y="1979.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>protobuf::stream::CodedOutputStream::write_uint64::h6910587e0896722d (2 samples, 0.01%)</title><rect x="812.2" y="1825" width="0.2" height="15.0" fill="rgb(248,215,27)" rx="2" ry="2" />
<text text-anchor="" x="815.18" 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_page_fault (3 samples, 0.02%)</title><rect x="50.1" y="1697" width="0.3" height="15.0" fill="rgb(234,94,18)" rx="2" ry="2" />
<text text-anchor="" x="53.14" 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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="1046.3" y="1665" width="0.2" height="15.0" fill="rgb(252,0,19)" rx="2" ry="2" />
<text text-anchor="" x="1049.30" 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>lock_is_held (3 samples, 0.02%)</title><rect x="907.9" y="1425" width="0.2" height="15.0" fill="rgb(240,1,23)" rx="2" ry="2" />
<text text-anchor="" x="910.86" 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>protobuf::stream::CodedInputStream::eof::ha84c0b5026b68aaa (4 samples, 0.03%)</title><rect x="482.9" y="1873" width="0.3" height="15.0" fill="rgb(229,214,7)" rx="2" ry="2" />
<text text-anchor="" x="485.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="977" width="1.8" height="15.0" fill="rgb(247,70,36)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_es_lookup_extent (3 samples, 0.02%)</title><rect x="910.2" y="1537" width="0.3" height="15.0" fill="rgb(233,134,27)" rx="2" ry="2" />
<text text-anchor="" x="913.22" 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>sk_stream_alloc_skb (30 samples, 0.22%)</title><rect x="344.4" y="1889" width="2.6" height="15.0" fill="rgb(232,80,51)" rx="2" ry="2" />
<text text-anchor="" x="347.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>_$LT$kvproto..eraftpb..HardState$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::h57c92b215419377e (6 samples, 0.04%)</title><rect x="881.0" y="1857" width="0.5" height="15.0" fill="rgb(231,154,6)" rx="2" ry="2" />
<text text-anchor="" x="884.01" 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_message_into::h39239af54e4247c6 (20 samples, 0.15%)</title><rect x="74.0" y="1857" width="1.8" height="15.0" fill="rgb(242,14,39)" rx="2" ry="2" />
<text text-anchor="" x="77.02" 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_rx_internal (2 samples, 0.01%)</title><rect x="311.5" y="1697" width="0.1" height="15.0" fill="rgb(240,50,19)" rx="2" ry="2" />
<text text-anchor="" x="314.47" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1665" width="1.0" height="15.0" fill="rgb(215,179,21)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>lock_is_held (3 samples, 0.02%)</title><rect x="755.6" y="1569" width="0.3" height="15.0" fill="rgb(251,97,6)" rx="2" ry="2" />
<text text-anchor="" x="758.59" 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] (21 samples, 0.16%)</title><rect x="10.3" y="113" width="1.8" height="15.0" fill="rgb(229,77,12)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>__test_set_page_writeback (2 samples, 0.01%)</title><rect x="990.0" y="1665" width="0.2" height="15.0" fill="rgb(206,197,52)" rx="2" ry="2" />
<text text-anchor="" x="992.98" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="801" width="0.5" height="15.0" fill="rgb(230,136,23)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="811.5" font-size="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$kvproto..metapb..RegionEpoch$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::hec4bb07ff02c4931 (3 samples, 0.02%)</title><rect x="265.6" y="1841" width="0.2" height="15.0" fill="rgb(242,126,18)" rx="2" ry="2" />
<text text-anchor="" x="268.56" 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 (2 samples, 0.01%)</title><rect x="108.7" y="1457" width="0.1" height="15.0" fill="rgb(238,85,34)" rx="2" ry="2" />
<text text-anchor="" x="111.65" 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>mod_timer (9 samples, 0.07%)</title><rect x="319.6" y="1489" width="0.8" height="15.0" fill="rgb(248,137,20)" rx="2" ry="2" />
<text text-anchor="" x="322.61" 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>rocksdb::DBImpl::Write (50 samples, 0.37%)</title><rect x="832.4" y="1889" width="4.4" height="15.0" fill="rgb(234,169,42)" rx="2" ry="2" />
<text text-anchor="" x="835.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>__xfrm_policy_check2.constprop.42 (2 samples, 0.01%)</title><rect x="567.9" y="1553" width="0.2" height="15.0" fill="rgb(251,121,17)" rx="2" ry="2" />
<text text-anchor="" x="570.90" 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>netif_receive_skb_internal (2 samples, 0.01%)</title><rect x="497.1" y="1841" width="0.2" height="15.0" fill="rgb(252,64,0)" rx="2" ry="2" />
<text text-anchor="" x="500.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>sysret_check (2 samples, 0.01%)</title><rect x="703.6" y="2001" width="0.2" height="15.0" fill="rgb(205,155,11)" rx="2" ry="2" />
<text text-anchor="" x="706.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>_$LT$kvproto..metapb..Peer$u20$as$u20$protobuf..core..Message$GT$::merge_from::h2c70b8528d5dc36e (15 samples, 0.11%)</title><rect x="280.1" y="1857" width="1.3" height="15.0" fill="rgb(208,217,7)" rx="2" ry="2" />
<text text-anchor="" x="283.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="929" width="1.8" height="15.0" fill="rgb(213,179,16)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="939.5" font-size="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.01%)</title><rect x="1160.3" y="961" width="0.1" height="15.0" fill="rgb(216,146,20)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::FullFilterBlockBuilder::Add (4 samples, 0.03%)</title><rect x="986.1" y="1873" width="0.4" height="15.0" fill="rgb(210,42,38)" rx="2" ry="2" />
<text text-anchor="" x="989.13" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1921" width="3.2" height="15.0" fill="rgb(249,28,48)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1713" width="0.2" height="15.0" fill="rgb(214,91,6)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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_sync_write (6 samples, 0.04%)</title><rect x="473.0" y="1793" width="0.5" height="15.0" fill="rgb(222,106,12)" rx="2" ry="2" />
<text text-anchor="" x="476.01" 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>rocksdb::FullFilterBlockBuilder::Finish (2 samples, 0.01%)</title><rect x="986.7" y="1873" width="0.1" height="15.0" fill="rgb(208,120,19)" rx="2" ry="2" />
<text text-anchor="" x="989.66" 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>grpc_chttp2_data_parser_parse (2 samples, 0.01%)</title><rect x="290.7" y="1985" width="0.1" height="15.0" fill="rgb(234,53,26)" rx="2" ry="2" />
<text text-anchor="" x="293.66" 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>__GI___unlink (9 samples, 0.07%)</title><rect x="979.4" y="1937" width="0.8" height="15.0" fill="rgb(220,112,28)" rx="2" ry="2" />
<text text-anchor="" x="982.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1393" width="1.0" height="15.0" fill="rgb(233,71,4)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1281" width="0.5" height="15.0" fill="rgb(238,205,20)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>[libpthread-2.17.so] (25 samples, 0.19%)</title><rect x="1186.0" y="1905" width="2.2" height="15.0" fill="rgb(218,199,28)" rx="2" ry="2" />
<text text-anchor="" x="1188.98" 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] (37 samples, 0.27%)</title><rect x="837.4" y="833" width="3.2" height="15.0" fill="rgb(242,112,19)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="843.5" font-size="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] (37 samples, 0.27%)</title><rect x="837.4" y="993" width="3.2" height="15.0" fill="rgb(240,218,48)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="1003.5" font-size="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_bytes::h83b9049635bb7ba2 (3 samples, 0.02%)</title><rect x="952.5" y="1841" width="0.2" height="15.0" fill="rgb(234,126,19)" rx="2" ry="2" />
<text text-anchor="" x="955.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>gpr_mpscq_pop (5 samples, 0.04%)</title><rect x="621.3" y="2017" width="0.5" height="15.0" fill="rgb(211,30,31)" rx="2" ry="2" />
<text text-anchor="" x="624.34" 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>sk_filter (10 samples, 0.07%)</title><rect x="569.7" y="1553" width="0.9" height="15.0" fill="rgb(216,183,41)" rx="2" ry="2" />
<text text-anchor="" x="572.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>protobuf::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (5 samples, 0.04%)</title><rect x="74.2" y="1825" width="0.4" height="15.0" fill="rgb(216,131,20)" rx="2" ry="2" />
<text text-anchor="" x="77.20" 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>pi_unref (10 samples, 0.07%)</title><rect x="635.6" y="2017" width="0.9" height="15.0" fill="rgb(239,107,26)" rx="2" ry="2" />
<text text-anchor="" x="638.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>__tcp_ack_snd_check (6 samples, 0.04%)</title><rect x="161.5" y="1521" width="0.5" height="15.0" fill="rgb(207,28,28)" rx="2" ry="2" />
<text text-anchor="" x="164.48" 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>find_task_by_vpid (2 samples, 0.01%)</title><rect x="620.1" y="1921" width="0.2" height="15.0" fill="rgb(241,198,32)" rx="2" ry="2" />
<text text-anchor="" x="623.12" 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>__audit_syscall_entry (2 samples, 0.01%)</title><rect x="99.8" y="1985" width="0.2" height="15.0" fill="rgb(206,1,11)" rx="2" ry="2" />
<text text-anchor="" x="102.82" 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_write (5 samples, 0.04%)</title><rect x="976.9" y="1713" width="0.4" height="15.0" fill="rgb(214,61,7)" rx="2" ry="2" />
<text text-anchor="" x="979.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>__memcmp_sse4_1 (3 samples, 0.02%)</title><rect x="929.2" y="1665" width="0.3" height="15.0" fill="rgb(254,199,39)" rx="2" ry="2" />
<text text-anchor="" x="932.20" 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$kvproto..metapb..Peer$u20$as$u20$protobuf..core..Message$GT$::merge_from::h2c70b8528d5dc36e (2 samples, 0.01%)</title><rect x="695.0" y="1841" width="0.2" height="15.0" fill="rgb(234,173,53)" rx="2" ry="2" />
<text text-anchor="" x="697.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>do_raw_spin_lock (8 samples, 0.06%)</title><rect x="729.2" y="1857" width="0.7" height="15.0" fill="rgb(225,125,52)" rx="2" ry="2" />
<text text-anchor="" x="732.18" 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_internal (3 samples, 0.02%)</title><rect x="737.3" y="1729" width="0.3" height="15.0" fill="rgb(241,50,10)" rx="2" ry="2" />
<text text-anchor="" x="740.31" 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_raw_varint64::hd1c6da326d135def (4 samples, 0.03%)</title><rect x="484.2" y="1825" width="0.4" height="15.0" fill="rgb(239,159,3)" rx="2" ry="2" />
<text text-anchor="" x="487.20" 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>__vdso_clock_gettime (14 samples, 0.10%)</title><rect x="965.6" y="1857" width="1.2" height="15.0" fill="rgb(213,1,24)" rx="2" ry="2" />
<text text-anchor="" x="968.58" 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] (21 samples, 0.16%)</title><rect x="592.2" y="721" width="1.9" height="15.0" fill="rgb(211,5,6)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="731.5" font-size="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] (3 samples, 0.02%)</title><rect x="831.7" y="1841" width="0.2" height="15.0" fill="rgb(210,28,2)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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_futex (3 samples, 0.02%)</title><rect x="71.2" y="1777" width="0.3" height="15.0" fill="rgb(205,27,0)" rx="2" ry="2" />
<text text-anchor="" x="74.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>fget_light (4 samples, 0.03%)</title><rect x="779.6" y="1953" width="0.3" height="15.0" fill="rgb(227,35,37)" rx="2" ry="2" />
<text text-anchor="" x="782.55" 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>finish_task_switch (7 samples, 0.05%)</title><rect x="778.8" y="1873" width="0.6" height="15.0" fill="rgb(212,220,41)" rx="2" ry="2" />
<text text-anchor="" x="781.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>__skb_clone (2 samples, 0.01%)</title><rect x="765.6" y="1809" width="0.1" height="15.0" fill="rgb(207,127,12)" rx="2" ry="2" />
<text text-anchor="" x="768.56" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1921" width="1.9" height="15.0" fill="rgb(241,36,38)" rx="2" ry="2" />
<text text-anchor="" x="595.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>generic_file_buffered_write (139 samples, 1.03%)</title><rect x="909.3" y="1601" width="12.2" height="15.0" fill="rgb(238,137,50)" rx="2" ry="2" />
<text text-anchor="" x="912.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>protobuf::stream::CodedInputStream::read_raw_byte::ha2cb1055a4a0050e (3 samples, 0.02%)</title><rect x="76.4" y="1793" width="0.2" height="15.0" fill="rgb(205,131,8)" rx="2" ry="2" />
<text text-anchor="" x="79.38" 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>try_to_free_buffers (9 samples, 0.07%)</title><rect x="992.4" y="1665" width="0.8" height="15.0" fill="rgb(208,12,21)" rx="2" ry="2" />
<text text-anchor="" x="995.43" 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>grpc_completion_queue_next (4 samples, 0.03%)</title><rect x="651.1" y="2033" width="0.3" height="15.0" fill="rgb(214,45,51)" rx="2" ry="2" />
<text text-anchor="" x="654.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>_raw_spin_unlock_irq (2 samples, 0.01%)</title><rect x="428.1" y="1921" width="0.1" height="15.0" fill="rgb(252,162,18)" rx="2" ry="2" />
<text text-anchor="" x="431.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>_$LT$protobuf..singular..SingularPtrField$LT$T$GT$$GT$::set_default::h5a1843da2b2c55b3 (2 samples, 0.01%)</title><rect x="481.5" y="1873" width="0.2" height="15.0" fill="rgb(213,108,41)" rx="2" ry="2" />
<text text-anchor="" x="484.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>rocksdb::DBImpl::BackgroundFlush (93 samples, 0.69%)</title><rect x="982.2" y="1969" width="8.1" height="15.0" fill="rgb(232,119,12)" rx="2" ry="2" />
<text text-anchor="" x="985.20" 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>grpc_chttp2_encode_data (5 samples, 0.04%)</title><rect x="242.6" y="2033" width="0.5" height="15.0" fill="rgb(253,32,23)" rx="2" ry="2" />
<text text-anchor="" x="245.64" 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>timer_callback (2 samples, 0.01%)</title><rect x="698.9" y="1905" width="0.2" height="15.0" fill="rgb(251,157,29)" rx="2" ry="2" />
<text text-anchor="" x="701.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>incoming_byte_stream_next_locked (5 samples, 0.04%)</title><rect x="246.4" y="2033" width="0.4" height="15.0" fill="rgb(252,127,23)" rx="2" ry="2" />
<text text-anchor="" x="249.40" 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>mark_page_accessed (8 samples, 0.06%)</title><rect x="1124.9" y="1665" width="0.7" height="15.0" fill="rgb(212,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1127.93" 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>schedule (12 samples, 0.09%)</title><rect x="854.1" y="1809" width="1.0" height="15.0" fill="rgb(222,51,12)" rx="2" ry="2" />
<text text-anchor="" x="857.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>tlb_flush_mmu.part.57 (5 samples, 0.04%)</title><rect x="194.5" y="1937" width="0.4" height="15.0" fill="rgb(236,8,49)" rx="2" ry="2" />
<text text-anchor="" x="197.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1633" width="0.5" height="15.0" fill="rgb(245,86,49)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="241" width="1.1" height="15.0" fill="rgb(215,131,3)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1473" width="0.1" height="15.0" fill="rgb(240,78,0)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>[unknown] (2 samples, 0.01%)</title><rect x="830.0" y="2001" width="0.2" height="15.0" fill="rgb(216,158,23)" rx="2" ry="2" />
<text text-anchor="" x="833.02" 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] (44 samples, 0.33%)</title><rect x="390.2" y="2017" width="3.8" height="15.0" fill="rgb(245,112,29)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>grpc_slice_split_head (2 samples, 0.01%)</title><rect x="800.0" y="2033" width="0.2" height="15.0" fill="rgb(239,165,4)" rx="2" ry="2" />
<text text-anchor="" x="803.02" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1297" width="0.1" height="15.0" fill="rgb(230,200,27)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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$tikv..raftstore..store..store..Store$LT$T$C$$u20$C$GT$$u20$as$u20$mio..handler..Handler$GT$::tick::ha71ee1c046f48f74 (950 samples, 7.04%)</title><rect x="876.9" y="1905" width="83.1" height="15.0" fill="rgb(227,7,35)" rx="2" ry="2" />
<text text-anchor="" x="879.90" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$tikv..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irq (6 samples, 0.04%)</title><rect x="207.3" y="1857" width="0.5" height="15.0" fill="rgb(223,39,13)" rx="2" ry="2" />
<text text-anchor="" x="210.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>__schedule (7 samples, 0.05%)</title><rect x="407.2" y="1889" width="0.7" height="15.0" fill="rgb(212,40,42)" rx="2" ry="2" />
<text text-anchor="" x="410.24" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1185" width="1.1" height="15.0" fill="rgb(232,113,35)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1745" width="1.0" height="15.0" fill="rgb(239,85,29)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>rocksdb::MemTable::KeyComparator::operator (12 samples, 0.09%)</title><rect x="835.3" y="1729" width="1.0" height="15.0" fill="rgb(253,161,6)" rx="2" ry="2" />
<text text-anchor="" x="838.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>lock_acquire (3 samples, 0.02%)</title><rect x="202.1" y="1905" width="0.2" height="15.0" fill="rgb(253,7,8)" rx="2" ry="2" />
<text text-anchor="" x="205.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>incoming_byte_stream_update_flow_control (2 samples, 0.01%)</title><rect x="495.7" y="2001" width="0.1" height="15.0" fill="rgb(209,201,14)" rx="2" ry="2" />
<text text-anchor="" x="498.66" 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>__kfree_skb (7 samples, 0.05%)</title><rect x="739.8" y="1809" width="0.7" height="15.0" fill="rgb(212,185,27)" rx="2" ry="2" />
<text text-anchor="" x="742.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>rocksdb::log::Writer::AddRecord (2 samples, 0.01%)</title><rect x="832.4" y="1841" width="0.2" height="15.0" fill="rgb(233,114,9)" rx="2" ry="2" />
<text text-anchor="" x="835.38" 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>set_current_blocked (9 samples, 0.07%)</title><rect x="775.2" y="1969" width="0.8" height="15.0" fill="rgb(213,197,16)" rx="2" ry="2" />
<text text-anchor="" x="778.18" 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>std::string::append (3 samples, 0.02%)</title><rect x="841.5" y="2001" width="0.2" height="15.0" fill="rgb(245,135,38)" rx="2" ry="2" />
<text text-anchor="" x="844.47" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1873" width="0.2" height="15.0" fill="rgb(222,134,52)" rx="2" ry="2" />
<text text-anchor="" x="834.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>rocksdb::BlockBasedTable::BlockEntryIteratorState::NewSecondaryIterator (15 samples, 0.11%)</title><rect x="1129.5" y="1857" width="1.3" height="15.0" fill="rgb(238,159,0)" rx="2" ry="2" />
<text text-anchor="" x="1132.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>alloc_pages_current (13 samples, 0.10%)</title><rect x="1085.0" y="1601" width="1.1" height="15.0" fill="rgb(246,222,43)" rx="2" ry="2" />
<text text-anchor="" x="1087.96" 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_is_held (2 samples, 0.01%)</title><rect x="35.3" y="1457" width="0.2" height="15.0" fill="rgb(245,64,17)" rx="2" ry="2" />
<text text-anchor="" x="38.28" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1057" width="1.9" height="15.0" fill="rgb(252,78,19)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="1067.5" font-size="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_page_fault (2 samples, 0.01%)</title><rect x="986.2" y="1761" width="0.2" height="15.0" fill="rgb(206,28,1)" rx="2" ry="2" />
<text text-anchor="" x="989.22" 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>system_call_fastpath (27 samples, 0.20%)</title><rect x="190.4" y="2001" width="2.4" height="15.0" fill="rgb(209,6,48)" rx="2" ry="2" />
<text text-anchor="" x="193.43" 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>lock_is_held (2 samples, 0.01%)</title><rect x="1094.5" y="1489" width="0.2" height="15.0" fill="rgb(228,19,6)" rx="2" ry="2" />
<text text-anchor="" x="1097.49" 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>__wake_up_sync_key (80 samples, 0.59%)</title><rect x="572.2" y="1505" width="7.0" height="15.0" fill="rgb(250,1,39)" rx="2" ry="2" />
<text text-anchor="" x="575.19" 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>protobuf::rt::read_singular_message_into::h39239af54e4247c6 (11 samples, 0.08%)</title><rect x="481.9" y="1873" width="1.0" height="15.0" fill="rgb(226,22,15)" rx="2" ry="2" />
<text text-anchor="" x="484.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>start_xmit (11 samples, 0.08%)</title><rect x="150.1" y="1697" width="1.0" height="15.0" fill="rgb(227,35,51)" rx="2" ry="2" />
<text text-anchor="" x="153.11" 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>rocksdb::rocksdb::DB::cf_handle::hc2e29569a47c95aa (2 samples, 0.01%)</title><rect x="954.4" y="1857" width="0.2" height="15.0" fill="rgb(208,224,8)" rx="2" ry="2" />
<text text-anchor="" x="957.38" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::Next (132 samples, 0.98%)</title><rect x="1117.8" y="1889" width="11.5" height="15.0" fill="rgb(224,22,5)" rx="2" ry="2" />
<text text-anchor="" x="1120.76" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1281" width="1.9" height="15.0" fill="rgb(244,26,32)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>system_call_fastpath (2 samples, 0.01%)</title><rect x="976.6" y="1985" width="0.2" height="15.0" fill="rgb(234,49,17)" rx="2" ry="2" />
<text text-anchor="" x="979.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>tcp_try_coalesce (2 samples, 0.01%)</title><rect x="380.2" y="1505" width="0.2" height="15.0" fill="rgb(254,10,30)" rx="2" ry="2" />
<text text-anchor="" x="383.21" 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>finish_batch_step (2 samples, 0.01%)</title><rect x="620.9" y="2017" width="0.2" height="15.0" fill="rgb(226,103,50)" rx="2" ry="2" />
<text text-anchor="" x="623.90" 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>lock_release (2 samples, 0.01%)</title><rect x="369.6" y="1537" width="0.2" height="15.0" fill="rgb(246,138,8)" rx="2" ry="2" />
<text text-anchor="" x="372.63" 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] (37 samples, 0.27%)</title><rect x="837.4" y="705" width="3.2" height="15.0" fill="rgb(242,46,23)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="715.5" font-size="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_release (4 samples, 0.03%)</title><rect x="1122.0" y="1649" width="0.4" height="15.0" fill="rgb(214,171,15)" rx="2" ry="2" />
<text text-anchor="" x="1125.04" 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_write_xmit (427 samples, 3.16%)</title><rect x="347.5" y="1857" width="37.4" height="15.0" fill="rgb(230,143,45)" rx="2" ry="2" />
<text text-anchor="" x="350.51" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tcp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_mark_inode_dirty (5 samples, 0.04%)</title><rect x="985.2" y="1553" width="0.4" height="15.0" fill="rgb(240,218,46)" rx="2" ry="2" />
<text text-anchor="" x="988.17" 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>parse_indexed_field (2 samples, 0.01%)</title><rect x="428.5" y="2017" width="0.2" height="15.0" fill="rgb(246,224,41)" rx="2" ry="2" />
<text text-anchor="" x="431.49" 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>rocksdb::MergingIterator::Next (3 samples, 0.02%)</title><rect x="1145.1" y="1921" width="0.3" height="15.0" fill="rgb(234,105,11)" rx="2" ry="2" />
<text text-anchor="" x="1148.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>__might_sleep (5 samples, 0.04%)</title><rect x="306.4" y="1873" width="0.4" height="15.0" fill="rgb(232,68,27)" rx="2" ry="2" />
<text text-anchor="" x="309.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>sys_futex (2 samples, 0.01%)</title><rect x="208.0" y="1969" width="0.2" height="15.0" fill="rgb(250,188,23)" rx="2" ry="2" />
<text text-anchor="" x="211.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1105" width="1.8" height="15.0" fill="rgb(238,39,21)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="1115.5" font-size="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_iovec (29 samples, 0.21%)</title><rect x="710.6" y="1889" width="2.6" height="15.0" fill="rgb(254,135,19)" rx="2" ry="2" />
<text text-anchor="" x="713.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="705" width="0.1" height="15.0" fill="rgb(245,221,51)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="715.5" font-size="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] (13 samples, 0.10%)</title><rect x="390.2" y="1169" width="1.1" height="15.0" fill="rgb(214,48,8)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>rocksdb::BlockIter::BinarySeek (3 samples, 0.02%)</title><rect x="896.9" y="1713" width="0.3" height="15.0" fill="rgb(210,100,29)" rx="2" ry="2" />
<text text-anchor="" x="899.92" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1009" width="1.9" height="15.0" fill="rgb(205,228,8)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>slice_buffer_stream_next (3 samples, 0.02%)</title><rect x="188.7" y="2001" width="0.2" height="15.0" fill="rgb(254,205,22)" rx="2" ry="2" />
<text text-anchor="" x="191.68" 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] (37 samples, 0.27%)</title><rect x="837.4" y="2001" width="3.2" height="15.0" fill="rgb(207,99,52)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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 (15 samples, 0.11%)</title><rect x="1072.3" y="1585" width="1.3" height="15.0" fill="rgb(230,228,25)" rx="2" ry="2" />
<text text-anchor="" x="1075.28" 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>async_page_fault (2 samples, 0.01%)</title><rect x="94.6" y="1969" width="0.1" height="15.0" fill="rgb(239,162,18)" rx="2" ry="2" />
<text text-anchor="" x="97.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>lock_acquire (5 samples, 0.04%)</title><rect x="179.4" y="1921" width="0.4" height="15.0" fill="rgb(232,3,51)" rx="2" ry="2" />
<text text-anchor="" x="182.41" 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] (37 samples, 0.27%)</title><rect x="837.4" y="689" width="3.2" height="15.0" fill="rgb(229,132,12)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="699.5" font-size="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_is_held (5 samples, 0.04%)</title><rect x="306.4" y="1857" width="0.4" height="15.0" fill="rgb(224,45,54)" rx="2" ry="2" />
<text text-anchor="" x="309.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>find_get_page (2 samples, 0.01%)</title><rect x="990.2" y="1681" width="0.1" height="15.0" fill="rgb(248,214,18)" rx="2" ry="2" />
<text text-anchor="" x="993.16" 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>grab_cache_page_write_begin (3 samples, 0.02%)</title><rect x="1137.6" y="1697" width="0.3" height="15.0" fill="rgb(230,48,52)" rx="2" ry="2" />
<text text-anchor="" x="1140.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] (37 samples, 0.27%)</title><rect x="837.4" y="1745" width="3.2" height="15.0" fill="rgb(232,1,41)" rx="2" ry="2" />
<text text-anchor="" x="840.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>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="10.1" y="2033" width="0.2" height="15.0" fill="rgb(207,93,38)" rx="2" ry="2" />
<text text-anchor="" x="13.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>grpc_slice_buffer_add_indexed (2 samples, 0.01%)</title><rect x="422.8" y="2017" width="0.2" height="15.0" fill="rgb(245,5,20)" rx="2" ry="2" />
<text text-anchor="" x="425.81" 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$futures..sync..mpsc..queue..Queue$LT$T$GT$$GT$::pop::hf28092da0f4c6151 (4 samples, 0.03%)</title><rect x="679.7" y="1905" width="0.3" height="15.0" fill="rgb(214,156,24)" rx="2" ry="2" />
<text text-anchor="" x="682.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>_IO_vasprintf (2 samples, 0.01%)</title><rect x="640.8" y="2033" width="0.1" height="15.0" fill="rgb(232,23,21)" rx="2" ry="2" />
<text text-anchor="" x="643.76" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1937" width="0.1" height="15.0" fill="rgb(231,41,12)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>ext4_da_invalidatepage (53 samples, 0.39%)</title><rect x="1153.3" y="1745" width="4.6" height="15.0" fill="rgb(254,179,37)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>rocksdb::(anonymous namespace)::FullFilterBitsBuilder::AddKey (7 samples, 0.05%)</title><rect x="1104.6" y="1873" width="0.7" height="15.0" fill="rgb(240,16,18)" rx="2" ry="2" />
<text text-anchor="" x="1107.64" 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] (13 samples, 0.10%)</title><rect x="390.2" y="449" width="1.1" height="15.0" fill="rgb(212,161,49)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>static_obj (18 samples, 0.13%)</title><rect x="37.8" y="1537" width="1.6" height="15.0" fill="rgb(223,45,18)" rx="2" ry="2" />
<text text-anchor="" x="40.81" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1233" width="3.2" height="15.0" fill="rgb(208,139,1)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1537" width="1.1" height="15.0" fill="rgb(253,118,17)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1553" width="1.0" height="15.0" fill="rgb(243,83,31)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>__dev_kfree_skb_any (4 samples, 0.03%)</title><rect x="558.4" y="1665" width="0.3" height="15.0" fill="rgb(212,226,52)" rx="2" ry="2" />
<text text-anchor="" x="561.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>pthread_cond_wait@@GLIBC_2.3.2 (3 samples, 0.02%)</title><rect x="71.2" y="1809" width="0.3" height="15.0" fill="rgb(216,126,44)" rx="2" ry="2" />
<text text-anchor="" x="74.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>sys_tgkill (31 samples, 0.23%)</title><rect x="410.7" y="1969" width="2.7" height="15.0" fill="rgb(241,127,17)" rx="2" ry="2" />
<text text-anchor="" x="413.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>__GI___libc_write (14 samples, 0.10%)</title><rect x="182.1" y="2001" width="1.2" height="15.0" fill="rgb(225,116,17)" rx="2" ry="2" />
<text text-anchor="" x="185.12" 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] (3 samples, 0.02%)</title><rect x="791.4" y="1985" width="0.2" height="15.0" fill="rgb(214,218,44)" rx="2" ry="2" />
<text text-anchor="" x="794.36" 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>offload (11 samples, 0.08%)</title><rect x="247.4" y="2033" width="0.9" height="15.0" fill="rgb(234,189,42)" rx="2" ry="2" />
<text text-anchor="" x="250.36" 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>rocksdb::MemTableIterator::key (15 samples, 0.11%)</title><rect x="987.7" y="1857" width="1.3" height="15.0" fill="rgb(224,213,3)" rx="2" ry="2" />
<text text-anchor="" x="990.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>_raw_spin_unlock_irqrestore (6 samples, 0.04%)</title><rect x="853.5" y="1793" width="0.6" height="15.0" fill="rgb(218,166,20)" rx="2" ry="2" />
<text text-anchor="" x="856.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] (11 samples, 0.08%)</title><rect x="770.0" y="241" width="1.0" height="15.0" fill="rgb(236,83,17)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>do_futex (2 samples, 0.01%)</title><rect x="596.5" y="1953" width="0.2" height="15.0" fill="rgb(227,97,50)" rx="2" ry="2" />
<text text-anchor="" x="599.50" 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>receiving_stream_ready (2 samples, 0.01%)</title><rect x="230.2" y="2017" width="0.2" height="15.0" fill="rgb(224,140,40)" rx="2" ry="2" />
<text text-anchor="" x="233.22" 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>rocksdb::WritableFileWriter::Flush (335 samples, 2.48%)</title><rect x="1069.5" y="1825" width="29.3" height="15.0" fill="rgb(243,221,38)" rx="2" ry="2" />
<text text-anchor="" x="1072.48" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ro..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (18 samples, 0.13%)</title><rect x="509.9" y="1489" width="1.6" height="15.0" fill="rgb(254,0,48)" rx="2" ry="2" />
<text text-anchor="" x="512.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>mutex_lock_nested (8 samples, 0.06%)</title><rect x="905.7" y="1681" width="0.7" height="15.0" fill="rgb(209,131,30)" rx="2" ry="2" />
<text text-anchor="" x="908.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>prometheus::push::push::h4895a8f450d1a242 (2 samples, 0.01%)</title><rect x="831.1" y="1921" width="0.1" height="15.0" fill="rgb(211,162,18)" rx="2" ry="2" />
<text text-anchor="" x="834.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1953" width="0.1" height="15.0" fill="rgb(246,220,27)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>std::io::Write::write_all::h713455ebadeaf469 (2 samples, 0.01%)</title><rect x="86.3" y="1793" width="0.1" height="15.0" fill="rgb(215,133,18)" rx="2" ry="2" />
<text text-anchor="" x="89.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>lock_acquire (10 samples, 0.07%)</title><rect x="521.0" y="1857" width="0.9" height="15.0" fill="rgb(239,197,4)" rx="2" ry="2" />
<text text-anchor="" x="524.02" 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>evict (34 samples, 0.25%)</title><rect x="990.3" y="1857" width="3.0" height="15.0" fill="rgb(253,38,32)" rx="2" ry="2" />
<text text-anchor="" x="993.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>tcp_clean_rtx_queue (44 samples, 0.33%)</title><rect x="718.1" y="1521" width="3.8" height="15.0" fill="rgb(219,49,11)" rx="2" ry="2" />
<text text-anchor="" x="721.07" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="785" width="0.1" height="15.0" fill="rgb(243,179,35)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_lock_wait (9 samples, 0.07%)</title><rect x="602.5" y="2017" width="0.8" height="15.0" fill="rgb(237,44,19)" rx="2" ry="2" />
<text text-anchor="" x="605.54" 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>grpc_closure_run (2 samples, 0.01%)</title><rect x="444.4" y="2033" width="0.2" height="15.0" fill="rgb(237,122,30)" rx="2" ry="2" />
<text text-anchor="" x="447.41" 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>system_call_fastpath (161 samples, 1.19%)</title><rect x="33.5" y="1745" width="14.1" height="15.0" fill="rgb(229,144,13)" rx="2" ry="2" />
<text text-anchor="" x="36.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>__radix_tree_lookup (4 samples, 0.03%)</title><rect x="1129.7" y="1649" width="0.3" height="15.0" fill="rgb(229,140,29)" rx="2" ry="2" />
<text text-anchor="" x="1132.65" 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>_raw_spin_unlock_irq (29 samples, 0.21%)</title><rect x="198.9" y="1937" width="2.5" height="15.0" fill="rgb(246,213,37)" rx="2" ry="2" />
<text text-anchor="" x="201.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1937" width="1.8" height="15.0" fill="rgb(244,225,28)" rx="2" ry="2" />
<text text-anchor="" x="13.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1121" width="0.1" height="15.0" fill="rgb(236,211,44)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="1131.5" font-size="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.01%)</title><rect x="187.7" y="1937" width="0.2" height="15.0" fill="rgb(231,120,8)" rx="2" ry="2" />
<text text-anchor="" x="190.72" 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>system_call_fastpath (5 samples, 0.04%)</title><rect x="408.7" y="1985" width="0.5" height="15.0" fill="rgb(245,33,27)" rx="2" ry="2" />
<text text-anchor="" x="411.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>grpc::server::ServiceBuilder::add_unary_handler::_$u7b$$u7b$closure$u7d$$u7d$::h2986f36ad2fb64c4 (26 samples, 0.19%)</title><rect x="826.8" y="1937" width="2.3" height="15.0" fill="rgb(217,134,54)" rx="2" ry="2" />
<text text-anchor="" x="829.78" 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>pollset_work (6 samples, 0.04%)</title><rect x="636.5" y="2017" width="0.5" height="15.0" fill="rgb(213,8,12)" rx="2" ry="2" />
<text text-anchor="" x="639.47" 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>wake_up_state (3 samples, 0.02%)</title><rect x="966.8" y="1761" width="0.3" height="15.0" fill="rgb(209,147,36)" rx="2" ry="2" />
<text text-anchor="" x="969.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>[unknown] (11 samples, 0.08%)</title><rect x="770.0" y="273" width="1.0" height="15.0" fill="rgb(236,2,47)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>rocksdb::MemTable::KeyComparator::operator (2 samples, 0.01%)</title><rect x="897.4" y="1713" width="0.1" height="15.0" fill="rgb(216,99,1)" rx="2" ry="2" />
<text text-anchor="" x="900.36" 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_tgkill (7 samples, 0.05%)</title><rect x="1169.2" y="1969" width="0.6" height="15.0" fill="rgb(228,207,12)" rx="2" ry="2" />
<text text-anchor="" x="1172.18" 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>free_pages_prepare (18 samples, 0.13%)</title><rect x="500.9" y="1793" width="1.6" height="15.0" fill="rgb(207,226,29)" rx="2" ry="2" />
<text text-anchor="" x="503.91" 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_pread64 (11 samples, 0.08%)</title><rect x="1129.5" y="1745" width="0.9" height="15.0" fill="rgb(227,201,54)" rx="2" ry="2" />
<text text-anchor="" x="1132.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>do_fsync (4 samples, 0.03%)</title><rect x="990.0" y="1809" width="0.3" height="15.0" fill="rgb(209,3,53)" rx="2" ry="2" />
<text text-anchor="" x="992.98" 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] (12 samples, 0.09%)</title><rect x="181.1" y="337" width="1.0" height="15.0" fill="rgb(207,48,44)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>lock_acquire (14 samples, 0.10%)</title><rect x="523.2" y="1873" width="1.2" height="15.0" fill="rgb(244,101,36)" rx="2" ry="2" />
<text text-anchor="" x="526.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>free_pages_prepare (4 samples, 0.03%)</title><rect x="604.0" y="1857" width="0.4" height="15.0" fill="rgb(253,99,53)" rx="2" ry="2" />
<text text-anchor="" x="607.02" 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>__find_get_page (9 samples, 0.07%)</title><rect x="1141.9" y="1681" width="0.8" height="15.0" fill="rgb(224,44,31)" rx="2" ry="2" />
<text text-anchor="" x="1144.90" 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>grpc_chttp2_incoming_byte_stream_create (3 samples, 0.02%)</title><rect x="94.5" y="1985" width="0.2" height="15.0" fill="rgb(252,124,43)" rx="2" ry="2" />
<text text-anchor="" x="97.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>sock_def_readable (90 samples, 0.67%)</title><rect x="571.9" y="1521" width="7.9" height="15.0" fill="rgb(247,149,48)" rx="2" ry="2" />
<text text-anchor="" x="574.93" 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>grpc::call::ShareCall::check_alive::h8de5d97e29d99e50 (2 samples, 0.01%)</title><rect x="273.7" y="1905" width="0.2" height="15.0" fill="rgb(243,123,38)" rx="2" ry="2" />
<text text-anchor="" x="276.69" 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>ext4_journal_check_start (2 samples, 0.01%)</title><rect x="43.7" y="1537" width="0.1" height="15.0" fill="rgb(246,228,6)" rx="2" ry="2" />
<text text-anchor="" x="46.67" 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>vfs_read (7 samples, 0.05%)</title><rect x="394.6" y="1969" width="0.6" height="15.0" fill="rgb(213,20,12)" rx="2" ry="2" />
<text text-anchor="" x="397.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>sys_futex (3 samples, 0.02%)</title><rect x="391.3" y="1969" width="0.3" height="15.0" fill="rgb(208,35,4)" rx="2" ry="2" />
<text text-anchor="" x="394.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>protobuf::stream::CodedInputStream::read_uint64::h8cde9d4ea3b04318 (4 samples, 0.03%)</title><rect x="482.4" y="1841" width="0.3" height="15.0" fill="rgb(226,29,37)" rx="2" ry="2" />
<text text-anchor="" x="485.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="753" width="1.1" height="15.0" fill="rgb(251,48,53)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="763.5" font-size="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_write (4 samples, 0.03%)</title><rect x="656.6" y="1969" width="0.3" height="15.0" fill="rgb(254,169,36)" rx="2" ry="2" />
<text text-anchor="" x="659.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>ext4_reserve_inode_write (5 samples, 0.04%)</title><rect x="45.5" y="1537" width="0.4" height="15.0" fill="rgb(213,1,5)" rx="2" ry="2" />
<text text-anchor="" x="48.51" 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>alloc_pages_current (8 samples, 0.06%)</title><rect x="915.0" y="1537" width="0.7" height="15.0" fill="rgb(219,127,40)" rx="2" ry="2" />
<text text-anchor="" x="918.03" 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_sendmsg (662 samples, 4.91%)</title><rect x="328.1" y="1905" width="57.9" height="15.0" fill="rgb(214,136,52)" rx="2" ry="2" />
<text text-anchor="" x="331.09" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tcp_se..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1153" width="1.9" height="15.0" fill="rgb(250,65,10)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>vfs_write (2 samples, 0.01%)</title><rect x="817.4" y="1809" width="0.2" height="15.0" fill="rgb(209,39,25)" rx="2" ry="2" />
<text text-anchor="" x="820.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1057" width="3.2" height="15.0" fill="rgb(246,171,44)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="1067.5" font-size="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] (37 samples, 0.27%)</title><rect x="837.4" y="1665" width="3.2" height="15.0" fill="rgb(227,229,44)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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::rt::read_singular_bytes_into::h23f2d443b5f2ddd7 (6 samples, 0.04%)</title><rect x="884.5" y="1809" width="0.5" height="15.0" fill="rgb(235,184,37)" rx="2" ry="2" />
<text text-anchor="" x="887.50" 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>fsnotify (5 samples, 0.04%)</title><rect x="601.9" y="1953" width="0.5" height="15.0" fill="rgb(220,52,16)" rx="2" ry="2" />
<text text-anchor="" x="604.92" 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>lock_acquire (2 samples, 0.01%)</title><rect x="558.2" y="1697" width="0.2" height="15.0" fill="rgb(227,66,0)" rx="2" ry="2" />
<text text-anchor="" x="561.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>lock_release (4 samples, 0.03%)</title><rect x="522.3" y="1857" width="0.4" height="15.0" fill="rgb(214,78,46)" rx="2" ry="2" />
<text text-anchor="" x="525.34" 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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::FindSpliceForLevel (187 samples, 1.39%)</title><rect x="51.1" y="1745" width="16.4" height="15.0" fill="rgb(235,225,20)" rx="2" ry="2" />
<text text-anchor="" x="54.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="433" width="3.2" height="15.0" fill="rgb(248,213,48)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>lock_is_held (2 samples, 0.01%)</title><rect x="1137.6" y="1617" width="0.2" height="15.0" fill="rgb(254,211,30)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>lock_release (3 samples, 0.02%)</title><rect x="130.3" y="1857" width="0.3" height="15.0" fill="rgb(227,83,13)" rx="2" ry="2" />
<text text-anchor="" x="133.34" 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::stream::CodedInputStream::read_raw_byte::ha2cb1055a4a0050e (2 samples, 0.01%)</title><rect x="691.3" y="1841" width="0.2" height="15.0" fill="rgb(234,188,11)" rx="2" ry="2" />
<text text-anchor="" x="694.31" 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>rocksdb::crc32c::ExtendImpl&lt;&amp;rocksdb::crc32c::Fast_CRC32&gt; (23 samples, 0.17%)</title><rect x="1126.0" y="1793" width="2.0" height="15.0" fill="rgb(206,24,49)" rx="2" ry="2" />
<text text-anchor="" x="1128.98" 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>timer_callback (2 samples, 0.01%)</title><rect x="698.9" y="1841" width="0.2" height="15.0" fill="rgb(220,49,54)" rx="2" ry="2" />
<text text-anchor="" x="701.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1969" width="3.2" height="15.0" fill="rgb(228,85,15)" rx="2" ry="2" />
<text text-anchor="" x="840.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>system_call_fastpath (45 samples, 0.33%)</title><rect x="1172.6" y="1905" width="3.9" height="15.0" fill="rgb(244,3,7)" rx="2" ry="2" />
<text text-anchor="" x="1175.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>truncate_inode_pages_range (34 samples, 0.25%)</title><rect x="990.3" y="1809" width="3.0" height="15.0" fill="rgb(214,195,41)" rx="2" ry="2" />
<text text-anchor="" x="993.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>protobuf::rt::read_singular_message_into::h11cdbb0df5c008db (10 samples, 0.07%)</title><rect x="694.5" y="1889" width="0.9" height="15.0" fill="rgb(249,213,19)" rx="2" ry="2" />
<text text-anchor="" x="697.54" 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>lock_acquired (5 samples, 0.04%)</title><rect x="534.2" y="1857" width="0.5" height="15.0" fill="rgb(247,205,36)" rx="2" ry="2" />
<text text-anchor="" x="537.23" 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$flat_map..flat_map..FlatMap$LT$K$C$$u20$V$GT$$GT$::insert::hf965e53d1c2c390b (8 samples, 0.06%)</title><rect x="865.6" y="1873" width="0.7" height="15.0" fill="rgb(233,35,6)" rx="2" ry="2" />
<text text-anchor="" x="868.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>lock_acquire (2 samples, 0.01%)</title><rect x="47.3" y="1681" width="0.1" height="15.0" fill="rgb(206,204,24)" rx="2" ry="2" />
<text text-anchor="" x="50.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1745" width="1.1" height="15.0" fill="rgb(252,61,53)" rx="2" ry="2" />
<text text-anchor="" x="393.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1329" width="0.1" height="15.0" fill="rgb(252,134,44)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>raft_gc_worker (59 samples, 0.44%)</title><rect x="831.7" y="2049" width="5.1" height="15.0" fill="rgb(252,217,24)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="2059.5" font-size="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] (12 samples, 0.09%)</title><rect x="770.0" y="481" width="1.1" height="15.0" fill="rgb(236,0,33)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>ip_local_deliver_finish (164 samples, 1.22%)</title><rect x="366.0" y="1585" width="14.4" height="15.0" fill="rgb(230,222,48)" rx="2" ry="2" />
<text text-anchor="" x="369.05" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="1713" width="0.1" height="15.0" fill="rgb(238,101,20)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>grpc::codec::pb_codec::de::h4dda9bd77c05a674 (2 samples, 0.01%)</title><rect x="488.9" y="1921" width="0.2" height="15.0" fill="rgb(226,74,8)" rx="2" ry="2" />
<text text-anchor="" x="491.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>_$LT$tikv..storage..engine..raftkv..RaftKv$LT$S$GT$$GT$::exec_requests::hd32b49e52ecb296b (4 samples, 0.03%)</title><rect x="489.5" y="1889" width="0.3" height="15.0" fill="rgb(218,97,13)" rx="2" ry="2" />
<text text-anchor="" x="492.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1985" width="1.1" height="15.0" fill="rgb(243,27,53)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>call_softirq (3 samples, 0.02%)</title><rect x="747.5" y="1729" width="0.2" height="15.0" fill="rgb(209,201,28)" rx="2" ry="2" />
<text text-anchor="" x="750.46" 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>__might_sleep (2 samples, 0.01%)</title><rect x="45.7" y="1473" width="0.2" height="15.0" fill="rgb(253,177,35)" rx="2" ry="2" />
<text text-anchor="" x="48.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>__local_bh_disable (4 samples, 0.03%)</title><rect x="520.7" y="1841" width="0.3" height="15.0" fill="rgb(225,126,40)" rx="2" ry="2" />
<text text-anchor="" x="523.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="145" width="0.2" height="15.0" fill="rgb(251,209,36)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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_queue_xmit (198 samples, 1.47%)</title><rect x="748.0" y="1825" width="17.3" height="15.0" fill="rgb(249,151,0)" rx="2" ry="2" />
<text text-anchor="" x="750.98" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1377" width="1.0" height="15.0" fill="rgb(231,204,46)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>ext4_file_write (5 samples, 0.04%)</title><rect x="976.9" y="1681" width="0.4" height="15.0" fill="rgb(230,6,44)" rx="2" ry="2" />
<text text-anchor="" x="979.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>_$LT$tikv..server..transport..ServerRaftStoreRouter$u20$as$u20$tikv..server..transport..RaftStoreRouter$GT$::send_raft_msg::h20154fbbe9a9ae26 (29 samples, 0.21%)</title><rect x="270.5" y="1905" width="2.6" height="15.0" fill="rgb(246,75,31)" rx="2" ry="2" />
<text text-anchor="" x="273.54" 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] (11 samples, 0.08%)</title><rect x="770.0" y="209" width="1.0" height="15.0" fill="rgb(217,147,53)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1361" width="1.0" height="15.0" fill="rgb(242,40,36)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>skb_release_data (18 samples, 0.13%)</title><rect x="509.9" y="1473" width="1.6" height="15.0" fill="rgb(237,138,31)" rx="2" ry="2" />
<text text-anchor="" x="512.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>_$LT$prometheus..vec..MetricVec$LT$T$GT$$GT$::with_label_values::h2c83fe36049cc551 (5 samples, 0.04%)</title><rect x="898.3" y="1857" width="0.5" height="15.0" fill="rgb(250,53,52)" rx="2" ry="2" />
<text text-anchor="" x="901.32" 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>lock_acquire (5 samples, 0.04%)</title><rect x="737.7" y="1857" width="0.5" height="15.0" fill="rgb(231,62,8)" rx="2" ry="2" />
<text text-anchor="" x="740.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1633" width="1.8" height="15.0" fill="rgb(254,54,21)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>virtnet_poll (2 samples, 0.01%)</title><rect x="171.3" y="1681" width="0.1" height="15.0" fill="rgb(209,76,9)" rx="2" ry="2" />
<text text-anchor="" x="174.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>lock_acquire (8 samples, 0.06%)</title><rect x="331.1" y="1857" width="0.7" height="15.0" fill="rgb(254,69,38)" rx="2" ry="2" />
<text text-anchor="" x="334.06" 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] (13 samples, 0.10%)</title><rect x="390.2" y="705" width="1.1" height="15.0" fill="rgb(247,50,20)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="715.5" font-size="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] (5 samples, 0.04%)</title><rect x="1168.2" y="609" width="0.5" height="15.0" fill="rgb(241,117,10)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>sysret_signal (4 samples, 0.03%)</title><rect x="699.6" y="2017" width="0.4" height="15.0" fill="rgb(240,213,19)" rx="2" ry="2" />
<text text-anchor="" x="702.62" 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_sendmsg (451 samples, 3.34%)</title><rect x="727.1" y="1921" width="39.4" height="15.0" fill="rgb(244,83,25)" rx="2" ry="2" />
<text text-anchor="" x="730.08" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ine..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>incoming_byte_stream_next_locked (6 samples, 0.04%)</title><rect x="448.5" y="2033" width="0.5" height="15.0" fill="rgb(241,61,31)" rx="2" ry="2" />
<text text-anchor="" x="451.52" 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>tikv::raftstore::store::peer_storage::PeerStorage::entries::hc054a8b7b6f3e05f (2 samples, 0.01%)</title><rect x="872.3" y="1825" width="0.2" height="15.0" fill="rgb(233,208,54)" rx="2" ry="2" />
<text text-anchor="" x="875.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>lock_is_held (2 samples, 0.01%)</title><rect x="919.9" y="1425" width="0.2" height="15.0" fill="rgb(247,172,2)" rx="2" ry="2" />
<text text-anchor="" x="922.93" 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_push_pending_frames (531 samples, 3.94%)</title><rect x="540.2" y="1873" width="46.4" height="15.0" fill="rgb(247,39,31)" rx="2" ry="2" />
<text text-anchor="" x="543.18" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__tc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksize (3 samples, 0.02%)</title><rect x="346.6" y="1857" width="0.3" height="15.0" fill="rgb(205,154,49)" rx="2" ry="2" />
<text text-anchor="" x="349.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1553" width="1.8" height="15.0" fill="rgb(215,59,27)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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_sendmsg (2 samples, 0.01%)</title><rect x="100.3" y="1985" width="0.1" height="15.0" fill="rgb(214,108,11)" rx="2" ry="2" />
<text text-anchor="" x="103.26" 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_unlink (22 samples, 0.16%)</title><rect x="1160.7" y="1713" width="1.9" height="15.0" fill="rgb(243,143,24)" rx="2" ry="2" />
<text text-anchor="" x="1163.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_core (2 samples, 0.01%)</title><rect x="42.4" y="1377" width="0.2" height="15.0" fill="rgb(248,110,13)" rx="2" ry="2" />
<text text-anchor="" x="45.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1089" width="0.1" height="15.0" fill="rgb(252,147,46)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="1099.5" font-size="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_slice_unref_internal (2 samples, 0.01%)</title><rect x="791.4" y="1953" width="0.2" height="15.0" fill="rgb(238,228,27)" rx="2" ry="2" />
<text text-anchor="" x="794.45" 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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::FindGreaterOrEqual (61 samples, 0.45%)</title><rect x="888.7" y="1729" width="5.3" height="15.0" fill="rgb(224,158,2)" rx="2" ry="2" />
<text text-anchor="" x="891.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>_$LT$tikv..server..transport..ServerRaftStoreRouter$u20$as$u20$tikv..server..transport..RaftStoreRouter$GT$::send_raft_msg::h20154fbbe9a9ae26 (16 samples, 0.12%)</title><rect x="816.5" y="1905" width="1.4" height="15.0" fill="rgb(222,104,12)" rx="2" ry="2" />
<text text-anchor="" x="819.46" 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>lock_is_held (2 samples, 0.01%)</title><rect x="118.2" y="1857" width="0.2" height="15.0" fill="rgb(234,151,19)" rx="2" ry="2" />
<text text-anchor="" x="121.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>__memcpy_ssse3_back (8 samples, 0.06%)</title><rect x="1176.9" y="1905" width="0.7" height="15.0" fill="rgb(237,199,24)" rx="2" ry="2" />
<text text-anchor="" x="1179.88" 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] (12 samples, 0.09%)</title><rect x="181.1" y="913" width="1.0" height="15.0" fill="rgb(232,53,33)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::ThreadPoolImpl::Impl::BGThreadWrapper (1,080 samples, 8.00%)</title><rect x="1063.5" y="2017" width="94.5" height="15.0" fill="rgb(210,70,29)" rx="2" ry="2" />
<text text-anchor="" x="1066.53" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rocksdb::Th..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="641" width="1.9" height="15.0" fill="rgb(231,164,2)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>__clear_user (2 samples, 0.01%)</title><rect x="610.1" y="1937" width="0.2" height="15.0" fill="rgb(220,192,13)" rx="2" ry="2" />
<text text-anchor="" x="613.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>_$LT$std..sync..mpsc..Sender$LT$T$GT$$GT$::send::h916baf2637d8edc0 (14 samples, 0.10%)</title><rect x="898.8" y="1857" width="1.3" height="15.0" fill="rgb(247,28,13)" rx="2" ry="2" />
<text text-anchor="" x="901.85" 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>ret_from_intr (3 samples, 0.02%)</title><rect x="62.0" y="1713" width="0.3" height="15.0" fill="rgb(234,228,40)" rx="2" ry="2" />
<text text-anchor="" x="65.04" 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>incoming_byte_stream_destroy_locked (5 samples, 0.04%)</title><rect x="631.4" y="2017" width="0.4" height="15.0" fill="rgb(248,7,11)" rx="2" ry="2" />
<text text-anchor="" x="634.40" 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>lock_acquire (7 samples, 0.05%)</title><rect x="171.6" y="1761" width="0.6" height="15.0" fill="rgb(248,157,34)" rx="2" ry="2" />
<text text-anchor="" x="174.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="49" width="0.1" height="15.0" fill="rgb(211,173,38)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>system_call_fastpath (13 samples, 0.10%)</title><rect x="89.9" y="1905" width="1.1" height="15.0" fill="rgb(205,37,1)" rx="2" ry="2" />
<text text-anchor="" x="92.85" 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>protobuf::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (4 samples, 0.03%)</title><rect x="281.6" y="1873" width="0.3" height="15.0" fill="rgb(214,18,18)" rx="2" ry="2" />
<text text-anchor="" x="284.56" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1729" width="3.2" height="15.0" fill="rgb(220,61,20)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>ext4_dirty_inode (30 samples, 0.22%)</title><rect x="918.2" y="1537" width="2.6" height="15.0" fill="rgb(213,76,2)" rx="2" ry="2" />
<text text-anchor="" x="921.18" 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] (21 samples, 0.16%)</title><rect x="592.2" y="545" width="1.9" height="15.0" fill="rgb(214,229,35)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1249" width="1.1" height="15.0" fill="rgb(236,155,49)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>tikv::raftstore::store::worker::apply::ApplyDelegate::process_raft_cmd::h8058e37118516189 (65 samples, 0.48%)</title><rect x="81.5" y="1905" width="5.6" height="15.0" fill="rgb(219,130,51)" rx="2" ry="2" />
<text text-anchor="" x="84.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_local_deliver (45 samples, 0.33%)</title><rect x="507.7" y="1617" width="4.0" height="15.0" fill="rgb(235,176,2)" rx="2" ry="2" />
<text text-anchor="" x="510.73" 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>inet_sendmsg (830 samples, 6.15%)</title><rect x="515.3" y="1921" width="72.6" height="15.0" fill="rgb(205,71,20)" rx="2" ry="2" />
<text text-anchor="" x="518.34" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >inet_sen..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_flush (3 samples, 0.02%)</title><rect x="432.6" y="2017" width="0.3" height="15.0" fill="rgb(229,118,24)" rx="2" ry="2" />
<text text-anchor="" x="435.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>release_sock (53 samples, 0.39%)</title><rect x="532.9" y="1889" width="4.7" height="15.0" fill="rgb(235,224,46)" rx="2" ry="2" />
<text text-anchor="" x="535.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>rocksdb::WriteBatchInternal::InsertInto (47 samples, 0.35%)</title><rect x="832.6" y="1857" width="4.1" height="15.0" fill="rgb(246,211,13)" rx="2" ry="2" />
<text text-anchor="" x="835.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>int_signal (7 samples, 0.05%)</title><rect x="774.1" y="2001" width="0.6" height="15.0" fill="rgb(229,115,13)" rx="2" ry="2" />
<text text-anchor="" x="777.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 (8 samples, 0.06%)</title><rect x="602.5" y="1889" width="0.7" height="15.0" fill="rgb(216,160,30)" rx="2" ry="2" />
<text text-anchor="" x="605.54" 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>lock_is_held (9 samples, 0.07%)</title><rect x="525.2" y="1857" width="0.8" height="15.0" fill="rgb(224,76,9)" rx="2" ry="2" />
<text text-anchor="" x="528.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1521" width="0.1" height="15.0" fill="rgb(223,35,0)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>_$LT$kvproto..metapb..Peer$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::h497b5f7a678f8e56 (12 samples, 0.09%)</title><rect x="676.1" y="1841" width="1.0" height="15.0" fill="rgb(238,60,36)" rx="2" ry="2" />
<text text-anchor="" x="679.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>tcp_send_mss (13 samples, 0.10%)</title><rect x="384.9" y="1889" width="1.1" height="15.0" fill="rgb(234,118,52)" rx="2" ry="2" />
<text text-anchor="" x="387.85" 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_fdatasync (53 samples, 0.39%)</title><rect x="1138.0" y="1841" width="4.7" height="15.0" fill="rgb(249,102,41)" rx="2" ry="2" />
<text text-anchor="" x="1141.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>sys_recvmsg (142 samples, 1.05%)</title><rect x="499.9" y="1985" width="12.5" height="15.0" fill="rgb(217,75,7)" rx="2" ry="2" />
<text text-anchor="" x="502.95" 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>__memmove_ssse3_back (5 samples, 0.04%)</title><rect x="1104.8" y="1857" width="0.5" height="15.0" fill="rgb(252,28,1)" rx="2" ry="2" />
<text text-anchor="" x="1107.81" 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>trace_do_page_fault (5 samples, 0.04%)</title><rect x="925.2" y="1713" width="0.4" height="15.0" fill="rgb(226,159,34)" rx="2" ry="2" />
<text text-anchor="" x="928.17" 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_send_sig_info (11 samples, 0.08%)</title><rect x="619.1" y="1921" width="0.9" height="15.0" fill="rgb(229,106,14)" rx="2" ry="2" />
<text text-anchor="" x="622.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>sk_reset_timer (6 samples, 0.04%)</title><rect x="758.9" y="1489" width="0.5" height="15.0" fill="rgb(240,200,36)" rx="2" ry="2" />
<text text-anchor="" x="761.91" 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] (13 samples, 0.10%)</title><rect x="390.2" y="321" width="1.1" height="15.0" fill="rgb(239,140,35)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>system_call_fastpath (24 samples, 0.18%)</title><rect x="209.9" y="1985" width="2.1" height="15.0" fill="rgb(209,172,21)" rx="2" ry="2" />
<text text-anchor="" x="212.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] (12 samples, 0.09%)</title><rect x="181.1" y="465" width="1.0" height="15.0" fill="rgb(221,198,14)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>_raw_spin_unlock_irqrestore (14 samples, 0.10%)</title><rect x="102.4" y="1761" width="1.3" height="15.0" fill="rgb(226,175,10)" rx="2" ry="2" />
<text text-anchor="" x="105.44" 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>crocksdb_writebatch_put_cf (7 samples, 0.05%)</title><rect x="882.8" y="1857" width="0.6" height="15.0" fill="rgb(207,196,49)" rx="2" ry="2" />
<text text-anchor="" x="885.76" 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>grpc_chttp2_begin_write (2 samples, 0.01%)</title><rect x="218.3" y="2017" width="0.2" height="15.0" fill="rgb(225,46,37)" rx="2" ry="2" />
<text text-anchor="" x="221.33" 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 (110 samples, 0.82%)</title><rect x="713.8" y="1809" width="9.6" height="15.0" fill="rgb(248,151,0)" rx="2" ry="2" />
<text text-anchor="" x="716.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_get_resource_user (2 samples, 0.01%)</title><rect x="829.7" y="2001" width="0.1" height="15.0" fill="rgb(219,139,6)" rx="2" ry="2" />
<text text-anchor="" x="832.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>call_softirq (3 samples, 0.02%)</title><rect x="62.0" y="1649" width="0.3" height="15.0" fill="rgb(228,95,20)" rx="2" ry="2" />
<text text-anchor="" x="65.04" 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>napi_gro_receive (2 samples, 0.01%)</title><rect x="473.5" y="1745" width="0.2" height="15.0" fill="rgb(247,182,38)" rx="2" ry="2" />
<text text-anchor="" x="476.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="241" width="3.2" height="15.0" fill="rgb(249,95,41)" rx="2" ry="2" />
<text text-anchor="" x="840.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>lock_acquire (7 samples, 0.05%)</title><rect x="1154.0" y="1617" width="0.6" height="15.0" fill="rgb(237,83,53)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="129" width="1.9" height="15.0" fill="rgb(252,212,37)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>rocksdb::StatisticsImpl::getThreadHistogramInfo (2 samples, 0.01%)</title><rect x="895.3" y="1745" width="0.1" height="15.0" fill="rgb(219,221,13)" rx="2" ry="2" />
<text text-anchor="" x="898.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>tcp_write_xmit (2 samples, 0.01%)</title><rect x="108.7" y="1521" width="0.1" height="15.0" fill="rgb(220,173,44)" rx="2" ry="2" />
<text text-anchor="" x="111.65" 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>generic_write_end (6 samples, 0.04%)</title><rect x="985.2" y="1601" width="0.5" height="15.0" fill="rgb(231,22,14)" rx="2" ry="2" />
<text text-anchor="" x="988.17" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1089" width="1.0" height="15.0" fill="rgb(248,151,3)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::FindSpliceForLevel (12 samples, 0.09%)</title><rect x="69.0" y="1729" width="1.1" height="15.0" fill="rgb(211,121,7)" rx="2" ry="2" />
<text text-anchor="" x="72.03" 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>combiner_exec_uncovered (2 samples, 0.01%)</title><rect x="246.4" y="2017" width="0.2" height="15.0" fill="rgb(227,214,32)" rx="2" ry="2" />
<text text-anchor="" x="249.40" 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>rocksdb::CompactionIterator::NextFromInput (2 samples, 0.01%)</title><rect x="1133.6" y="1921" width="0.2" height="15.0" fill="rgb(250,38,5)" rx="2" ry="2" />
<text text-anchor="" x="1136.59" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="129" width="0.1" height="15.0" fill="rgb(219,186,37)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>gpr_mpscq_push (3 samples, 0.02%)</title><rect x="801.3" y="2017" width="0.3" height="15.0" fill="rgb(215,49,25)" rx="2" ry="2" />
<text text-anchor="" x="804.33" 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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1409" width="1.9" height="15.0" fill="rgb(249,108,46)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="817.4" y="1745" width="0.2" height="15.0" fill="rgb(225,92,15)" rx="2" ry="2" />
<text text-anchor="" x="820.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>free_old_xmit_skbs.isra.32 (2 samples, 0.01%)</title><rect x="506.8" y="1697" width="0.1" height="15.0" fill="rgb(209,52,5)" rx="2" ry="2" />
<text text-anchor="" x="509.77" 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>lock_acquire (9 samples, 0.07%)</title><rect x="582.4" y="1761" width="0.8" height="15.0" fill="rgb(219,170,31)" rx="2" ry="2" />
<text text-anchor="" x="585.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>_raw_spin_lock_nested (12 samples, 0.09%)</title><rect x="368.6" y="1553" width="1.0" height="15.0" fill="rgb(222,43,47)" rx="2" ry="2" />
<text text-anchor="" x="371.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>eventfd_write (2 samples, 0.01%)</title><rect x="428.1" y="1937" width="0.1" height="15.0" fill="rgb(210,4,18)" rx="2" ry="2" />
<text text-anchor="" x="431.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="881" width="1.8" height="15.0" fill="rgb(252,56,1)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="891.5" font-size="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_chttp2_become_writable (2 samples, 0.01%)</title><rect x="494.7" y="2001" width="0.2" height="15.0" fill="rgb(248,8,20)" rx="2" ry="2" />
<text text-anchor="" x="497.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1473" width="1.0" height="15.0" fill="rgb(236,123,12)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>_raw_spin_lock_bh (5 samples, 0.04%)</title><rect x="503.2" y="1873" width="0.4" height="15.0" fill="rgb(240,158,18)" rx="2" ry="2" />
<text text-anchor="" x="506.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>skb_clone (4 samples, 0.03%)</title><rect x="175.5" y="1825" width="0.3" height="15.0" fill="rgb(237,198,52)" rx="2" ry="2" />
<text text-anchor="" x="178.47" 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>all (13,492 samples, 100%)</title><rect x="10.0" y="2065" width="1180.0" height="15.0" fill="rgb(224,166,41)" 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>lock_release (2 samples, 0.01%)</title><rect x="159.6" y="1537" width="0.1" height="15.0" fill="rgb(235,173,23)" rx="2" ry="2" />
<text text-anchor="" x="162.56" 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>protobuf::rt::unknown_fields_size::h75e310885c37bfe7 (2 samples, 0.01%)</title><rect x="263.4" y="1841" width="0.1" height="15.0" fill="rgb(232,74,39)" rx="2" ry="2" />
<text text-anchor="" x="266.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_push (277 samples, 2.05%)</title><rect x="741.8" y="1889" width="24.2" height="15.0" fill="rgb(218,112,0)" rx="2" ry="2" />
<text text-anchor="" x="744.77" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (26 samples, 0.19%)</title><rect x="641.3" y="2033" width="2.3" height="15.0" fill="rgb(226,65,17)" rx="2" ry="2" />
<text text-anchor="" x="644.28" 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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1361" width="1.1" height="15.0" fill="rgb(208,0,30)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>grpc_chttp2_mark_stream_closed (2 samples, 0.01%)</title><rect x="626.2" y="2017" width="0.2" height="15.0" fill="rgb(216,138,2)" rx="2" ry="2" />
<text text-anchor="" x="629.24" 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$tikv..raft..raft..Raft$LT$T$GT$$GT$::maybe_commit::h6e42a0e2c25c1668 (3 samples, 0.02%)</title><rect x="970.6" y="1857" width="0.2" height="15.0" fill="rgb(226,70,17)" rx="2" ry="2" />
<text text-anchor="" x="973.56" 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>debug_check_no_obj_freed (2 samples, 0.01%)</title><rect x="131.2" y="1793" width="0.2" height="15.0" fill="rgb(212,53,37)" rx="2" ry="2" />
<text text-anchor="" x="134.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>__audit_syscall_exit (6 samples, 0.04%)</title><rect x="703.1" y="1985" width="0.5" height="15.0" fill="rgb(225,229,16)" rx="2" ry="2" />
<text text-anchor="" x="706.11" 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>kfree_skbmem (5 samples, 0.04%)</title><rect x="131.5" y="1793" width="0.4" height="15.0" fill="rgb(227,68,50)" rx="2" ry="2" />
<text text-anchor="" x="134.48" 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>lock_acquire (70 samples, 0.52%)</title><rect x="334.9" y="1873" width="6.1" height="15.0" fill="rgb(240,107,28)" rx="2" ry="2" />
<text text-anchor="" x="337.91" 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>__lll_unlock_wake (26 samples, 0.19%)</title><rect x="233.8" y="2033" width="2.3" height="15.0" fill="rgb(233,191,27)" rx="2" ry="2" />
<text text-anchor="" x="236.81" 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_notify_resume (10 samples, 0.07%)</title><rect x="638.5" y="1985" width="0.9" height="15.0" fill="rgb(247,164,36)" rx="2" ry="2" />
<text text-anchor="" x="641.48" 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>lock_acquire (2 samples, 0.01%)</title><rect x="1187.9" y="1777" width="0.2" height="15.0" fill="rgb(220,96,34)" rx="2" ry="2" />
<text text-anchor="" x="1190.90" 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>system_call_fastpath (2 samples, 0.01%)</title><rect x="184.2" y="1985" width="0.2" height="15.0" fill="rgb(232,93,10)" rx="2" ry="2" />
<text text-anchor="" x="187.22" 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>system_call_fastpath (6 samples, 0.04%)</title><rect x="189.8" y="2001" width="0.5" height="15.0" fill="rgb(232,161,27)" rx="2" ry="2" />
<text text-anchor="" x="192.82" 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>lock_is_held (6 samples, 0.04%)</title><rect x="583.2" y="1761" width="0.5" height="15.0" fill="rgb(252,92,11)" rx="2" ry="2" />
<text text-anchor="" x="586.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>__skb_clone (2 samples, 0.01%)</title><rect x="384.4" y="1809" width="0.2" height="15.0" fill="rgb(210,30,22)" rx="2" ry="2" />
<text text-anchor="" x="387.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>consume_skb (2 samples, 0.01%)</title><rect x="506.8" y="1665" width="0.1" height="15.0" fill="rgb(248,106,4)" rx="2" ry="2" />
<text text-anchor="" x="509.77" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="913" width="0.5" height="15.0" fill="rgb(212,216,29)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="923.5" font-size="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.01%)</title><rect x="108.7" y="1441" width="0.1" height="15.0" fill="rgb(234,124,5)" rx="2" ry="2" />
<text text-anchor="" x="111.65" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1809" width="1.1" height="15.0" fill="rgb(238,158,24)" rx="2" ry="2" />
<text text-anchor="" x="393.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>tcp_rearm_rto (5 samples, 0.04%)</title><rect x="111.2" y="1521" width="0.4" height="15.0" fill="rgb(248,118,21)" rx="2" ry="2" />
<text text-anchor="" x="114.19" 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-2.17.so] (47 samples, 0.35%)</title><rect x="1172.4" y="1921" width="4.1" height="15.0" fill="rgb(222,207,53)" rx="2" ry="2" />
<text text-anchor="" x="1175.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>__wake_up_sync_key (2 samples, 0.01%)</title><rect x="763.5" y="1473" width="0.1" height="15.0" fill="rgb(219,78,7)" rx="2" ry="2" />
<text text-anchor="" x="766.46" 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>lock_is_held (2 samples, 0.01%)</title><rect x="37.5" y="1521" width="0.1" height="15.0" fill="rgb(241,210,16)" rx="2" ry="2" />
<text text-anchor="" x="40.46" 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>pthread_mutex_unlock (5 samples, 0.04%)</title><rect x="430.7" y="2017" width="0.4" height="15.0" fill="rgb(241,48,40)" rx="2" ry="2" />
<text text-anchor="" x="433.68" 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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1761" width="3.2" height="15.0" fill="rgb(206,9,7)" rx="2" ry="2" />
<text text-anchor="" x="840.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>clock_gettime (3 samples, 0.02%)</title><rect x="400.7" y="2017" width="0.2" height="15.0" fill="rgb(226,48,10)" rx="2" ry="2" />
<text text-anchor="" x="403.68" 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>lock_acquire (7 samples, 0.05%)</title><rect x="379.2" y="1505" width="0.6" height="15.0" fill="rgb(253,36,41)" rx="2" ry="2" />
<text text-anchor="" x="382.17" 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>[libpthread-2.17.so] (51 samples, 0.38%)</title><rect x="1121.3" y="1761" width="4.5" height="15.0" fill="rgb(245,151,52)" rx="2" ry="2" />
<text text-anchor="" x="1124.34" 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>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="934.6" y="1697" width="0.4" height="15.0" fill="rgb(250,215,50)" rx="2" ry="2" />
<text text-anchor="" x="937.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="625" width="1.1" height="15.0" fill="rgb(216,76,43)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="145" width="0.1" height="15.0" fill="rgb(239,12,6)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>grpc_error_ref (2 samples, 0.01%)</title><rect x="785.2" y="2017" width="0.1" height="15.0" fill="rgb(226,196,35)" rx="2" ry="2" />
<text text-anchor="" x="788.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>do_softirq (2 samples, 0.01%)</title><rect x="819.3" y="1825" width="0.1" height="15.0" fill="rgb(210,194,39)" rx="2" ry="2" />
<text text-anchor="" x="822.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>vfs_write (2 samples, 0.01%)</title><rect x="832.4" y="1729" width="0.2" height="15.0" fill="rgb(222,92,1)" rx="2" ry="2" />
<text text-anchor="" x="835.38" 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>rocksdb::StatisticsImpl::getThreadTickerInfo (2 samples, 0.01%)</title><rect x="923.9" y="1793" width="0.2" height="15.0" fill="rgb(215,28,10)" rx="2" ry="2" />
<text text-anchor="" x="926.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>start_this_handle (10 samples, 0.07%)</title><rect x="39.4" y="1569" width="0.9" height="15.0" fill="rgb(215,56,51)" rx="2" ry="2" />
<text text-anchor="" x="42.39" 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>lock_acquire (4 samples, 0.03%)</title><rect x="202.6" y="1921" width="0.3" height="15.0" fill="rgb(214,74,33)" rx="2" ry="2" />
<text text-anchor="" x="205.59" 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>free_hot_cold_page (10 samples, 0.07%)</title><rect x="1160.9" y="1553" width="0.9" height="15.0" fill="rgb(250,150,51)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>lock_is_held (7 samples, 0.05%)</title><rect x="1076.2" y="1585" width="0.6" height="15.0" fill="rgb(229,79,14)" rx="2" ry="2" />
<text text-anchor="" x="1079.22" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1617" width="0.2" height="15.0" fill="rgb(236,49,35)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>chunk_dalloc_default (6 samples, 0.04%)</title><rect x="981.2" y="2017" width="0.6" height="15.0" fill="rgb(233,134,39)" rx="2" ry="2" />
<text text-anchor="" x="984.23" 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>debug_check_no_obj_freed (2 samples, 0.01%)</title><rect x="976.6" y="1825" width="0.2" height="15.0" fill="rgb(241,50,22)" rx="2" ry="2" />
<text text-anchor="" x="979.60" 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_handle (7 samples, 0.05%)</title><rect x="907.6" y="1505" width="0.6" height="15.0" fill="rgb(228,99,51)" rx="2" ry="2" />
<text text-anchor="" x="910.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>do_softirq (230 samples, 1.70%)</title><rect x="151.5" y="1745" width="20.1" height="15.0" fill="rgb(233,4,2)" rx="2" ry="2" />
<text text-anchor="" x="154.51" 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_ack_snd_check (2 samples, 0.01%)</title><rect x="504.1" y="1841" width="0.1" height="15.0" fill="rgb(208,11,24)" rx="2" ry="2" />
<text text-anchor="" x="507.06" 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>start_thread (214 samples, 1.59%)</title><rect x="1171.3" y="2033" width="18.7" height="15.0" fill="rgb(254,137,10)" rx="2" ry="2" />
<text text-anchor="" x="1174.28" 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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1729" width="0.5" height="15.0" fill="rgb(207,88,37)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>debug_object_free (6 samples, 0.04%)</title><rect x="852.1" y="1809" width="0.6" height="15.0" fill="rgb(206,220,40)" rx="2" ry="2" />
<text text-anchor="" x="855.14" 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_IRQ (2 samples, 0.01%)</title><rect x="129.0" y="1857" width="0.2" height="15.0" fill="rgb(245,57,32)" rx="2" ry="2" />
<text text-anchor="" x="132.03" 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>__might_sleep (2 samples, 0.01%)</title><rect x="601.6" y="1921" width="0.1" height="15.0" fill="rgb(228,39,39)" rx="2" ry="2" />
<text text-anchor="" x="604.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>ext4_nonda_switch (2 samples, 0.01%)</title><rect x="913.9" y="1569" width="0.2" height="15.0" fill="rgb(214,166,6)" rx="2" ry="2" />
<text text-anchor="" x="916.89" 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_epoll_wait (7 samples, 0.05%)</title><rect x="293.7" y="1985" width="0.6" height="15.0" fill="rgb(242,152,6)" rx="2" ry="2" />
<text text-anchor="" x="296.72" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="865" width="0.5" height="15.0" fill="rgb(242,180,4)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="875.5" font-size="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_irq (9 samples, 0.07%)</title><rect x="190.9" y="1937" width="0.8" height="15.0" fill="rgb(226,118,3)" rx="2" ry="2" />
<text text-anchor="" x="193.87" 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] (37 samples, 0.27%)</title><rect x="837.4" y="385" width="3.2" height="15.0" fill="rgb(231,176,2)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>finish_task_switch (2 samples, 0.01%)</title><rect x="615.0" y="1873" width="0.2" height="15.0" fill="rgb(215,22,41)" rx="2" ry="2" />
<text text-anchor="" x="618.04" 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_sync_read (16 samples, 0.12%)</title><rect x="961.8" y="1825" width="1.4" height="15.0" fill="rgb(241,226,4)" rx="2" ry="2" />
<text text-anchor="" x="964.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>netif_rx (3 samples, 0.02%)</title><rect x="714.3" y="1713" width="0.3" height="15.0" fill="rgb(226,98,38)" rx="2" ry="2" />
<text text-anchor="" x="717.31" 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] (21 samples, 0.16%)</title><rect x="10.3" y="577" width="1.8" height="15.0" fill="rgb(223,84,52)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>might_fault (11 samples, 0.08%)</title><rect x="703.9" y="1937" width="1.0" height="15.0" fill="rgb(208,97,39)" rx="2" ry="2" />
<text text-anchor="" x="706.90" 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 (219 samples, 1.62%)</title><rect x="362.1" y="1761" width="19.2" height="15.0" fill="rgb(244,217,14)" rx="2" ry="2" />
<text text-anchor="" x="365.11" 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>protobuf::stream::CodedOutputStream::write_uint64::h6910587e0896722d (2 samples, 0.01%)</title><rect x="952.9" y="1841" width="0.2" height="15.0" fill="rgb(241,82,38)" rx="2" ry="2" />
<text text-anchor="" x="955.90" 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] (12 samples, 0.09%)</title><rect x="770.0" y="577" width="1.1" height="15.0" fill="rgb(227,156,22)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>lock_release (8 samples, 0.06%)</title><rect x="736.6" y="1873" width="0.7" height="15.0" fill="rgb(218,3,0)" rx="2" ry="2" />
<text text-anchor="" x="739.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>gpr_arena_alloc (6 samples, 0.04%)</title><rect x="241.1" y="2033" width="0.5" height="15.0" fill="rgb(244,81,32)" rx="2" ry="2" />
<text text-anchor="" x="244.07" 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_clean_rtx_queue (6 samples, 0.04%)</title><rect x="131.4" y="1825" width="0.5" height="15.0" fill="rgb(210,59,40)" rx="2" ry="2" />
<text text-anchor="" x="134.39" 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>combiner_exec_covered (2 samples, 0.01%)</title><rect x="801.7" y="2017" width="0.2" height="15.0" fill="rgb(236,211,52)" rx="2" ry="2" />
<text text-anchor="" x="804.68" 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>ext4_reserve_inode_write (19 samples, 0.14%)</title><rect x="1094.3" y="1569" width="1.7" height="15.0" fill="rgb(207,62,35)" rx="2" ry="2" />
<text text-anchor="" x="1097.32" 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] (13 samples, 0.10%)</title><rect x="390.2" y="801" width="1.1" height="15.0" fill="rgb(205,17,31)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (2 samples, 0.01%)</title><rect x="207.8" y="1921" width="0.2" height="15.0" fill="rgb(227,139,43)" rx="2" ry="2" />
<text text-anchor="" x="210.83" 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 (6 samples, 0.04%)</title><rect x="536.9" y="1761" width="0.6" height="15.0" fill="rgb(207,63,29)" rx="2" ry="2" />
<text text-anchor="" x="539.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>fsnotify (8 samples, 0.06%)</title><rect x="192.1" y="1953" width="0.7" height="15.0" fill="rgb(242,153,8)" rx="2" ry="2" />
<text text-anchor="" x="195.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>debug_lockdep_rcu_enabled (3 samples, 0.02%)</title><rect x="333.5" y="1857" width="0.3" height="15.0" fill="rgb(207,208,24)" rx="2" ry="2" />
<text text-anchor="" x="336.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 (4 samples, 0.03%)</title><rect x="934.6" y="1665" width="0.4" height="15.0" fill="rgb(218,114,21)" rx="2" ry="2" />
<text text-anchor="" x="937.62" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="81" width="0.5" height="15.0" fill="rgb(245,188,0)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>dev_queue_xmit (20 samples, 0.15%)</title><rect x="311.4" y="1777" width="1.7" height="15.0" fill="rgb(231,189,52)" rx="2" ry="2" />
<text text-anchor="" x="314.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>local_bh_enable_ip (2 samples, 0.01%)</title><rect x="104.1" y="1857" width="0.2" height="15.0" fill="rgb(244,20,19)" rx="2" ry="2" />
<text text-anchor="" x="107.11" 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_unlock_irq (4 samples, 0.03%)</title><rect x="915.8" y="1521" width="0.4" height="15.0" fill="rgb(218,20,41)" rx="2" ry="2" />
<text text-anchor="" x="918.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1473" width="1.8" height="15.0" fill="rgb(223,97,36)" rx="2" ry="2" />
<text text-anchor="" x="13.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>__block_commit_write.isra.20 (2 samples, 0.01%)</title><rect x="46.0" y="1569" width="0.2" height="15.0" fill="rgb(232,34,48)" rx="2" ry="2" />
<text text-anchor="" x="49.03" 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>hrtimer_cancel (4 samples, 0.03%)</title><rect x="778.2" y="1905" width="0.4" height="15.0" fill="rgb(252,90,46)" rx="2" ry="2" />
<text text-anchor="" x="781.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>debug_check_no_obj_freed (15 samples, 0.11%)</title><rect x="1089.8" y="1585" width="1.3" height="15.0" fill="rgb(214,32,13)" rx="2" ry="2" />
<text text-anchor="" x="1092.77" 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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (8 samples, 0.06%)</title><rect x="689.9" y="1825" width="0.7" height="15.0" fill="rgb(209,45,14)" rx="2" ry="2" />
<text text-anchor="" x="692.91" 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>kfree (2 samples, 0.01%)</title><rect x="513.2" y="1937" width="0.2" height="15.0" fill="rgb(248,50,2)" rx="2" ry="2" />
<text text-anchor="" x="516.24" 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_futex (3 samples, 0.02%)</title><rect x="966.8" y="1825" width="0.3" height="15.0" fill="rgb(241,190,21)" rx="2" ry="2" />
<text text-anchor="" x="969.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>net_rx_action (2 samples, 0.01%)</title><rect x="904.0" y="1713" width="0.2" height="15.0" fill="rgb(238,170,0)" rx="2" ry="2" />
<text text-anchor="" x="907.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>_$LT$tikv..raftstore..store..peer_storage..PeerStorage$u20$as$u20$tikv..raft..storage..Storage$GT$::entries::hc53f47d08d12aa8f (163 samples, 1.21%)</title><rect x="883.5" y="1857" width="14.2" height="15.0" fill="rgb(250,1,30)" rx="2" ry="2" />
<text text-anchor="" x="886.46" 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 (2 samples, 0.01%)</title><rect x="737.4" y="1649" width="0.2" height="15.0" fill="rgb(226,226,15)" rx="2" ry="2" />
<text text-anchor="" x="740.40" 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_sync_read (6 samples, 0.04%)</title><rect x="1165.7" y="1665" width="0.5" height="15.0" fill="rgb(236,64,5)" rx="2" ry="2" />
<text text-anchor="" x="1168.69" 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>fget_light (3 samples, 0.02%)</title><rect x="395.3" y="1969" width="0.3" height="15.0" fill="rgb(205,56,24)" rx="2" ry="2" />
<text text-anchor="" x="398.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>free (9 samples, 0.07%)</title><rect x="184.8" y="2001" width="0.8" height="15.0" fill="rgb(246,134,27)" rx="2" ry="2" />
<text text-anchor="" x="187.83" 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>__might_sleep (9 samples, 0.07%)</title><rect x="732.5" y="1873" width="0.8" height="15.0" fill="rgb(225,65,42)" rx="2" ry="2" />
<text text-anchor="" x="735.50" 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] (21 samples, 0.16%)</title><rect x="592.2" y="849" width="1.9" height="15.0" fill="rgb(216,44,21)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="859.5" font-size="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 (68 samples, 0.50%)</title><rect x="297.4" y="1889" width="5.9" height="15.0" fill="rgb(210,211,17)" rx="2" ry="2" />
<text text-anchor="" x="300.39" 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>__memcpy_ssse3_back (9 samples, 0.07%)</title><rect x="236.3" y="2033" width="0.7" height="15.0" fill="rgb(239,31,53)" rx="2" ry="2" />
<text text-anchor="" x="239.26" 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>net_rx_action (13 samples, 0.10%)</title><rect x="1045.5" y="1905" width="1.2" height="15.0" fill="rgb(242,139,16)" rx="2" ry="2" />
<text text-anchor="" x="1048.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="561" width="3.2" height="15.0" fill="rgb(221,100,12)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>free_hot_cold_page (4 samples, 0.03%)</title><rect x="194.5" y="1873" width="0.4" height="15.0" fill="rgb(224,213,21)" rx="2" ry="2" />
<text text-anchor="" x="197.54" 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>tlb_finish_mmu (7 samples, 0.05%)</title><rect x="603.8" y="1953" width="0.7" height="15.0" fill="rgb(246,91,53)" rx="2" ry="2" />
<text text-anchor="" x="606.85" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1153" width="0.2" height="15.0" fill="rgb(224,45,26)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>_$LT$futures..sync..mpsc..Receiver$LT$T$GT$$GT$::next_message::he3281ce8dd69cd79 (7 samples, 0.05%)</title><rect x="813.6" y="1905" width="0.6" height="15.0" fill="rgb(243,81,6)" rx="2" ry="2" />
<text text-anchor="" x="816.58" 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_futex (6 samples, 0.04%)</title><rect x="16.5" y="2001" width="0.5" height="15.0" fill="rgb(220,177,6)" rx="2" ry="2" />
<text text-anchor="" x="19.47" 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$tikv..raft..raft_log..RaftLog$LT$T$GT$$GT$::append::h6c2e98b7f68e33f8 (6 samples, 0.04%)</title><rect x="869.6" y="1841" width="0.6" height="15.0" fill="rgb(239,36,12)" rx="2" ry="2" />
<text text-anchor="" x="872.64" 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] (2 samples, 0.01%)</title><rect x="638.2" y="2001" width="0.2" height="15.0" fill="rgb(254,99,43)" rx="2" ry="2" />
<text text-anchor="" x="641.22" 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>lock_acquire (5 samples, 0.04%)</title><rect x="370.6" y="1537" width="0.4" height="15.0" fill="rgb(218,148,30)" rx="2" ry="2" />
<text text-anchor="" x="373.59" 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$kvproto..kvrpcpb..Context$u20$as$u20$protobuf..core..Message$GT$::merge_from::h41588e756d707140 (5 samples, 0.04%)</title><rect x="284.5" y="1873" width="0.5" height="15.0" fill="rgb(252,64,38)" rx="2" ry="2" />
<text text-anchor="" x="287.53" 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>lock_acquire (2 samples, 0.01%)</title><rect x="34.8" y="1681" width="0.1" height="15.0" fill="rgb(242,214,34)" rx="2" ry="2" />
<text text-anchor="" x="37.75" 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>pollset_work (3 samples, 0.02%)</title><rect x="452.8" y="2033" width="0.3" height="15.0" fill="rgb(227,146,17)" rx="2" ry="2" />
<text text-anchor="" x="455.81" 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>validate_xmit_skb.part.92 (2 samples, 0.01%)</title><rect x="313.0" y="1745" width="0.1" height="15.0" fill="rgb(252,165,33)" rx="2" ry="2" />
<text text-anchor="" x="315.96" 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>unmap_underlying_metadata (2 samples, 0.01%)</title><rect x="983.9" y="1585" width="0.2" height="15.0" fill="rgb(207,227,32)" rx="2" ry="2" />
<text text-anchor="" x="986.95" 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>_raw_spin_unlock_irq (6 samples, 0.04%)</title><rect x="1086.3" y="1585" width="0.5" height="15.0" fill="rgb(226,120,43)" rx="2" ry="2" />
<text text-anchor="" x="1089.27" 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>new_handle (47 samples, 0.35%)</title><rect x="1077.4" y="1601" width="4.2" height="15.0" fill="rgb(216,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1080.44" 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>vfs_write (4 samples, 0.03%)</title><rect x="247.5" y="1969" width="0.3" height="15.0" fill="rgb(227,67,11)" rx="2" ry="2" />
<text text-anchor="" x="250.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>grpc::codec::pb_codec::de::h4dda9bd77c05a674 (8 samples, 0.06%)</title><rect x="284.4" y="1921" width="0.7" height="15.0" fill="rgb(219,12,40)" rx="2" ry="2" />
<text text-anchor="" x="287.36" 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>collections::fmt::format::hbb72beb4a0c5a020 (9 samples, 0.07%)</title><rect x="88.5" y="1937" width="0.8" height="15.0" fill="rgb(210,139,48)" rx="2" ry="2" />
<text text-anchor="" x="91.54" 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>rocksdb::RangeDelAggregator::ShouldDelete (6 samples, 0.04%)</title><rect x="1114.9" y="1873" width="0.5" height="15.0" fill="rgb(205,198,4)" rx="2" ry="2" />
<text text-anchor="" x="1117.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>gpr_ref (13 samples, 0.10%)</title><rect x="289.4" y="1985" width="1.2" height="15.0" fill="rgb(220,21,53)" rx="2" ry="2" />
<text text-anchor="" x="292.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>hrtimer_start_range_ns (2 samples, 0.01%)</title><rect x="206.2" y="1905" width="0.1" height="15.0" fill="rgb(225,28,13)" rx="2" ry="2" />
<text text-anchor="" x="209.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>rocksdb:bg1 (151 samples, 1.12%)</title><rect x="980.4" y="2049" width="13.2" height="15.0" fill="rgb(234,214,29)" rx="2" ry="2" />
<text text-anchor="" x="983.36" y="2059.5" font-size="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_nested (5 samples, 0.04%)</title><rect x="46.4" y="1649" width="0.4" height="15.0" fill="rgb(238,91,18)" rx="2" ry="2" />
<text text-anchor="" x="49.38" 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>ext4_da_write_begin (4 samples, 0.03%)</title><rect x="976.9" y="1617" width="0.3" height="15.0" fill="rgb(215,167,33)" rx="2" ry="2" />
<text text-anchor="" x="979.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="321" width="1.9" height="15.0" fill="rgb(212,7,20)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>do_futex (10 samples, 0.07%)</title><rect x="615.8" y="1953" width="0.9" height="15.0" fill="rgb(224,216,51)" rx="2" ry="2" />
<text text-anchor="" x="618.83" 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>std::string::_M_mutate (22 samples, 0.16%)</title><rect x="1158.0" y="2033" width="1.9" height="15.0" fill="rgb(234,177,9)" rx="2" ry="2" />
<text text-anchor="" x="1160.99" 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_local_deliver (2 samples, 0.01%)</title><rect x="904.0" y="1585" width="0.2" height="15.0" fill="rgb(245,16,53)" rx="2" ry="2" />
<text text-anchor="" x="907.01" 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>rocksdb::WritableFileWriter::Append (36 samples, 0.27%)</title><rect x="982.5" y="1809" width="3.2" height="15.0" fill="rgb(242,187,21)" rx="2" ry="2" />
<text text-anchor="" x="985.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>_$LT$kvproto..eraftpb..Entry$u20$as$u20$protobuf..core..Message$GT$::merge_from::he413f7263ae20f62 (3 samples, 0.02%)</title><rect x="687.8" y="1857" width="0.3" height="15.0" fill="rgb(240,87,5)" rx="2" ry="2" />
<text text-anchor="" x="690.81" 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::stream::CodedInputStream::eof::ha84c0b5026b68aaa (2 samples, 0.01%)</title><rect x="80.1" y="1873" width="0.2" height="15.0" fill="rgb(251,186,25)" rx="2" ry="2" />
<text text-anchor="" x="83.14" 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_futex (3 samples, 0.02%)</title><rect x="391.3" y="1953" width="0.3" height="15.0" fill="rgb(207,5,52)" rx="2" ry="2" />
<text text-anchor="" x="394.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>_raw_spin_unlock_irqrestore (9 samples, 0.07%)</title><rect x="722.0" y="1473" width="0.8" height="15.0" fill="rgb(244,54,34)" rx="2" ry="2" />
<text text-anchor="" x="725.01" 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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1665" width="0.5" height="15.0" fill="rgb(217,192,6)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>lock_acquire (3 samples, 0.02%)</title><rect x="600.5" y="1953" width="0.3" height="15.0" fill="rgb(210,17,36)" rx="2" ry="2" />
<text text-anchor="" x="603.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>virtnet_poll (3 samples, 0.02%)</title><rect x="747.5" y="1681" width="0.2" height="15.0" fill="rgb(221,220,42)" rx="2" ry="2" />
<text text-anchor="" x="750.46" 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>_$LT$tikv..raftstore..store..worker..apply..Runner$u20$as$u20$tikv..util..worker..Runnable$LT$tikv..raftstore..store..worker..apply..Task$GT$$GT$::run::h4ccd825abbd40bf5 (738 samples, 5.47%)</title><rect x="23.8" y="1937" width="64.6" height="15.0" fill="rgb(245,70,14)" rx="2" ry="2" />
<text text-anchor="" x="26.82" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$ti..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="897" width="1.1" height="15.0" fill="rgb(214,215,24)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="907.5" font-size="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] (3 samples, 0.02%)</title><rect x="831.7" y="529" width="0.2" height="15.0" fill="rgb(212,81,48)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>tcp_schedule_loss_probe (42 samples, 0.31%)</title><rect x="351.4" y="1841" width="3.7" height="15.0" fill="rgb(249,81,29)" rx="2" ry="2" />
<text text-anchor="" x="354.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1153" width="1.0" height="15.0" fill="rgb(240,110,1)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>grpc_slice_malloc (2 samples, 0.01%)</title><rect x="446.6" y="2033" width="0.2" height="15.0" fill="rgb(214,70,6)" rx="2" ry="2" />
<text text-anchor="" x="449.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>malloc (2 samples, 0.01%)</title><rect x="770.0" y="33" width="0.2" height="15.0" fill="rgb(231,220,41)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>lock_acquire (3 samples, 0.02%)</title><rect x="757.3" y="1537" width="0.3" height="15.0" fill="rgb(248,76,15)" rx="2" ry="2" />
<text text-anchor="" x="760.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>[unknown] (1,551 samples, 11.50%)</title><rect x="97.7" y="2033" width="135.7" height="15.0" fill="rgb(238,220,30)" rx="2" ry="2" />
<text text-anchor="" x="100.72" 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>vfs_write (334 samples, 2.48%)</title><rect x="1069.6" y="1745" width="29.2" height="15.0" fill="rgb(249,79,19)" rx="2" ry="2" />
<text text-anchor="" x="1072.57" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1889" width="1.1" height="15.0" fill="rgb(252,85,35)" rx="2" ry="2" />
<text text-anchor="" x="393.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>might_fault (2 samples, 0.01%)</title><rect x="202.4" y="1937" width="0.2" height="15.0" fill="rgb(253,207,22)" rx="2" ry="2" />
<text text-anchor="" x="205.41" 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>rocksdb::BlockBasedTableBuilder::WriteBlock (378 samples, 2.80%)</title><rect x="1067.8" y="1889" width="33.1" height="15.0" fill="rgb(206,12,47)" rx="2" ry="2" />
<text text-anchor="" x="1070.82" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ro..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1297" width="1.1" height="15.0" fill="rgb(218,174,28)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>free (11 samples, 0.08%)</title><rect x="597.1" y="2001" width="1.0" height="15.0" fill="rgb(236,115,15)" rx="2" ry="2" />
<text text-anchor="" x="600.11" 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>free (3 samples, 0.02%)</title><rect x="662.0" y="1953" width="0.3" height="15.0" fill="rgb(205,77,52)" rx="2" ry="2" />
<text text-anchor="" x="665.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>wake_up_state (2 samples, 0.01%)</title><rect x="13.1" y="1921" width="0.2" height="15.0" fill="rgb(248,151,43)" rx="2" ry="2" />
<text text-anchor="" x="16.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>release_pages (55 samples, 0.41%)</title><rect x="1147.0" y="1761" width="4.8" height="15.0" fill="rgb(251,132,8)" rx="2" ry="2" />
<text text-anchor="" x="1149.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>rocksdb::InternalKeyPropertiesCollector::InternalAdd (2 samples, 0.01%)</title><rect x="1106.2" y="1905" width="0.2" height="15.0" fill="rgb(218,105,36)" rx="2" ry="2" />
<text text-anchor="" x="1109.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1441" width="1.1" height="15.0" fill="rgb(249,45,35)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>pthread_mutex_trylock (3 samples, 0.02%)</title><rect x="802.6" y="2033" width="0.2" height="15.0" fill="rgb(254,227,8)" rx="2" ry="2" />
<text text-anchor="" x="805.56" 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>grpc_combiner_continue_exec_ctx (2 samples, 0.01%)</title><rect x="650.9" y="2033" width="0.2" height="15.0" fill="rgb(233,149,53)" rx="2" ry="2" />
<text text-anchor="" x="653.90" 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>sk_reset_timer (37 samples, 0.27%)</title><rect x="140.4" y="1825" width="3.2" height="15.0" fill="rgb(235,206,26)" rx="2" ry="2" />
<text text-anchor="" x="143.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>might_fault (4 samples, 0.03%)</title><rect x="610.3" y="1937" width="0.4" height="15.0" fill="rgb(249,209,41)" rx="2" ry="2" />
<text text-anchor="" x="613.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>_$LT$kvproto..metapb..RegionEpoch$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::hec4bb07ff02c4931 (3 samples, 0.02%)</title><rect x="672.0" y="1857" width="0.2" height="15.0" fill="rgb(246,131,46)" rx="2" ry="2" />
<text text-anchor="" x="674.98" 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] (5 samples, 0.04%)</title><rect x="431.4" y="1985" width="0.4" height="15.0" fill="rgb(252,161,18)" rx="2" ry="2" />
<text text-anchor="" x="434.38" 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_signal (4 samples, 0.03%)</title><rect x="431.9" y="1969" width="0.4" height="15.0" fill="rgb(233,92,43)" rx="2" ry="2" />
<text text-anchor="" x="434.90" 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>__memcpy_ssse3_back (5 samples, 0.04%)</title><rect x="13.3" y="2017" width="0.5" height="15.0" fill="rgb(239,195,12)" rx="2" ry="2" />
<text text-anchor="" x="16.32" 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>rocksdb::WritableFileWriter::WriteBuffered (162 samples, 1.20%)</title><rect x="33.5" y="1777" width="14.2" height="15.0" fill="rgb(228,168,42)" rx="2" ry="2" />
<text text-anchor="" x="36.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>futex_wake (25 samples, 0.19%)</title><rect x="641.4" y="1969" width="2.2" height="15.0" fill="rgb(235,19,7)" rx="2" ry="2" />
<text text-anchor="" x="644.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1473" width="1.1" height="15.0" fill="rgb(208,65,47)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>lock_release (5 samples, 0.04%)</title><rect x="535.5" y="1873" width="0.5" height="15.0" fill="rgb(210,115,54)" rx="2" ry="2" />
<text text-anchor="" x="538.54" 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>__radix_tree_lookup (2 samples, 0.01%)</title><rect x="1137.6" y="1633" width="0.2" height="15.0" fill="rgb(236,22,20)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>_raw_spin_unlock_irq (7 samples, 0.05%)</title><rect x="991.7" y="1761" width="0.6" height="15.0" fill="rgb(243,99,21)" rx="2" ry="2" />
<text text-anchor="" x="994.73" 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_unlock_irqrestore (12 samples, 0.09%)</title><rect x="718.6" y="1441" width="1.0" height="15.0" fill="rgb(233,228,16)" rx="2" ry="2" />
<text text-anchor="" x="721.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>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="286.8" y="1809" width="0.2" height="15.0" fill="rgb(219,6,35)" rx="2" ry="2" />
<text text-anchor="" x="289.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>_raw_spin_unlock_irqrestore (9 samples, 0.07%)</title><rect x="97.8" y="1953" width="0.8" height="15.0" fill="rgb(213,0,31)" rx="2" ry="2" />
<text text-anchor="" x="100.81" 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>gpr_time_add (3 samples, 0.02%)</title><rect x="797.0" y="2033" width="0.2" height="15.0" fill="rgb(208,113,8)" rx="2" ry="2" />
<text text-anchor="" x="799.96" 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 (77 samples, 0.57%)</title><rect x="313.8" y="1681" width="6.8" height="15.0" fill="rgb(224,62,48)" rx="2" ry="2" />
<text text-anchor="" x="316.83" 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>protobuf::stream::CodedOutputStream::write_raw_varint64::h90004c2b1b2d478d (2 samples, 0.01%)</title><rect x="811.8" y="1809" width="0.2" height="15.0" fill="rgb(242,125,35)" rx="2" ry="2" />
<text text-anchor="" x="814.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>__find_get_page (2 samples, 0.01%)</title><rect x="1165.7" y="1633" width="0.2" height="15.0" fill="rgb(215,128,47)" rx="2" ry="2" />
<text text-anchor="" x="1168.69" 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_release (5 samples, 0.04%)</title><rect x="155.3" y="1569" width="0.4" height="15.0" fill="rgb(227,191,12)" rx="2" ry="2" />
<text text-anchor="" x="158.27" 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] (21 samples, 0.16%)</title><rect x="592.2" y="241" width="1.9" height="15.0" fill="rgb(211,157,47)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>system_call_fastpath (7 samples, 0.05%)</title><rect x="1137.4" y="1841" width="0.6" height="15.0" fill="rgb(220,161,25)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>_raw_spin_unlock_irqrestore (5 samples, 0.04%)</title><rect x="194.0" y="1889" width="0.5" height="15.0" fill="rgb(252,3,6)" rx="2" ry="2" />
<text text-anchor="" x="197.01" 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>extract_entropy_user (2 samples, 0.01%)</title><rect x="697.0" y="1729" width="0.2" height="15.0" fill="rgb(233,116,31)" rx="2" ry="2" />
<text text-anchor="" x="699.99" 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>__mutex_unlock_slowpath (3 samples, 0.02%)</title><rect x="946.5" y="1713" width="0.3" height="15.0" fill="rgb(247,188,13)" rx="2" ry="2" />
<text text-anchor="" x="949.51" 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] (21 samples, 0.16%)</title><rect x="592.2" y="753" width="1.9" height="15.0" fill="rgb(231,139,4)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_to_page_cache_lru (2 samples, 0.01%)</title><rect x="984.7" y="1585" width="0.2" height="15.0" fill="rgb(216,175,35)" rx="2" ry="2" />
<text text-anchor="" x="987.73" 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] (12 samples, 0.09%)</title><rect x="181.1" y="449" width="1.0" height="15.0" fill="rgb(209,161,38)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>perform_stream_op_locked (3 samples, 0.02%)</title><rect x="428.7" y="2017" width="0.2" height="15.0" fill="rgb(250,34,18)" rx="2" ry="2" />
<text text-anchor="" x="431.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>kmem_cache_free (17 samples, 0.13%)</title><rect x="718.2" y="1473" width="1.4" height="15.0" fill="rgb(208,76,35)" rx="2" ry="2" />
<text text-anchor="" x="721.16" 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>perform_stream_op_locked (4 samples, 0.03%)</title><rect x="702.1" y="2001" width="0.3" height="15.0" fill="rgb(237,139,25)" rx="2" ry="2" />
<text text-anchor="" x="705.06" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::value (9 samples, 0.07%)</title><rect x="1113.2" y="1873" width="0.8" height="15.0" fill="rgb(210,82,14)" rx="2" ry="2" />
<text text-anchor="" x="1116.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>ext4_releasepage (45 samples, 0.33%)</title><rect x="1153.9" y="1681" width="3.9" height="15.0" fill="rgb(205,15,14)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>__schedule (3 samples, 0.02%)</title><rect x="408.7" y="1889" width="0.3" height="15.0" fill="rgb(238,86,41)" rx="2" ry="2" />
<text text-anchor="" x="411.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>ext4_mark_iloc_dirty (2 samples, 0.01%)</title><rect x="908.9" y="1521" width="0.2" height="15.0" fill="rgb(240,110,21)" rx="2" ry="2" />
<text text-anchor="" x="911.91" 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] (13 samples, 0.10%)</title><rect x="390.2" y="193" width="1.1" height="15.0" fill="rgb(244,12,41)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="2001" width="1.1" height="15.0" fill="rgb(245,67,43)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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] (13 samples, 0.10%)</title><rect x="390.2" y="737" width="1.1" height="15.0" fill="rgb(218,185,48)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_pages_prepare (10 samples, 0.07%)</title><rect x="1160.9" y="1537" width="0.9" height="15.0" fill="rgb(244,46,4)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>trace_do_page_fault (2 samples, 0.01%)</title><rect x="986.2" y="1777" width="0.2" height="15.0" fill="rgb(237,42,41)" rx="2" ry="2" />
<text text-anchor="" x="989.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>__might_sleep (2 samples, 0.01%)</title><rect x="324.1" y="1921" width="0.1" height="15.0" fill="rgb(239,211,41)" rx="2" ry="2" />
<text text-anchor="" x="327.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>free (2 samples, 0.01%)</title><rect x="251.6" y="1953" width="0.2" height="15.0" fill="rgb(225,144,39)" rx="2" ry="2" />
<text text-anchor="" x="254.65" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1329" width="1.9" height="15.0" fill="rgb(248,158,0)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>[unknown] (3 samples, 0.02%)</title><rect x="441.6" y="2017" width="0.3" height="15.0" fill="rgb(219,46,22)" rx="2" ry="2" />
<text text-anchor="" x="444.61" 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>grpc_chttp2_complete_closure_step (2 samples, 0.01%)</title><rect x="798.1" y="2033" width="0.2" height="15.0" fill="rgb(238,21,25)" rx="2" ry="2" />
<text text-anchor="" x="801.10" 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>truncate_inode_pages_final (9 samples, 0.07%)</title><rect x="979.4" y="1825" width="0.8" height="15.0" fill="rgb(213,143,39)" rx="2" ry="2" />
<text text-anchor="" x="982.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>tcp_write (2 samples, 0.01%)</title><rect x="640.3" y="1985" width="0.2" height="15.0" fill="rgb(233,36,30)" rx="2" ry="2" />
<text text-anchor="" x="643.32" 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.17.so] (6 samples, 0.04%)</title><rect x="1165.7" y="1729" width="0.5" height="15.0" fill="rgb(222,176,10)" rx="2" ry="2" />
<text text-anchor="" x="1168.69" 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>irq_exit (3 samples, 0.02%)</title><rect x="737.3" y="1841" width="0.3" height="15.0" fill="rgb(206,215,12)" rx="2" ry="2" />
<text text-anchor="" x="740.31" 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>rocksdb::DBImpl::WriteToWAL (217 samples, 1.61%)</title><rect x="904.4" y="1809" width="19.0" height="15.0" fill="rgb(205,35,37)" rx="2" ry="2" />
<text text-anchor="" x="907.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="2017" width="0.2" height="15.0" fill="rgb(206,90,17)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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_unlock_irqrestore (3 samples, 0.02%)</title><rect x="717.5" y="1473" width="0.3" height="15.0" fill="rgb(230,197,15)" rx="2" ry="2" />
<text text-anchor="" x="720.55" 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_def_readable (2 samples, 0.01%)</title><rect x="1046.3" y="1697" width="0.2" height="15.0" fill="rgb(214,174,24)" rx="2" ry="2" />
<text text-anchor="" x="1049.30" 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>protobuf::stream::CodedInputStream::read_bytes_into::h7412d0f86fc120ec (4 samples, 0.03%)</title><rect x="73.7" y="1841" width="0.3" height="15.0" fill="rgb(219,188,51)" rx="2" ry="2" />
<text text-anchor="" x="76.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1009" width="0.2" height="15.0" fill="rgb(208,168,12)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>combiner_finally_exec_covered (2 samples, 0.01%)</title><rect x="288.5" y="2017" width="0.1" height="15.0" fill="rgb(232,44,25)" rx="2" ry="2" />
<text text-anchor="" x="291.47" 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>lock_acquire (2 samples, 0.01%)</title><rect x="36.8" y="1537" width="0.2" height="15.0" fill="rgb(224,189,39)" rx="2" ry="2" />
<text text-anchor="" x="39.85" 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>eventfd_write (2 samples, 0.01%)</title><rect x="227.2" y="1937" width="0.2" height="15.0" fill="rgb(239,202,43)" rx="2" ry="2" />
<text text-anchor="" x="230.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>async_page_fault (7 samples, 0.05%)</title><rect x="195.5" y="2001" width="0.6" height="15.0" fill="rgb(234,227,53)" rx="2" ry="2" />
<text text-anchor="" x="198.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>gpr_mpscq_pop (4 samples, 0.03%)</title><rect x="658.5" y="2017" width="0.4" height="15.0" fill="rgb(210,102,21)" rx="2" ry="2" />
<text text-anchor="" x="661.51" 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>timer_callback (5 samples, 0.04%)</title><rect x="698.7" y="1969" width="0.4" height="15.0" fill="rgb(228,63,6)" rx="2" ry="2" />
<text text-anchor="" x="701.65" 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>rocksdb::BlockBasedTableBuilder::WriteBlock (38 samples, 0.28%)</title><rect x="982.5" y="1857" width="3.4" height="15.0" fill="rgb(223,166,24)" rx="2" ry="2" />
<text text-anchor="" x="985.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>tikv-eventloop (251 samples, 1.86%)</title><rect x="1168.0" y="2049" width="22.0" height="15.0" fill="rgb(205,107,22)" rx="2" ry="2" />
<text text-anchor="" x="1171.05" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_bh_disable (2 samples, 0.01%)</title><rect x="729.9" y="1857" width="0.2" height="15.0" fill="rgb(206,7,50)" rx="2" ry="2" />
<text text-anchor="" x="732.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="561" width="1.0" height="15.0" fill="rgb(244,75,19)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>__memset_sse2 (7 samples, 0.05%)</title><rect x="772.6" y="2017" width="0.7" height="15.0" fill="rgb(235,182,29)" rx="2" ry="2" />
<text text-anchor="" x="775.64" 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_unlock_irq (6 samples, 0.04%)</title><rect x="774.1" y="1937" width="0.6" height="15.0" fill="rgb(246,54,11)" rx="2" ry="2" />
<text text-anchor="" x="777.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>ktime_get_real (3 samples, 0.02%)</title><rect x="148.6" y="1665" width="0.3" height="15.0" fill="rgb(248,206,5)" rx="2" ry="2" />
<text text-anchor="" x="151.62" 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>mod_timer (9 samples, 0.07%)</title><rect x="722.0" y="1489" width="0.8" height="15.0" fill="rgb(236,32,48)" rx="2" ry="2" />
<text text-anchor="" x="725.01" 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>__ext4_journal_stop (33 samples, 0.24%)</title><rect x="1088.3" y="1633" width="2.9" height="15.0" fill="rgb(246,158,47)" rx="2" ry="2" />
<text text-anchor="" x="1091.28" 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_release (7 samples, 0.05%)</title><rect x="130.6" y="1873" width="0.6" height="15.0" fill="rgb(214,211,21)" rx="2" ry="2" />
<text text-anchor="" x="133.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>__slab_alloc (4 samples, 0.03%)</title><rect x="133.1" y="1825" width="0.3" height="15.0" fill="rgb(244,114,28)" rx="2" ry="2" />
<text text-anchor="" x="136.06" 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>lock_release (2 samples, 0.01%)</title><rect x="762.3" y="1505" width="0.2" height="15.0" fill="rgb(236,199,18)" rx="2" ry="2" />
<text text-anchor="" x="765.32" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1537" width="1.0" height="15.0" fill="rgb(246,221,14)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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] (21 samples, 0.16%)</title><rect x="10.3" y="369" width="1.8" height="15.0" fill="rgb(235,35,32)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>offload (2 samples, 0.01%)</title><rect x="451.1" y="1985" width="0.2" height="15.0" fill="rgb(254,195,1)" rx="2" ry="2" />
<text text-anchor="" x="454.14" 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>protobuf::stream::CodedOutputStream::write_uint64::h6910587e0896722d (5 samples, 0.04%)</title><rect x="265.1" y="1825" width="0.5" height="15.0" fill="rgb(221,91,3)" rx="2" ry="2" />
<text text-anchor="" x="268.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>kmem_cache_free (23 samples, 0.17%)</title><rect x="1089.1" y="1601" width="2.0" height="15.0" fill="rgb(217,185,42)" rx="2" ry="2" />
<text text-anchor="" x="1092.07" 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>__might_sleep (17 samples, 0.13%)</title><rect x="524.5" y="1873" width="1.5" height="15.0" fill="rgb(228,60,37)" rx="2" ry="2" />
<text text-anchor="" x="527.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="193" width="1.8" height="15.0" fill="rgb(248,26,11)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>wake_futex (2 samples, 0.01%)</title><rect x="13.1" y="1937" width="0.2" height="15.0" fill="rgb(254,45,44)" rx="2" ry="2" />
<text text-anchor="" x="16.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>rocksdb::InternalKeyComparator::Compare (2 samples, 0.01%)</title><rect x="67.7" y="1761" width="0.2" height="15.0" fill="rgb(228,168,14)" rx="2" ry="2" />
<text text-anchor="" x="70.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>_$LT$futures..task_impl..std..ArcWrapped$LT$T$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::drop_raw::h3395b44c88f6b7a9 (9 samples, 0.07%)</title><rect x="457.8" y="1937" width="0.8" height="15.0" fill="rgb(219,129,53)" rx="2" ry="2" />
<text text-anchor="" x="460.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>ep_send_events_proc (3 samples, 0.02%)</title><rect x="614.1" y="1921" width="0.2" height="15.0" fill="rgb(208,32,22)" rx="2" ry="2" />
<text text-anchor="" x="617.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>free (6 samples, 0.04%)</title><rect x="392.0" y="2001" width="0.5" height="15.0" fill="rgb(219,117,43)" rx="2" ry="2" />
<text text-anchor="" x="395.02" 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_send_sig_info (4 samples, 0.03%)</title><rect x="1169.2" y="1921" width="0.3" height="15.0" fill="rgb(229,54,33)" rx="2" ry="2" />
<text text-anchor="" x="1172.18" 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>system_call_fastpath (4 samples, 0.03%)</title><rect x="599.9" y="2001" width="0.4" height="15.0" fill="rgb(242,146,39)" rx="2" ry="2" />
<text text-anchor="" x="602.91" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1921" width="1.8" height="15.0" fill="rgb(251,63,29)" rx="2" ry="2" />
<text text-anchor="" x="13.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1329" width="1.1" height="15.0" fill="rgb(212,188,33)" rx="2" ry="2" />
<text text-anchor="" x="393.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>ip_rcv (167 samples, 1.24%)</title><rect x="365.8" y="1633" width="14.6" height="15.0" fill="rgb(215,62,20)" rx="2" ry="2" />
<text text-anchor="" x="368.78" 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_def_readable (2 samples, 0.01%)</title><rect x="737.4" y="1569" width="0.2" height="15.0" fill="rgb(244,97,24)" rx="2" ry="2" />
<text text-anchor="" x="740.40" 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>system_call_fastpath (4 samples, 0.03%)</title><rect x="428.1" y="1985" width="0.3" height="15.0" fill="rgb(206,24,52)" rx="2" ry="2" />
<text text-anchor="" x="431.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>kvproto::raft_serverpb::RaftApplyState::get_truncated_state::h84fdf266f59a1665 (2 samples, 0.01%)</title><rect x="897.8" y="1857" width="0.2" height="15.0" fill="rgb(232,129,22)" rx="2" ry="2" />
<text text-anchor="" x="900.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>__GI___libc_write (22 samples, 0.16%)</title><rect x="594.1" y="2001" width="2.0" height="15.0" fill="rgb(237,21,1)" rx="2" ry="2" />
<text text-anchor="" x="597.14" 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>grpc_chttp2_perform_read (2 samples, 0.01%)</title><rect x="626.4" y="2017" width="0.2" height="15.0" fill="rgb(233,215,3)" rx="2" ry="2" />
<text text-anchor="" x="629.41" 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>iowrite16 (3 samples, 0.02%)</title><rect x="507.0" y="1681" width="0.3" height="15.0" fill="rgb(215,221,43)" rx="2" ry="2" />
<text text-anchor="" x="510.03" 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>lock_release (3 samples, 0.02%)</title><rect x="383.9" y="1809" width="0.3" height="15.0" fill="rgb(218,112,33)" rx="2" ry="2" />
<text text-anchor="" x="386.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>_raw_spin_unlock_irqrestore (5 samples, 0.04%)</title><rect x="759.0" y="1457" width="0.4" height="15.0" fill="rgb(226,214,42)" rx="2" ry="2" />
<text text-anchor="" x="762.00" 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>wake_futex (6 samples, 0.04%)</title><rect x="899.5" y="1745" width="0.6" height="15.0" fill="rgb(227,137,26)" rx="2" ry="2" />
<text text-anchor="" x="902.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>sys_write (13 samples, 0.10%)</title><rect x="182.2" y="1969" width="1.1" height="15.0" fill="rgb(232,20,45)" rx="2" ry="2" />
<text text-anchor="" x="185.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>do_softirq (49 samples, 0.36%)</title><rect x="507.5" y="1761" width="4.3" height="15.0" fill="rgb(232,107,31)" rx="2" ry="2" />
<text text-anchor="" x="510.47" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1041" width="3.2" height="15.0" fill="rgb(254,176,11)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="1051.5" font-size="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_unknown_fields::hdf89824739defc9a (2 samples, 0.01%)</title><rect x="677.0" y="1825" width="0.1" height="15.0" fill="rgb(237,41,20)" rx="2" ry="2" />
<text text-anchor="" x="679.96" 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_page_fault (2 samples, 0.01%)</title><rect x="94.6" y="1921" width="0.1" height="15.0" fill="rgb(218,169,50)" rx="2" ry="2" />
<text text-anchor="" x="97.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>rocksdb::MergingIterator::Next (204 samples, 1.51%)</title><rect x="1115.4" y="1905" width="17.8" height="15.0" fill="rgb(243,22,34)" rx="2" ry="2" />
<text text-anchor="" x="1118.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>core::fmt::Formatter::pad_integral::hb5576232a91a8942 (2 samples, 0.01%)</title><rect x="89.0" y="1841" width="0.2" height="15.0" fill="rgb(220,97,7)" rx="2" ry="2" />
<text text-anchor="" x="91.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>sys_write (2 samples, 0.01%)</title><rect x="817.4" y="1825" width="0.2" height="15.0" fill="rgb(205,91,46)" rx="2" ry="2" />
<text text-anchor="" x="820.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>grpc_slice_unref_internal (2 samples, 0.01%)</title><rect x="633.1" y="1953" width="0.1" height="15.0" fill="rgb(253,41,24)" rx="2" ry="2" />
<text text-anchor="" x="636.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>rcu_is_watching (2 samples, 0.01%)</title><rect x="370.2" y="1537" width="0.2" height="15.0" fill="rgb(254,96,54)" rx="2" ry="2" />
<text text-anchor="" x="373.24" 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_queue_xmit (2 samples, 0.01%)</title><rect x="315.4" y="1489" width="0.2" height="15.0" fill="rgb(230,92,10)" rx="2" ry="2" />
<text text-anchor="" x="318.41" 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>ext4_sync_file (4 samples, 0.03%)</title><rect x="990.0" y="1793" width="0.3" height="15.0" fill="rgb(220,181,13)" rx="2" ry="2" />
<text text-anchor="" x="992.98" 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_futex (3 samples, 0.02%)</title><rect x="966.8" y="1777" width="0.3" height="15.0" fill="rgb(234,19,1)" rx="2" ry="2" />
<text text-anchor="" x="969.80" 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>add_to_page_cache_lru (24 samples, 0.18%)</title><rect x="1086.1" y="1617" width="2.1" height="15.0" fill="rgb(215,175,48)" rx="2" ry="2" />
<text text-anchor="" x="1089.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>ip_local_deliver_finish (2 samples, 0.01%)</title><rect x="904.0" y="1569" width="0.2" height="15.0" fill="rgb(211,95,32)" rx="2" ry="2" />
<text text-anchor="" x="907.01" 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>fget_light (4 samples, 0.03%)</title><rect x="1186.2" y="1857" width="0.3" height="15.0" fill="rgb(225,222,40)" rx="2" ry="2" />
<text text-anchor="" x="1189.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>kmem_cache_free (6 samples, 0.04%)</title><rect x="297.4" y="1857" width="0.5" height="15.0" fill="rgb(230,220,10)" rx="2" ry="2" />
<text text-anchor="" x="300.39" 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>flush_tlb_mm_range (2 samples, 0.01%)</title><rect x="603.8" y="1921" width="0.2" height="15.0" fill="rgb(216,164,14)" rx="2" ry="2" />
<text text-anchor="" x="606.85" 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] (12 samples, 0.09%)</title><rect x="181.1" y="609" width="1.0" height="15.0" fill="rgb(227,146,4)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="577" width="0.1" height="15.0" fill="rgb(208,116,38)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>sched_clock (3 samples, 0.02%)</title><rect x="175.1" y="1809" width="0.3" height="15.0" fill="rgb(213,157,51)" rx="2" ry="2" />
<text text-anchor="" x="178.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>tcp_v4_rcv (7 samples, 0.05%)</title><rect x="1045.9" y="1745" width="0.6" height="15.0" fill="rgb(253,98,1)" rx="2" ry="2" />
<text text-anchor="" x="1048.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1745" width="1.1" height="15.0" fill="rgb(247,62,31)" rx="2" ry="2" />
<text text-anchor="" x="773.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>rocksdb::DeleteSSTFile (129 samples, 0.96%)</title><rect x="1146.7" y="1937" width="11.3" height="15.0" fill="rgb(208,64,38)" rx="2" ry="2" />
<text text-anchor="" x="1149.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="897" width="1.1" height="15.0" fill="rgb(243,132,29)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="907.5" font-size="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-poll-3 (1,501 samples, 11.13%)</title><rect x="699.5" y="2049" width="131.3" height="15.0" fill="rgb(223,99,4)" rx="2" ry="2" />
<text text-anchor="" x="702.53" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >grpc-poll-3</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_ack (55 samples, 0.41%)</title><rect x="315.6" y="1537" width="4.8" height="15.0" fill="rgb(215,217,23)" rx="2" ry="2" />
<text text-anchor="" x="318.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1857" width="3.2" height="15.0" fill="rgb(212,52,0)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>debug_lockdep_rcu_enabled (2 samples, 0.01%)</title><rect x="38.3" y="1489" width="0.2" height="15.0" fill="rgb(207,73,12)" rx="2" ry="2" />
<text text-anchor="" x="41.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="337" width="0.1" height="15.0" fill="rgb(227,130,23)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>do_async_page_fault (7 samples, 0.05%)</title><rect x="398.8" y="1985" width="0.7" height="15.0" fill="rgb(223,154,43)" rx="2" ry="2" />
<text text-anchor="" x="401.84" 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>futures::task_impl::current::h93a65a8e08ed8353 (3 samples, 0.02%)</title><rect x="463.6" y="1857" width="0.2" height="15.0" fill="rgb(205,150,2)" rx="2" ry="2" />
<text text-anchor="" x="466.56" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1137" width="1.1" height="15.0" fill="rgb(239,58,54)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>vfs_write (12 samples, 0.09%)</title><rect x="684.1" y="1809" width="1.1" height="15.0" fill="rgb(247,192,13)" rx="2" ry="2" />
<text text-anchor="" x="687.14" 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] (37 samples, 0.27%)</title><rect x="837.4" y="721" width="3.2" height="15.0" fill="rgb(234,172,24)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="731.5" font-size="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_check (2 samples, 0.01%)</title><rect x="236.9" y="2017" width="0.1" height="15.0" fill="rgb(222,134,43)" rx="2" ry="2" />
<text text-anchor="" x="239.87" 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>pthread_mutex_lock (2 samples, 0.01%)</title><rect x="1061.8" y="2017" width="0.2" height="15.0" fill="rgb(223,116,27)" rx="2" ry="2" />
<text text-anchor="" x="1064.78" 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>[unknown] (7 samples, 0.05%)</title><rect x="232.5" y="2001" width="0.6" height="15.0" fill="rgb(208,161,48)" rx="2" ry="2" />
<text text-anchor="" x="235.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>generic_write_end (30 samples, 0.22%)</title><rect x="43.6" y="1601" width="2.6" height="15.0" fill="rgb(216,68,47)" rx="2" ry="2" />
<text text-anchor="" x="46.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>sys_epoll_pwait (57 samples, 0.42%)</title><rect x="403.5" y="1985" width="5.0" height="15.0" fill="rgb(219,101,47)" rx="2" ry="2" />
<text text-anchor="" x="406.48" 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] (36 samples, 0.27%)</title><rect x="837.4" y="113" width="3.1" height="15.0" fill="rgb(217,175,10)" rx="2" ry="2" />
<text text-anchor="" x="840.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>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="91.2" y="1905" width="0.1" height="15.0" fill="rgb(242,130,0)" rx="2" ry="2" />
<text text-anchor="" x="94.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>[unknown] (3 samples, 0.02%)</title><rect x="431.4" y="1969" width="0.2" height="15.0" fill="rgb(222,30,45)" rx="2" ry="2" />
<text text-anchor="" x="434.38" 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>free_pages_prepare (2 samples, 0.01%)</title><rect x="976.6" y="1841" width="0.2" height="15.0" fill="rgb(238,164,13)" rx="2" ry="2" />
<text text-anchor="" x="979.60" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1217" width="1.9" height="15.0" fill="rgb(234,222,49)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>[unknown] (36 samples, 0.27%)</title><rect x="837.4" y="193" width="3.1" height="15.0" fill="rgb(223,116,13)" rx="2" ry="2" />
<text text-anchor="" x="840.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="769" width="1.8" height="15.0" fill="rgb(244,83,12)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="779.5" font-size="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 (2 samples, 0.01%)</title><rect x="539.8" y="1857" width="0.2" height="15.0" fill="rgb(238,204,32)" rx="2" ry="2" />
<text text-anchor="" x="542.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>pipe_write (6 samples, 0.04%)</title><rect x="473.0" y="1777" width="0.5" height="15.0" fill="rgb(232,20,4)" rx="2" ry="2" />
<text text-anchor="" x="476.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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::RecomputeSpliceLevels (15 samples, 0.11%)</title><rect x="835.1" y="1761" width="1.3" height="15.0" fill="rgb(236,172,22)" rx="2" ry="2" />
<text text-anchor="" x="838.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>hrtimer_try_to_cancel.part.23 (4 samples, 0.03%)</title><rect x="853.2" y="1793" width="0.3" height="15.0" fill="rgb(234,78,26)" rx="2" ry="2" />
<text text-anchor="" x="856.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>grpc_chttp2_begin_write (4 samples, 0.03%)</title><rect x="186.1" y="2001" width="0.3" height="15.0" fill="rgb(218,151,38)" rx="2" ry="2" />
<text text-anchor="" x="189.06" 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>offload (3 samples, 0.02%)</title><rect x="451.1" y="2001" width="0.2" height="15.0" fill="rgb(211,85,1)" rx="2" ry="2" />
<text text-anchor="" x="454.06" 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_unlock_irqrestore (4 samples, 0.03%)</title><rect x="16.6" y="1905" width="0.3" height="15.0" fill="rgb(206,0,45)" rx="2" ry="2" />
<text text-anchor="" x="19.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] (5 samples, 0.04%)</title><rect x="1168.2" y="369" width="0.5" height="15.0" fill="rgb(221,132,16)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1601" width="1.9" height="15.0" fill="rgb(233,46,53)" rx="2" ry="2" />
<text text-anchor="" x="595.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>_raw_spin_unlock_irqrestore (35 samples, 0.26%)</title><rect x="348.1" y="1777" width="3.1" height="15.0" fill="rgb(212,211,15)" rx="2" ry="2" />
<text text-anchor="" x="351.12" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1249" width="1.8" height="15.0" fill="rgb(229,212,46)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::RecomputeSpliceLevels (13 samples, 0.10%)</title><rect x="68.9" y="1745" width="1.2" height="15.0" fill="rgb(253,50,26)" rx="2" ry="2" />
<text text-anchor="" x="71.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>rocksdb::StatisticsImpl::measureTime (5 samples, 0.04%)</title><rect x="923.4" y="1809" width="0.5" height="15.0" fill="rgb(251,82,43)" rx="2" ry="2" />
<text text-anchor="" x="926.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>kfree_skbmem (2 samples, 0.01%)</title><rect x="131.2" y="1825" width="0.2" height="15.0" fill="rgb(247,189,45)" rx="2" ry="2" />
<text text-anchor="" x="134.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>skb_release_data (14 samples, 0.10%)</title><rect x="110.0" y="1473" width="1.2" height="15.0" fill="rgb(225,20,46)" rx="2" ry="2" />
<text text-anchor="" x="112.97" 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>mod_timer (4 samples, 0.03%)</title><rect x="571.5" y="1473" width="0.3" height="15.0" fill="rgb(212,28,28)" rx="2" ry="2" />
<text text-anchor="" x="574.49" 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>virtnet_poll (2 samples, 0.01%)</title><rect x="497.1" y="1873" width="0.2" height="15.0" fill="rgb(226,34,52)" rx="2" ry="2" />
<text text-anchor="" x="500.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>sys_write (4 samples, 0.03%)</title><rect x="1134.3" y="1793" width="0.3" height="15.0" fill="rgb(245,46,3)" rx="2" ry="2" />
<text text-anchor="" x="1137.29" 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>lock_release (2 samples, 0.01%)</title><rect x="40.7" y="1553" width="0.2" height="15.0" fill="rgb(214,125,24)" rx="2" ry="2" />
<text text-anchor="" x="43.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1681" width="0.1" height="15.0" fill="rgb(253,135,12)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>__ext4_journal_start_sb (2 samples, 0.01%)</title><rect x="976.9" y="1601" width="0.1" height="15.0" fill="rgb(206,121,41)" rx="2" ry="2" />
<text text-anchor="" x="979.86" 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>skb_release_data (7 samples, 0.05%)</title><rect x="536.9" y="1777" width="0.6" height="15.0" fill="rgb(254,172,3)" rx="2" ry="2" />
<text text-anchor="" x="539.85" 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>__mutex_unlock_slowpath (2 samples, 0.01%)</title><rect x="98.8" y="1921" width="0.1" height="15.0" fill="rgb(243,30,22)" rx="2" ry="2" />
<text text-anchor="" x="101.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>protobuf::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (3 samples, 0.02%)</title><rect x="78.9" y="1841" width="0.3" height="15.0" fill="rgb(209,147,48)" rx="2" ry="2" />
<text text-anchor="" x="81.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>rocksdb::ThreadPoolImpl::Impl::BGThread (1,080 samples, 8.00%)</title><rect x="1063.5" y="2001" width="94.5" height="15.0" fill="rgb(248,16,13)" rx="2" ry="2" />
<text text-anchor="" x="1066.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rocksdb::Th..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::sys::imp::thread::Thread::new::thread_start::h227b2afaa9316a8d (809 samples, 6.00%)</title><rect x="21.2" y="2017" width="70.7" height="15.0" fill="rgb(234,93,3)" rx="2" ry="2" />
<text text-anchor="" x="24.19" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gpr_mpscq_push (3 samples, 0.02%)</title><rect x="801.9" y="2017" width="0.3" height="15.0" fill="rgb(207,56,33)" rx="2" ry="2" />
<text text-anchor="" x="804.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>__dev_queue_xmit (59 samples, 0.44%)</title><rect x="146.0" y="1745" width="5.2" height="15.0" fill="rgb(227,15,35)" rx="2" ry="2" />
<text text-anchor="" x="149.00" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1297" width="1.0" height="15.0" fill="rgb(225,106,0)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>tcp_transmit_skb (120 samples, 0.89%)</title><rect x="713.5" y="1857" width="10.5" height="15.0" fill="rgb(236,181,38)" rx="2" ry="2" />
<text text-anchor="" x="716.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>fget_light (17 samples, 0.13%)</title><rect x="768.4" y="1937" width="1.5" height="15.0" fill="rgb(241,173,42)" rx="2" ry="2" />
<text text-anchor="" x="771.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>ip_rcv (91 samples, 0.67%)</title><rect x="754.7" y="1633" width="8.0" height="15.0" fill="rgb(213,92,13)" rx="2" ry="2" />
<text text-anchor="" x="757.72" 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>new_handle (24 samples, 0.18%)</title><rect x="37.3" y="1569" width="2.1" height="15.0" fill="rgb(228,96,39)" rx="2" ry="2" />
<text text-anchor="" x="40.29" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1505" width="1.1" height="15.0" fill="rgb(207,127,28)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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 (14 samples, 0.10%)</title><rect x="110.0" y="1489" width="1.2" height="15.0" fill="rgb(212,142,6)" rx="2" ry="2" />
<text text-anchor="" x="112.97" 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>net_rx_action (2 samples, 0.01%)</title><rect x="187.7" y="1889" width="0.2" height="15.0" fill="rgb(240,200,13)" rx="2" ry="2" />
<text text-anchor="" x="190.72" 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_unlock_irqrestore (2 samples, 0.01%)</title><rect x="776.1" y="1937" width="0.1" height="15.0" fill="rgb(217,45,49)" rx="2" ry="2" />
<text text-anchor="" x="779.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$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::merge_from::h57b1d6303c5588ab (112 samples, 0.83%)</title><rect x="476.5" y="1889" width="9.8" height="15.0" fill="rgb(233,132,54)" rx="2" ry="2" />
<text text-anchor="" x="479.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>trace_do_page_fault (2 samples, 0.01%)</title><rect x="306.8" y="1841" width="0.2" height="15.0" fill="rgb(216,15,11)" rx="2" ry="2" />
<text text-anchor="" x="309.84" 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_signal (10 samples, 0.07%)</title><rect x="638.5" y="1969" width="0.9" height="15.0" fill="rgb(238,207,47)" rx="2" ry="2" />
<text text-anchor="" x="641.48" 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>might_fault (3 samples, 0.02%)</title><rect x="402.6" y="1953" width="0.3" height="15.0" fill="rgb(243,166,34)" rx="2" ry="2" />
<text text-anchor="" x="405.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="769" width="0.1" height="15.0" fill="rgb(231,136,12)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="779.5" font-size="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] (21 samples, 0.16%)</title><rect x="592.2" y="433" width="1.9" height="15.0" fill="rgb(243,63,25)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>local_bh_enable (46 samples, 0.34%)</title><rect x="107.8" y="1777" width="4.0" height="15.0" fill="rgb(239,94,34)" rx="2" ry="2" />
<text text-anchor="" x="110.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>stub_rt_sigreturn (2 samples, 0.01%)</title><rect x="610.9" y="2001" width="0.2" height="15.0" fill="rgb(218,107,39)" rx="2" ry="2" />
<text text-anchor="" x="613.93" 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_unlock_irqrestore (6 samples, 0.04%)</title><rect x="1173.3" y="1841" width="0.5" height="15.0" fill="rgb(214,225,31)" rx="2" ry="2" />
<text text-anchor="" x="1176.30" 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>rocksdb::ThreadPoolImpl::Impl::BGThread (127 samples, 0.94%)</title><rect x="982.2" y="2001" width="11.1" height="15.0" fill="rgb(212,172,19)" rx="2" ry="2" />
<text text-anchor="" x="985.20" 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>rocksdb::WritableFileWriter::Sync (4 samples, 0.03%)</title><rect x="990.0" y="1889" width="0.3" height="15.0" fill="rgb(211,151,15)" rx="2" ry="2" />
<text text-anchor="" x="992.98" 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>protobuf::stream::CodedOutputStream::write_raw_varint32::hcae9144bbf715630 (2 samples, 0.01%)</title><rect x="266.2" y="1825" width="0.1" height="15.0" fill="rgb(242,85,1)" rx="2" ry="2" />
<text text-anchor="" x="269.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>tcp_send_ack (124 samples, 0.92%)</title><rect x="310.8" y="1873" width="10.8" height="15.0" fill="rgb(229,200,26)" rx="2" ry="2" />
<text text-anchor="" x="313.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>schedule_hrtimeout_range_clock (9 samples, 0.07%)</title><rect x="205.8" y="1921" width="0.8" height="15.0" fill="rgb(244,84,50)" rx="2" ry="2" />
<text text-anchor="" x="208.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>generic_file_buffered_write (2 samples, 0.01%)</title><rect x="832.4" y="1649" width="0.2" height="15.0" fill="rgb(225,158,28)" rx="2" ry="2" />
<text text-anchor="" x="835.38" 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_write (4 samples, 0.03%)</title><rect x="428.1" y="1953" width="0.3" height="15.0" fill="rgb(222,120,46)" rx="2" ry="2" />
<text text-anchor="" x="431.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>kmem_cache_alloc_node (5 samples, 0.04%)</title><rect x="741.2" y="1857" width="0.5" height="15.0" fill="rgb(221,157,45)" rx="2" ry="2" />
<text text-anchor="" x="744.25" 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>[tikv-server] (50 samples, 0.37%)</title><rect x="289.3" y="2033" width="4.4" height="15.0" fill="rgb(232,43,45)" rx="2" ry="2" />
<text text-anchor="" x="292.34" 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>__schedule (10 samples, 0.07%)</title><rect x="396.5" y="1905" width="0.9" height="15.0" fill="rgb(215,104,30)" rx="2" ry="2" />
<text text-anchor="" x="399.48" 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>protobuf::stream::CodedInputStream::merge_message::h88c64e61100ab6bb (2 samples, 0.01%)</title><rect x="284.8" y="1857" width="0.2" height="15.0" fill="rgb(230,120,2)" rx="2" ry="2" />
<text text-anchor="" x="287.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$kvproto..eraftpb..Entry$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::hb1f38a70abc626b2 (10 samples, 0.07%)</title><rect x="952.4" y="1857" width="0.8" height="15.0" fill="rgb(252,0,11)" rx="2" ry="2" />
<text text-anchor="" x="955.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>jbd2_journal_stop (2 samples, 0.01%)</title><rect x="985.0" y="1585" width="0.2" height="15.0" fill="rgb(221,76,34)" rx="2" ry="2" />
<text text-anchor="" x="988.00" 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_poll (5 samples, 0.04%)</title><rect x="777.0" y="1889" width="0.5" height="15.0" fill="rgb(224,70,13)" rx="2" ry="2" />
<text text-anchor="" x="780.02" 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] (36 samples, 0.27%)</title><rect x="837.4" y="81" width="3.1" height="15.0" fill="rgb(228,227,52)" rx="2" ry="2" />
<text text-anchor="" x="840.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>std::_Hashtable&lt;unsigned int, std::pair&lt;unsigned int const, rocksdb::ColumnFamilyData*&gt;, std::allocator&lt;std::pair&lt;unsigned int const, rocksdb::ColumnFamilyData*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;unsigned int&gt;, std::hash&lt;unsigned int&gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;false, false, true&gt; &gt;::_M_find_before_node (2 samples, 0.01%)</title><rect x="925.9" y="1745" width="0.1" height="15.0" fill="rgb(219,153,25)" rx="2" ry="2" />
<text text-anchor="" x="928.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1713" width="1.0" height="15.0" fill="rgb(221,155,34)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1105" width="1.0" height="15.0" fill="rgb(208,75,9)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbd2_journal_dirty_metadata (2 samples, 0.01%)</title><rect x="919.0" y="1473" width="0.1" height="15.0" fill="rgb(205,41,4)" rx="2" ry="2" />
<text text-anchor="" x="921.96" 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>wake_up_state (6 samples, 0.04%)</title><rect x="899.5" y="1729" width="0.6" height="15.0" fill="rgb(217,144,11)" rx="2" ry="2" />
<text text-anchor="" x="902.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1665" width="1.1" height="15.0" fill="rgb(205,181,23)" rx="2" ry="2" />
<text text-anchor="" x="773.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>ip_local_deliver (172 samples, 1.27%)</title><rect x="565.6" y="1601" width="15.1" height="15.0" fill="rgb(220,145,10)" rx="2" ry="2" />
<text text-anchor="" x="568.63" 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>debug_check_no_obj_freed (5 samples, 0.04%)</title><rect x="1162.2" y="1425" width="0.4" height="15.0" fill="rgb(222,162,17)" rx="2" ry="2" />
<text text-anchor="" x="1165.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>rocksdb::WriteBatch::Put (4 samples, 0.03%)</title><rect x="953.3" y="1825" width="0.4" height="15.0" fill="rgb(241,67,49)" rx="2" ry="2" />
<text text-anchor="" x="956.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>rocksdb::ArenaWrappedDBIter::value (3 samples, 0.02%)</title><rect x="1167.7" y="1873" width="0.3" height="15.0" fill="rgb(225,49,49)" rx="2" ry="2" />
<text text-anchor="" x="1170.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>ext4_file_write (7 samples, 0.05%)</title><rect x="1137.4" y="1777" width="0.6" height="15.0" fill="rgb(216,96,13)" rx="2" ry="2" />
<text text-anchor="" x="1140.44" 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] (21 samples, 0.16%)</title><rect x="10.3" y="465" width="1.8" height="15.0" fill="rgb(233,101,8)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>ip_rcv_finish (2 samples, 0.01%)</title><rect x="62.1" y="1505" width="0.2" height="15.0" fill="rgb(242,188,46)" rx="2" ry="2" />
<text text-anchor="" x="65.13" 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>__find_get_block_slow (2 samples, 0.01%)</title><rect x="983.9" y="1569" width="0.2" height="15.0" fill="rgb(220,158,29)" rx="2" ry="2" />
<text text-anchor="" x="986.95" 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_unpack::h60700b1f76c3f32e (2 samples, 0.01%)</title><rect x="695.0" y="1825" width="0.2" height="15.0" fill="rgb(212,165,33)" rx="2" ry="2" />
<text text-anchor="" x="697.98" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="593" width="0.5" height="15.0" fill="rgb(242,5,22)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>sched_clock (2 samples, 0.01%)</title><rect x="586.0" y="1809" width="0.2" height="15.0" fill="rgb(206,87,50)" rx="2" ry="2" />
<text text-anchor="" x="589.01" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1841" width="1.1" height="15.0" fill="rgb(233,209,12)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>irq_exit (2 samples, 0.01%)</title><rect x="788.5" y="1921" width="0.1" height="15.0" fill="rgb(214,86,5)" rx="2" ry="2" />
<text text-anchor="" x="791.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>__find_get_block_slow (12 samples, 0.09%)</title><rect x="1075.0" y="1601" width="1.0" height="15.0" fill="rgb(254,17,26)" rx="2" ry="2" />
<text text-anchor="" x="1077.99" 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>rocksdb::CompactionJob::FinishCompactionOutputFile (96 samples, 0.71%)</title><rect x="1134.3" y="1921" width="8.4" height="15.0" fill="rgb(206,57,21)" rx="2" ry="2" />
<text text-anchor="" x="1137.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>schedule_hrtimeout_range (9 samples, 0.07%)</title><rect x="205.8" y="1937" width="0.8" height="15.0" fill="rgb(241,189,3)" rx="2" ry="2" />
<text text-anchor="" x="208.82" 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] (12 samples, 0.09%)</title><rect x="181.1" y="2001" width="1.0" height="15.0" fill="rgb(216,208,50)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>system_call_fastpath (53 samples, 0.39%)</title><rect x="1138.0" y="1857" width="4.7" height="15.0" fill="rgb(212,163,5)" rx="2" ry="2" />
<text text-anchor="" x="1141.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>__dev_queue_xmit (20 samples, 0.15%)</title><rect x="311.4" y="1761" width="1.7" height="15.0" fill="rgb(252,160,50)" rx="2" ry="2" />
<text text-anchor="" x="314.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1889" width="1.1" height="15.0" fill="rgb(206,44,48)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>core::ptr::drop_in_place::hfe8a0d1a6ae72474 (2 samples, 0.01%)</title><rect x="808.9" y="1873" width="0.2" height="15.0" fill="rgb(216,43,0)" rx="2" ry="2" />
<text text-anchor="" x="811.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>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::he8b0a85c016684d6 (2 samples, 0.01%)</title><rect x="882.4" y="1857" width="0.2" height="15.0" fill="rgb(244,121,27)" rx="2" ry="2" />
<text text-anchor="" x="885.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>tcp_rcv_established (2 samples, 0.01%)</title><rect x="104.3" y="1857" width="0.2" height="15.0" fill="rgb(239,67,40)" rx="2" ry="2" />
<text text-anchor="" x="107.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$std..collections..hash..set..HashSet$LT$T$C$$u20$S$GT$$GT$::insert::h62a5e3febc4e5bd2 (3 samples, 0.02%)</title><rect x="859.0" y="1889" width="0.2" height="15.0" fill="rgb(229,126,50)" rx="2" ry="2" />
<text text-anchor="" x="861.97" 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>debug_check_no_obj_freed (4 samples, 0.03%)</title><rect x="979.5" y="1713" width="0.3" height="15.0" fill="rgb(210,98,53)" rx="2" ry="2" />
<text text-anchor="" x="982.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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::FindSpliceForLevel (14 samples, 0.10%)</title><rect x="833.4" y="1761" width="1.3" height="15.0" fill="rgb(236,107,47)" rx="2" ry="2" />
<text text-anchor="" x="836.43" 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_unlock_irqrestore (37 samples, 0.27%)</title><rect x="742.2" y="1777" width="3.2" height="15.0" fill="rgb(243,224,20)" rx="2" ry="2" />
<text text-anchor="" x="745.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>sys_pread64 (2 samples, 0.01%)</title><rect x="1137.1" y="1713" width="0.2" height="15.0" fill="rgb(254,57,23)" rx="2" ry="2" />
<text text-anchor="" x="1140.09" 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 (53 samples, 0.39%)</title><rect x="118.0" y="1889" width="4.6" height="15.0" fill="rgb(244,91,49)" rx="2" ry="2" />
<text text-anchor="" x="121.01" 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>do_invalidatepage (53 samples, 0.39%)</title><rect x="1153.3" y="1761" width="4.6" height="15.0" fill="rgb(222,200,7)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>futures::task_impl::current::h93a65a8e08ed8353 (2 samples, 0.01%)</title><rect x="681.7" y="1905" width="0.2" height="15.0" fill="rgb(233,134,28)" rx="2" ry="2" />
<text text-anchor="" x="684.69" 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_write (2 samples, 0.01%)</title><rect x="832.4" y="1745" width="0.2" height="15.0" fill="rgb(238,60,22)" rx="2" ry="2" />
<text text-anchor="" x="835.38" 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>free_pages_and_swap_cache (3 samples, 0.02%)</title><rect x="1055.4" y="1873" width="0.3" height="15.0" fill="rgb(217,44,17)" rx="2" ry="2" />
<text text-anchor="" x="1058.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>mpage_prepare_extent_to_map (9 samples, 0.07%)</title><rect x="1141.1" y="1729" width="0.8" height="15.0" fill="rgb(222,228,16)" rx="2" ry="2" />
<text text-anchor="" x="1144.11" 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>syscall (9 samples, 0.07%)</title><rect x="71.5" y="1825" width="0.8" height="15.0" fill="rgb(252,104,46)" rx="2" ry="2" />
<text text-anchor="" x="74.48" 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_deliver (178 samples, 1.32%)</title><rect x="154.4" y="1601" width="15.6" height="15.0" fill="rgb(235,220,9)" rx="2" ry="2" />
<text text-anchor="" x="157.40" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1025" width="1.9" height="15.0" fill="rgb(217,44,46)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="1035.5" font-size="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 (82 samples, 0.61%)</title><rect x="716.1" y="1761" width="7.1" height="15.0" fill="rgb(229,91,49)" rx="2" ry="2" />
<text text-anchor="" x="719.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>ext4_dirty_inode (26 samples, 0.19%)</title><rect x="43.7" y="1569" width="2.2" height="15.0" fill="rgb(237,133,0)" rx="2" ry="2" />
<text text-anchor="" x="46.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>rocksdb::FullFilterBlockBuilder::Add (23 samples, 0.17%)</title><rect x="1104.2" y="1905" width="2.0" height="15.0" fill="rgb(230,165,8)" rx="2" ry="2" />
<text text-anchor="" x="1107.20" 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_irq (16 samples, 0.12%)</title><rect x="608.7" y="1937" width="1.4" height="15.0" fill="rgb(224,149,17)" rx="2" ry="2" />
<text text-anchor="" x="611.66" 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>system_call_fastpath (5 samples, 0.04%)</title><rect x="976.9" y="1745" width="0.4" height="15.0" fill="rgb(205,97,35)" rx="2" ry="2" />
<text text-anchor="" x="979.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>lock_release (2 samples, 0.01%)</title><rect x="730.8" y="1857" width="0.1" height="15.0" fill="rgb(246,142,20)" rx="2" ry="2" />
<text text-anchor="" x="733.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="993" width="1.1" height="15.0" fill="rgb(242,98,37)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="1003.5" font-size="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 (29 samples, 0.21%)</title><rect x="509.0" y="1505" width="2.5" height="15.0" fill="rgb(245,113,47)" rx="2" ry="2" />
<text text-anchor="" x="511.95" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1473" width="0.2" height="15.0" fill="rgb(217,10,18)" rx="2" ry="2" />
<text text-anchor="" x="834.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>__vdso_gettimeofday (8 samples, 0.06%)</title><rect x="887.7" y="1745" width="0.7" height="15.0" fill="rgb(232,199,45)" rx="2" ry="2" />
<text text-anchor="" x="890.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>finish_task_switch (6 samples, 0.04%)</title><rect x="183.6" y="1873" width="0.5" height="15.0" fill="rgb(215,113,2)" rx="2" ry="2" />
<text text-anchor="" x="186.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>ext4_evict_inode (22 samples, 0.16%)</title><rect x="1160.7" y="1649" width="1.9" height="15.0" fill="rgb(205,228,24)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>irq_exit (2 samples, 0.01%)</title><rect x="1081.1" y="1489" width="0.2" height="15.0" fill="rgb(238,34,5)" rx="2" ry="2" />
<text text-anchor="" x="1084.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>__block_write_begin (52 samples, 0.39%)</title><rect x="1072.3" y="1633" width="4.5" height="15.0" fill="rgb(252,156,28)" rx="2" ry="2" />
<text text-anchor="" x="1075.28" 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_acquire (2 samples, 0.01%)</title><rect x="369.9" y="1537" width="0.2" height="15.0" fill="rgb(212,211,42)" rx="2" ry="2" />
<text text-anchor="" x="372.89" 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>generic_file_aio_write (5 samples, 0.04%)</title><rect x="976.9" y="1665" width="0.4" height="15.0" fill="rgb(221,8,13)" rx="2" ry="2" />
<text text-anchor="" x="979.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>lock_acquire (4 samples, 0.03%)</title><rect x="966.0" y="1793" width="0.4" height="15.0" fill="rgb(222,79,40)" rx="2" ry="2" />
<text text-anchor="" x="969.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>_$LT$kvproto..raft_cmdpb..RaftRequestHeader$u20$as$u20$protobuf..core..Message$GT$::merge_from::h9ddbb43c7f92ed31 (7 samples, 0.05%)</title><rect x="937.6" y="1841" width="0.6" height="15.0" fill="rgb(219,229,10)" rx="2" ry="2" />
<text text-anchor="" x="940.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="449" width="1.1" height="15.0" fill="rgb(210,63,51)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>__GI___libc_write (2 samples, 0.01%)</title><rect x="227.2" y="2001" width="0.2" height="15.0" fill="rgb(209,32,45)" rx="2" ry="2" />
<text text-anchor="" x="230.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>ext4_da_invalidatepage (9 samples, 0.07%)</title><rect x="992.4" y="1761" width="0.8" height="15.0" fill="rgb(246,33,9)" rx="2" ry="2" />
<text text-anchor="" x="995.43" 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_deliver_finish (2 samples, 0.01%)</title><rect x="737.4" y="1633" width="0.2" height="15.0" fill="rgb(222,194,14)" rx="2" ry="2" />
<text text-anchor="" x="740.40" 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>workqueue_ref (2 samples, 0.01%)</title><rect x="451.3" y="2001" width="0.2" height="15.0" fill="rgb(230,85,17)" rx="2" ry="2" />
<text text-anchor="" x="454.32" 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] (3 samples, 0.02%)</title><rect x="831.7" y="817" width="0.2" height="15.0" fill="rgb(241,113,28)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="827.5" font-size="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 (5 samples, 0.04%)</title><rect x="297.5" y="1825" width="0.4" height="15.0" fill="rgb(211,34,44)" rx="2" ry="2" />
<text text-anchor="" x="300.48" 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>__might_sleep (2 samples, 0.01%)</title><rect x="539.6" y="1841" width="0.1" height="15.0" fill="rgb(249,177,4)" rx="2" ry="2" />
<text text-anchor="" x="542.57" 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>_raw_spin_unlock_irqrestore (12 samples, 0.09%)</title><rect x="1139.5" y="1665" width="1.1" height="15.0" fill="rgb(243,114,33)" rx="2" ry="2" />
<text text-anchor="" x="1142.54" 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>system_call_fastpath (334 samples, 2.48%)</title><rect x="1069.6" y="1777" width="29.2" height="15.0" fill="rgb(227,156,10)" rx="2" ry="2" />
<text text-anchor="" x="1072.57" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (2 samples, 0.01%)</title><rect x="705.7" y="1857" width="0.1" height="15.0" fill="rgb(219,69,6)" rx="2" ry="2" />
<text text-anchor="" x="708.65" 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] (3 samples, 0.02%)</title><rect x="831.7" y="769" width="0.2" height="15.0" fill="rgb(210,69,40)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="779.5" font-size="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] (3 samples, 0.02%)</title><rect x="831.7" y="449" width="0.2" height="15.0" fill="rgb(249,22,31)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>grpcwrap_metadata_array_destroy_metadata_only (2 samples, 0.01%)</title><rect x="456.1" y="1953" width="0.2" height="15.0" fill="rgb(206,42,18)" rx="2" ry="2" />
<text text-anchor="" x="459.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>__lll_unlock_wake (2 samples, 0.01%)</title><rect x="184.2" y="2001" width="0.2" height="15.0" fill="rgb(229,22,13)" rx="2" ry="2" />
<text text-anchor="" x="187.22" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="497" width="0.5" height="15.0" fill="rgb(243,182,28)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>__module_address (2 samples, 0.01%)</title><rect x="35.3" y="1473" width="0.2" height="15.0" fill="rgb(209,195,4)" rx="2" ry="2" />
<text text-anchor="" x="38.28" 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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1521" width="0.5" height="15.0" fill="rgb(254,139,14)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1249" width="0.2" height="15.0" fill="rgb(254,99,0)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>_$LT$kvproto..raft_cmdpb..RaftCmdRequest$u20$as$u20$protobuf..core..Message$GT$::merge_from::h073ec97f916c777d (9 samples, 0.07%)</title><rect x="937.6" y="1857" width="0.8" height="15.0" fill="rgb(220,61,50)" rx="2" ry="2" />
<text text-anchor="" x="940.59" 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>debug_check_no_obj_freed (5 samples, 0.04%)</title><rect x="131.5" y="1761" width="0.4" height="15.0" fill="rgb(227,85,24)" rx="2" ry="2" />
<text text-anchor="" x="134.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] (21 samples, 0.16%)</title><rect x="592.2" y="1825" width="1.9" height="15.0" fill="rgb(245,35,44)" rx="2" ry="2" />
<text text-anchor="" x="595.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>[unknown] (5 samples, 0.04%)</title><rect x="432.9" y="2001" width="0.4" height="15.0" fill="rgb(250,146,8)" rx="2" ry="2" />
<text text-anchor="" x="435.87" 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 (2 samples, 0.01%)</title><rect x="408.7" y="1873" width="0.2" height="15.0" fill="rgb(216,62,10)" rx="2" ry="2" />
<text text-anchor="" x="411.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>verify_iovec (3 samples, 0.02%)</title><rect x="111.8" y="1937" width="0.3" height="15.0" fill="rgb(241,194,26)" rx="2" ry="2" />
<text text-anchor="" x="114.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>find_task_by_pid_ns (2 samples, 0.01%)</title><rect x="620.1" y="1905" width="0.2" height="15.0" fill="rgb(224,195,33)" rx="2" ry="2" />
<text text-anchor="" x="623.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>_$LT$kvproto..raft_cmdpb..Request$u20$as$u20$protobuf..core..Message$GT$::merge_from::h704a52bfdc5e98ef (25 samples, 0.19%)</title><rect x="77.9" y="1873" width="2.2" height="15.0" fill="rgb(231,84,44)" rx="2" ry="2" />
<text text-anchor="" x="80.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>system_call_fastpath (6 samples, 0.04%)</title><rect x="193.2" y="2001" width="0.6" height="15.0" fill="rgb(230,74,32)" rx="2" ry="2" />
<text text-anchor="" x="196.23" 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>put_page (20 samples, 0.15%)</title><rect x="500.8" y="1841" width="1.8" height="15.0" fill="rgb(248,169,54)" rx="2" ry="2" />
<text text-anchor="" x="503.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>schedule (2 samples, 0.01%)</title><rect x="71.2" y="1713" width="0.2" height="15.0" fill="rgb(227,115,3)" rx="2" ry="2" />
<text text-anchor="" x="74.22" 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$tikv..raft..raft..Raft$LT$T$GT$$GT$::maybe_commit::h6e42a0e2c25c1668 (5 samples, 0.04%)</title><rect x="871.8" y="1857" width="0.5" height="15.0" fill="rgb(235,51,14)" rx="2" ry="2" />
<text text-anchor="" x="874.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>[unknown] (2 samples, 0.01%)</title><rect x="491.2" y="1969" width="0.2" height="15.0" fill="rgb(254,199,36)" rx="2" ry="2" />
<text text-anchor="" x="494.20" 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>tikv::raftstore::store::peer::Peer::step::h37f5fb19eb9a553a (112 samples, 0.83%)</title><rect x="866.4" y="1889" width="9.8" height="15.0" fill="rgb(231,60,16)" rx="2" ry="2" />
<text text-anchor="" x="869.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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="777.8" y="1889" width="0.2" height="15.0" fill="rgb(215,161,2)" rx="2" ry="2" />
<text text-anchor="" x="780.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>tikv::raftstore::store::peer::Peer::send::h90d6cb1d8c7cde78 (150 samples, 1.11%)</title><rect x="938.8" y="1873" width="13.1" height="15.0" fill="rgb(232,188,48)" rx="2" ry="2" />
<text text-anchor="" x="941.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>debug_check_no_obj_freed (10 samples, 0.07%)</title><rect x="109.0" y="1457" width="0.9" height="15.0" fill="rgb(221,115,24)" rx="2" ry="2" />
<text text-anchor="" x="112.00" 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$tikv..storage..engine..raftkv..RaftKv$LT$S$GT$$u20$as$u20$tikv..storage..engine..Engine$GT$::async_write::hb0b779ab3f3f5156 (17 samples, 0.13%)</title><rect x="285.7" y="1905" width="1.5" height="15.0" fill="rgb(233,118,52)" rx="2" ry="2" />
<text text-anchor="" x="288.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>rocksdb::ColumnFamilyMemTablesImpl::Seek (3 samples, 0.02%)</title><rect x="925.8" y="1761" width="0.2" height="15.0" fill="rgb(218,107,53)" rx="2" ry="2" />
<text text-anchor="" x="928.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>lock_acquire (2 samples, 0.01%)</title><rect x="1169.6" y="1921" width="0.2" height="15.0" fill="rgb(234,68,40)" rx="2" ry="2" />
<text text-anchor="" x="1172.62" 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>std::panicking::try::do_call::h1563788f2c7af1d0 (86 samples, 0.64%)</title><rect x="1160.5" y="1969" width="7.5" height="15.0" fill="rgb(233,90,21)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>do_notify_resume (4 samples, 0.03%)</title><rect x="431.9" y="1985" width="0.4" height="15.0" fill="rgb(208,127,30)" rx="2" ry="2" />
<text text-anchor="" x="434.90" 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>__memcpy_ssse3_back (8 samples, 0.06%)</title><rect x="30.1" y="1905" width="0.7" height="15.0" fill="rgb(246,184,49)" rx="2" ry="2" />
<text text-anchor="" x="33.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>kvproto::eraftpb::Message::get_msg_type::h85deda9fb707aac9 (6 samples, 0.04%)</title><rect x="860.9" y="1889" width="0.5" height="15.0" fill="rgb(254,127,46)" rx="2" ry="2" />
<text text-anchor="" x="863.89" 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_skbmem (6 samples, 0.04%)</title><rect x="536.3" y="1793" width="0.6" height="15.0" fill="rgb(217,111,1)" rx="2" ry="2" />
<text text-anchor="" x="539.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>mod_timer (5 samples, 0.04%)</title><rect x="111.2" y="1489" width="0.4" height="15.0" fill="rgb(221,229,30)" rx="2" ry="2" />
<text text-anchor="" x="114.19" 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>jbd2__journal_start (34 samples, 0.25%)</title><rect x="37.3" y="1585" width="3.0" height="15.0" fill="rgb(236,72,3)" rx="2" ry="2" />
<text text-anchor="" x="40.29" 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>_$LT$protobuf..singular..SingularPtrField$LT$T$GT$$GT$::set_default::h731ec3727a638472 (2 samples, 0.01%)</title><rect x="822.1" y="1873" width="0.1" height="15.0" fill="rgb(242,181,32)" rx="2" ry="2" />
<text text-anchor="" x="825.06" 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>lock_acquire (4 samples, 0.03%)</title><rect x="39.9" y="1553" width="0.4" height="15.0" fill="rgb(243,21,3)" rx="2" ry="2" />
<text text-anchor="" x="42.91" 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-2.17.so] (4 samples, 0.03%)</title><rect x="836.8" y="2033" width="0.4" height="15.0" fill="rgb(222,166,44)" rx="2" ry="2" />
<text text-anchor="" x="839.84" 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 (2 samples, 0.01%)</title><rect x="731.1" y="1825" width="0.2" height="15.0" fill="rgb(221,226,26)" rx="2" ry="2" />
<text text-anchor="" x="734.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>lock_is_held (2 samples, 0.01%)</title><rect x="43.7" y="1505" width="0.1" height="15.0" fill="rgb(244,8,47)" rx="2" ry="2" />
<text text-anchor="" x="46.67" 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>iput (22 samples, 0.16%)</title><rect x="1160.7" y="1681" width="1.9" height="15.0" fill="rgb(222,101,54)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>core::fmt::write::h4596c4f5073895b5 (8 samples, 0.06%)</title><rect x="88.6" y="1921" width="0.7" height="15.0" fill="rgb(250,10,14)" rx="2" ry="2" />
<text text-anchor="" x="91.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>might_fault (3 samples, 0.02%)</title><rect x="100.5" y="1937" width="0.3" height="15.0" fill="rgb(225,40,8)" rx="2" ry="2" />
<text text-anchor="" x="103.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>_raw_spin_unlock_irq (6 samples, 0.04%)</title><rect x="183.6" y="1857" width="0.5" height="15.0" fill="rgb(215,222,19)" rx="2" ry="2" />
<text text-anchor="" x="186.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="545" width="3.2" height="15.0" fill="rgb(253,11,18)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>_raw_spin_unlock_irq (12 samples, 0.09%)</title><rect x="854.1" y="1761" width="1.0" height="15.0" fill="rgb(208,28,38)" rx="2" ry="2" />
<text text-anchor="" x="857.07" 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>async_page_fault (7 samples, 0.05%)</title><rect x="605.3" y="2001" width="0.6" height="15.0" fill="rgb(216,36,51)" rx="2" ry="2" />
<text text-anchor="" x="608.34" 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 (311 samples, 2.31%)</title><rect x="145.6" y="1777" width="27.2" height="15.0" fill="rgb(247,150,21)" rx="2" ry="2" />
<text text-anchor="" x="148.56" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_sendmsg (753 samples, 5.58%)</title><rect x="112.7" y="1953" width="65.8" height="15.0" fill="rgb(231,201,5)" rx="2" ry="2" />
<text text-anchor="" x="115.68" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >___sys_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="753" width="0.1" height="15.0" fill="rgb(248,103,37)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="763.5" font-size="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] (13 samples, 0.10%)</title><rect x="390.2" y="81" width="1.1" height="15.0" fill="rgb(214,190,15)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>wake_up_state (19 samples, 0.14%)</title><rect x="234.3" y="1937" width="1.7" height="15.0" fill="rgb(211,181,18)" rx="2" ry="2" />
<text text-anchor="" x="237.33" 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>sysret_audit (6 samples, 0.04%)</title><rect x="703.1" y="2001" width="0.5" height="15.0" fill="rgb(243,25,49)" rx="2" ry="2" />
<text text-anchor="" x="706.11" 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>kvm_sched_clock_read (2 samples, 0.01%)</title><rect x="175.2" y="1793" width="0.2" height="15.0" fill="rgb(241,171,20)" rx="2" ry="2" />
<text text-anchor="" x="178.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="673" width="0.2" height="15.0" fill="rgb(237,127,29)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gpr_mpscq_push (4 samples, 0.03%)</title><rect x="247.8" y="2017" width="0.4" height="15.0" fill="rgb(237,91,23)" rx="2" ry="2" />
<text text-anchor="" x="250.80" 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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="865" width="1.1" height="15.0" fill="rgb(240,214,5)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_mark_iloc_dirty (2 samples, 0.01%)</title><rect x="36.0" y="1553" width="0.2" height="15.0" fill="rgb(205,118,17)" rx="2" ry="2" />
<text text-anchor="" x="38.98" 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>rcu_read_unlock (3 samples, 0.02%)</title><rect x="569.5" y="1553" width="0.2" height="15.0" fill="rgb(239,32,40)" rx="2" ry="2" />
<text text-anchor="" x="572.48" 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$prometheus..vec..MetricVec$LT$T$GT$$GT$::with_label_values::h2c83fe36049cc551 (8 samples, 0.06%)</title><rect x="22.2" y="1937" width="0.7" height="15.0" fill="rgb(213,49,39)" rx="2" ry="2" />
<text text-anchor="" x="25.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>free_hot_cold_page_list (53 samples, 0.39%)</title><rect x="1147.1" y="1745" width="4.7" height="15.0" fill="rgb(245,138,38)" rx="2" ry="2" />
<text text-anchor="" x="1150.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>[unknown] (8 samples, 0.06%)</title><rect x="787.9" y="1985" width="0.7" height="15.0" fill="rgb(246,15,51)" rx="2" ry="2" />
<text text-anchor="" x="790.95" 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>tikv::raftstore::store::peer::parse_data_at::h6e25c0958ddb6812 (101 samples, 0.75%)</title><rect x="72.5" y="1905" width="8.9" height="15.0" fill="rgb(214,225,29)" rx="2" ry="2" />
<text text-anchor="" x="75.53" 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>skb_release_data (2 samples, 0.01%)</title><rect x="108.5" y="1505" width="0.2" height="15.0" fill="rgb(213,18,14)" rx="2" ry="2" />
<text text-anchor="" x="111.48" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="977" width="0.5" height="15.0" fill="rgb(254,82,7)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="987.5" font-size="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_tkill (7 samples, 0.05%)</title><rect x="1169.2" y="1953" width="0.6" height="15.0" fill="rgb(241,95,36)" rx="2" ry="2" />
<text text-anchor="" x="1172.18" 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_poll (4 samples, 0.03%)</title><rect x="406.0" y="1889" width="0.4" height="15.0" fill="rgb(218,15,22)" rx="2" ry="2" />
<text text-anchor="" x="409.02" 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>__memcpy_ssse3_back (38 samples, 0.28%)</title><rect x="956.0" y="1889" width="3.4" height="15.0" fill="rgb(215,85,40)" rx="2" ry="2" />
<text text-anchor="" x="959.05" 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] (12 samples, 0.09%)</title><rect x="181.1" y="865" width="1.0" height="15.0" fill="rgb(205,181,44)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="875.5" font-size="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_irq (15 samples, 0.11%)</title><rect x="1151.9" y="1745" width="1.3" height="15.0" fill="rgb(219,120,10)" rx="2" ry="2" />
<text text-anchor="" x="1154.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>rocksdb::RandomAccessFileReader::Read (11 samples, 0.08%)</title><rect x="1129.5" y="1793" width="0.9" height="15.0" fill="rgb(248,60,53)" rx="2" ry="2" />
<text text-anchor="" x="1132.48" 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>futex_wait_queue_me (6 samples, 0.04%)</title><rect x="193.2" y="1937" width="0.6" height="15.0" fill="rgb(247,39,6)" rx="2" ry="2" />
<text text-anchor="" x="196.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1313" width="1.0" height="15.0" fill="rgb(231,102,17)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>__set_page_dirty (21 samples, 0.16%)</title><rect x="1096.0" y="1569" width="1.8" height="15.0" fill="rgb(247,203,40)" rx="2" ry="2" />
<text text-anchor="" x="1098.98" 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] (11 samples, 0.08%)</title><rect x="770.0" y="177" width="1.0" height="15.0" fill="rgb(251,45,46)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>_raw_spin_unlock_irqrestore (57 samples, 0.42%)</title><rect x="541.4" y="1777" width="5.0" height="15.0" fill="rgb(252,22,49)" rx="2" ry="2" />
<text text-anchor="" x="544.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>_$LT$kvproto..eraftpb..Message$u20$as$u20$protobuf..core..Message$GT$::compute_size::h2372fa59dc9cf7f1 (11 samples, 0.08%)</title><rect x="673.0" y="1841" width="1.0" height="15.0" fill="rgb(218,190,38)" rx="2" ry="2" />
<text text-anchor="" x="676.03" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1969" width="1.9" height="15.0" fill="rgb(228,174,32)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>rocksdb::RangeDelAggregator::GetPositionalTombstoneMap (6 samples, 0.04%)</title><rect x="1114.3" y="1873" width="0.6" height="15.0" fill="rgb(210,204,36)" rx="2" ry="2" />
<text text-anchor="" x="1117.35" 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_out_sk (2 samples, 0.01%)</title><rect x="748.8" y="1793" width="0.1" height="15.0" fill="rgb(205,140,54)" rx="2" ry="2" />
<text text-anchor="" x="751.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>_$LT$kvproto..metapb..Peer$u20$as$u20$protobuf..core..Message$GT$::merge_from::h2c70b8528d5dc36e (21 samples, 0.16%)</title><rect x="483.3" y="1857" width="1.9" height="15.0" fill="rgb(236,199,49)" rx="2" ry="2" />
<text text-anchor="" x="486.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>mpage_map_and_submit_buffers (22 samples, 0.16%)</title><rect x="1139.2" y="1729" width="1.9" height="15.0" fill="rgb(232,95,29)" rx="2" ry="2" />
<text text-anchor="" x="1142.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (7 samples, 0.05%)</title><rect x="479.8" y="1841" width="0.6" height="15.0" fill="rgb(236,152,37)" rx="2" ry="2" />
<text text-anchor="" x="482.83" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="1617" width="0.1" height="15.0" fill="rgb(236,211,15)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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::string::assign (5 samples, 0.04%)</title><rect x="1109.1" y="1905" width="0.4" height="15.0" fill="rgb(225,166,41)" rx="2" ry="2" />
<text text-anchor="" x="1112.10" 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_to_backlog (3 samples, 0.02%)</title><rect x="506.4" y="1681" width="0.3" height="15.0" fill="rgb(254,107,36)" rx="2" ry="2" />
<text text-anchor="" x="509.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>lock_acquire (2 samples, 0.01%)</title><rect x="103.8" y="1873" width="0.1" height="15.0" fill="rgb(214,167,44)" rx="2" ry="2" />
<text text-anchor="" x="106.76" 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>fget_light (23 samples, 0.17%)</title><rect x="178.9" y="1937" width="2.0" height="15.0" fill="rgb(222,33,11)" rx="2" ry="2" />
<text text-anchor="" x="181.88" 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] (3 samples, 0.02%)</title><rect x="831.7" y="481" width="0.2" height="15.0" fill="rgb(224,88,53)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>lock_release (6 samples, 0.04%)</title><rect x="343.3" y="1873" width="0.5" height="15.0" fill="rgb(245,216,27)" rx="2" ry="2" />
<text text-anchor="" x="346.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>rocksdb::BlockIter::ParseNextKey (2 samples, 0.01%)</title><rect x="1165.5" y="1825" width="0.2" height="15.0" fill="rgb(233,120,20)" rx="2" ry="2" />
<text text-anchor="" x="1168.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>tcp_sendmsg (685 samples, 5.08%)</title><rect x="117.2" y="1905" width="59.9" height="15.0" fill="rgb(229,56,18)" rx="2" ry="2" />
<text text-anchor="" x="120.23" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tcp_se..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_file_write (36 samples, 0.27%)</title><rect x="982.5" y="1681" width="3.2" height="15.0" fill="rgb(241,81,47)" rx="2" ry="2" />
<text text-anchor="" x="985.55" 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>_$LT$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::he321246aec1004b7 (25 samples, 0.19%)</title><rect x="811.2" y="1857" width="2.2" height="15.0" fill="rgb(212,108,43)" rx="2" ry="2" />
<text text-anchor="" x="814.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>tcp_rcv_established (3 samples, 0.02%)</title><rect x="1046.2" y="1713" width="0.3" height="15.0" fill="rgb(235,16,29)" rx="2" ry="2" />
<text text-anchor="" x="1049.22" 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] (12 samples, 0.09%)</title><rect x="181.1" y="529" width="1.0" height="15.0" fill="rgb(213,83,3)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>__mark_inode_dirty (55 samples, 0.41%)</title><rect x="1091.2" y="1617" width="4.8" height="15.0" fill="rgb(211,225,43)" rx="2" ry="2" />
<text text-anchor="" x="1094.17" 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>protobuf::stream::CodedInputStream::read_uint64::h8cde9d4ea3b04318 (10 samples, 0.07%)</title><rect x="278.1" y="1857" width="0.8" height="15.0" fill="rgb(223,51,40)" rx="2" ry="2" />
<text text-anchor="" x="281.06" 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>gpr_stack_lockfree_pop (3 samples, 0.02%)</title><rect x="415.8" y="2017" width="0.3" height="15.0" fill="rgb(210,32,39)" rx="2" ry="2" />
<text text-anchor="" x="418.81" 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>__memcmp_sse4_1 (17 samples, 0.13%)</title><rect x="892.2" y="1681" width="1.5" height="15.0" fill="rgb(213,123,9)" rx="2" ry="2" />
<text text-anchor="" x="895.20" 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>grpc::codec::pb_codec::ser::h9d9cfd4f3ea7ae25 (81 samples, 0.60%)</title><rect x="671.6" y="1889" width="7.1" height="15.0" fill="rgb(244,102,18)" rx="2" ry="2" />
<text text-anchor="" x="674.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>debug_lockdep_rcu_enabled (2 samples, 0.01%)</title><rect x="146.7" y="1729" width="0.2" height="15.0" fill="rgb(206,6,47)" rx="2" ry="2" />
<text text-anchor="" x="149.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>wake_futex (8 samples, 0.06%)</title><rect x="397.4" y="1937" width="0.7" height="15.0" fill="rgb(231,126,24)" rx="2" ry="2" />
<text text-anchor="" x="400.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>sk_reset_timer (37 samples, 0.27%)</title><rect x="348.1" y="1809" width="3.3" height="15.0" fill="rgb(209,187,17)" rx="2" ry="2" />
<text text-anchor="" x="351.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>mutex_lock_nested (4 samples, 0.03%)</title><rect x="1173.8" y="1841" width="0.4" height="15.0" fill="rgb(238,0,10)" rx="2" ry="2" />
<text text-anchor="" x="1176.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>debug_check_no_obj_freed (6 samples, 0.04%)</title><rect x="981.2" y="1825" width="0.6" height="15.0" fill="rgb(244,157,4)" rx="2" ry="2" />
<text text-anchor="" x="984.23" 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>_IO_vasprintf (2 samples, 0.01%)</title><rect x="433.5" y="2033" width="0.2" height="15.0" fill="rgb(234,185,26)" rx="2" ry="2" />
<text text-anchor="" x="436.48" 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>sys_write (22 samples, 0.16%)</title><rect x="600.5" y="1985" width="1.9" height="15.0" fill="rgb(230,195,37)" rx="2" ry="2" />
<text text-anchor="" x="603.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (3 samples, 0.02%)</title><rect x="77.6" y="1841" width="0.3" height="15.0" fill="rgb(228,196,5)" rx="2" ry="2" />
<text text-anchor="" x="80.61" 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>free_pages_prepare (2 samples, 0.01%)</title><rect x="101.8" y="1809" width="0.2" height="15.0" fill="rgb(229,187,5)" rx="2" ry="2" />
<text text-anchor="" x="104.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="945" width="0.2" height="15.0" fill="rgb(217,32,3)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gpr_time_to_millis (2 samples, 0.01%)</title><rect x="797.7" y="2033" width="0.1" height="15.0" fill="rgb(234,103,26)" rx="2" ry="2" />
<text text-anchor="" x="800.66" 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 (249 samples, 1.85%)</title><rect x="560.6" y="1713" width="21.7" height="15.0" fill="rgb(219,61,5)" rx="2" ry="2" />
<text text-anchor="" x="563.56" 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>__kmalloc_node_track_caller (15 samples, 0.11%)</title><rect x="538.0" y="1841" width="1.3" height="15.0" fill="rgb(250,73,12)" rx="2" ry="2" />
<text text-anchor="" x="540.99" 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>_raw_spin_unlock (2 samples, 0.01%)</title><rect x="369.6" y="1553" width="0.2" height="15.0" fill="rgb(254,131,15)" rx="2" ry="2" />
<text text-anchor="" x="372.63" 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] (12 samples, 0.09%)</title><rect x="770.0" y="657" width="1.1" height="15.0" fill="rgb(229,112,25)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_softirq (49 samples, 0.36%)</title><rect x="507.5" y="1745" width="4.3" height="15.0" fill="rgb(248,50,50)" rx="2" ry="2" />
<text text-anchor="" x="510.47" 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] (13 samples, 0.10%)</title><rect x="390.2" y="833" width="1.1" height="15.0" fill="rgb(228,32,15)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="843.5" font-size="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] (21 samples, 0.16%)</title><rect x="592.2" y="1441" width="1.9" height="15.0" fill="rgb(235,100,47)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="209" width="0.1" height="15.0" fill="rgb(234,7,4)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>epoll_pwait (83 samples, 0.62%)</title><rect x="608.3" y="2017" width="7.3" height="15.0" fill="rgb(208,45,36)" rx="2" ry="2" />
<text text-anchor="" x="611.31" 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>[unknown] (20 samples, 0.15%)</title><rect x="10.3" y="65" width="1.7" height="15.0" fill="rgb(216,130,16)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>iowrite16 (6 samples, 0.04%)</title><rect x="150.4" y="1665" width="0.5" height="15.0" fill="rgb(210,149,46)" rx="2" ry="2" />
<text text-anchor="" x="153.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>_raw_spin_unlock_irqrestore (12 samples, 0.09%)</title><rect x="720.8" y="1425" width="1.0" height="15.0" fill="rgb(251,70,2)" rx="2" ry="2" />
<text text-anchor="" x="723.78" 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>grpc_cq_end_op (4 samples, 0.03%)</title><rect x="617.7" y="2001" width="0.3" height="15.0" fill="rgb(243,117,27)" rx="2" ry="2" />
<text text-anchor="" x="620.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1361" width="1.9" height="15.0" fill="rgb(242,13,12)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>rocksdb::MemTable::Add (92 samples, 0.68%)</title><rect x="926.0" y="1761" width="8.1" height="15.0" fill="rgb(229,55,14)" rx="2" ry="2" />
<text text-anchor="" x="929.05" 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..async..executor..SpawnNotify$u20$as$u20$futures..task_impl..Notify$GT$::notify::h193896b535eb4452 (4 samples, 0.03%)</title><rect x="665.9" y="1937" width="0.3" height="15.0" fill="rgb(233,65,7)" rx="2" ry="2" />
<text text-anchor="" x="668.86" 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>__might_sleep (7 samples, 0.05%)</title><rect x="1092.7" y="1537" width="0.6" height="15.0" fill="rgb(208,77,8)" rx="2" ry="2" />
<text text-anchor="" x="1095.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>debug_check_no_obj_freed (8 samples, 0.06%)</title><rect x="316.3" y="1457" width="0.7" height="15.0" fill="rgb(221,153,38)" rx="2" ry="2" />
<text text-anchor="" x="319.28" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1681" width="1.1" height="15.0" fill="rgb(248,154,16)" rx="2" ry="2" />
<text text-anchor="" x="773.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>trace_do_page_fault (3 samples, 0.02%)</title><rect x="50.1" y="1713" width="0.3" height="15.0" fill="rgb(224,134,31)" rx="2" ry="2" />
<text text-anchor="" x="53.14" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="161" width="0.1" height="15.0" fill="rgb(242,142,9)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>__memcpy_ssse3_back (17 samples, 0.13%)</title><rect x="680.2" y="1905" width="1.5" height="15.0" fill="rgb(206,188,17)" rx="2" ry="2" />
<text text-anchor="" x="683.20" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1793" width="1.9" height="15.0" fill="rgb(248,33,43)" rx="2" ry="2" />
<text text-anchor="" x="595.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>__ext4_journal_get_write_access (7 samples, 0.05%)</title><rect x="1094.3" y="1553" width="0.6" height="15.0" fill="rgb(208,223,21)" rx="2" ry="2" />
<text text-anchor="" x="1097.32" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1217" width="0.5" height="15.0" fill="rgb(209,128,43)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>__kmalloc_reserve.isra.29 (6 samples, 0.04%)</title><rect x="740.7" y="1857" width="0.5" height="15.0" fill="rgb(233,161,14)" rx="2" ry="2" />
<text text-anchor="" x="743.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>__getdents64 (2 samples, 0.01%)</title><rect x="830.8" y="2017" width="0.2" height="15.0" fill="rgb(219,2,24)" rx="2" ry="2" />
<text text-anchor="" x="833.80" 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>sdallocx (2 samples, 0.01%)</title><rect x="391.1" y="33" width="0.2" height="15.0" fill="rgb(253,144,4)" rx="2" ry="2" />
<text text-anchor="" x="394.15" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="97" width="0.1" height="15.0" fill="rgb(216,123,40)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>ret_from_intr (2 samples, 0.01%)</title><rect x="473.5" y="1873" width="0.2" height="15.0" fill="rgb(209,224,2)" rx="2" ry="2" />
<text text-anchor="" x="476.53" 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>unmap_single_vma (2 samples, 0.01%)</title><rect x="194.9" y="1953" width="0.2" height="15.0" fill="rgb(249,204,37)" rx="2" ry="2" />
<text text-anchor="" x="197.89" 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>__might_sleep (4 samples, 0.03%)</title><rect x="1077.5" y="1569" width="0.4" height="15.0" fill="rgb(251,129,52)" rx="2" ry="2" />
<text text-anchor="" x="1080.53" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1073" width="1.1" height="15.0" fill="rgb(221,141,0)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="1083.5" font-size="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] (13 samples, 0.10%)</title><rect x="390.2" y="433" width="1.1" height="15.0" fill="rgb(246,51,13)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>mallocx (2 samples, 0.01%)</title><rect x="481.8" y="1873" width="0.1" height="15.0" fill="rgb(207,187,22)" rx="2" ry="2" />
<text text-anchor="" x="484.76" 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>pagevec_lru_move_fn (7 samples, 0.05%)</title><rect x="1125.0" y="1633" width="0.6" height="15.0" fill="rgb(250,146,24)" rx="2" ry="2" />
<text text-anchor="" x="1128.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>start_thread (409 samples, 3.03%)</title><rect x="661.9" y="2033" width="35.8" height="15.0" fill="rgb(232,55,46)" rx="2" ry="2" />
<text text-anchor="" x="664.92" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sta..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1681" width="0.5" height="15.0" fill="rgb(229,180,21)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>rocksdb::BlockBasedTableBuilder::Flush (378 samples, 2.80%)</title><rect x="1067.8" y="1905" width="33.1" height="15.0" fill="rgb(235,104,34)" rx="2" ry="2" />
<text text-anchor="" x="1070.82" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ro..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_tcache_fill_small (3 samples, 0.02%)</title><rect x="632.5" y="2017" width="0.3" height="15.0" fill="rgb(239,166,24)" rx="2" ry="2" />
<text text-anchor="" x="635.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="401" width="0.5" height="15.0" fill="rgb(237,108,12)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>ext4_file_write (181 samples, 1.34%)</title><rect x="907.1" y="1649" width="15.8" height="15.0" fill="rgb(247,105,47)" rx="2" ry="2" />
<text text-anchor="" x="910.07" 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_sync_read (2 samples, 0.01%)</title><rect x="1137.1" y="1681" width="0.2" height="15.0" fill="rgb(248,146,5)" rx="2" ry="2" />
<text text-anchor="" x="1140.09" 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_fsync (53 samples, 0.39%)</title><rect x="1138.0" y="1825" width="4.7" height="15.0" fill="rgb(234,189,7)" rx="2" ry="2" />
<text text-anchor="" x="1141.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>do_IRQ (2 samples, 0.01%)</title><rect x="745.4" y="1761" width="0.2" height="15.0" fill="rgb(206,172,1)" rx="2" ry="2" />
<text text-anchor="" x="748.44" 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>pthread_mutex_trylock (2 samples, 0.01%)</title><rect x="453.3" y="2033" width="0.2" height="15.0" fill="rgb(237,58,19)" rx="2" ry="2" />
<text text-anchor="" x="456.33" 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$collections..vec..Vec$LT$T$GT$$GT$::extend_from_slice::hd7a0d5f5c06cba70 (3 samples, 0.02%)</title><rect x="968.6" y="1809" width="0.2" height="15.0" fill="rgb(218,96,27)" rx="2" ry="2" />
<text text-anchor="" x="971.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>do_sync_write (7 samples, 0.05%)</title><rect x="1137.4" y="1793" width="0.6" height="15.0" fill="rgb(208,82,9)" rx="2" ry="2" />
<text text-anchor="" x="1140.44" 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>rocksdb::BlockIter::Valid (4 samples, 0.03%)</title><rect x="1129.0" y="1873" width="0.3" height="15.0" fill="rgb(222,54,41)" rx="2" ry="2" />
<text text-anchor="" x="1131.95" 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] (7 samples, 0.05%)</title><rect x="829.2" y="2017" width="0.6" height="15.0" fill="rgb(209,124,12)" rx="2" ry="2" />
<text text-anchor="" x="832.23" 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_unlock_irqrestore (9 samples, 0.07%)</title><rect x="271.7" y="1745" width="0.8" height="15.0" fill="rgb(243,107,50)" rx="2" ry="2" />
<text text-anchor="" x="274.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1121" width="1.0" height="15.0" fill="rgb(227,100,20)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>combiner_exec_uncovered (2 samples, 0.01%)</title><rect x="637.8" y="2001" width="0.2" height="15.0" fill="rgb(207,55,44)" rx="2" ry="2" />
<text text-anchor="" x="640.78" 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>might_fault (6 samples, 0.04%)</title><rect x="201.5" y="1953" width="0.6" height="15.0" fill="rgb(237,32,41)" rx="2" ry="2" />
<text text-anchor="" x="204.54" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="881" width="0.1" height="15.0" fill="rgb(239,134,40)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>debug_check_no_obj_freed (3 samples, 0.02%)</title><rect x="315.1" y="1473" width="0.3" height="15.0" fill="rgb(211,2,53)" rx="2" ry="2" />
<text text-anchor="" x="318.15" 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>_raw_spin_unlock_irqrestore (9 samples, 0.07%)</title><rect x="850.3" y="1841" width="0.8" height="15.0" fill="rgb(253,40,42)" rx="2" ry="2" />
<text text-anchor="" x="853.31" 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_raw_byte::ha2cb1055a4a0050e (2 samples, 0.01%)</title><rect x="480.8" y="1825" width="0.2" height="15.0" fill="rgb(210,15,4)" rx="2" ry="2" />
<text text-anchor="" x="483.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (4 samples, 0.03%)</title><rect x="277.7" y="1841" width="0.4" height="15.0" fill="rgb(218,167,3)" rx="2" ry="2" />
<text text-anchor="" x="280.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>[unknown] (23 samples, 0.17%)</title><rect x="1168.2" y="2033" width="2.0" height="15.0" fill="rgb(230,198,20)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>rocksdb::BlockBasedTableBuilder::WriteBlock (378 samples, 2.80%)</title><rect x="1067.8" y="1873" width="33.1" height="15.0" fill="rgb(226,125,38)" rx="2" ry="2" />
<text text-anchor="" x="1070.82" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ro..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>virtnet_poll (2 samples, 0.01%)</title><rect x="788.5" y="1841" width="0.1" height="15.0" fill="rgb(219,126,0)" rx="2" ry="2" />
<text text-anchor="" x="791.47" 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] (21 samples, 0.16%)</title><rect x="10.3" y="257" width="1.8" height="15.0" fill="rgb(253,11,24)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="955.8" y="1857" width="0.2" height="15.0" fill="rgb(253,190,17)" rx="2" ry="2" />
<text text-anchor="" x="958.78" 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>start_thread (404 samples, 2.99%)</title><rect x="454.6" y="2033" width="35.4" height="15.0" fill="rgb(231,138,40)" rx="2" ry="2" />
<text text-anchor="" x="457.64" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::(anonymous namespace)::TwoLevelIterator::Seek (5 samples, 0.04%)</title><rect x="896.8" y="1745" width="0.5" height="15.0" fill="rgb(215,73,26)" rx="2" ry="2" />
<text text-anchor="" x="899.84" 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] (21 samples, 0.16%)</title><rect x="10.3" y="225" width="1.8" height="15.0" fill="rgb(229,224,0)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>_raw_spin_lock_nested (6 samples, 0.04%)</title><rect x="568.1" y="1553" width="0.5" height="15.0" fill="rgb(242,207,33)" rx="2" ry="2" />
<text text-anchor="" x="571.08" 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>netif_receive_skb_internal (8 samples, 0.06%)</title><rect x="763.1" y="1649" width="0.7" height="15.0" fill="rgb(210,133,52)" rx="2" ry="2" />
<text text-anchor="" x="766.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>do_writepages (53 samples, 0.39%)</title><rect x="1138.0" y="1761" width="4.7" height="15.0" fill="rgb(241,110,22)" rx="2" ry="2" />
<text text-anchor="" x="1141.05" 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>__dev_kfree_skb_any (2 samples, 0.01%)</title><rect x="751.7" y="1665" width="0.2" height="15.0" fill="rgb(244,166,11)" rx="2" ry="2" />
<text text-anchor="" x="754.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>do_futex (5 samples, 0.04%)</title><rect x="603.3" y="1969" width="0.5" height="15.0" fill="rgb(217,152,19)" rx="2" ry="2" />
<text text-anchor="" x="606.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>dev_hard_start_xmit (24 samples, 0.18%)</title><rect x="146.9" y="1729" width="2.1" height="15.0" fill="rgb(227,11,15)" rx="2" ry="2" />
<text text-anchor="" x="149.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>might_fault (2 samples, 0.01%)</title><rect x="395.7" y="1937" width="0.2" height="15.0" fill="rgb(245,26,51)" rx="2" ry="2" />
<text text-anchor="" x="398.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>lockdep_sys_exit_thunk (2 samples, 0.01%)</title><rect x="499.8" y="1985" width="0.1" height="15.0" fill="rgb(229,92,4)" rx="2" ry="2" />
<text text-anchor="" x="502.77" 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>rcu_read_lock (6 samples, 0.04%)</title><rect x="569.0" y="1553" width="0.5" height="15.0" fill="rgb(237,229,21)" rx="2" ry="2" />
<text text-anchor="" x="571.95" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::value (2 samples, 0.01%)</title><rect x="1113.6" y="1857" width="0.2" height="15.0" fill="rgb(239,161,8)" rx="2" ry="2" />
<text text-anchor="" x="1116.65" 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 (49 samples, 0.36%)</title><rect x="507.5" y="1729" width="4.3" height="15.0" fill="rgb(218,171,38)" rx="2" ry="2" />
<text text-anchor="" x="510.47" 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>sch_direct_xmit (6 samples, 0.04%)</title><rect x="506.8" y="1745" width="0.5" height="15.0" fill="rgb(245,203,15)" rx="2" ry="2" />
<text text-anchor="" x="509.77" 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] (4 samples, 0.03%)</title><rect x="490.8" y="2017" width="0.3" height="15.0" fill="rgb(230,115,13)" rx="2" ry="2" />
<text text-anchor="" x="493.76" 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>rocksdb::FlushBlockBySizePolicy::Update (6 samples, 0.04%)</title><rect x="1103.7" y="1905" width="0.5" height="15.0" fill="rgb(208,106,10)" rx="2" ry="2" />
<text text-anchor="" x="1106.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>lock_acquire (7 samples, 0.05%)</title><rect x="767.1" y="1905" width="0.6" height="15.0" fill="rgb(237,205,1)" rx="2" ry="2" />
<text text-anchor="" x="770.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>lock_release (5 samples, 0.04%)</title><rect x="180.1" y="1921" width="0.4" height="15.0" fill="rgb(219,193,18)" rx="2" ry="2" />
<text text-anchor="" x="183.11" 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>lock_acquire (7 samples, 0.05%)</title><rect x="708.4" y="1873" width="0.7" height="15.0" fill="rgb(229,73,29)" rx="2" ry="2" />
<text text-anchor="" x="711.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>finish_batch_completion (60 samples, 0.44%)</title><rect x="615.7" y="2017" width="5.2" height="15.0" fill="rgb(233,30,15)" rx="2" ry="2" />
<text text-anchor="" x="618.66" 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_v4_do_rcv (5 samples, 0.04%)</title><rect x="343.8" y="1873" width="0.5" height="15.0" fill="rgb(231,216,29)" rx="2" ry="2" />
<text text-anchor="" x="346.83" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::Next (5 samples, 0.04%)</title><rect x="1165.2" y="1841" width="0.5" height="15.0" fill="rgb(212,153,14)" rx="2" ry="2" />
<text text-anchor="" x="1168.25" 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] (12 samples, 0.09%)</title><rect x="770.0" y="865" width="1.1" height="15.0" fill="rgb(242,215,13)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="875.5" font-size="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_is_held (3 samples, 0.02%)</title><rect x="179.8" y="1921" width="0.3" height="15.0" fill="rgb(218,119,1)" rx="2" ry="2" />
<text text-anchor="" x="182.85" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1505" width="3.2" height="15.0" fill="rgb(230,16,34)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>rocksdb::DBImpl::BackgroundCompaction (951 samples, 7.05%)</title><rect x="1063.5" y="1969" width="83.2" height="15.0" fill="rgb(242,141,5)" rx="2" ry="2" />
<text text-anchor="" x="1066.53" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rocksdb::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (3 samples, 0.02%)</title><rect x="908.6" y="1505" width="0.2" height="15.0" fill="rgb(207,107,15)" rx="2" ry="2" />
<text text-anchor="" x="911.56" 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>local_bh_enable (131 samples, 0.97%)</title><rect x="752.5" y="1761" width="11.5" height="15.0" fill="rgb(214,208,36)" rx="2" ry="2" />
<text text-anchor="" x="755.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>lock_acquire (3 samples, 0.02%)</title><rect x="296.4" y="1905" width="0.3" height="15.0" fill="rgb(213,8,10)" rx="2" ry="2" />
<text text-anchor="" x="299.43" 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>system_call_fastpath (2 samples, 0.01%)</title><rect x="492.8" y="2017" width="0.1" height="15.0" fill="rgb(215,100,35)" rx="2" ry="2" />
<text text-anchor="" x="495.77" 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 (35 samples, 0.26%)</title><rect x="749.5" y="1761" width="3.0" height="15.0" fill="rgb(234,40,42)" rx="2" ry="2" />
<text text-anchor="" x="752.47" 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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::FindSpliceForLevel (13 samples, 0.10%)</title><rect x="928.6" y="1713" width="1.1" height="15.0" fill="rgb(232,143,10)" rx="2" ry="2" />
<text text-anchor="" x="931.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>lock_acquire (2 samples, 0.01%)</title><rect x="403.6" y="1953" width="0.1" height="15.0" fill="rgb(230,206,54)" rx="2" ry="2" />
<text text-anchor="" x="406.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>gpr_unref (4 samples, 0.03%)</title><rect x="616.8" y="2001" width="0.3" height="15.0" fill="rgb(251,187,42)" rx="2" ry="2" />
<text text-anchor="" x="619.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1537" width="3.2" height="15.0" fill="rgb(240,195,2)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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_output (182 samples, 1.35%)</title><rect x="748.9" y="1793" width="16.0" height="15.0" fill="rgb(212,15,9)" rx="2" ry="2" />
<text text-anchor="" x="751.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1377" width="3.2" height="15.0" fill="rgb(209,14,29)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>tikv::storage::Storage::async_raw_put::h5b3eb74e1e79c52e (14 samples, 0.10%)</title><rect x="827.8" y="1921" width="1.3" height="15.0" fill="rgb(254,152,46)" rx="2" ry="2" />
<text text-anchor="" x="830.83" 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>_raw_spin_lock (7 samples, 0.05%)</title><rect x="1154.0" y="1633" width="0.6" height="15.0" fill="rgb(214,193,10)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>__radix_tree_lookup (2 samples, 0.01%)</title><rect x="40.9" y="1537" width="0.1" height="15.0" fill="rgb(241,85,33)" rx="2" ry="2" />
<text text-anchor="" x="43.87" 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_futex (12 samples, 0.09%)</title><rect x="207.0" y="1969" width="1.0" height="15.0" fill="rgb(241,57,23)" rx="2" ry="2" />
<text text-anchor="" x="209.96" 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>ext4_file_write (333 samples, 2.47%)</title><rect x="1069.7" y="1713" width="29.1" height="15.0" fill="rgb(254,129,7)" rx="2" ry="2" />
<text text-anchor="" x="1072.66" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ex..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>virtnet_poll (2 samples, 0.01%)</title><rect x="731.1" y="1793" width="0.2" height="15.0" fill="rgb(228,205,26)" rx="2" ry="2" />
<text text-anchor="" x="734.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>rocksdb::(anonymous namespace)::TwoLevelIterator::value (2 samples, 0.01%)</title><rect x="1112.8" y="1889" width="0.1" height="15.0" fill="rgb(226,205,10)" rx="2" ry="2" />
<text text-anchor="" x="1115.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1649" width="0.2" height="15.0" fill="rgb(238,195,42)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>__slab_free (5 samples, 0.04%)</title><rect x="317.5" y="1441" width="0.4" height="15.0" fill="rgb(221,103,30)" rx="2" ry="2" />
<text text-anchor="" x="320.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>lock_release (5 samples, 0.04%)</title><rect x="114.2" y="1921" width="0.4" height="15.0" fill="rgb(208,179,40)" rx="2" ry="2" />
<text text-anchor="" x="117.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>lock_release (6 samples, 0.04%)</title><rect x="767.7" y="1905" width="0.6" height="15.0" fill="rgb(225,136,44)" rx="2" ry="2" />
<text text-anchor="" x="770.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>_$LT$tikv..storage..engine..raftkv..RaftKv$LT$S$GT$$u20$as$u20$tikv..storage..engine..Engine$GT$::async_write::hb0b779ab3f3f5156 (13 samples, 0.10%)</title><rect x="827.8" y="1905" width="1.2" height="15.0" fill="rgb(247,152,9)" rx="2" ry="2" />
<text text-anchor="" x="830.83" 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>free (2 samples, 0.01%)</title><rect x="842.6" y="2017" width="0.2" height="15.0" fill="rgb(218,104,22)" rx="2" ry="2" />
<text text-anchor="" x="845.61" 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>kvm_clock_get_cycles (3 samples, 0.02%)</title><rect x="556.4" y="1617" width="0.3" height="15.0" fill="rgb(220,158,14)" rx="2" ry="2" />
<text text-anchor="" x="559.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>file_update_time (2 samples, 0.01%)</title><rect x="1069.7" y="1665" width="0.1" height="15.0" fill="rgb(247,37,3)" rx="2" ry="2" />
<text text-anchor="" x="1072.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="465" width="1.1" height="15.0" fill="rgb(218,126,27)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>_raw_spin_unlock_irqrestore (9 samples, 0.07%)</title><rect x="509.1" y="1441" width="0.8" height="15.0" fill="rgb(221,224,13)" rx="2" ry="2" />
<text text-anchor="" x="512.13" 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] (37 samples, 0.27%)</title><rect x="837.4" y="337" width="3.2" height="15.0" fill="rgb(236,225,13)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>rocksdb::log::Writer::AddRecord (217 samples, 1.61%)</title><rect x="904.4" y="1793" width="19.0" height="15.0" fill="rgb(244,91,32)" rx="2" ry="2" />
<text text-anchor="" x="907.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>[unknown] (4 samples, 0.03%)</title><rect x="976.4" y="2033" width="0.4" height="15.0" fill="rgb(221,183,28)" rx="2" ry="2" />
<text text-anchor="" x="979.42" 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>__vdso_clock_gettime (4 samples, 0.03%)</title><rect x="955.3" y="1841" width="0.3" height="15.0" fill="rgb(235,202,16)" rx="2" ry="2" />
<text text-anchor="" x="958.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>rocksdb::(anonymous namespace)::SkipListRep::Allocate (9 samples, 0.07%)</title><rect x="49.9" y="1777" width="0.8" height="15.0" fill="rgb(212,210,18)" rx="2" ry="2" />
<text text-anchor="" x="52.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>lock_is_held (2 samples, 0.01%)</title><rect x="584.3" y="1793" width="0.1" height="15.0" fill="rgb(222,145,16)" rx="2" ry="2" />
<text text-anchor="" x="587.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>ext4_mark_iloc_dirty (2 samples, 0.01%)</title><rect x="985.2" y="1537" width="0.1" height="15.0" fill="rgb(228,165,25)" rx="2" ry="2" />
<text text-anchor="" x="988.17" 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>do_huge_pmd_anonymous_page (2 samples, 0.01%)</title><rect x="986.2" y="1729" width="0.2" height="15.0" fill="rgb(237,19,35)" rx="2" ry="2" />
<text text-anchor="" x="989.22" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1393" width="1.1" height="15.0" fill="rgb(216,207,9)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>delay_tsc (6 samples, 0.04%)</title><rect x="118.6" y="1825" width="0.5" height="15.0" fill="rgb(206,177,48)" rx="2" ry="2" />
<text text-anchor="" x="121.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>sys_madvise (8 samples, 0.06%)</title><rect x="603.8" y="1985" width="0.7" height="15.0" fill="rgb(213,11,39)" rx="2" ry="2" />
<text text-anchor="" x="606.76" 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] (12 samples, 0.09%)</title><rect x="181.1" y="785" width="1.0" height="15.0" fill="rgb(206,1,30)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ext4_journal_stop (2 samples, 0.01%)</title><rect x="985.0" y="1601" width="0.2" height="15.0" fill="rgb(230,142,52)" rx="2" ry="2" />
<text text-anchor="" x="988.00" 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>handle_mm_fault (2 samples, 0.01%)</title><rect x="306.8" y="1809" width="0.2" height="15.0" fill="rgb(218,207,28)" rx="2" ry="2" />
<text text-anchor="" x="309.84" 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>generic_file_aio_read (6 samples, 0.04%)</title><rect x="1165.7" y="1649" width="0.5" height="15.0" fill="rgb(237,41,41)" rx="2" ry="2" />
<text text-anchor="" x="1168.69" 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>_raw_spin_unlock_irqrestore (9 samples, 0.07%)</title><rect x="110.4" y="1425" width="0.8" height="15.0" fill="rgb(244,178,33)" rx="2" ry="2" />
<text text-anchor="" x="113.40" 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$kvproto..kvrpcpb..Context$u20$as$u20$protobuf..core..Message$GT$::merge_from::h41588e756d707140 (10 samples, 0.07%)</title><rect x="694.5" y="1873" width="0.9" height="15.0" fill="rgb(230,147,24)" rx="2" ry="2" />
<text text-anchor="" x="697.54" 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>_raw_spin_unlock_irq (9 samples, 0.07%)</title><rect x="182.5" y="1921" width="0.8" height="15.0" fill="rgb(212,137,54)" rx="2" ry="2" />
<text text-anchor="" x="185.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>sys_rt_sigreturn (2 samples, 0.01%)</title><rect x="399.5" y="1985" width="0.1" height="15.0" fill="rgb(206,150,20)" rx="2" ry="2" />
<text text-anchor="" x="402.46" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1185" width="3.2" height="15.0" fill="rgb(246,229,50)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>__delay (7 samples, 0.05%)</title><rect x="729.3" y="1841" width="0.6" height="15.0" fill="rgb(243,190,3)" rx="2" ry="2" />
<text text-anchor="" x="732.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>do_futex (4 samples, 0.03%)</title><rect x="596.2" y="1953" width="0.3" height="15.0" fill="rgb(252,215,41)" rx="2" ry="2" />
<text text-anchor="" x="599.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>__memcpy_ssse3_back (3 samples, 0.02%)</title><rect x="812.7" y="1809" width="0.3" height="15.0" fill="rgb(251,156,5)" rx="2" ry="2" />
<text text-anchor="" x="815.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>gpr_unref (2 samples, 0.01%)</title><rect x="780.3" y="2001" width="0.2" height="15.0" fill="rgb(211,180,13)" rx="2" ry="2" />
<text text-anchor="" x="783.34" 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>__memcpy_ssse3_back (3 samples, 0.02%)</title><rect x="817.6" y="1889" width="0.3" height="15.0" fill="rgb(233,152,16)" rx="2" ry="2" />
<text text-anchor="" x="820.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1105" width="0.2" height="15.0" fill="rgb(253,7,52)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="1115.5" font-size="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_recvmsg (308 samples, 2.28%)</title><rect x="295.3" y="1953" width="26.9" height="15.0" fill="rgb(214,183,45)" rx="2" ry="2" />
<text text-anchor="" x="298.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] (5 samples, 0.04%)</title><rect x="1168.2" y="2017" width="0.5" height="15.0" fill="rgb(250,170,8)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="657" width="1.9" height="15.0" fill="rgb(247,179,1)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="667.5" font-size="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::h60700b1f76c3f32e (11 samples, 0.08%)</title><rect x="485.3" y="1873" width="0.9" height="15.0" fill="rgb(220,135,41)" rx="2" ry="2" />
<text text-anchor="" x="488.25" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="1777" width="0.1" height="15.0" fill="rgb(248,122,40)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>_raw_spin_unlock_irqrestore (4 samples, 0.03%)</title><rect x="293.7" y="1953" width="0.4" height="15.0" fill="rgb(231,87,41)" rx="2" ry="2" />
<text text-anchor="" x="296.72" 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>__generic_file_aio_write (164 samples, 1.22%)</title><rect x="907.2" y="1617" width="14.3" height="15.0" fill="rgb(214,22,52)" rx="2" ry="2" />
<text text-anchor="" x="910.16" 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>file_update_time (21 samples, 0.16%)</title><rect x="907.5" y="1601" width="1.8" height="15.0" fill="rgb(248,92,43)" rx="2" ry="2" />
<text text-anchor="" x="910.51" 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>combiner_exec_uncovered (8 samples, 0.06%)</title><rect x="425.4" y="2001" width="0.7" height="15.0" fill="rgb(208,134,41)" rx="2" ry="2" />
<text text-anchor="" x="428.43" 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>napi_gro_receive (2 samples, 0.01%)</title><rect x="747.5" y="1665" width="0.2" height="15.0" fill="rgb(247,119,7)" rx="2" ry="2" />
<text text-anchor="" x="750.54" 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>pi_unref (5 samples, 0.04%)</title><rect x="789.3" y="2017" width="0.5" height="15.0" fill="rgb(205,75,24)" rx="2" ry="2" />
<text text-anchor="" x="792.35" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="433" width="1.8" height="15.0" fill="rgb(212,86,32)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>might_fault (6 samples, 0.04%)</title><rect x="611.2" y="1969" width="0.5" height="15.0" fill="rgb(226,176,23)" rx="2" ry="2" />
<text text-anchor="" x="614.19" 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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="577" width="3.2" height="15.0" fill="rgb(236,92,33)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>might_fault (2 samples, 0.01%)</title><rect x="606.1" y="1969" width="0.2" height="15.0" fill="rgb(208,58,17)" rx="2" ry="2" />
<text text-anchor="" x="609.12" 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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="641" width="1.0" height="15.0" fill="rgb(209,179,0)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>core::fmt::write::h4596c4f5073895b5 (3 samples, 0.02%)</title><rect x="86.0" y="1793" width="0.3" height="15.0" fill="rgb(223,134,14)" rx="2" ry="2" />
<text text-anchor="" x="89.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>__do_page_fault (7 samples, 0.05%)</title><rect x="195.5" y="1953" width="0.6" height="15.0" fill="rgb(209,25,32)" rx="2" ry="2" />
<text text-anchor="" x="198.50" 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] (21 samples, 0.16%)</title><rect x="10.3" y="481" width="1.8" height="15.0" fill="rgb(216,209,11)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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] (21 samples, 0.16%)</title><rect x="10.3" y="945" width="1.8" height="15.0" fill="rgb(210,187,9)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="955.5" font-size="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 (32 samples, 0.24%)</title><rect x="759.4" y="1505" width="2.8" height="15.0" fill="rgb(206,66,16)" rx="2" ry="2" />
<text text-anchor="" x="762.44" 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>debug_check_no_obj_freed (3 samples, 0.02%)</title><rect x="323.6" y="1921" width="0.3" height="15.0" fill="rgb(231,215,38)" rx="2" ry="2" />
<text text-anchor="" x="326.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1681" width="1.8" height="15.0" fill="rgb(242,82,50)" rx="2" ry="2" />
<text text-anchor="" x="13.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1281" width="0.2" height="15.0" fill="rgb(231,144,44)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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_rcv_established (8 samples, 0.06%)</title><rect x="739.8" y="1857" width="0.7" height="15.0" fill="rgb(246,150,16)" rx="2" ry="2" />
<text text-anchor="" x="742.85" 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>__lll_unlock_wake (5 samples, 0.04%)</title><rect x="603.3" y="2017" width="0.5" height="15.0" fill="rgb(230,134,29)" rx="2" ry="2" />
<text text-anchor="" x="606.32" 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>debug_lockdep_rcu_enabled (4 samples, 0.03%)</title><rect x="524.9" y="1857" width="0.3" height="15.0" fill="rgb(242,132,39)" rx="2" ry="2" />
<text text-anchor="" x="527.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>__inet_lookup_established (6 samples, 0.04%)</title><rect x="756.3" y="1553" width="0.5" height="15.0" fill="rgb(231,113,18)" rx="2" ry="2" />
<text text-anchor="" x="759.29" 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.01%)</title><rect x="737.4" y="1585" width="0.2" height="15.0" fill="rgb(238,141,28)" rx="2" ry="2" />
<text text-anchor="" x="740.40" 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>system_call_fastpath (7 samples, 0.05%)</title><rect x="450.2" y="2001" width="0.6" height="15.0" fill="rgb(242,74,4)" rx="2" ry="2" />
<text text-anchor="" x="453.18" 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>__lll_unlock_wake (8 samples, 0.06%)</title><rect x="193.8" y="2017" width="0.7" height="15.0" fill="rgb(207,68,12)" rx="2" ry="2" />
<text text-anchor="" x="196.75" 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>__might_sleep (3 samples, 0.02%)</title><rect x="925.2" y="1633" width="0.2" height="15.0" fill="rgb(222,179,17)" rx="2" ry="2" />
<text text-anchor="" x="928.17" 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>pagevec_lookup_tag (2 samples, 0.01%)</title><rect x="1141.6" y="1713" width="0.2" height="15.0" fill="rgb(254,81,9)" rx="2" ry="2" />
<text text-anchor="" x="1144.64" 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_sync_key (9 samples, 0.07%)</title><rect x="271.7" y="1761" width="0.8" height="15.0" fill="rgb(252,81,22)" rx="2" ry="2" />
<text text-anchor="" x="274.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>system_call_fastpath (1,054 samples, 7.81%)</title><rect x="499.9" y="2001" width="92.2" height="15.0" fill="rgb(249,94,29)" rx="2" ry="2" />
<text text-anchor="" x="502.95" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$kvproto..metapb..Peer$u20$as$u20$protobuf..core..Message$GT$::merge_from::h2c70b8528d5dc36e (14 samples, 0.10%)</title><rect x="75.9" y="1841" width="1.2" height="15.0" fill="rgb(253,225,0)" rx="2" ry="2" />
<text text-anchor="" x="78.86" 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] (3 samples, 0.02%)</title><rect x="287.9" y="2017" width="0.3" height="15.0" fill="rgb(239,47,22)" rx="2" ry="2" />
<text text-anchor="" x="290.95" 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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="609" width="0.2" height="15.0" fill="rgb(246,9,37)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>rocksdb::(anonymous namespace)::SkipListRep::Get (65 samples, 0.48%)</title><rect x="888.7" y="1745" width="5.7" height="15.0" fill="rgb(245,196,32)" rx="2" ry="2" />
<text text-anchor="" x="891.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="273" width="0.1" height="15.0" fill="rgb(213,32,35)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>kvproto::eraftpb::Message::get_index::hb7d4831cece62940 (3 samples, 0.02%)</title><rect x="873.5" y="1857" width="0.2" height="15.0" fill="rgb(210,196,15)" rx="2" ry="2" />
<text text-anchor="" x="876.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>inet_recvmsg (219 samples, 1.62%)</title><rect x="705.0" y="1921" width="19.1" height="15.0" fill="rgb(215,97,35)" rx="2" ry="2" />
<text text-anchor="" x="707.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] (13 samples, 0.10%)</title><rect x="390.2" y="1857" width="1.1" height="15.0" fill="rgb(243,42,8)" rx="2" ry="2" />
<text text-anchor="" x="393.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>ru_slice_unref (3 samples, 0.02%)</title><rect x="791.4" y="2017" width="0.2" height="15.0" fill="rgb(220,132,2)" rx="2" ry="2" />
<text text-anchor="" x="794.36" 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>gpr_mpscq_push (2 samples, 0.01%)</title><rect x="452.5" y="2017" width="0.2" height="15.0" fill="rgb(216,94,33)" rx="2" ry="2" />
<text text-anchor="" x="455.54" 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>rocksdb::ArenaWrappedDBIter::~ArenaWrappedDBIter (22 samples, 0.16%)</title><rect x="1160.7" y="1873" width="1.9" height="15.0" fill="rgb(249,169,48)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>do_raw_read_trylock (2 samples, 0.01%)</title><rect x="1081.7" y="1569" width="0.2" height="15.0" fill="rgb(229,175,15)" rx="2" ry="2" />
<text text-anchor="" x="1084.73" 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::rt::read_singular_bytes_into::h23f2d443b5f2ddd7 (2 samples, 0.01%)</title><rect x="820.6" y="1841" width="0.1" height="15.0" fill="rgb(243,103,20)" rx="2" ry="2" />
<text text-anchor="" x="823.57" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1153" width="0.5" height="15.0" fill="rgb(240,153,32)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>clock_gettime (15 samples, 0.11%)</title><rect x="645.5" y="2033" width="1.3" height="15.0" fill="rgb(249,90,48)" rx="2" ry="2" />
<text text-anchor="" x="648.48" 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>rocksdb::BlockIter::value (2 samples, 0.01%)</title><rect x="1113.8" y="1857" width="0.2" height="15.0" fill="rgb(235,215,29)" rx="2" ry="2" />
<text text-anchor="" x="1116.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>do_IRQ (2 samples, 0.01%)</title><rect x="788.5" y="1937" width="0.1" height="15.0" fill="rgb(247,160,37)" rx="2" ry="2" />
<text text-anchor="" x="791.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>sk_filter (8 samples, 0.06%)</title><rect x="757.7" y="1553" width="0.7" height="15.0" fill="rgb(206,18,34)" rx="2" ry="2" />
<text text-anchor="" x="760.69" 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>grpc_error_string (5 samples, 0.04%)</title><rect x="221.5" y="2017" width="0.4" height="15.0" fill="rgb(221,220,39)" rx="2" ry="2" />
<text text-anchor="" x="224.48" 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>core::fmt::Formatter::pad_integral::hb5576232a91a8942 (2 samples, 0.01%)</title><rect x="86.1" y="1761" width="0.2" height="15.0" fill="rgb(217,182,5)" rx="2" ry="2" />
<text text-anchor="" x="89.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>dev_hard_start_xmit (4 samples, 0.03%)</title><rect x="107.4" y="1729" width="0.4" height="15.0" fill="rgb(235,96,38)" rx="2" ry="2" />
<text text-anchor="" x="110.43" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1505" width="0.2" height="15.0" fill="rgb(219,153,1)" rx="2" ry="2" />
<text text-anchor="" x="834.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>sys_read (21 samples, 0.16%)</title><rect x="961.5" y="1857" width="1.8" height="15.0" fill="rgb(215,148,17)" rx="2" ry="2" />
<text text-anchor="" x="964.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>protobuf::stream::CodedInputStream::read::hf9f80c71a7d02f3c (2 samples, 0.01%)</title><rect x="73.8" y="1825" width="0.2" height="15.0" fill="rgb(213,208,28)" rx="2" ry="2" />
<text text-anchor="" x="76.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>__set_current_blocked (10 samples, 0.07%)</title><rect x="230.9" y="1921" width="0.9" height="15.0" fill="rgb(238,121,13)" rx="2" ry="2" />
<text text-anchor="" x="233.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>netif_receive_skb_internal (2 samples, 0.01%)</title><rect x="731.1" y="1761" width="0.2" height="15.0" fill="rgb(205,120,47)" rx="2" ry="2" />
<text text-anchor="" x="734.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1553" width="3.2" height="15.0" fill="rgb(209,69,48)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>grpc_combiner_continue_exec_ctx (11 samples, 0.08%)</title><rect x="627.2" y="2017" width="1.0" height="15.0" fill="rgb(221,59,34)" rx="2" ry="2" />
<text text-anchor="" x="630.20" 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_unlock_irqrestore (21 samples, 0.16%)</title><rect x="641.7" y="1905" width="1.9" height="15.0" fill="rgb(225,81,43)" rx="2" ry="2" />
<text text-anchor="" x="644.72" 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.01%)</title><rect x="473.5" y="1793" width="0.2" height="15.0" fill="rgb(252,14,34)" rx="2" ry="2" />
<text text-anchor="" x="476.53" 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>finish_task_switch (3 samples, 0.02%)</title><rect x="391.3" y="1873" width="0.3" height="15.0" fill="rgb(244,44,32)" rx="2" ry="2" />
<text text-anchor="" x="394.32" 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..task_impl..std..ArcWrapped$LT$T$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::drop_raw::h3395b44c88f6b7a9 (3 samples, 0.02%)</title><rect x="665.6" y="1937" width="0.3" height="15.0" fill="rgb(217,98,53)" rx="2" ry="2" />
<text text-anchor="" x="668.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1105" width="1.1" height="15.0" fill="rgb(229,78,7)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="1115.5" font-size="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_write (4 samples, 0.03%)</title><rect x="1134.3" y="1777" width="0.3" height="15.0" fill="rgb(250,68,50)" rx="2" ry="2" />
<text text-anchor="" x="1137.29" 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>truncate_inode_page (71 samples, 0.53%)</title><rect x="1151.8" y="1777" width="6.2" height="15.0" fill="rgb(226,88,52)" rx="2" ry="2" />
<text text-anchor="" x="1154.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>free_pages_prepare (4 samples, 0.03%)</title><rect x="979.5" y="1729" width="0.3" height="15.0" fill="rgb(216,36,49)" rx="2" ry="2" />
<text text-anchor="" x="982.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>std::string::assign (6 samples, 0.04%)</title><rect x="1145.8" y="1921" width="0.6" height="15.0" fill="rgb(208,120,13)" rx="2" ry="2" />
<text text-anchor="" x="1148.83" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="705" width="0.5" height="15.0" fill="rgb(238,182,1)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>system_call_after_swapgs (3 samples, 0.02%)</title><rect x="92.6" y="2017" width="0.2" height="15.0" fill="rgb(235,226,28)" rx="2" ry="2" />
<text text-anchor="" x="95.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (2 samples, 0.01%)</title><rect x="821.6" y="1841" width="0.2" height="15.0" fill="rgb(208,12,14)" rx="2" ry="2" />
<text text-anchor="" x="824.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1585" width="1.1" height="15.0" fill="rgb(217,149,44)" rx="2" ry="2" />
<text text-anchor="" x="773.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>__wake_up_sync_key (8 samples, 0.06%)</title><rect x="1186.6" y="1809" width="0.7" height="15.0" fill="rgb(242,146,39)" rx="2" ry="2" />
<text text-anchor="" x="1189.59" 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>lock_release (9 samples, 0.07%)</title><rect x="128.2" y="1873" width="0.8" height="15.0" fill="rgb(228,175,24)" rx="2" ry="2" />
<text text-anchor="" x="131.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>sys_epoll_wait (10 samples, 0.07%)</title><rect x="497.7" y="1985" width="0.8" height="15.0" fill="rgb(209,182,22)" rx="2" ry="2" />
<text text-anchor="" x="500.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>loopback_xmit (11 samples, 0.08%)</title><rect x="750.1" y="1713" width="0.9" height="15.0" fill="rgb(207,5,34)" rx="2" ry="2" />
<text text-anchor="" x="753.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1521" width="3.2" height="15.0" fill="rgb(219,162,52)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="257" width="0.5" height="15.0" fill="rgb(252,209,31)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>eventfd_read (7 samples, 0.05%)</title><rect x="394.6" y="1953" width="0.6" height="15.0" fill="rgb(237,175,40)" rx="2" ry="2" />
<text text-anchor="" x="397.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] (5 samples, 0.04%)</title><rect x="1168.2" y="193" width="0.5" height="15.0" fill="rgb(230,11,22)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>lock_release (2 samples, 0.01%)</title><rect x="704.7" y="1921" width="0.2" height="15.0" fill="rgb(240,173,38)" rx="2" ry="2" />
<text text-anchor="" x="707.69" 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>handle_mm_fault (2 samples, 0.01%)</title><rect x="437.5" y="1953" width="0.2" height="15.0" fill="rgb(231,204,18)" rx="2" ry="2" />
<text text-anchor="" x="440.50" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1489" width="0.2" height="15.0" fill="rgb(223,126,1)" rx="2" ry="2" />
<text text-anchor="" x="834.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>protobuf::stream::CodedInputStream::eof::ha84c0b5026b68aaa (2 samples, 0.01%)</title><rect x="279.9" y="1873" width="0.2" height="15.0" fill="rgb(252,30,5)" rx="2" ry="2" />
<text text-anchor="" x="282.90" 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_epoll_wait (32 samples, 0.24%)</title><rect x="204.2" y="1969" width="2.8" height="15.0" fill="rgb(232,83,40)" rx="2" ry="2" />
<text text-anchor="" x="207.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>rocksdb::Cleanable::~Cleanable (22 samples, 0.16%)</title><rect x="1160.7" y="1825" width="1.9" height="15.0" fill="rgb(242,120,42)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1377" width="0.5" height="15.0" fill="rgb(224,215,21)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="161" width="1.8" height="15.0" fill="rgb(237,67,26)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>sk_stream_alloc_skb (30 samples, 0.22%)</title><rect x="537.6" y="1889" width="2.6" height="15.0" fill="rgb(224,64,48)" rx="2" ry="2" />
<text text-anchor="" x="540.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="769" width="3.2" height="15.0" fill="rgb(244,91,27)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="779.5" font-size="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] (3 samples, 0.02%)</title><rect x="831.7" y="161" width="0.2" height="15.0" fill="rgb(253,79,9)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>gpr_mpscq_push (2 samples, 0.01%)</title><rect x="654.4" y="2017" width="0.2" height="15.0" fill="rgb(248,111,25)" rx="2" ry="2" />
<text text-anchor="" x="657.40" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="737" width="1.8" height="15.0" fill="rgb(206,199,19)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>incoming_byte_stream_next_locked (2 samples, 0.01%)</title><rect x="451.8" y="2001" width="0.1" height="15.0" fill="rgb(205,106,42)" rx="2" ry="2" />
<text text-anchor="" x="454.76" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1825" width="0.5" height="15.0" fill="rgb(216,88,7)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="209" width="1.1" height="15.0" fill="rgb(242,195,3)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>write_action_end_locked (2 samples, 0.01%)</title><rect x="640.6" y="2017" width="0.2" height="15.0" fill="rgb(236,62,6)" rx="2" ry="2" />
<text text-anchor="" x="643.58" 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>debug_lockdep_rcu_enabled (2 samples, 0.01%)</title><rect x="380.7" y="1649" width="0.1" height="15.0" fill="rgb(212,131,8)" rx="2" ry="2" />
<text text-anchor="" x="383.65" 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.17.so] (161 samples, 1.19%)</title><rect x="33.5" y="1761" width="14.1" height="15.0" fill="rgb(250,95,24)" rx="2" ry="2" />
<text text-anchor="" x="36.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>__schedule (4 samples, 0.03%)</title><rect x="596.2" y="1889" width="0.3" height="15.0" fill="rgb(215,151,33)" rx="2" ry="2" />
<text text-anchor="" x="599.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>timer_callback (9 samples, 0.07%)</title><rect x="490.8" y="2033" width="0.8" height="15.0" fill="rgb(212,78,42)" rx="2" ry="2" />
<text text-anchor="" x="493.76" 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 (117 samples, 0.87%)</title><rect x="311.2" y="1841" width="10.2" height="15.0" fill="rgb(235,134,17)" rx="2" ry="2" />
<text text-anchor="" x="314.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>tikv::raftstore::store::peer_storage::PeerStorage::post_ready::h57feb90284b972eb (4 samples, 0.03%)</title><rect x="954.9" y="1873" width="0.4" height="15.0" fill="rgb(242,209,0)" rx="2" ry="2" />
<text text-anchor="" x="957.91" 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>sk_reset_timer (9 samples, 0.07%)</title><rect x="722.0" y="1505" width="0.8" height="15.0" fill="rgb(248,162,31)" rx="2" ry="2" />
<text text-anchor="" x="725.01" 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>__debug_object_init (3 samples, 0.02%)</title><rect x="406.8" y="1889" width="0.3" height="15.0" fill="rgb(253,209,52)" rx="2" ry="2" />
<text text-anchor="" x="409.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>do_softirq (2 samples, 0.01%)</title><rect x="473.5" y="1825" width="0.2" height="15.0" fill="rgb(237,56,52)" rx="2" ry="2" />
<text text-anchor="" x="476.53" 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>ext4_da_invalidatepage (7 samples, 0.05%)</title><rect x="1162.0" y="1569" width="0.6" height="15.0" fill="rgb(252,211,33)" rx="2" ry="2" />
<text text-anchor="" x="1165.01" 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$grpc..async..CqFuture$LT$T$GT$$u20$as$u20$futures..future..Future$GT$::poll::hd9fbf7b44a132b2c (9 samples, 0.07%)</title><rect x="274.3" y="1889" width="0.8" height="15.0" fill="rgb(243,229,19)" rx="2" ry="2" />
<text text-anchor="" x="277.30" 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_established_options (5 samples, 0.04%)</title><rect x="176.6" y="1857" width="0.4" height="15.0" fill="rgb(232,211,27)" rx="2" ry="2" />
<text text-anchor="" x="179.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="145" width="1.9" height="15.0" fill="rgb(253,95,22)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>__might_sleep (15 samples, 0.11%)</title><rect x="333.5" y="1873" width="1.3" height="15.0" fill="rgb(210,153,35)" rx="2" ry="2" />
<text text-anchor="" x="336.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1585" width="0.2" height="15.0" fill="rgb(247,202,16)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>trace_do_page_fault (2 samples, 0.01%)</title><rect x="104.6" y="1841" width="0.2" height="15.0" fill="rgb(231,177,54)" rx="2" ry="2" />
<text text-anchor="" x="107.63" 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>grpc_completion_queue_next (5 samples, 0.04%)</title><rect x="617.2" y="2001" width="0.5" height="15.0" fill="rgb(218,117,0)" rx="2" ry="2" />
<text text-anchor="" x="620.23" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1441" width="1.1" height="15.0" fill="rgb(212,84,11)" rx="2" ry="2" />
<text text-anchor="" x="393.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>skb_release_all (6 samples, 0.04%)</title><rect x="739.9" y="1793" width="0.6" height="15.0" fill="rgb(250,144,41)" rx="2" ry="2" />
<text text-anchor="" x="742.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>rocksdb::LRUHandleTable::Lookup (3 samples, 0.02%)</title><rect x="1128.2" y="1745" width="0.2" height="15.0" fill="rgb(205,211,35)" rx="2" ry="2" />
<text text-anchor="" x="1131.17" 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>__local_bh_disable (4 samples, 0.03%)</title><rect x="149.0" y="1713" width="0.3" height="15.0" fill="rgb(233,199,8)" rx="2" ry="2" />
<text text-anchor="" x="151.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>clock_gettime (11 samples, 0.08%)</title><rect x="875.0" y="1873" width="0.9" height="15.0" fill="rgb(231,176,10)" rx="2" ry="2" />
<text text-anchor="" x="877.97" 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>kvm_clock_read (2 samples, 0.01%)</title><rect x="586.0" y="1777" width="0.2" height="15.0" fill="rgb(225,140,53)" rx="2" ry="2" />
<text text-anchor="" x="589.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>do_sync_read (18 samples, 0.13%)</title><rect x="1186.6" y="1841" width="1.6" height="15.0" fill="rgb(245,22,33)" rx="2" ry="2" />
<text text-anchor="" x="1189.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>syscall (2 samples, 0.01%)</title><rect x="232.1" y="2017" width="0.2" height="15.0" fill="rgb(232,117,23)" rx="2" ry="2" />
<text text-anchor="" x="235.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>std::string::append (4 samples, 0.03%)</title><rect x="883.0" y="1825" width="0.4" height="15.0" fill="rgb(207,192,39)" rx="2" ry="2" />
<text text-anchor="" x="886.02" 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_getdents (2 samples, 0.01%)</title><rect x="830.8" y="1985" width="0.2" height="15.0" fill="rgb(229,218,9)" rx="2" ry="2" />
<text text-anchor="" x="833.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>vfs_read (11 samples, 0.08%)</title><rect x="1129.5" y="1729" width="0.9" height="15.0" fill="rgb(246,216,54)" rx="2" ry="2" />
<text text-anchor="" x="1132.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>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="30.8" y="1889" width="0.2" height="15.0" fill="rgb(229,62,2)" rx="2" ry="2" />
<text text-anchor="" x="33.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>je_arena_tcache_fill_small (4 samples, 0.03%)</title><rect x="1169.9" y="2017" width="0.3" height="15.0" fill="rgb(229,199,54)" rx="2" ry="2" />
<text text-anchor="" x="1172.88" 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>lock_release (3 samples, 0.02%)</title><rect x="296.8" y="1905" width="0.2" height="15.0" fill="rgb(244,170,54)" rx="2" ry="2" />
<text text-anchor="" x="299.78" 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>__find_get_page (9 samples, 0.07%)</title><rect x="914.2" y="1537" width="0.7" height="15.0" fill="rgb(231,192,50)" rx="2" ry="2" />
<text text-anchor="" x="917.15" 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] (11 samples, 0.08%)</title><rect x="770.0" y="81" width="1.0" height="15.0" fill="rgb(252,225,35)" rx="2" ry="2" />
<text text-anchor="" x="773.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>grpc_error_string (5 samples, 0.04%)</title><rect x="628.2" y="2017" width="0.5" height="15.0" fill="rgb(233,120,4)" rx="2" ry="2" />
<text text-anchor="" x="631.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>timer_callback (4 samples, 0.03%)</title><rect x="491.2" y="2001" width="0.4" height="15.0" fill="rgb(235,186,26)" rx="2" ry="2" />
<text text-anchor="" x="494.20" 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>compress_start_transport_stream_op_batch (3 samples, 0.02%)</title><rect x="441.9" y="2017" width="0.2" height="15.0" fill="rgb(240,22,29)" rx="2" ry="2" />
<text text-anchor="" x="444.87" 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_write (14 samples, 0.10%)</title><rect x="594.8" y="1953" width="1.3" height="15.0" fill="rgb(241,116,46)" rx="2" ry="2" />
<text text-anchor="" x="597.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>__memcpy_ssse3_back (10 samples, 0.07%)</title><rect x="469.5" y="1905" width="0.9" height="15.0" fill="rgb(247,122,39)" rx="2" ry="2" />
<text text-anchor="" x="472.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>do_async_page_fault (3 samples, 0.02%)</title><rect x="50.1" y="1729" width="0.3" height="15.0" fill="rgb(218,56,28)" rx="2" ry="2" />
<text text-anchor="" x="53.14" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1137" width="0.5" height="15.0" fill="rgb(228,98,24)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>__kfree_skb (2 samples, 0.01%)</title><rect x="344.0" y="1809" width="0.2" height="15.0" fill="rgb(230,155,50)" rx="2" ry="2" />
<text text-anchor="" x="347.01" 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>fget_light (7 samples, 0.05%)</title><rect x="724.5" y="1937" width="0.7" height="15.0" fill="rgb(224,111,10)" rx="2" ry="2" />
<text text-anchor="" x="727.54" 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>protobuf::stream::CodedInputStream::eof::ha84c0b5026b68aaa (3 samples, 0.02%)</title><rect x="277.0" y="1857" width="0.3" height="15.0" fill="rgb(213,207,21)" rx="2" ry="2" />
<text text-anchor="" x="280.01" 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_notify_resume (16 samples, 0.12%)</title><rect x="401.8" y="1985" width="1.4" height="15.0" fill="rgb(237,35,19)" rx="2" ry="2" />
<text text-anchor="" x="404.82" 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_queue_xmit (2 samples, 0.01%)</title><rect x="108.7" y="1489" width="0.1" height="15.0" fill="rgb(246,129,7)" rx="2" ry="2" />
<text text-anchor="" x="111.65" 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>rocksdb::MemTableIterator::key (11 samples, 0.08%)</title><rect x="978.2" y="1857" width="0.9" height="15.0" fill="rgb(221,197,3)" rx="2" ry="2" />
<text text-anchor="" x="981.17" 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>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="251.4" y="1937" width="0.2" height="15.0" fill="rgb(205,111,46)" rx="2" ry="2" />
<text text-anchor="" x="254.39" 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>file_update_time (13 samples, 0.10%)</title><rect x="35.2" y="1633" width="1.1" height="15.0" fill="rgb(209,107,30)" rx="2" ry="2" />
<text text-anchor="" x="38.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>dev_hard_start_xmit (23 samples, 0.17%)</title><rect x="357.7" y="1729" width="2.0" height="15.0" fill="rgb(235,147,7)" rx="2" ry="2" />
<text text-anchor="" x="360.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$kvproto..kvrpcpb..RawPutRequest$u20$as$u20$protobuf..core..Message$GT$::merge_from::h5578a357f333059a (3 samples, 0.02%)</title><rect x="827.2" y="1905" width="0.3" height="15.0" fill="rgb(214,41,8)" rx="2" ry="2" />
<text text-anchor="" x="830.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>rocksdb::DBIter::value (3 samples, 0.02%)</title><rect x="1164.6" y="1873" width="0.3" height="15.0" fill="rgb(247,181,3)" rx="2" ry="2" />
<text text-anchor="" x="1167.64" 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>grpc::codec::pb_codec::de::hc853c90d3f6377f1 (61 samples, 0.45%)</title><rect x="819.7" y="1905" width="5.3" height="15.0" fill="rgb(218,196,43)" rx="2" ry="2" />
<text text-anchor="" x="822.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>grpc_chttp2_end_write (2 samples, 0.01%)</title><rect x="96.1" y="2001" width="0.1" height="15.0" fill="rgb(216,17,16)" rx="2" ry="2" />
<text text-anchor="" x="99.06" 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>lock_acquire (3 samples, 0.02%)</title><rect x="394.9" y="1921" width="0.3" height="15.0" fill="rgb(217,227,33)" rx="2" ry="2" />
<text text-anchor="" x="397.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>sdallocx (2 samples, 0.01%)</title><rect x="1168.4" y="33" width="0.2" height="15.0" fill="rgb(209,214,31)" rx="2" ry="2" />
<text text-anchor="" x="1171.40" 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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="897" width="0.5" height="15.0" fill="rgb(214,24,53)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="907.5" font-size="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] (12 samples, 0.09%)</title><rect x="770.0" y="1281" width="1.1" height="15.0" fill="rgb(206,25,46)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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_output (358 samples, 2.65%)</title><rect x="552.9" y="1793" width="31.4" height="15.0" fill="rgb(234,177,17)" rx="2" ry="2" />
<text text-anchor="" x="555.95" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1857" width="0.1" height="15.0" fill="rgb(240,40,54)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>jbd2_journal_stop (18 samples, 0.13%)</title><rect x="41.9" y="1585" width="1.6" height="15.0" fill="rgb(211,155,38)" rx="2" ry="2" />
<text text-anchor="" x="44.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>rocksdb::BlockBasedTable::Open (4 samples, 0.03%)</title><rect x="1137.1" y="1841" width="0.3" height="15.0" fill="rgb(213,74,17)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="625" width="1.9" height="15.0" fill="rgb(211,12,54)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>vfs_read (6 samples, 0.04%)</title><rect x="1165.7" y="1681" width="0.5" height="15.0" fill="rgb(214,193,18)" rx="2" ry="2" />
<text text-anchor="" x="1168.69" 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] (3 samples, 0.02%)</title><rect x="831.7" y="881" width="0.2" height="15.0" fill="rgb(207,17,48)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="891.5" font-size="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] (11 samples, 0.08%)</title><rect x="770.0" y="129" width="1.0" height="15.0" fill="rgb(226,27,7)" rx="2" ry="2" />
<text text-anchor="" x="773.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="833" width="0.1" height="15.0" fill="rgb(233,59,19)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_file_aio_write (178 samples, 1.32%)</title><rect x="907.2" y="1633" width="15.5" height="15.0" fill="rgb(248,220,27)" rx="2" ry="2" />
<text text-anchor="" x="910.16" 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>free_object (2 samples, 0.01%)</title><rect x="852.5" y="1793" width="0.2" height="15.0" fill="rgb(209,111,40)" rx="2" ry="2" />
<text text-anchor="" x="855.49" 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$rocksdb..rocksdb..WriteBatch$u20$as$u20$rocksdb..rocksdb..Writable$GT$::put_cf::hc0181c6278f526bf (5 samples, 0.04%)</title><rect x="953.2" y="1857" width="0.5" height="15.0" fill="rgb(250,183,34)" rx="2" ry="2" />
<text text-anchor="" x="956.25" 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 (99 samples, 0.73%)</title><rect x="754.3" y="1665" width="8.6" height="15.0" fill="rgb(243,99,50)" rx="2" ry="2" />
<text text-anchor="" x="757.28" 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>jbd2_journal_try_to_free_buffers (9 samples, 0.07%)</title><rect x="992.4" y="1681" width="0.8" height="15.0" fill="rgb(212,97,50)" rx="2" ry="2" />
<text text-anchor="" x="995.43" 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>debug_check_no_obj_freed (10 samples, 0.07%)</title><rect x="917.1" y="1521" width="0.9" height="15.0" fill="rgb(243,103,38)" rx="2" ry="2" />
<text text-anchor="" x="920.13" 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>do_futex (8 samples, 0.06%)</title><rect x="193.8" y="1969" width="0.7" height="15.0" fill="rgb(243,60,23)" rx="2" ry="2" />
<text text-anchor="" x="196.75" 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>_raw_spin_unlock_bh (2 samples, 0.01%)</title><rect x="305.2" y="1873" width="0.1" height="15.0" fill="rgb(213,222,51)" rx="2" ry="2" />
<text text-anchor="" x="308.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>ext4_mark_iloc_dirty (12 samples, 0.09%)</title><rect x="918.7" y="1505" width="1.1" height="15.0" fill="rgb(217,130,4)" rx="2" ry="2" />
<text text-anchor="" x="921.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>[unknown] (11 samples, 0.08%)</title><rect x="770.0" y="257" width="1.0" height="15.0" fill="rgb(236,97,10)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>_raw_spin_lock (3 samples, 0.02%)</title><rect x="311.7" y="1729" width="0.3" height="15.0" fill="rgb(234,208,2)" rx="2" ry="2" />
<text text-anchor="" x="314.73" 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>kvm_clock_read (3 samples, 0.02%)</title><rect x="556.4" y="1601" width="0.3" height="15.0" fill="rgb(246,47,23)" rx="2" ry="2" />
<text text-anchor="" x="559.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>skb_entail (2 samples, 0.01%)</title><rect x="134.1" y="1889" width="0.2" height="15.0" fill="rgb(241,137,16)" rx="2" ry="2" />
<text text-anchor="" x="137.10" 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>free (3 samples, 0.02%)</title><rect x="621.1" y="2017" width="0.2" height="15.0" fill="rgb(205,24,2)" rx="2" ry="2" />
<text text-anchor="" x="624.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>restore_sigcontext (4 samples, 0.03%)</title><rect x="202.6" y="1969" width="0.3" height="15.0" fill="rgb(231,142,12)" rx="2" ry="2" />
<text text-anchor="" x="205.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>block_write_end (4 samples, 0.03%)</title><rect x="920.8" y="1553" width="0.4" height="15.0" fill="rgb(249,52,46)" rx="2" ry="2" />
<text text-anchor="" x="923.80" 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>lock_acquire (2 samples, 0.01%)</title><rect x="35.5" y="1505" width="0.2" height="15.0" fill="rgb(217,36,34)" rx="2" ry="2" />
<text text-anchor="" x="38.54" 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>mutex_unlock (2 samples, 0.01%)</title><rect x="205.6" y="1921" width="0.2" height="15.0" fill="rgb(230,2,29)" rx="2" ry="2" />
<text text-anchor="" x="208.65" 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>lock_acquire (9 samples, 0.07%)</title><rect x="383.0" y="1809" width="0.8" height="15.0" fill="rgb(239,97,53)" rx="2" ry="2" />
<text text-anchor="" x="386.01" 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] (3 samples, 0.02%)</title><rect x="831.7" y="113" width="0.2" height="15.0" fill="rgb(205,105,32)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>je_arena_tcache_fill_small (6 samples, 0.04%)</title><rect x="842.8" y="2017" width="0.5" height="15.0" fill="rgb(207,142,36)" rx="2" ry="2" />
<text text-anchor="" x="845.79" 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 (7 samples, 0.05%)</title><rect x="407.2" y="1905" width="0.7" height="15.0" fill="rgb(252,170,47)" rx="2" ry="2" />
<text text-anchor="" x="410.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>mutex_lock_nested (2 samples, 0.01%)</title><rect x="406.4" y="1921" width="0.1" height="15.0" fill="rgb(217,168,23)" rx="2" ry="2" />
<text text-anchor="" x="409.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>tcp_v4_do_rcv (36 samples, 0.27%)</title><rect x="508.5" y="1569" width="3.2" height="15.0" fill="rgb(233,170,9)" rx="2" ry="2" />
<text text-anchor="" x="511.52" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::InitDataBlock (3 samples, 0.02%)</title><rect x="896.6" y="1745" width="0.2" height="15.0" fill="rgb(241,2,29)" rx="2" ry="2" />
<text text-anchor="" x="899.57" 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_clone (3 samples, 0.02%)</title><rect x="175.6" y="1809" width="0.2" height="15.0" fill="rgb(213,26,24)" rx="2" ry="2" />
<text text-anchor="" x="178.56" 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>ep_poll (28 samples, 0.21%)</title><rect x="204.2" y="1953" width="2.5" height="15.0" fill="rgb(220,27,0)" rx="2" ry="2" />
<text text-anchor="" x="207.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>debug_object_free (2 samples, 0.01%)</title><rect x="406.6" y="1905" width="0.2" height="15.0" fill="rgb(222,218,47)" rx="2" ry="2" />
<text text-anchor="" x="409.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>lock_release (3 samples, 0.02%)</title><rect x="408.2" y="1937" width="0.3" height="15.0" fill="rgb(247,60,20)" rx="2" ry="2" />
<text text-anchor="" x="411.20" 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>debug_check_no_obj_freed (9 samples, 0.07%)</title><rect x="42.7" y="1553" width="0.8" height="15.0" fill="rgb(212,177,14)" rx="2" ry="2" />
<text text-anchor="" x="45.71" 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>grpc_chttp2_hptbl_lookup (2 samples, 0.01%)</title><rect x="218.8" y="2017" width="0.1" height="15.0" fill="rgb(218,136,41)" rx="2" ry="2" />
<text text-anchor="" x="221.77" 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_sync_write (2 samples, 0.01%)</title><rect x="817.4" y="1793" width="0.2" height="15.0" fill="rgb(230,128,52)" rx="2" ry="2" />
<text text-anchor="" x="820.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>slice_buffer_stream_next (5 samples, 0.04%)</title><rect x="427.4" y="1969" width="0.5" height="15.0" fill="rgb(211,94,22)" rx="2" ry="2" />
<text text-anchor="" x="430.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="257" width="1.1" height="15.0" fill="rgb(236,195,43)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>grpc_chttp2_maybe_complete_recv_message (2 samples, 0.01%)</title><rect x="291.2" y="1985" width="0.2" height="15.0" fill="rgb(241,125,38)" rx="2" ry="2" />
<text text-anchor="" x="294.18" 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_write_xmit (472 samples, 3.50%)</title><rect x="134.6" y="1857" width="41.3" height="15.0" fill="rgb(235,199,52)" rx="2" ry="2" />
<text text-anchor="" x="137.63" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tcp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (3 samples, 0.02%)</title><rect x="391.3" y="1889" width="0.3" height="15.0" fill="rgb(216,69,44)" rx="2" ry="2" />
<text text-anchor="" x="394.32" 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::h6598aa4660fce85f (214 samples, 1.59%)</title><rect x="1171.3" y="1969" width="18.7" height="15.0" fill="rgb(244,22,18)" rx="2" ry="2" />
<text text-anchor="" x="1174.28" 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>emit_lithdr_noidx_v.isra.10 (2 samples, 0.01%)</title><rect x="240.1" y="2033" width="0.2" height="15.0" fill="rgb(208,181,54)" rx="2" ry="2" />
<text text-anchor="" x="243.11" 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>grpc_timer_check (7 samples, 0.05%)</title><rect x="245.4" y="2033" width="0.6" height="15.0" fill="rgb(207,127,47)" rx="2" ry="2" />
<text text-anchor="" x="248.35" 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>finish_batch_step (2 samples, 0.01%)</title><rect x="287.9" y="2001" width="0.2" height="15.0" fill="rgb(244,68,39)" rx="2" ry="2" />
<text text-anchor="" x="290.95" 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>arena_dalloc_bin_locked_impl.isra.56 (23 samples, 0.17%)</title><rect x="844.2" y="2033" width="2.0" height="15.0" fill="rgb(254,151,20)" rx="2" ry="2" />
<text text-anchor="" x="847.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1617" width="3.2" height="15.0" fill="rgb(220,48,24)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>__might_sleep (3 samples, 0.02%)</title><rect x="725.5" y="1921" width="0.3" height="15.0" fill="rgb(223,82,28)" rx="2" ry="2" />
<text text-anchor="" x="728.50" 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_sendmsg (799 samples, 5.92%)</title><rect x="518.1" y="1905" width="69.8" height="15.0" fill="rgb(227,108,16)" rx="2" ry="2" />
<text text-anchor="" x="521.05" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tcp_sen..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_ack (32 samples, 0.24%)</title><rect x="108.8" y="1537" width="2.8" height="15.0" fill="rgb(212,189,35)" rx="2" ry="2" />
<text text-anchor="" x="111.83" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1937" width="3.2" height="15.0" fill="rgb(233,127,22)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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] (37 samples, 0.27%)</title><rect x="837.4" y="481" width="3.2" height="15.0" fill="rgb(243,193,46)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>__tcp_push_pending_frames (275 samples, 2.04%)</title><rect x="741.9" y="1873" width="24.0" height="15.0" fill="rgb(216,103,21)" rx="2" ry="2" />
<text text-anchor="" x="744.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>sys_futex (12 samples, 0.09%)</title><rect x="396.3" y="1985" width="1.1" height="15.0" fill="rgb(226,15,9)" rx="2" ry="2" />
<text text-anchor="" x="399.31" 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>_raw_spin_unlock_irqrestore (37 samples, 0.27%)</title><rect x="298.9" y="1761" width="3.2" height="15.0" fill="rgb(219,82,26)" rx="2" ry="2" />
<text text-anchor="" x="301.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>schedule_hrtimeout_range (35 samples, 0.26%)</title><rect x="852.1" y="1841" width="3.0" height="15.0" fill="rgb(243,208,44)" rx="2" ry="2" />
<text text-anchor="" x="855.06" 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_async_page_fault (5 samples, 0.04%)</title><rect x="925.2" y="1729" width="0.4" height="15.0" fill="rgb(235,16,21)" rx="2" ry="2" />
<text text-anchor="" x="928.17" 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_ack (4 samples, 0.03%)</title><rect x="343.9" y="1841" width="0.4" height="15.0" fill="rgb(238,88,13)" rx="2" ry="2" />
<text text-anchor="" x="346.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (4 samples, 0.03%)</title><rect x="824.3" y="1857" width="0.4" height="15.0" fill="rgb(245,22,36)" rx="2" ry="2" />
<text text-anchor="" x="827.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>start_this_handle (2 samples, 0.01%)</title><rect x="908.2" y="1505" width="0.2" height="15.0" fill="rgb(235,154,4)" rx="2" ry="2" />
<text text-anchor="" x="911.21" 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] (12 samples, 0.09%)</title><rect x="181.1" y="721" width="1.0" height="15.0" fill="rgb(214,45,2)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (2 samples, 0.01%)</title><rect x="819.3" y="1873" width="0.1" height="15.0" fill="rgb(246,97,30)" rx="2" ry="2" />
<text text-anchor="" x="822.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_clean_rtx_queue (7 samples, 0.05%)</title><rect x="739.8" y="1825" width="0.7" height="15.0" fill="rgb(226,48,30)" rx="2" ry="2" />
<text text-anchor="" x="742.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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="102.0" y="1809" width="0.2" height="15.0" fill="rgb(214,182,8)" rx="2" ry="2" />
<text text-anchor="" x="105.01" 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>trace_do_page_fault (2 samples, 0.01%)</title><rect x="94.6" y="1937" width="0.1" height="15.0" fill="rgb(222,163,12)" rx="2" ry="2" />
<text text-anchor="" x="97.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1569" width="1.1" height="15.0" fill="rgb(240,82,1)" rx="2" ry="2" />
<text text-anchor="" x="393.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>ext4_ext_map_blocks (11 samples, 0.08%)</title><rect x="1138.2" y="1713" width="1.0" height="15.0" fill="rgb(254,119,30)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1281" width="3.2" height="15.0" fill="rgb(240,36,20)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>rocksdb::InternalKeyComparator::Compare (30 samples, 0.22%)</title><rect x="891.4" y="1697" width="2.6" height="15.0" fill="rgb(250,9,32)" rx="2" ry="2" />
<text text-anchor="" x="894.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1857" width="0.5" height="15.0" fill="rgb(241,197,31)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>sysret_audit (2 samples, 0.01%)</title><rect x="294.9" y="2001" width="0.2" height="15.0" fill="rgb(242,14,17)" rx="2" ry="2" />
<text text-anchor="" x="297.94" 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>mem_cgroup_newpage_charge (2 samples, 0.01%)</title><rect x="1069.1" y="1745" width="0.2" height="15.0" fill="rgb(253,102,9)" rx="2" ry="2" />
<text text-anchor="" x="1072.13" 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>free_pages_prepare (10 samples, 0.07%)</title><rect x="990.9" y="1729" width="0.8" height="15.0" fill="rgb(212,145,26)" rx="2" ry="2" />
<text text-anchor="" x="993.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>ext4_da_write_begin (25 samples, 0.19%)</title><rect x="982.8" y="1617" width="2.2" height="15.0" fill="rgb(252,56,29)" rx="2" ry="2" />
<text text-anchor="" x="985.81" 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>napi_gro_receive (2 samples, 0.01%)</title><rect x="381.1" y="1665" width="0.2" height="15.0" fill="rgb(234,189,1)" rx="2" ry="2" />
<text text-anchor="" x="384.09" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="1233" width="0.1" height="15.0" fill="rgb(241,117,6)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>lock_acquire (3 samples, 0.02%)</title><rect x="503.3" y="1857" width="0.2" height="15.0" fill="rgb(213,122,48)" rx="2" ry="2" />
<text text-anchor="" x="506.27" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1969" width="1.0" height="15.0" fill="rgb(207,44,34)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>vfs_write (2 samples, 0.01%)</title><rect x="227.2" y="1953" width="0.2" height="15.0" fill="rgb(234,126,17)" rx="2" ry="2" />
<text text-anchor="" x="230.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>lock_acquire (2 samples, 0.01%)</title><rect x="855.2" y="1841" width="0.2" height="15.0" fill="rgb(245,194,43)" rx="2" ry="2" />
<text text-anchor="" x="858.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1377" width="0.2" height="15.0" fill="rgb(240,75,20)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>__mutex_unlock_slowpath (3 samples, 0.02%)</title><rect x="46.8" y="1633" width="0.3" height="15.0" fill="rgb(215,0,1)" rx="2" ry="2" />
<text text-anchor="" x="49.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>do_futex (6 samples, 0.04%)</title><rect x="16.5" y="1985" width="0.5" height="15.0" fill="rgb(226,183,7)" rx="2" ry="2" />
<text text-anchor="" x="19.47" 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>kvm_clock_get_cycles (2 samples, 0.01%)</title><rect x="148.7" y="1617" width="0.2" height="15.0" fill="rgb(227,76,25)" rx="2" ry="2" />
<text text-anchor="" x="151.71" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="577" width="0.5" height="15.0" fill="rgb(244,74,1)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>emit_lithdr_noidx_v.isra.10 (2 samples, 0.01%)</title><rect x="647.1" y="2033" width="0.1" height="15.0" fill="rgb(230,46,8)" rx="2" ry="2" />
<text text-anchor="" x="650.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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::Insert&lt;true&gt; (11 samples, 0.08%)</title><rect x="930.7" y="1729" width="0.9" height="15.0" fill="rgb(226,110,53)" rx="2" ry="2" />
<text text-anchor="" x="933.68" 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] (12 samples, 0.09%)</title><rect x="770.0" y="353" width="1.1" height="15.0" fill="rgb(211,202,27)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>release_pages (6 samples, 0.04%)</title><rect x="981.2" y="1889" width="0.6" height="15.0" fill="rgb(254,9,28)" rx="2" ry="2" />
<text text-anchor="" x="984.23" 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>tikv::util::worker::poll::h5bdb0ffaef56e632 (86 samples, 0.64%)</title><rect x="1160.5" y="1937" width="7.5" height="15.0" fill="rgb(214,195,3)" rx="2" ry="2" />
<text text-anchor="" x="1163.53" 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>tikv::raftstore::store::engine::IterOption::build_read_opts::hbfb92d8117537ec1 (2 samples, 0.01%)</title><rect x="886.4" y="1809" width="0.2" height="15.0" fill="rgb(241,65,39)" rx="2" ry="2" />
<text text-anchor="" x="889.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>ep_scan_ready_list (12 samples, 0.09%)</title><rect x="405.5" y="1937" width="1.0" height="15.0" fill="rgb(228,23,40)" rx="2" ry="2" />
<text text-anchor="" x="408.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>_$LT$futures..sink..send_all..SendAll$LT$T$C$$u20$U$GT$$GT$::try_start_send::h1254599f2d35903b (81 samples, 0.60%)</title><rect x="461.6" y="1905" width="7.1" height="15.0" fill="rgb(217,22,14)" rx="2" ry="2" />
<text text-anchor="" x="464.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>je_arena_tcache_fill_small (2 samples, 0.01%)</title><rect x="15.6" y="2017" width="0.2" height="15.0" fill="rgb(238,174,34)" rx="2" ry="2" />
<text text-anchor="" x="18.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>lock_acquire (7 samples, 0.05%)</title><rect x="326.7" y="1905" width="0.6" height="15.0" fill="rgb(239,10,38)" rx="2" ry="2" />
<text text-anchor="" x="329.69" 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 (2 samples, 0.01%)</title><rect x="926.2" y="1745" width="0.2" height="15.0" fill="rgb(245,42,13)" rx="2" ry="2" />
<text text-anchor="" x="929.22" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1297" width="0.5" height="15.0" fill="rgb(224,218,26)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>system_call_fastpath (6 samples, 0.04%)</title><rect x="14.4" y="1985" width="0.5" height="15.0" fill="rgb(224,17,16)" rx="2" ry="2" />
<text text-anchor="" x="17.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>tikv::util::SlowTimer::new::hbd0b3948fe9f754b (3 samples, 0.02%)</title><rect x="91.5" y="1937" width="0.3" height="15.0" fill="rgb(217,216,32)" rx="2" ry="2" />
<text text-anchor="" x="94.51" 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] (21 samples, 0.16%)</title><rect x="592.2" y="353" width="1.9" height="15.0" fill="rgb(250,27,19)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>rocksdb::(anonymous namespace)::BytewiseComparatorImpl::Compare (2 samples, 0.01%)</title><rect x="836.1" y="1697" width="0.2" height="15.0" fill="rgb(245,128,39)" rx="2" ry="2" />
<text text-anchor="" x="839.14" 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>_raw_spin_unlock_irqrestore (36 samples, 0.27%)</title><rect x="140.5" y="1793" width="3.1" height="15.0" fill="rgb(219,170,22)" rx="2" ry="2" />
<text text-anchor="" x="143.49" 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::CodedInputStream::read_uint64::h8cde9d4ea3b04318 (2 samples, 0.01%)</title><rect x="821.6" y="1857" width="0.2" height="15.0" fill="rgb(239,123,7)" rx="2" ry="2" />
<text text-anchor="" x="824.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>start_thread (1,458 samples, 10.81%)</title><rect x="848.6" y="2033" width="127.6" height="15.0" fill="rgb(236,173,21)" rx="2" ry="2" />
<text text-anchor="" x="851.65" 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>system_call_fastpath (10 samples, 0.07%)</title><rect x="615.8" y="1985" width="0.9" height="15.0" fill="rgb(229,149,44)" rx="2" ry="2" />
<text text-anchor="" x="618.83" 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$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::compute_size::ha5adab845ea77d84 (15 samples, 0.11%)</title><rect x="809.9" y="1857" width="1.3" height="15.0" fill="rgb(235,211,51)" rx="2" ry="2" />
<text text-anchor="" x="812.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>grpc_slice_buffer_take_first (3 samples, 0.02%)</title><rect x="223.3" y="2017" width="0.3" height="15.0" fill="rgb(215,187,20)" rx="2" ry="2" />
<text text-anchor="" x="226.31" 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>__ext4_get_inode_loc (2 samples, 0.01%)</title><rect x="909.1" y="1489" width="0.2" height="15.0" fill="rgb(220,180,33)" rx="2" ry="2" />
<text text-anchor="" x="912.08" 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] (3 samples, 0.02%)</title><rect x="831.7" y="209" width="0.2" height="15.0" fill="rgb(246,107,7)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>rocksdb::CompactionJob::ProcessKeyValueCompaction (938 samples, 6.95%)</title><rect x="1064.3" y="1937" width="82.1" height="15.0" fill="rgb(249,106,5)" rx="2" ry="2" />
<text text-anchor="" x="1067.32" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rocksdb::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::CompactionJob::SubcompactionState::ShouldStopBefore (23 samples, 0.17%)</title><rect x="1142.8" y="1921" width="2.0" height="15.0" fill="rgb(209,161,43)" rx="2" ry="2" />
<text text-anchor="" x="1145.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>[unknown] (36 samples, 0.27%)</title><rect x="837.4" y="145" width="3.1" height="15.0" fill="rgb(219,133,47)" rx="2" ry="2" />
<text text-anchor="" x="840.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>do_notify_resume (24 samples, 0.18%)</title><rect x="608.6" y="1985" width="2.1" height="15.0" fill="rgb(241,162,11)" rx="2" ry="2" />
<text text-anchor="" x="611.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>ep_poll (27 samples, 0.20%)</title><rect x="612.9" y="1953" width="2.3" height="15.0" fill="rgb(237,121,11)" rx="2" ry="2" />
<text text-anchor="" x="615.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>alloc_page_buffers (4 samples, 0.03%)</title><rect x="982.9" y="1553" width="0.3" height="15.0" fill="rgb(214,42,6)" rx="2" ry="2" />
<text text-anchor="" x="985.90" 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>is_module_address (16 samples, 0.12%)</title><rect x="38.0" y="1521" width="1.4" height="15.0" fill="rgb(229,120,18)" rx="2" ry="2" />
<text text-anchor="" x="40.99" 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>sys_futex (9 samples, 0.07%)</title><rect x="602.5" y="1985" width="0.8" height="15.0" fill="rgb(237,18,2)" rx="2" ry="2" />
<text text-anchor="" x="605.54" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1409" width="1.1" height="15.0" fill="rgb(208,77,26)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>lock_acquire (3 samples, 0.02%)</title><rect x="46.6" y="1633" width="0.2" height="15.0" fill="rgb(253,160,38)" rx="2" ry="2" />
<text text-anchor="" x="49.56" 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>tikv::raftstore::store::peer_storage::PeerStorage::append::ha3e59fc51a564c59 (32 samples, 0.24%)</title><rect x="952.0" y="1873" width="2.8" height="15.0" fill="rgb(208,109,27)" rx="2" ry="2" />
<text text-anchor="" x="955.02" 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>napi_gro_receive (2 samples, 0.01%)</title><rect x="1136.8" y="1729" width="0.2" height="15.0" fill="rgb(218,179,50)" rx="2" ry="2" />
<text text-anchor="" x="1139.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>perform_stream_op_locked (12 samples, 0.09%)</title><rect x="658.0" y="2033" width="1.0" height="15.0" fill="rgb(229,20,52)" rx="2" ry="2" />
<text text-anchor="" x="660.99" 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 (50 samples, 0.37%)</title><rect x="507.4" y="1777" width="4.4" height="15.0" fill="rgb(243,136,4)" rx="2" ry="2" />
<text text-anchor="" x="510.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>lock_is_held (2 samples, 0.01%)</title><rect x="177.7" y="1889" width="0.1" height="15.0" fill="rgb(249,116,22)" rx="2" ry="2" />
<text text-anchor="" x="180.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>mutex_lock_nested (2 samples, 0.01%)</title><rect x="98.6" y="1937" width="0.2" height="15.0" fill="rgb(211,16,17)" rx="2" ry="2" />
<text text-anchor="" x="101.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>kmem_cache_alloc_node (4 samples, 0.03%)</title><rect x="539.4" y="1857" width="0.3" height="15.0" fill="rgb(251,36,27)" rx="2" ry="2" />
<text text-anchor="" x="542.39" 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>__radix_tree_lookup (8 samples, 0.06%)</title><rect x="1084.2" y="1569" width="0.7" height="15.0" fill="rgb(208,186,26)" rx="2" ry="2" />
<text text-anchor="" x="1087.17" 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] (3 samples, 0.02%)</title><rect x="831.7" y="961" width="0.2" height="15.0" fill="rgb(208,90,6)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::DBImpl::ReleaseSnapshot (4 samples, 0.03%)</title><rect x="83.2" y="1873" width="0.4" height="15.0" fill="rgb(211,214,11)" rx="2" ry="2" />
<text text-anchor="" x="86.20" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1265" width="1.0" height="15.0" fill="rgb(208,169,42)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>__ext4_journal_start_sb (2 samples, 0.01%)</title><rect x="43.7" y="1553" width="0.1" height="15.0" fill="rgb(239,164,13)" rx="2" ry="2" />
<text text-anchor="" x="46.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>rcu_is_watching (2 samples, 0.01%)</title><rect x="144.2" y="1793" width="0.2" height="15.0" fill="rgb(240,169,38)" rx="2" ry="2" />
<text text-anchor="" x="147.25" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="225" width="0.1" height="15.0" fill="rgb(212,89,34)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>__pagevec_release (10 samples, 0.07%)</title><rect x="1160.9" y="1601" width="0.9" height="15.0" fill="rgb(237,209,41)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>lock_acquire (11 samples, 0.08%)</title><rect x="584.5" y="1809" width="1.0" height="15.0" fill="rgb(234,127,11)" rx="2" ry="2" />
<text text-anchor="" x="587.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>finish_task_switch (24 samples, 0.18%)</title><rect x="1174.3" y="1793" width="2.1" height="15.0" fill="rgb(241,132,6)" rx="2" ry="2" />
<text text-anchor="" x="1177.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] (11 samples, 0.08%)</title><rect x="770.0" y="145" width="1.0" height="15.0" fill="rgb(221,94,26)" rx="2" ry="2" />
<text text-anchor="" x="773.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>__find_lock_page (9 samples, 0.07%)</title><rect x="40.3" y="1585" width="0.8" height="15.0" fill="rgb(205,168,22)" rx="2" ry="2" />
<text text-anchor="" x="43.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>free_hot_cold_page_list (3 samples, 0.02%)</title><rect x="1055.4" y="1841" width="0.3" height="15.0" fill="rgb(247,121,21)" rx="2" ry="2" />
<text text-anchor="" x="1058.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1409" width="0.2" height="15.0" fill="rgb(207,79,38)" rx="2" ry="2" />
<text text-anchor="" x="834.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>rocksdb::DBImpl::DeleteObsoleteFileImpl (22 samples, 0.16%)</title><rect x="1160.7" y="1777" width="1.9" height="15.0" fill="rgb(239,23,21)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>skb_release_all (62 samples, 0.46%)</title><rect x="297.9" y="1873" width="5.4" height="15.0" fill="rgb(251,96,9)" rx="2" ry="2" />
<text text-anchor="" x="300.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>netif_rx (21 samples, 0.16%)</title><rect x="147.0" y="1697" width="1.9" height="15.0" fill="rgb(242,87,49)" rx="2" ry="2" />
<text text-anchor="" x="150.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>free_pages_prepare (6 samples, 0.04%)</title><rect x="981.2" y="1841" width="0.6" height="15.0" fill="rgb(218,78,30)" rx="2" ry="2" />
<text text-anchor="" x="984.23" 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>__put_single_page (16 samples, 0.12%)</title><rect x="705.9" y="1825" width="1.4" height="15.0" fill="rgb(214,51,38)" rx="2" ry="2" />
<text text-anchor="" x="708.91" 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>crocksdb_write (50 samples, 0.37%)</title><rect x="832.4" y="1905" width="4.4" height="15.0" fill="rgb(241,112,19)" rx="2" ry="2" />
<text text-anchor="" x="835.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>__mutex_unlock_slowpath (2 samples, 0.01%)</title><rect x="205.6" y="1905" width="0.2" height="15.0" fill="rgb(221,107,24)" rx="2" ry="2" />
<text text-anchor="" x="208.65" 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_start_range_ns (3 samples, 0.02%)</title><rect x="614.8" y="1905" width="0.2" height="15.0" fill="rgb(247,95,16)" rx="2" ry="2" />
<text text-anchor="" x="617.78" 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>lock_is_held (2 samples, 0.01%)</title><rect x="517.6" y="1905" width="0.2" height="15.0" fill="rgb(240,137,2)" rx="2" ry="2" />
<text text-anchor="" x="520.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>signal_setup_done (4 samples, 0.03%)</title><rect x="431.9" y="1953" width="0.4" height="15.0" fill="rgb(230,106,44)" rx="2" ry="2" />
<text text-anchor="" x="434.90" 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>system_call_fastpath (3 samples, 0.02%)</title><rect x="966.8" y="1841" width="0.3" height="15.0" fill="rgb(220,10,13)" rx="2" ry="2" />
<text text-anchor="" x="969.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>do_futex (13 samples, 0.10%)</title><rect x="89.9" y="1873" width="1.1" height="15.0" fill="rgb(251,92,29)" rx="2" ry="2" />
<text text-anchor="" x="92.85" 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] (3 samples, 0.02%)</title><rect x="831.7" y="561" width="0.2" height="15.0" fill="rgb(227,97,36)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>get_page_from_freelist (6 samples, 0.04%)</title><rect x="1085.4" y="1569" width="0.5" height="15.0" fill="rgb(219,166,43)" rx="2" ry="2" />
<text text-anchor="" x="1088.40" 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>__kmalloc_reserve.isra.29 (16 samples, 0.12%)</title><rect x="538.0" y="1857" width="1.4" height="15.0" fill="rgb(238,108,32)" rx="2" ry="2" />
<text text-anchor="" x="540.99" 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] (5 samples, 0.04%)</title><rect x="431.4" y="2001" width="0.4" height="15.0" fill="rgb(229,14,40)" rx="2" ry="2" />
<text text-anchor="" x="434.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>pollset_work (8 samples, 0.06%)</title><rect x="429.3" y="2017" width="0.7" height="15.0" fill="rgb(219,22,1)" rx="2" ry="2" />
<text text-anchor="" x="432.28" 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_unlock_irq (13 samples, 0.10%)</title><rect x="89.9" y="1777" width="1.1" height="15.0" fill="rgb(221,205,43)" rx="2" ry="2" />
<text text-anchor="" x="92.85" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1537" width="0.2" height="15.0" fill="rgb(249,199,10)" rx="2" ry="2" />
<text text-anchor="" x="834.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>grpc::call::Call::start_recv_message::h050fd8845677afd0 (3 samples, 0.02%)</title><rect x="686.1" y="1889" width="0.2" height="15.0" fill="rgb(226,78,31)" rx="2" ry="2" />
<text text-anchor="" x="689.06" 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] (12 samples, 0.09%)</title><rect x="181.1" y="993" width="1.0" height="15.0" fill="rgb(227,8,33)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__restore_xstate_sig (2 samples, 0.01%)</title><rect x="610.9" y="1953" width="0.2" height="15.0" fill="rgb(206,161,32)" rx="2" ry="2" />
<text text-anchor="" x="613.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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::Insert&lt;true&gt; (17 samples, 0.13%)</title><rect x="834.9" y="1777" width="1.5" height="15.0" fill="rgb(221,97,21)" rx="2" ry="2" />
<text text-anchor="" x="837.92" 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>pollset_kick (3 samples, 0.02%)</title><rect x="780.8" y="2001" width="0.2" height="15.0" fill="rgb(224,72,45)" rx="2" ry="2" />
<text text-anchor="" x="783.78" 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>ret_from_intr (2 samples, 0.01%)</title><rect x="904.0" y="1809" width="0.2" height="15.0" fill="rgb(218,150,16)" rx="2" ry="2" />
<text text-anchor="" x="907.01" 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>add_to_page_cache_lru (5 samples, 0.04%)</title><rect x="41.5" y="1585" width="0.4" height="15.0" fill="rgb(234,92,21)" rx="2" ry="2" />
<text text-anchor="" x="44.49" 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 (2 samples, 0.01%)</title><rect x="129.0" y="1825" width="0.2" height="15.0" fill="rgb(205,25,26)" rx="2" ry="2" />
<text text-anchor="" x="132.03" 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>grpc::call::ShareCall::check_alive::h8de5d97e29d99e50 (2 samples, 0.01%)</title><rect x="475.1" y="1905" width="0.2" height="15.0" fill="rgb(254,40,2)" rx="2" ry="2" />
<text text-anchor="" x="478.11" 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>rocksdb::(anonymous namespace)::FullFilterBitsBuilder::AddKey (3 samples, 0.02%)</title><rect x="986.1" y="1841" width="0.3" height="15.0" fill="rgb(246,27,9)" rx="2" ry="2" />
<text text-anchor="" x="989.13" 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>system_call_fastpath (5 samples, 0.04%)</title><rect x="935.2" y="1777" width="0.5" height="15.0" fill="rgb(231,199,0)" rx="2" ry="2" />
<text text-anchor="" x="938.23" 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>net_rx_action (48 samples, 0.36%)</title><rect x="507.6" y="1713" width="4.2" height="15.0" fill="rgb(224,81,16)" rx="2" ry="2" />
<text text-anchor="" x="510.56" 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>might_fault (4 samples, 0.03%)</title><rect x="202.1" y="1921" width="0.3" height="15.0" fill="rgb(233,190,42)" rx="2" ry="2" />
<text text-anchor="" x="205.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>__sys_sendmsg (910 samples, 6.74%)</title><rect x="512.4" y="1969" width="79.6" height="15.0" fill="rgb(205,67,38)" rx="2" ry="2" />
<text text-anchor="" x="515.37" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sys_sen..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_acquire (3 samples, 0.02%)</title><rect x="910.2" y="1505" width="0.3" height="15.0" fill="rgb(210,45,26)" rx="2" ry="2" />
<text text-anchor="" x="913.22" 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>_$LT$tikv..util..transport..RetryableSendCh$LT$T$C$$u20$C$GT$$GT$::send_with_try_times::h2a4728d81b0b582e (27 samples, 0.20%)</title><rect x="471.3" y="1889" width="2.4" height="15.0" fill="rgb(249,163,6)" rx="2" ry="2" />
<text text-anchor="" x="474.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>grpc::call::Call::start_recv_message::h050fd8845677afd0 (2 samples, 0.01%)</title><rect x="819.5" y="1889" width="0.2" height="15.0" fill="rgb(205,154,2)" rx="2" ry="2" />
<text text-anchor="" x="822.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1329" width="1.8" height="15.0" fill="rgb(253,45,34)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>__lll_unlock_wake_private (2 samples, 0.01%)</title><rect x="236.1" y="2033" width="0.2" height="15.0" fill="rgb(216,173,34)" rx="2" ry="2" />
<text text-anchor="" x="239.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_clock (2 samples, 0.01%)</title><rect x="586.0" y="1825" width="0.2" height="15.0" fill="rgb(231,122,1)" rx="2" ry="2" />
<text text-anchor="" x="589.01" 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>crocksdb_iter_destroy (3 samples, 0.02%)</title><rect x="886.8" y="1809" width="0.2" height="15.0" fill="rgb(226,105,32)" rx="2" ry="2" />
<text text-anchor="" x="889.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>rocksdb::HistogramStat::Add (5 samples, 0.04%)</title><rect x="894.8" y="1745" width="0.5" height="15.0" fill="rgb(205,40,35)" rx="2" ry="2" />
<text text-anchor="" x="897.83" 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>_raw_spin_lock_bh (2 samples, 0.01%)</title><rect x="103.9" y="1873" width="0.2" height="15.0" fill="rgb(225,134,30)" rx="2" ry="2" />
<text text-anchor="" x="106.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>kvproto::raft_serverpb::RaftMessage::set_to_peer::h4b53a2df743eb35e (2 samples, 0.01%)</title><rect x="950.4" y="1857" width="0.1" height="15.0" fill="rgb(214,161,34)" rx="2" ry="2" />
<text text-anchor="" x="953.36" 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>generic_file_aio_write (36 samples, 0.27%)</title><rect x="982.5" y="1665" width="3.2" height="15.0" fill="rgb(215,194,34)" rx="2" ry="2" />
<text text-anchor="" x="985.55" 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$kvproto..raft_serverpb..RaftTruncatedState$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::h2d99e0b9d65e682c (2 samples, 0.01%)</title><rect x="87.5" y="1857" width="0.2" height="15.0" fill="rgb(226,33,43)" rx="2" ry="2" />
<text text-anchor="" x="90.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>grpc::server::ServiceBuilder::add_unary_handler::_$u7b$$u7b$closure$u7d$$u7d$::h2986f36ad2fb64c4 (15 samples, 0.11%)</title><rect x="488.7" y="1937" width="1.3" height="15.0" fill="rgb(221,196,5)" rx="2" ry="2" />
<text text-anchor="" x="491.66" 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 (5 samples, 0.04%)</title><rect x="194.0" y="1905" width="0.5" height="15.0" fill="rgb(241,12,14)" rx="2" ry="2" />
<text text-anchor="" x="197.01" 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>kvproto::raft_serverpb::RaftTruncatedState::get_index::hab737bfefc0ebe28 (3 samples, 0.02%)</title><rect x="870.3" y="1825" width="0.3" height="15.0" fill="rgb(252,109,36)" rx="2" ry="2" />
<text text-anchor="" x="873.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>gpr_unref (18 samples, 0.13%)</title><rect x="622.7" y="2017" width="1.5" height="15.0" fill="rgb(249,21,29)" rx="2" ry="2" />
<text text-anchor="" x="625.65" 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 (7 samples, 0.05%)</title><rect x="183.5" y="1889" width="0.6" height="15.0" fill="rgb(242,178,21)" rx="2" ry="2" />
<text text-anchor="" x="186.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>__find_lock_page (2 samples, 0.01%)</title><rect x="1137.6" y="1681" width="0.2" height="15.0" fill="rgb(206,45,45)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>async_page_fault (2 samples, 0.01%)</title><rect x="986.2" y="1809" width="0.2" height="15.0" fill="rgb(212,188,17)" rx="2" ry="2" />
<text text-anchor="" x="989.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>do_signal (7 samples, 0.05%)</title><rect x="774.1" y="1969" width="0.6" height="15.0" fill="rgb(210,227,51)" rx="2" ry="2" />
<text text-anchor="" x="777.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="961" width="3.2" height="15.0" fill="rgb(222,105,11)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="971.5" font-size="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 (80 samples, 0.59%)</title><rect x="313.6" y="1697" width="7.0" height="15.0" fill="rgb(221,172,31)" rx="2" ry="2" />
<text text-anchor="" x="316.57" 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>rocksdb::BlockBasedTable::GetFilter (2 samples, 0.01%)</title><rect x="1137.1" y="1825" width="0.2" height="15.0" fill="rgb(232,79,33)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>tlb_flush_mmu.part.57 (7 samples, 0.05%)</title><rect x="603.8" y="1937" width="0.7" height="15.0" fill="rgb(205,158,12)" rx="2" ry="2" />
<text text-anchor="" x="606.85" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="673" width="0.5" height="15.0" fill="rgb(243,156,29)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zap_page_range (3 samples, 0.02%)</title><rect x="1055.4" y="1921" width="0.3" height="15.0" fill="rgb(207,112,9)" rx="2" ry="2" />
<text text-anchor="" x="1058.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>tcp_rcv_established (2 samples, 0.01%)</title><rect x="42.4" y="1265" width="0.2" height="15.0" fill="rgb(222,31,8)" rx="2" ry="2" />
<text text-anchor="" x="45.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] (2 samples, 0.01%)</title><rect x="1160.3" y="497" width="0.1" height="15.0" fill="rgb(227,225,25)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="625" width="1.8" height="15.0" fill="rgb(238,18,45)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>do_huge_pmd_anonymous_page (3 samples, 0.02%)</title><rect x="50.1" y="1665" width="0.3" height="15.0" fill="rgb(247,228,51)" rx="2" ry="2" />
<text text-anchor="" x="53.14" 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>_raw_spin_unlock_irqrestore (10 samples, 0.07%)</title><rect x="612.9" y="1937" width="0.9" height="15.0" fill="rgb(229,201,37)" rx="2" ry="2" />
<text text-anchor="" x="615.94" 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_page_fault (5 samples, 0.04%)</title><rect x="925.2" y="1697" width="0.4" height="15.0" fill="rgb(218,49,51)" rx="2" ry="2" />
<text text-anchor="" x="928.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>__radix_tree_lookup (3 samples, 0.02%)</title><rect x="1142.3" y="1649" width="0.3" height="15.0" fill="rgb(242,110,47)" rx="2" ry="2" />
<text text-anchor="" x="1145.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="833" width="1.1" height="15.0" fill="rgb(219,130,11)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="843.5" font-size="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_lockdep_current_cpu_online (3 samples, 0.02%)</title><rect x="174.9" y="1809" width="0.2" height="15.0" fill="rgb(240,167,40)" rx="2" ry="2" />
<text text-anchor="" x="177.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="449" width="1.9" height="15.0" fill="rgb(229,162,12)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>debug_check_no_obj_freed (29 samples, 0.21%)</title><rect x="1155.3" y="1601" width="2.5" height="15.0" fill="rgb(208,228,46)" rx="2" ry="2" />
<text text-anchor="" x="1158.28" 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>clock_gettime (6 samples, 0.04%)</title><rect x="960.4" y="1905" width="0.5" height="15.0" fill="rgb(220,189,3)" rx="2" ry="2" />
<text text-anchor="" x="963.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>_$LT$std..sync..mpsc..shared..Packet$LT$T$GT$$GT$::try_recv::hd54bcc9981621d3d (10 samples, 0.07%)</title><rect x="22.9" y="1937" width="0.9" height="15.0" fill="rgb(254,223,10)" rx="2" ry="2" />
<text text-anchor="" x="25.94" 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] (13 samples, 0.10%)</title><rect x="390.2" y="881" width="1.1" height="15.0" fill="rgb(232,152,38)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="891.5" font-size="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 (809 samples, 6.00%)</title><rect x="21.2" y="1985" width="70.7" height="15.0" fill="rgb(240,176,43)" rx="2" ry="2" />
<text text-anchor="" x="24.19" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__rust_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="360.2" y="1713" width="0.2" height="15.0" fill="rgb(216,150,12)" rx="2" ry="2" />
<text text-anchor="" x="363.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>pollset_work (7 samples, 0.05%)</title><rect x="228.6" y="2017" width="0.6" height="15.0" fill="rgb(225,158,53)" rx="2" ry="2" />
<text text-anchor="" x="231.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>ip_local_out_sk (327 samples, 2.42%)</title><rect x="144.5" y="1809" width="28.6" height="15.0" fill="rgb(215,140,38)" rx="2" ry="2" />
<text text-anchor="" x="147.51" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_rx (18 samples, 0.13%)</title><rect x="357.9" y="1697" width="1.6" height="15.0" fill="rgb(216,146,13)" rx="2" ry="2" />
<text text-anchor="" x="360.91" 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] (12 samples, 0.09%)</title><rect x="181.1" y="289" width="1.0" height="15.0" fill="rgb(219,197,24)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>system_call_fastpath (49 samples, 0.36%)</title><rect x="1121.5" y="1745" width="4.3" height="15.0" fill="rgb(215,63,35)" rx="2" ry="2" />
<text text-anchor="" x="1124.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] (10 samples, 0.07%)</title><rect x="770.0" y="65" width="0.9" height="15.0" fill="rgb(252,97,14)" rx="2" ry="2" />
<text text-anchor="" x="773.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>_raw_spin_unlock_irqrestore (11 samples, 0.08%)</title><rect x="619.1" y="1905" width="0.9" height="15.0" fill="rgb(248,221,26)" rx="2" ry="2" />
<text text-anchor="" x="622.07" 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>lock_release (3 samples, 0.02%)</title><rect x="602.1" y="1937" width="0.3" height="15.0" fill="rgb(247,107,36)" rx="2" ry="2" />
<text text-anchor="" x="605.10" 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>__page_cache_alloc (13 samples, 0.10%)</title><rect x="1085.0" y="1617" width="1.1" height="15.0" fill="rgb(207,77,16)" rx="2" ry="2" />
<text text-anchor="" x="1087.96" 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>timer_callback (2 samples, 0.01%)</title><rect x="288.3" y="1969" width="0.2" height="15.0" fill="rgb(252,202,15)" rx="2" ry="2" />
<text text-anchor="" x="291.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>might_fault (9 samples, 0.07%)</title><rect x="202.9" y="1969" width="0.8" height="15.0" fill="rgb(220,97,33)" rx="2" ry="2" />
<text text-anchor="" x="205.94" 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>__netif_receive_skb (2 samples, 0.01%)</title><rect x="62.1" y="1553" width="0.2" height="15.0" fill="rgb(234,188,6)" rx="2" ry="2" />
<text text-anchor="" x="65.13" 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_write (6 samples, 0.04%)</title><rect x="473.0" y="1809" width="0.5" height="15.0" fill="rgb(244,122,7)" rx="2" ry="2" />
<text text-anchor="" x="476.01" 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>fsnotify (2 samples, 0.01%)</title><rect x="946.8" y="1761" width="0.2" height="15.0" fill="rgb(238,153,39)" rx="2" ry="2" />
<text text-anchor="" x="949.78" 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>protobuf::stream::CodedOutputStream::write_raw_varint64::h90004c2b1b2d478d (4 samples, 0.03%)</title><rect x="675.7" y="1809" width="0.4" height="15.0" fill="rgb(218,65,16)" rx="2" ry="2" />
<text text-anchor="" x="678.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>[unknown] (13 samples, 0.10%)</title><rect x="700.3" y="2001" width="1.2" height="15.0" fill="rgb(228,139,24)" rx="2" ry="2" />
<text text-anchor="" x="703.32" 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>netif_rx_internal (11 samples, 0.08%)</title><rect x="750.1" y="1681" width="0.9" height="15.0" fill="rgb(232,65,10)" rx="2" ry="2" />
<text text-anchor="" x="753.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>_$LT$grpc..async..executor..SpawnNotify$u20$as$u20$futures..task_impl..Notify$GT$::notify::h193896b535eb4452 (5 samples, 0.04%)</title><rect x="255.5" y="1937" width="0.4" height="15.0" fill="rgb(207,23,44)" rx="2" ry="2" />
<text text-anchor="" x="258.50" 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$tikv..util..file_log..RotatingFileLogger$u20$as$u20$tikv..util..logger..LogWriter$GT$::write::hb694320a3790af8b (5 samples, 0.04%)</title><rect x="86.0" y="1841" width="0.4" height="15.0" fill="rgb(207,59,18)" rx="2" ry="2" />
<text text-anchor="" x="89.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>futures::task_impl::current::h93a65a8e08ed8353 (3 samples, 0.02%)</title><rect x="470.4" y="1905" width="0.2" height="15.0" fill="rgb(210,221,38)" rx="2" ry="2" />
<text text-anchor="" x="473.39" 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>__set_current_blocked (12 samples, 0.09%)</title><rect x="611.7" y="1953" width="1.1" height="15.0" fill="rgb(230,175,13)" rx="2" ry="2" />
<text text-anchor="" x="614.72" 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>block_invalidatepage_range (7 samples, 0.05%)</title><rect x="1162.0" y="1537" width="0.6" height="15.0" fill="rgb(230,187,29)" rx="2" ry="2" />
<text text-anchor="" x="1165.01" 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$kvproto..eraftpb..Message$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::hdf18c863aabbe088 (13 samples, 0.10%)</title><rect x="263.8" y="1841" width="1.1" height="15.0" fill="rgb(253,15,19)" rx="2" ry="2" />
<text text-anchor="" x="266.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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::RecomputeSpliceLevels (15 samples, 0.11%)</title><rect x="833.3" y="1777" width="1.4" height="15.0" fill="rgb(242,36,47)" rx="2" ry="2" />
<text text-anchor="" x="836.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>rocksdb::(anonymous namespace)::PosixEnv::NowMicros (8 samples, 0.06%)</title><rect x="887.7" y="1761" width="0.7" height="15.0" fill="rgb(214,131,7)" rx="2" ry="2" />
<text text-anchor="" x="890.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1633" width="1.1" height="15.0" fill="rgb(243,113,22)" rx="2" ry="2" />
<text text-anchor="" x="773.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="401" width="1.1" height="15.0" fill="rgb(237,131,18)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>gpr_ref (3 samples, 0.02%)</title><rect x="796.7" y="2033" width="0.3" height="15.0" fill="rgb(219,117,1)" rx="2" ry="2" />
<text text-anchor="" x="799.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>[unknown] (11 samples, 0.08%)</title><rect x="770.0" y="113" width="1.0" height="15.0" fill="rgb(220,43,40)" rx="2" ry="2" />
<text text-anchor="" x="773.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>process_backlog (215 samples, 1.59%)</title><rect x="152.5" y="1681" width="18.8" height="15.0" fill="rgb(224,100,4)" rx="2" ry="2" />
<text text-anchor="" x="155.47" 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>rocksdb::MemTableInserter::DeleteCF (46 samples, 0.34%)</title><rect x="832.6" y="1825" width="4.0" height="15.0" fill="rgb(246,170,9)" rx="2" ry="2" />
<text text-anchor="" x="835.55" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1745" width="1.9" height="15.0" fill="rgb(209,129,47)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>system_call_fastpath (13 samples, 0.10%)</title><rect x="396.2" y="2001" width="1.2" height="15.0" fill="rgb(242,111,44)" rx="2" ry="2" />
<text text-anchor="" x="399.22" 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>__put_single_page (45 samples, 0.33%)</title><rect x="298.3" y="1825" width="3.9" height="15.0" fill="rgb(254,34,5)" rx="2" ry="2" />
<text text-anchor="" x="301.27" 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>system_call_fastpath (50 samples, 0.37%)</title><rect x="611.2" y="2001" width="4.4" height="15.0" fill="rgb(220,38,28)" rx="2" ry="2" />
<text text-anchor="" x="614.19" 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>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="391.3" y="1921" width="0.3" height="15.0" fill="rgb(239,8,52)" rx="2" ry="2" />
<text text-anchor="" x="394.32" 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>__set_page_dirty (3 samples, 0.02%)</title><rect x="920.8" y="1505" width="0.3" height="15.0" fill="rgb(250,28,50)" rx="2" ry="2" />
<text text-anchor="" x="923.80" 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>tikv::raftstore::store::util::is_epoch_stale::hf98de47547e7480e (7 samples, 0.05%)</title><rect x="876.3" y="1889" width="0.6" height="15.0" fill="rgb(242,34,4)" rx="2" ry="2" />
<text text-anchor="" x="879.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>__memcpy_ssse3_back (6 samples, 0.04%)</title><rect x="972.8" y="1793" width="0.6" height="15.0" fill="rgb(235,168,35)" rx="2" ry="2" />
<text text-anchor="" x="975.84" 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>rocksdb::BlockBasedTableBuilder::WriteBlock (38 samples, 0.28%)</title><rect x="982.5" y="1841" width="3.4" height="15.0" fill="rgb(223,10,16)" rx="2" ry="2" />
<text text-anchor="" x="985.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>call_softirq (2 samples, 0.01%)</title><rect x="904.0" y="1745" width="0.2" height="15.0" fill="rgb(218,51,3)" rx="2" ry="2" />
<text text-anchor="" x="907.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1553" width="1.1" height="15.0" fill="rgb(243,205,24)" rx="2" ry="2" />
<text text-anchor="" x="773.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>grpc::call::Call::start_send_message::h109c4334b6fcc5a5 (2 samples, 0.01%)</title><rect x="462.8" y="1889" width="0.2" height="15.0" fill="rgb(249,80,32)" rx="2" ry="2" />
<text text-anchor="" x="465.78" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="1665" width="0.1" height="15.0" fill="rgb(226,20,17)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>clock_gettime (2 samples, 0.01%)</title><rect x="391.8" y="2001" width="0.1" height="15.0" fill="rgb(230,50,33)" rx="2" ry="2" />
<text text-anchor="" x="394.76" 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.17.so] (5 samples, 0.04%)</title><rect x="976.9" y="1761" width="0.4" height="15.0" fill="rgb(218,187,35)" rx="2" ry="2" />
<text text-anchor="" x="979.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>protobuf::rt::read_singular_bytes_into::h23f2d443b5f2ddd7 (2 samples, 0.01%)</title><rect x="687.8" y="1841" width="0.2" height="15.0" fill="rgb(229,186,54)" rx="2" ry="2" />
<text text-anchor="" x="690.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>std::sys_common::backtrace::__rust_begin_short_backtrace::hd4b72de370bf8e0b (799 samples, 5.92%)</title><rect x="21.9" y="1953" width="69.9" height="15.0" fill="rgb(238,59,14)" rx="2" ry="2" />
<text text-anchor="" x="24.89" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.01%)</title><rect x="780.1" y="1921" width="0.2" height="15.0" fill="rgb(217,38,46)" rx="2" ry="2" />
<text text-anchor="" x="783.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>debug_check_no_obj_freed (9 samples, 0.07%)</title><rect x="110.4" y="1441" width="0.8" height="15.0" fill="rgb(239,198,8)" rx="2" ry="2" />
<text text-anchor="" x="113.40" 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>grpc::call::ShareCall::check_alive::h8de5d97e29d99e50 (2 samples, 0.01%)</title><rect x="818.6" y="1905" width="0.1" height="15.0" fill="rgb(221,224,11)" rx="2" ry="2" />
<text text-anchor="" x="821.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>do_send_specific (7 samples, 0.05%)</title><rect x="1169.2" y="1937" width="0.6" height="15.0" fill="rgb(246,123,5)" rx="2" ry="2" />
<text text-anchor="" x="1172.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>do_send_specific (23 samples, 0.17%)</title><rect x="210.0" y="1937" width="2.0" height="15.0" fill="rgb(242,181,30)" rx="2" ry="2" />
<text text-anchor="" x="213.02" 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] (21 samples, 0.16%)</title><rect x="10.3" y="753" width="1.8" height="15.0" fill="rgb(241,158,21)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="763.5" font-size="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 (2 samples, 0.01%)</title><rect x="206.2" y="1889" width="0.1" height="15.0" fill="rgb(247,52,7)" rx="2" ry="2" />
<text text-anchor="" x="209.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>grpcwrap_metadata_array_destroy_metadata_including_entries (4 samples, 0.03%)</title><rect x="631.0" y="2017" width="0.3" height="15.0" fill="rgb(248,101,26)" rx="2" ry="2" />
<text text-anchor="" x="633.96" 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::stream::CodedInputStream::read_raw_byte::ha2cb1055a4a0050e (2 samples, 0.01%)</title><rect x="486.0" y="1841" width="0.2" height="15.0" fill="rgb(219,89,17)" rx="2" ry="2" />
<text text-anchor="" x="489.04" 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>ext4_mark_inode_dirty (6 samples, 0.04%)</title><rect x="35.8" y="1569" width="0.5" height="15.0" fill="rgb(252,70,48)" rx="2" ry="2" />
<text text-anchor="" x="38.80" 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>rocksdb::(anonymous namespace)::BytewiseComparatorImpl::Compare (2 samples, 0.01%)</title><rect x="834.5" y="1713" width="0.2" height="15.0" fill="rgb(211,203,22)" rx="2" ry="2" />
<text text-anchor="" x="837.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>mallocx (2 samples, 0.01%)</title><rect x="19.9" y="2033" width="0.2" height="15.0" fill="rgb(222,210,28)" rx="2" ry="2" />
<text text-anchor="" x="22.88" 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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1937" width="0.2" height="15.0" fill="rgb(241,98,23)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>radix_tree_lookup_slot (3 samples, 0.02%)</title><rect x="1138.7" y="1617" width="0.3" height="15.0" fill="rgb(242,164,39)" rx="2" ry="2" />
<text text-anchor="" x="1141.75" 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>maybe_do_workqueue_work (2 samples, 0.01%)</title><rect x="427.9" y="2017" width="0.2" height="15.0" fill="rgb(252,153,31)" rx="2" ry="2" />
<text text-anchor="" x="430.88" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="545" width="0.1" height="15.0" fill="rgb(228,65,24)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="257" width="0.1" height="15.0" fill="rgb(208,187,41)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>fget_light (2 samples, 0.01%)</title><rect x="206.7" y="1953" width="0.2" height="15.0" fill="rgb(228,59,37)" rx="2" ry="2" />
<text text-anchor="" x="209.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>ext4_mark_iloc_dirty (25 samples, 0.19%)</title><rect x="1092.1" y="1569" width="2.2" height="15.0" fill="rgb(239,32,53)" rx="2" ry="2" />
<text text-anchor="" x="1095.13" 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] (21 samples, 0.16%)</title><rect x="592.2" y="689" width="1.9" height="15.0" fill="rgb(206,180,20)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="699.5" font-size="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.01%)</title><rect x="1160.3" y="81" width="0.1" height="15.0" fill="rgb(253,147,54)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1457" width="0.2" height="15.0" fill="rgb(209,104,53)" rx="2" ry="2" />
<text text-anchor="" x="834.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>ext4_map_blocks (11 samples, 0.08%)</title><rect x="1138.2" y="1729" width="1.0" height="15.0" fill="rgb(222,159,21)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" 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>grab_cache_page_write_begin (18 samples, 0.13%)</title><rect x="40.3" y="1601" width="1.6" height="15.0" fill="rgb(227,152,44)" rx="2" ry="2" />
<text text-anchor="" x="43.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>ext4_invalidatepage (49 samples, 0.36%)</title><rect x="1153.6" y="1729" width="4.3" height="15.0" fill="rgb(242,84,16)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>rocksdb::FlushJob::WriteLevel0Table (93 samples, 0.69%)</title><rect x="982.2" y="1921" width="8.1" height="15.0" fill="rgb(230,22,38)" rx="2" ry="2" />
<text text-anchor="" x="985.20" 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>pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="843.5" y="2017" width="0.2" height="15.0" fill="rgb(221,216,28)" rx="2" ry="2" />
<text text-anchor="" x="846.49" 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.01%)</title><rect x="731.1" y="1729" width="0.2" height="15.0" fill="rgb(217,38,25)" rx="2" ry="2" />
<text text-anchor="" x="734.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="689" width="1.1" height="15.0" fill="rgb(244,158,5)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="699.5" font-size="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_clock_gettime (11 samples, 0.08%)</title><rect x="965.8" y="1825" width="1.0" height="15.0" fill="rgb(213,159,6)" rx="2" ry="2" />
<text text-anchor="" x="968.84" 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$tikv..raft..raft..Raft$LT$T$GT$$GT$::send_append::h502320abde33da8c (14 samples, 0.10%)</title><rect x="868.0" y="1841" width="1.2" height="15.0" fill="rgb(212,178,51)" rx="2" ry="2" />
<text text-anchor="" x="870.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>rocksdb::ArenaWrappedDBIter::~ArenaWrappedDBIter (3 samples, 0.02%)</title><rect x="886.8" y="1777" width="0.2" height="15.0" fill="rgb(235,184,18)" rx="2" ry="2" />
<text text-anchor="" x="889.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1457" width="1.1" height="15.0" fill="rgb(209,133,6)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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$protobuf..unknown..UnknownFields$u20$as$u20$core..clone..Clone$GT$::clone::h0b6f3d569cab56e9 (3 samples, 0.02%)</title><rect x="951.7" y="1841" width="0.2" height="15.0" fill="rgb(230,82,42)" rx="2" ry="2" />
<text text-anchor="" x="954.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>__memcmp_sse4_1 (4 samples, 0.03%)</title><rect x="834.1" y="1713" width="0.4" height="15.0" fill="rgb(209,146,48)" rx="2" ry="2" />
<text text-anchor="" x="837.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>rocksdb::DBImpl::GetImpl (94 samples, 0.70%)</title><rect x="887.7" y="1777" width="8.2" height="15.0" fill="rgb(206,107,20)" rx="2" ry="2" />
<text text-anchor="" x="890.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>ipv4_mtu (2 samples, 0.01%)</title><rect x="766.0" y="1873" width="0.2" height="15.0" fill="rgb(240,201,11)" rx="2" ry="2" />
<text text-anchor="" x="769.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>grpc_chttp2_end_write (2 samples, 0.01%)</title><rect x="218.6" y="2017" width="0.2" height="15.0" fill="rgb(239,221,39)" rx="2" ry="2" />
<text text-anchor="" x="221.59" 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>pthread_kill (23 samples, 0.17%)</title><rect x="618.5" y="2001" width="2.1" height="15.0" fill="rgb(207,50,37)" rx="2" ry="2" />
<text text-anchor="" x="621.54" 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] (21 samples, 0.16%)</title><rect x="980.4" y="2033" width="1.8" height="15.0" fill="rgb(225,193,0)" rx="2" ry="2" />
<text text-anchor="" x="983.36" 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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1777" width="1.0" height="15.0" fill="rgb(237,41,36)" rx="2" ry="2" />
<text text-anchor="" x="184.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>__restore_xstate_sig (4 samples, 0.03%)</title><rect x="202.6" y="1953" width="0.3" height="15.0" fill="rgb(249,29,42)" rx="2" ry="2" />
<text text-anchor="" x="205.59" 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>lock_release (3 samples, 0.02%)</title><rect x="359.7" y="1729" width="0.3" height="15.0" fill="rgb(223,135,6)" rx="2" ry="2" />
<text text-anchor="" x="362.75" 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_write (14 samples, 0.10%)</title><rect x="684.0" y="1825" width="1.2" height="15.0" fill="rgb(230,149,39)" rx="2" ry="2" />
<text text-anchor="" x="686.96" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1265" width="0.5" height="15.0" fill="rgb(244,207,30)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>protobuf::stream::CodedOutputStream::write_uint64::h6910587e0896722d (6 samples, 0.04%)</title><rect x="812.6" y="1841" width="0.5" height="15.0" fill="rgb(220,159,19)" rx="2" ry="2" />
<text text-anchor="" x="815.61" 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>write_action_begin_locked (2 samples, 0.01%)</title><rect x="288.5" y="2033" width="0.1" height="15.0" fill="rgb(207,100,47)" rx="2" ry="2" />
<text text-anchor="" x="291.47" 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>put_page (2 samples, 0.01%)</title><rect x="1125.6" y="1665" width="0.2" height="15.0" fill="rgb(239,136,47)" rx="2" ry="2" />
<text text-anchor="" x="1128.63" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1985" width="3.2" height="15.0" fill="rgb(226,92,6)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1793" width="1.0" height="15.0" fill="rgb(253,184,21)" rx="2" ry="2" />
<text text-anchor="" x="184.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>hrtimer_cancel (4 samples, 0.03%)</title><rect x="853.2" y="1809" width="0.3" height="15.0" fill="rgb(231,184,11)" rx="2" ry="2" />
<text text-anchor="" x="856.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>sys_recvmsg (138 samples, 1.02%)</title><rect x="100.4" y="1985" width="12.1" height="15.0" fill="rgb(220,76,21)" rx="2" ry="2" />
<text text-anchor="" x="103.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>ip_rcv (2 samples, 0.01%)</title><rect x="497.1" y="1793" width="0.2" height="15.0" fill="rgb(223,45,22)" rx="2" ry="2" />
<text text-anchor="" x="500.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_rcv_established (9 samples, 0.07%)</title><rect x="131.2" y="1857" width="0.8" height="15.0" fill="rgb(231,183,46)" rx="2" ry="2" />
<text text-anchor="" x="134.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>sys_futex (8 samples, 0.06%)</title><rect x="193.8" y="1985" width="0.7" height="15.0" fill="rgb(226,7,44)" rx="2" ry="2" />
<text text-anchor="" x="196.75" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1761" width="0.5" height="15.0" fill="rgb(211,16,18)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>std::string::append (5 samples, 0.04%)</title><rect x="981.8" y="2017" width="0.4" height="15.0" fill="rgb(243,42,26)" rx="2" ry="2" />
<text text-anchor="" x="984.76" 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>__mem_cgroup_count_vm_event (2 samples, 0.01%)</title><rect x="195.5" y="1921" width="0.2" height="15.0" fill="rgb(250,221,42)" rx="2" ry="2" />
<text text-anchor="" x="198.50" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1601" width="1.1" height="15.0" fill="rgb(242,17,46)" rx="2" ry="2" />
<text text-anchor="" x="393.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1041" width="1.1" height="15.0" fill="rgb(217,34,50)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="1051.5" font-size="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] (12 samples, 0.09%)</title><rect x="770.0" y="545" width="1.1" height="15.0" fill="rgb(205,194,39)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>__slab_free (2 samples, 0.01%)</title><rect x="298.0" y="1825" width="0.2" height="15.0" fill="rgb(207,16,35)" rx="2" ry="2" />
<text text-anchor="" x="301.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_rcv_established (6 samples, 0.04%)</title><rect x="305.8" y="1857" width="0.5" height="15.0" fill="rgb(245,181,6)" rx="2" ry="2" />
<text text-anchor="" x="308.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="913" width="0.2" height="15.0" fill="rgb(246,176,10)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall (4 samples, 0.03%)</title><rect x="92.0" y="2033" width="0.4" height="15.0" fill="rgb(216,165,26)" rx="2" ry="2" />
<text text-anchor="" x="95.04" 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>ep_scan_ready_list (4 samples, 0.03%)</title><rect x="98.6" y="1953" width="0.3" height="15.0" fill="rgb(252,74,29)" rx="2" ry="2" />
<text text-anchor="" x="101.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>__generic_file_aio_write (7 samples, 0.05%)</title><rect x="1137.4" y="1745" width="0.6" height="15.0" fill="rgb(237,138,31)" rx="2" ry="2" />
<text text-anchor="" x="1140.44" 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] (21 samples, 0.16%)</title><rect x="592.2" y="65" width="1.9" height="15.0" fill="rgb(240,30,38)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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_write_xmit (527 samples, 3.91%)</title><rect x="540.5" y="1857" width="46.1" height="15.0" fill="rgb(226,226,34)" rx="2" ry="2" />
<text text-anchor="" x="543.53" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tcp_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_$LT$futures..sink..send_all..SendAll$LT$T$C$$u20$U$GT$$GT$::try_start_send::h1254599f2d35903b (107 samples, 0.79%)</title><rect x="669.4" y="1905" width="9.4" height="15.0" fill="rgb(240,136,2)" rx="2" ry="2" />
<text text-anchor="" x="672.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>_raw_spin_unlock_irqrestore (7 samples, 0.05%)</title><rect x="204.2" y="1937" width="0.7" height="15.0" fill="rgb(216,122,35)" rx="2" ry="2" />
<text text-anchor="" x="207.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>debug_check_no_obj_freed (2 samples, 0.01%)</title><rect x="101.8" y="1793" width="0.2" height="15.0" fill="rgb(234,172,45)" rx="2" ry="2" />
<text text-anchor="" x="104.83" 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_send_check (2 samples, 0.01%)</title><rect x="586.4" y="1841" width="0.2" height="15.0" fill="rgb(225,83,1)" rx="2" ry="2" />
<text text-anchor="" x="589.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>rocksdb::WriteBatch::Iterate (117 samples, 0.87%)</title><rect x="924.1" y="1793" width="10.3" height="15.0" fill="rgb(205,174,16)" rx="2" ry="2" />
<text text-anchor="" x="927.12" 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>iowrite16 (12 samples, 0.09%)</title><rect x="558.8" y="1665" width="1.1" height="15.0" fill="rgb(247,59,41)" rx="2" ry="2" />
<text text-anchor="" x="561.81" 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_write_xmit (2 samples, 0.01%)</title><rect x="717.9" y="1521" width="0.2" height="15.0" fill="rgb(234,3,38)" rx="2" ry="2" />
<text text-anchor="" x="720.90" 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>mallocx (4 samples, 0.03%)</title><rect x="770.2" y="33" width="0.3" height="15.0" fill="rgb(224,145,1)" rx="2" ry="2" />
<text text-anchor="" x="773.20" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="593" width="1.8" height="15.0" fill="rgb(229,2,26)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>__inet_lookup_established (3 samples, 0.02%)</title><rect x="507.9" y="1569" width="0.3" height="15.0" fill="rgb(212,24,18)" rx="2" ry="2" />
<text text-anchor="" x="510.91" 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_sync_key (10 samples, 0.07%)</title><rect x="684.2" y="1761" width="0.9" height="15.0" fill="rgb(206,124,27)" rx="2" ry="2" />
<text text-anchor="" x="687.22" 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$kvproto..raft_cmdpb..RaftRequestHeader$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::hb6ba3dc114bdc9ed (5 samples, 0.04%)</title><rect x="972.3" y="1841" width="0.5" height="15.0" fill="rgb(251,137,43)" rx="2" ry="2" />
<text text-anchor="" x="975.31" 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>_raw_spin_unlock_bh (2 samples, 0.01%)</title><rect x="104.1" y="1873" width="0.2" height="15.0" fill="rgb(251,130,13)" rx="2" ry="2" />
<text text-anchor="" x="107.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>[unknown] (11 samples, 0.08%)</title><rect x="770.0" y="161" width="1.0" height="15.0" fill="rgb(235,153,46)" rx="2" ry="2" />
<text text-anchor="" x="773.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="641" width="1.8" height="15.0" fill="rgb(234,21,14)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>_raw_read_lock (2 samples, 0.01%)</title><rect x="35.5" y="1521" width="0.2" height="15.0" fill="rgb(205,64,25)" rx="2" ry="2" />
<text text-anchor="" x="38.54" 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>_$LT$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::h80785903ed924af0 (16 samples, 0.12%)</title><rect x="26.4" y="1873" width="1.4" height="15.0" fill="rgb(237,60,43)" rx="2" ry="2" />
<text text-anchor="" x="29.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1905" width="1.1" height="15.0" fill="rgb(249,37,35)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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_closure_sched (4 samples, 0.03%)</title><rect x="419.8" y="2017" width="0.4" height="15.0" fill="rgb(250,61,41)" rx="2" ry="2" />
<text text-anchor="" x="422.83" 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_sync_write (4 samples, 0.03%)</title><rect x="1134.3" y="1761" width="0.3" height="15.0" fill="rgb(205,62,31)" rx="2" ry="2" />
<text text-anchor="" x="1137.29" 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>__mark_inode_dirty (5 samples, 0.04%)</title><rect x="985.2" y="1585" width="0.4" height="15.0" fill="rgb(231,223,25)" rx="2" ry="2" />
<text text-anchor="" x="988.17" 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] (12 samples, 0.09%)</title><rect x="770.0" y="945" width="1.1" height="15.0" fill="rgb(246,54,22)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="955.5" font-size="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_transport_move_one_way_stats (3 samples, 0.02%)</title><rect x="423.2" y="2017" width="0.3" height="15.0" fill="rgb(211,218,6)" rx="2" ry="2" />
<text text-anchor="" x="426.24" 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_page_fault (2 samples, 0.01%)</title><rect x="437.5" y="1969" width="0.2" height="15.0" fill="rgb(253,176,25)" rx="2" ry="2" />
<text text-anchor="" x="440.50" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1665" width="1.8" height="15.0" fill="rgb(225,198,11)" rx="2" ry="2" />
<text text-anchor="" x="13.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>lock_acquire (3 samples, 0.02%)</title><rect x="303.5" y="1857" width="0.3" height="15.0" fill="rgb(222,134,11)" rx="2" ry="2" />
<text text-anchor="" x="306.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>grpc_timer_check (10 samples, 0.07%)</title><rect x="447.0" y="2033" width="0.9" height="15.0" fill="rgb(216,205,32)" rx="2" ry="2" />
<text text-anchor="" x="450.03" 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 (256 samples, 1.90%)</title><rect x="560.0" y="1761" width="22.4" height="15.0" fill="rgb(246,71,16)" rx="2" ry="2" />
<text text-anchor="" x="563.03" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1585" width="1.1" height="15.0" fill="rgb(217,20,29)" rx="2" ry="2" />
<text text-anchor="" x="393.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>__netif_receive_skb_core (2 samples, 0.01%)</title><rect x="1081.1" y="1345" width="0.2" height="15.0" fill="rgb(244,206,52)" rx="2" ry="2" />
<text text-anchor="" x="1084.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>lock_acquire (2 samples, 0.01%)</title><rect x="99.0" y="1953" width="0.2" height="15.0" fill="rgb(217,121,33)" rx="2" ry="2" />
<text text-anchor="" x="102.03" 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>iowrite16 (5 samples, 0.04%)</title><rect x="752.0" y="1665" width="0.4" height="15.0" fill="rgb(218,166,0)" rx="2" ry="2" />
<text text-anchor="" x="755.00" 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 (3 samples, 0.02%)</title><rect x="737.3" y="1825" width="0.3" height="15.0" fill="rgb(208,141,16)" rx="2" ry="2" />
<text text-anchor="" x="740.31" 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>rocksdb::ReadProperties (2 samples, 0.01%)</title><rect x="1137.3" y="1825" width="0.1" height="15.0" fill="rgb(205,93,4)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>rocksdb::ConcurrentArena::AllocateAligned (3 samples, 0.02%)</title><rect x="926.8" y="1713" width="0.3" height="15.0" fill="rgb(212,80,27)" rx="2" ry="2" />
<text text-anchor="" x="929.84" 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$prometheus..vec..MetricVec$LT$T$GT$$GT$::with_label_values::he5c76db34ba8eedb (2 samples, 0.01%)</title><rect x="826.9" y="1921" width="0.1" height="15.0" fill="rgb(211,188,6)" rx="2" ry="2" />
<text text-anchor="" x="829.87" 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>might_fault (3 samples, 0.02%)</title><rect x="774.9" y="1969" width="0.3" height="15.0" fill="rgb(213,82,52)" rx="2" ry="2" />
<text text-anchor="" x="777.92" 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>sysret_signal (3 samples, 0.02%)</title><rect x="492.3" y="2017" width="0.2" height="15.0" fill="rgb(217,209,25)" rx="2" ry="2" />
<text text-anchor="" x="495.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>_$LT$mio..event_loop..EventLoop$LT$H$GT$$GT$::run_once::h1cdef6af132d0189 (1,439 samples, 10.67%)</title><rect x="848.7" y="1921" width="125.9" height="15.0" fill="rgb(232,26,15)" rx="2" ry="2" />
<text text-anchor="" x="851.73" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$mio..event..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::DBImpl::PurgeObsoleteFiles (9 samples, 0.07%)</title><rect x="979.4" y="1969" width="0.8" height="15.0" fill="rgb(254,5,22)" rx="2" ry="2" />
<text text-anchor="" x="982.40" 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>grpc_cq_end_op (2 samples, 0.01%)</title><rect x="393.2" y="2001" width="0.2" height="15.0" fill="rgb(210,14,45)" rx="2" ry="2" />
<text text-anchor="" x="396.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>free_pages_prepare (12 samples, 0.09%)</title><rect x="706.3" y="1793" width="1.0" height="15.0" fill="rgb(229,213,11)" rx="2" ry="2" />
<text text-anchor="" x="709.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>append_esc_str (2 samples, 0.01%)</title><rect x="197.0" y="2017" width="0.2" height="15.0" fill="rgb(244,10,51)" rx="2" ry="2" />
<text text-anchor="" x="199.99" 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_unlock_irq (9 samples, 0.07%)</title><rect x="775.2" y="1937" width="0.8" height="15.0" fill="rgb(220,143,52)" rx="2" ry="2" />
<text text-anchor="" x="778.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>lock_is_held (4 samples, 0.03%)</title><rect x="1083.2" y="1617" width="0.4" height="15.0" fill="rgb(214,115,52)" rx="2" ry="2" />
<text text-anchor="" x="1086.21" 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_acquire (12 samples, 0.09%)</title><rect x="731.3" y="1873" width="1.0" height="15.0" fill="rgb(248,123,0)" rx="2" ry="2" />
<text text-anchor="" x="734.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>sys_write (2 samples, 0.01%)</title><rect x="227.2" y="1969" width="0.2" height="15.0" fill="rgb(224,81,21)" rx="2" ry="2" />
<text text-anchor="" x="230.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>sch_direct_xmit (19 samples, 0.14%)</title><rect x="558.2" y="1729" width="1.7" height="15.0" fill="rgb(246,175,17)" rx="2" ry="2" />
<text text-anchor="" x="561.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1217" width="1.1" height="15.0" fill="rgb(223,139,27)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1185" width="0.5" height="15.0" fill="rgb(245,95,24)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>grpc_deadline_state_destroy (4 samples, 0.03%)</title><rect x="221.1" y="2017" width="0.4" height="15.0" fill="rgb(222,176,50)" rx="2" ry="2" />
<text text-anchor="" x="224.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1809" width="3.2" height="15.0" fill="rgb(247,51,51)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1777" width="0.2" height="15.0" fill="rgb(220,200,40)" rx="2" ry="2" />
<text text-anchor="" x="834.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1409" width="3.2" height="15.0" fill="rgb(233,135,17)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>rocksdb::(anonymous namespace)::BytewiseComparatorImpl::Compare (3 samples, 0.02%)</title><rect x="1167.2" y="1841" width="0.2" height="15.0" fill="rgb(252,19,38)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" 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$tikv..raft..raft_log..RaftLog$LT$T$GT$$GT$::term::heea8bd3a5697d2f4 (2 samples, 0.01%)</title><rect x="969.3" y="1825" width="0.1" height="15.0" fill="rgb(233,147,17)" rx="2" ry="2" />
<text text-anchor="" x="972.25" 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>local_bh_enable (5 samples, 0.04%)</title><rect x="120.5" y="1873" width="0.5" height="15.0" fill="rgb(209,154,40)" rx="2" ry="2" />
<text text-anchor="" x="123.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>ip_local_deliver_finish (6 samples, 0.04%)</title><rect x="763.2" y="1553" width="0.5" height="15.0" fill="rgb(250,99,24)" rx="2" ry="2" />
<text text-anchor="" x="766.20" 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>async_page_fault (2 samples, 0.01%)</title><rect x="306.8" y="1873" width="0.2" height="15.0" fill="rgb(205,17,48)" rx="2" ry="2" />
<text text-anchor="" x="309.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>rocksdb::ConcurrentArena::AllocateAligned (3 samples, 0.02%)</title><rect x="50.4" y="1745" width="0.3" height="15.0" fill="rgb(209,90,46)" rx="2" ry="2" />
<text text-anchor="" x="53.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] (21 samples, 0.16%)</title><rect x="10.3" y="833" width="1.8" height="15.0" fill="rgb(224,15,9)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="843.5" font-size="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_compound_page (2 samples, 0.01%)</title><rect x="302.3" y="1809" width="0.2" height="15.0" fill="rgb(227,211,24)" rx="2" ry="2" />
<text text-anchor="" x="305.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>sock_sendmsg (831 samples, 6.16%)</title><rect x="515.3" y="1937" width="72.6" height="15.0" fill="rgb(248,137,39)" rx="2" ry="2" />
<text text-anchor="" x="518.25" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_sen..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="801" width="0.1" height="15.0" fill="rgb(250,173,32)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="811.5" font-size="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_acquire (15 samples, 0.11%)</title><rect x="711.3" y="1841" width="1.3" height="15.0" fill="rgb(218,207,46)" rx="2" ry="2" />
<text text-anchor="" x="714.34" 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>timer_callback (6 samples, 0.04%)</title><rect x="287.9" y="2033" width="0.6" height="15.0" fill="rgb(232,4,21)" rx="2" ry="2" />
<text text-anchor="" x="290.95" 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>fget_light (27 samples, 0.20%)</title><rect x="387.8" y="1937" width="2.4" height="15.0" fill="rgb(224,47,44)" rx="2" ry="2" />
<text text-anchor="" x="390.82" 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>ret_from_intr (2 samples, 0.01%)</title><rect x="788.5" y="1953" width="0.1" height="15.0" fill="rgb(236,209,28)" rx="2" ry="2" />
<text text-anchor="" x="791.47" 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>do_raw_spin_unlock (2 samples, 0.01%)</title><rect x="303.8" y="1857" width="0.2" height="15.0" fill="rgb(247,77,33)" rx="2" ry="2" />
<text text-anchor="" x="306.78" 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>lock_acquire (12 samples, 0.09%)</title><rect x="324.3" y="1921" width="1.1" height="15.0" fill="rgb(207,229,32)" rx="2" ry="2" />
<text text-anchor="" x="327.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>delete_from_page_cache (8 samples, 0.06%)</title><rect x="991.7" y="1777" width="0.7" height="15.0" fill="rgb(248,50,45)" rx="2" ry="2" />
<text text-anchor="" x="994.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_irqrestore (3 samples, 0.02%)</title><rect x="558.5" y="1569" width="0.2" height="15.0" fill="rgb(220,124,8)" rx="2" ry="2" />
<text text-anchor="" x="561.46" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1393" width="0.2" height="15.0" fill="rgb(244,147,17)" rx="2" ry="2" />
<text text-anchor="" x="834.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>_raw_spin_lock (2 samples, 0.01%)</title><rect x="992.4" y="1649" width="0.2" height="15.0" fill="rgb(240,104,46)" rx="2" ry="2" />
<text text-anchor="" x="995.43" 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_established_options (5 samples, 0.04%)</title><rect x="587.4" y="1857" width="0.4" height="15.0" fill="rgb(207,21,14)" rx="2" ry="2" />
<text text-anchor="" x="590.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>__restore_rt (2 samples, 0.01%)</title><rect x="399.5" y="2017" width="0.1" height="15.0" fill="rgb(237,45,26)" rx="2" ry="2" />
<text text-anchor="" x="402.46" 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_transmit_skb (66 samples, 0.49%)</title><rect x="506.3" y="1857" width="5.8" height="15.0" fill="rgb(223,66,53)" rx="2" ry="2" />
<text text-anchor="" x="509.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>sys_write (2 samples, 0.01%)</title><rect x="86.3" y="1745" width="0.1" height="15.0" fill="rgb(220,74,19)" rx="2" ry="2" />
<text text-anchor="" x="89.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>std::sync::mpsc::blocking::WaitToken::wait::hf87b58f4c6d3aae6 (18 samples, 0.13%)</title><rect x="89.6" y="1937" width="1.6" height="15.0" fill="rgb(209,37,54)" rx="2" ry="2" />
<text text-anchor="" x="92.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>handle_mm_fault (3 samples, 0.02%)</title><rect x="50.1" y="1681" width="0.3" height="15.0" fill="rgb(252,181,11)" rx="2" ry="2" />
<text text-anchor="" x="53.14" 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] (12 samples, 0.09%)</title><rect x="770.0" y="913" width="1.1" height="15.0" fill="rgb(208,125,12)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="923.5" font-size="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] (12 samples, 0.09%)</title><rect x="181.1" y="1729" width="1.0" height="15.0" fill="rgb(247,33,11)" rx="2" ry="2" />
<text text-anchor="" x="184.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>verify_iovec (4 samples, 0.03%)</title><rect x="724.1" y="1937" width="0.4" height="15.0" fill="rgb(226,100,49)" rx="2" ry="2" />
<text text-anchor="" x="727.10" 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_rx_internal (21 samples, 0.16%)</title><rect x="555.0" y="1681" width="1.9" height="15.0" fill="rgb(210,41,12)" rx="2" ry="2" />
<text text-anchor="" x="558.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="849" width="1.8" height="15.0" fill="rgb(226,27,20)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="859.5" font-size="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] (21 samples, 0.16%)</title><rect x="10.3" y="1601" width="1.8" height="15.0" fill="rgb(209,43,35)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>pipe_write (42 samples, 0.31%)</title><rect x="943.1" y="1745" width="3.7" height="15.0" fill="rgb(240,113,17)" rx="2" ry="2" />
<text text-anchor="" x="946.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>ip_rcv_finish (2 samples, 0.01%)</title><rect x="42.4" y="1345" width="0.2" height="15.0" fill="rgb(251,132,17)" rx="2" ry="2" />
<text text-anchor="" x="45.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>__sys_recvmsg (318 samples, 2.36%)</title><rect x="295.2" y="1969" width="27.8" height="15.0" fill="rgb(233,93,34)" rx="2" ry="2" />
<text text-anchor="" x="298.20" 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>__vdso_clock_gettime (13 samples, 0.10%)</title><rect x="645.7" y="2017" width="1.1" height="15.0" fill="rgb(253,78,5)" rx="2" ry="2" />
<text text-anchor="" x="648.65" 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>sys_clock_gettime (5 samples, 0.04%)</title><rect x="935.2" y="1761" width="0.5" height="15.0" fill="rgb(221,174,35)" rx="2" ry="2" />
<text text-anchor="" x="938.23" 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_epoll_pwait (50 samples, 0.37%)</title><rect x="611.2" y="1985" width="4.4" height="15.0" fill="rgb(212,27,40)" rx="2" ry="2" />
<text text-anchor="" x="614.19" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1281" width="1.1" height="15.0" fill="rgb(209,55,23)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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$tikv..raft..raft..Raft$LT$T$GT$$GT$::send_append::h502320abde33da8c (3 samples, 0.02%)</title><rect x="872.3" y="1857" width="0.2" height="15.0" fill="rgb(227,159,48)" rx="2" ry="2" />
<text text-anchor="" x="875.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>sch_direct_xmit (13 samples, 0.10%)</title><rect x="149.9" y="1729" width="1.2" height="15.0" fill="rgb(242,109,54)" rx="2" ry="2" />
<text text-anchor="" x="152.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>ext4_reserve_inode_write (2 samples, 0.01%)</title><rect x="909.1" y="1521" width="0.2" height="15.0" fill="rgb(248,97,21)" rx="2" ry="2" />
<text text-anchor="" x="912.08" 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_v4_do_rcv (2 samples, 0.01%)</title><rect x="104.3" y="1873" width="0.2" height="15.0" fill="rgb(243,189,42)" rx="2" ry="2" />
<text text-anchor="" x="107.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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="511.5" y="1473" width="0.2" height="15.0" fill="rgb(243,208,30)" rx="2" ry="2" />
<text text-anchor="" x="514.49" 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>verify_iovec (19 samples, 0.14%)</title><rect x="766.6" y="1937" width="1.7" height="15.0" fill="rgb(242,45,35)" rx="2" ry="2" />
<text text-anchor="" x="769.61" 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>rocksdb::Version::AddIteratorsForLevel (3 samples, 0.02%)</title><rect x="886.2" y="1729" width="0.2" height="15.0" fill="rgb(217,206,36)" rx="2" ry="2" />
<text text-anchor="" x="889.17" 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>timer_callback (2 samples, 0.01%)</title><rect x="698.9" y="1937" width="0.2" height="15.0" fill="rgb(230,31,14)" rx="2" ry="2" />
<text text-anchor="" x="701.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>_$LT$futures..sync..mpsc..Receiver$LT$T$GT$$GT$::next_message::he3281ce8dd69cd79 (6 samples, 0.04%)</title><rect x="266.8" y="1905" width="0.5" height="15.0" fill="rgb(238,60,17)" rx="2" ry="2" />
<text text-anchor="" x="269.78" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1713" width="1.8" height="15.0" fill="rgb(217,203,28)" rx="2" ry="2" />
<text text-anchor="" x="13.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>rocksdb::ThreadPoolImpl::Impl::BGThreadWrapper (39 samples, 0.29%)</title><rect x="976.8" y="2017" width="3.4" height="15.0" fill="rgb(212,6,12)" rx="2" ry="2" />
<text text-anchor="" x="979.77" 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>grpc::call::Call::start_server_side::hbf6116f611300279 (2 samples, 0.01%)</title><rect x="284.2" y="1921" width="0.2" height="15.0" fill="rgb(243,89,23)" rx="2" ry="2" />
<text text-anchor="" x="287.18" 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>rocksdb::WriteBatchInternal::InsertInto (253 samples, 1.88%)</title><rect x="48.5" y="1841" width="22.1" height="15.0" fill="rgb(206,63,6)" rx="2" ry="2" />
<text text-anchor="" x="51.48" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_write_state (2 samples, 0.01%)</title><rect x="454.5" y="2033" width="0.1" height="15.0" fill="rgb(210,37,36)" rx="2" ry="2" />
<text text-anchor="" x="457.47" 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>__debug_object_init (2 samples, 0.01%)</title><rect x="778.1" y="1889" width="0.1" height="15.0" fill="rgb(252,210,9)" rx="2" ry="2" />
<text text-anchor="" x="781.07" 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>protobuf::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (8 samples, 0.06%)</title><rect x="885.1" y="1809" width="0.7" height="15.0" fill="rgb(224,153,18)" rx="2" ry="2" />
<text text-anchor="" x="888.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>tcp_send_mss (13 samples, 0.10%)</title><rect x="176.0" y="1889" width="1.1" height="15.0" fill="rgb(206,21,20)" rx="2" ry="2" />
<text text-anchor="" x="179.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>mark_buffer_dirty (21 samples, 0.16%)</title><rect x="1096.0" y="1585" width="1.8" height="15.0" fill="rgb(241,175,42)" rx="2" ry="2" />
<text text-anchor="" x="1098.98" 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>system_call_fastpath (2 samples, 0.01%)</title><rect x="697.0" y="1793" width="0.2" height="15.0" fill="rgb(211,130,41)" rx="2" ry="2" />
<text text-anchor="" x="699.99" 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>pthread_mutex_lock (6 samples, 0.04%)</title><rect x="212.0" y="2001" width="0.6" height="15.0" fill="rgb(250,162,43)" rx="2" ry="2" />
<text text-anchor="" x="215.03" 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.01%)</title><rect x="130.2" y="1857" width="0.1" height="15.0" fill="rgb(214,194,4)" rx="2" ry="2" />
<text text-anchor="" x="133.17" 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>vfs_write (7 samples, 0.05%)</title><rect x="450.2" y="1969" width="0.6" height="15.0" fill="rgb(222,80,41)" rx="2" ry="2" />
<text text-anchor="" x="453.18" 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>verify_iovec (7 samples, 0.05%)</title><rect x="321.6" y="1937" width="0.6" height="15.0" fill="rgb(208,124,29)" rx="2" ry="2" />
<text text-anchor="" x="324.62" 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>__set_page_dirty (2 samples, 0.01%)</title><rect x="46.0" y="1537" width="0.2" height="15.0" fill="rgb(240,207,0)" rx="2" ry="2" />
<text text-anchor="" x="49.03" 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>do_futex (2 samples, 0.01%)</title><rect x="780.1" y="1953" width="0.2" height="15.0" fill="rgb(235,205,43)" rx="2" ry="2" />
<text text-anchor="" x="783.08" 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>lock_acquire (3 samples, 0.02%)</title><rect x="100.5" y="1921" width="0.3" height="15.0" fill="rgb(218,186,40)" rx="2" ry="2" />
<text text-anchor="" x="103.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>_raw_spin_unlock_irqrestore (4 samples, 0.03%)</title><rect x="979.5" y="1697" width="0.3" height="15.0" fill="rgb(215,187,45)" rx="2" ry="2" />
<text text-anchor="" x="982.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>do_sync_write (2 samples, 0.01%)</title><rect x="832.4" y="1713" width="0.2" height="15.0" fill="rgb(216,108,31)" rx="2" ry="2" />
<text text-anchor="" x="835.38" 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] (2 samples, 0.01%)</title><rect x="829.8" y="2017" width="0.2" height="15.0" fill="rgb(245,149,33)" rx="2" ry="2" />
<text text-anchor="" x="832.84" 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>std::sys_common::backtrace::__rust_begin_short_backtrace::hb14b3c4a3bf5eaf5 (86 samples, 0.64%)</title><rect x="1160.5" y="1953" width="7.5" height="15.0" fill="rgb(214,57,26)" rx="2" ry="2" />
<text text-anchor="" x="1163.53" 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>rocksdb::HistogramBucketMapper::IndexForValue (3 samples, 0.02%)</title><rect x="894.6" y="1745" width="0.2" height="15.0" fill="rgb(230,29,2)" rx="2" ry="2" />
<text text-anchor="" x="897.56" 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] (12 samples, 0.09%)</title><rect x="181.1" y="977" width="1.0" height="15.0" fill="rgb(223,40,44)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="987.5" font-size="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_pages (5 samples, 0.04%)</title><rect x="979.4" y="1777" width="0.4" height="15.0" fill="rgb(248,38,3)" rx="2" ry="2" />
<text text-anchor="" x="982.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>_raw_spin_unlock_irqrestore (51 samples, 0.38%)</title><rect x="546.8" y="1793" width="4.5" height="15.0" fill="rgb(223,10,7)" rx="2" ry="2" />
<text text-anchor="" x="549.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>[libpthread-2.17.so] (6 samples, 0.04%)</title><rect x="473.0" y="1857" width="0.5" height="15.0" fill="rgb(225,43,16)" rx="2" ry="2" />
<text text-anchor="" x="476.01" 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 (8 samples, 0.06%)</title><rect x="1045.9" y="1841" width="0.7" height="15.0" fill="rgb(248,89,52)" rx="2" ry="2" />
<text text-anchor="" x="1048.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>grpc_deadline_state_destroy (2 samples, 0.01%)</title><rect x="785.0" y="2017" width="0.2" height="15.0" fill="rgb(221,30,5)" rx="2" ry="2" />
<text text-anchor="" x="787.98" 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>lock_acquire (8 samples, 0.06%)</title><rect x="768.7" y="1921" width="0.7" height="15.0" fill="rgb(236,51,3)" rx="2" ry="2" />
<text text-anchor="" x="771.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>might_fault (19 samples, 0.14%)</title><rect x="766.6" y="1921" width="1.7" height="15.0" fill="rgb(244,77,38)" rx="2" ry="2" />
<text text-anchor="" x="769.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>_raw_spin_unlock_irq (3 samples, 0.02%)</title><rect x="432.0" y="1905" width="0.3" height="15.0" fill="rgb(206,104,33)" rx="2" ry="2" />
<text text-anchor="" x="434.99" 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 (19 samples, 0.14%)</title><rect x="304.7" y="1889" width="1.6" height="15.0" fill="rgb(240,9,48)" rx="2" ry="2" />
<text text-anchor="" x="307.65" 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>async_page_fault (2 samples, 0.01%)</title><rect x="926.7" y="1713" width="0.1" height="15.0" fill="rgb(233,63,33)" rx="2" ry="2" />
<text text-anchor="" x="929.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>tcp_v4_rcv (2 samples, 0.01%)</title><rect x="62.1" y="1457" width="0.2" height="15.0" fill="rgb(239,39,47)" rx="2" ry="2" />
<text text-anchor="" x="65.13" 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 (3 samples, 0.02%)</title><rect x="62.0" y="1665" width="0.3" height="15.0" fill="rgb(241,140,54)" rx="2" ry="2" />
<text text-anchor="" x="65.04" 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_epoll_wait (46 samples, 0.34%)</title><rect x="776.0" y="1969" width="4.0" height="15.0" fill="rgb(226,190,20)" rx="2" ry="2" />
<text text-anchor="" x="778.97" 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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="81" width="1.9" height="15.0" fill="rgb(238,75,24)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1121" width="1.1" height="15.0" fill="rgb(247,224,28)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="1131.5" font-size="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_is_held (2 samples, 0.01%)</title><rect x="962.9" y="1761" width="0.1" height="15.0" fill="rgb(208,226,0)" rx="2" ry="2" />
<text text-anchor="" x="965.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>_raw_spin_lock (2 samples, 0.01%)</title><rect x="558.2" y="1713" width="0.2" height="15.0" fill="rgb(231,227,54)" rx="2" ry="2" />
<text text-anchor="" x="561.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_is_held (3 samples, 0.02%)</title><rect x="538.2" y="1809" width="0.2" height="15.0" fill="rgb(234,37,50)" rx="2" ry="2" />
<text text-anchor="" x="541.17" 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>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="478.4" y="1809" width="0.2" height="15.0" fill="rgb(221,166,31)" rx="2" ry="2" />
<text text-anchor="" x="481.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>free_pages_prepare (14 samples, 0.10%)</title><rect x="102.4" y="1793" width="1.3" height="15.0" fill="rgb(205,190,11)" rx="2" ry="2" />
<text text-anchor="" x="105.44" 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>__slab_alloc (3 samples, 0.02%)</title><rect x="983.0" y="1505" width="0.2" height="15.0" fill="rgb(207,162,28)" rx="2" ry="2" />
<text text-anchor="" x="985.98" 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>lock_acquire (9 samples, 0.07%)</title><rect x="173.1" y="1809" width="0.8" height="15.0" fill="rgb(209,55,18)" rx="2" ry="2" />
<text text-anchor="" x="176.11" 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>trace_do_page_fault (2 samples, 0.01%)</title><rect x="437.5" y="1985" width="0.2" height="15.0" fill="rgb(249,87,32)" rx="2" ry="2" />
<text text-anchor="" x="440.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>net_rx_action (2 samples, 0.01%)</title><rect x="497.1" y="1889" width="0.2" height="15.0" fill="rgb(218,87,41)" rx="2" ry="2" />
<text text-anchor="" x="500.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1169" width="0.5" height="15.0" fill="rgb(216,93,27)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>dev_hard_start_xmit (12 samples, 0.09%)</title><rect x="750.0" y="1729" width="1.0" height="15.0" fill="rgb(208,148,34)" rx="2" ry="2" />
<text text-anchor="" x="752.99" 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>system_call_fastpath (2 samples, 0.01%)</title><rect x="86.1" y="1697" width="0.2" height="15.0" fill="rgb(243,178,31)" rx="2" ry="2" />
<text text-anchor="" x="89.09" 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::codec::pb_codec::de::hc853c90d3f6377f1 (77 samples, 0.57%)</title><rect x="275.4" y="1905" width="6.8" height="15.0" fill="rgb(222,11,25)" rx="2" ry="2" />
<text text-anchor="" x="278.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>write_action_end_locked (4 samples, 0.03%)</title><rect x="792.3" y="2017" width="0.4" height="15.0" fill="rgb(205,107,11)" rx="2" ry="2" />
<text text-anchor="" x="795.32" 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>__mark_inode_dirty (30 samples, 0.22%)</title><rect x="918.2" y="1553" width="2.6" height="15.0" fill="rgb(208,100,51)" rx="2" ry="2" />
<text text-anchor="" x="921.18" 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>futex_wait (13 samples, 0.10%)</title><rect x="89.9" y="1857" width="1.1" height="15.0" fill="rgb(229,226,30)" rx="2" ry="2" />
<text text-anchor="" x="92.85" 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_write (2 samples, 0.01%)</title><rect x="792.0" y="2017" width="0.1" height="15.0" fill="rgb(213,14,17)" rx="2" ry="2" />
<text text-anchor="" x="794.97" 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$kvproto..raft_cmdpb..Request$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::hb9e9406a5465fb6b (8 samples, 0.06%)</title><rect x="972.8" y="1841" width="0.7" height="15.0" fill="rgb(245,11,34)" rx="2" ry="2" />
<text text-anchor="" x="975.75" 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_async_page_fault (2 samples, 0.01%)</title><rect x="437.5" y="2001" width="0.2" height="15.0" fill="rgb(221,86,25)" rx="2" ry="2" />
<text text-anchor="" x="440.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>rocksdb::WriteBatchInternal::Put (4 samples, 0.03%)</title><rect x="953.3" y="1809" width="0.4" height="15.0" fill="rgb(249,51,45)" rx="2" ry="2" />
<text text-anchor="" x="956.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>protobuf::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (6 samples, 0.04%)</title><rect x="484.0" y="1841" width="0.6" height="15.0" fill="rgb(250,80,30)" rx="2" ry="2" />
<text text-anchor="" x="487.03" 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>gpr_unref (2 samples, 0.01%)</title><rect x="242.3" y="2033" width="0.2" height="15.0" fill="rgb(252,147,24)" rx="2" ry="2" />
<text text-anchor="" x="245.29" 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>__find_get_page (11 samples, 0.08%)</title><rect x="1121.7" y="1665" width="1.0" height="15.0" fill="rgb(237,51,7)" rx="2" ry="2" />
<text text-anchor="" x="1124.69" 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>__memset_sse2 (15 samples, 0.11%)</title><rect x="604.6" y="2017" width="1.3" height="15.0" fill="rgb(249,203,9)" rx="2" ry="2" />
<text text-anchor="" x="607.64" 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>sys_futex (2 samples, 0.01%)</title><rect x="13.1" y="1985" width="0.2" height="15.0" fill="rgb(224,70,16)" rx="2" ry="2" />
<text text-anchor="" x="16.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>slice_buffer_stream_next (2 samples, 0.01%)</title><rect x="227.0" y="1969" width="0.2" height="15.0" fill="rgb(244,101,2)" rx="2" ry="2" />
<text text-anchor="" x="229.99" 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>__find_get_page (2 samples, 0.01%)</title><rect x="1137.6" y="1665" width="0.2" height="15.0" fill="rgb(219,60,10)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>tcp_transmit_skb (120 samples, 0.89%)</title><rect x="311.1" y="1857" width="10.5" height="15.0" fill="rgb(244,124,50)" rx="2" ry="2" />
<text text-anchor="" x="314.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (2 samples, 0.01%)</title><rect x="689.2" y="1825" width="0.2" height="15.0" fill="rgb(240,206,24)" rx="2" ry="2" />
<text text-anchor="" x="692.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>_$LT$kvproto..eraftpb..Message$u20$as$u20$protobuf..core..Message$GT$::compute_size::h2372fa59dc9cf7f1 (2 samples, 0.01%)</title><rect x="671.8" y="1857" width="0.2" height="15.0" fill="rgb(248,183,30)" rx="2" ry="2" />
<text text-anchor="" x="674.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>append_esc_str (2 samples, 0.01%)</title><rect x="1168.7" y="2017" width="0.2" height="15.0" fill="rgb(237,111,26)" rx="2" ry="2" />
<text text-anchor="" x="1171.75" 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>jbd2_journal_get_write_access (4 samples, 0.03%)</title><rect x="45.5" y="1505" width="0.4" height="15.0" fill="rgb(206,170,29)" rx="2" ry="2" />
<text text-anchor="" x="48.51" 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>lock_acquire (12 samples, 0.09%)</title><rect x="381.3" y="1761" width="1.0" height="15.0" fill="rgb(229,140,2)" rx="2" ry="2" />
<text text-anchor="" x="384.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>tcp_v4_do_rcv (47 samples, 0.35%)</title><rect x="758.5" y="1553" width="4.1" height="15.0" fill="rgb(252,76,29)" rx="2" ry="2" />
<text text-anchor="" x="761.48" 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>alloc_pages_current (2 samples, 0.01%)</title><rect x="984.6" y="1569" width="0.1" height="15.0" fill="rgb(220,79,49)" rx="2" ry="2" />
<text text-anchor="" x="987.56" 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$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::hfbe14f2235ecf4e9 (809 samples, 6.00%)</title><rect x="21.2" y="2001" width="70.7" height="15.0" fill="rgb(221,148,53)" rx="2" ry="2" />
<text text-anchor="" x="24.19" y="2011.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>__vdso_clock_gettime (15 samples, 0.11%)</title><rect x="794.3" y="2017" width="1.3" height="15.0" fill="rgb(236,146,16)" rx="2" ry="2" />
<text text-anchor="" x="797.33" 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>lock_acquire (2 samples, 0.01%)</title><rect x="723.4" y="1825" width="0.2" height="15.0" fill="rgb(218,44,30)" rx="2" ry="2" />
<text text-anchor="" x="726.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] (5 samples, 0.04%)</title><rect x="490.2" y="2017" width="0.5" height="15.0" fill="rgb(220,222,35)" rx="2" ry="2" />
<text text-anchor="" x="493.24" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1825" width="1.8" height="15.0" fill="rgb(218,8,0)" rx="2" ry="2" />
<text text-anchor="" x="13.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>gpr_time_from_micros (2 samples, 0.01%)</title><rect x="242.0" y="2033" width="0.2" height="15.0" fill="rgb(249,114,19)" rx="2" ry="2" />
<text text-anchor="" x="245.03" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="193" width="0.1" height="15.0" fill="rgb(212,228,41)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="561" width="1.1" height="15.0" fill="rgb(207,75,31)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>kfree (3 samples, 0.02%)</title><rect x="323.6" y="1937" width="0.3" height="15.0" fill="rgb(206,123,1)" rx="2" ry="2" />
<text text-anchor="" x="326.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>do_softirq (2 samples, 0.01%)</title><rect x="731.1" y="1857" width="0.2" height="15.0" fill="rgb(213,220,35)" rx="2" ry="2" />
<text text-anchor="" x="734.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1089" width="0.5" height="15.0" fill="rgb(227,98,24)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="1099.5" font-size="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 (4 samples, 0.03%)</title><rect x="149.3" y="1729" width="0.4" height="15.0" fill="rgb(234,110,29)" rx="2" ry="2" />
<text text-anchor="" x="152.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>ip_local_deliver_finish (7 samples, 0.05%)</title><rect x="1045.9" y="1761" width="0.6" height="15.0" fill="rgb(207,49,48)" rx="2" ry="2" />
<text text-anchor="" x="1048.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>__netif_receive_skb_core (191 samples, 1.42%)</title><rect x="564.6" y="1649" width="16.7" height="15.0" fill="rgb(228,62,9)" rx="2" ry="2" />
<text text-anchor="" x="567.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>net_rx_action (2 samples, 0.01%)</title><rect x="745.4" y="1681" width="0.2" height="15.0" fill="rgb(236,147,41)" rx="2" ry="2" />
<text text-anchor="" x="748.44" 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>tikv::server::raft_client::RaftClient::send::h7930022e8cb8224f (79 samples, 0.59%)</title><rect x="1178.1" y="1905" width="6.9" height="15.0" fill="rgb(226,128,8)" rx="2" ry="2" />
<text text-anchor="" x="1181.11" 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>rocksdb::InternalKeyComparator::Compare (3 samples, 0.02%)</title><rect x="931.2" y="1665" width="0.3" height="15.0" fill="rgb(225,200,48)" rx="2" ry="2" />
<text text-anchor="" x="934.21" 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>mem_cgroup_cache_charge (5 samples, 0.04%)</title><rect x="41.5" y="1553" width="0.4" height="15.0" fill="rgb(231,171,16)" rx="2" ry="2" />
<text text-anchor="" x="44.49" 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_finish_output (179 samples, 1.33%)</title><rect x="749.2" y="1777" width="15.7" height="15.0" fill="rgb(236,88,47)" rx="2" ry="2" />
<text text-anchor="" x="752.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>lock_acquire (8 samples, 0.06%)</title><rect x="341.6" y="1857" width="0.7" height="15.0" fill="rgb(206,225,13)" rx="2" ry="2" />
<text text-anchor="" x="344.56" 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>ret_from_intr (2 samples, 0.01%)</title><rect x="1136.8" y="1857" width="0.2" height="15.0" fill="rgb(220,13,25)" rx="2" ry="2" />
<text text-anchor="" x="1139.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>_raw_spin_unlock_irqrestore (80 samples, 0.59%)</title><rect x="572.2" y="1489" width="7.0" height="15.0" fill="rgb(231,117,3)" rx="2" ry="2" />
<text text-anchor="" x="575.19" 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>__might_sleep (4 samples, 0.03%)</title><rect x="513.5" y="1921" width="0.4" height="15.0" fill="rgb(220,217,22)" rx="2" ry="2" />
<text text-anchor="" x="516.50" 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>__rust_maybe_catch_panic (86 samples, 0.64%)</title><rect x="1160.5" y="1985" width="7.5" height="15.0" fill="rgb(241,165,45)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (3 samples, 0.02%)</title><rect x="75.5" y="1841" width="0.3" height="15.0" fill="rgb(249,190,4)" rx="2" ry="2" />
<text text-anchor="" x="78.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1761" width="1.1" height="15.0" fill="rgb(211,22,26)" rx="2" ry="2" />
<text text-anchor="" x="393.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>debug_check_no_obj_freed (3 samples, 0.02%)</title><rect x="101.5" y="1841" width="0.2" height="15.0" fill="rgb(228,149,1)" rx="2" ry="2" />
<text text-anchor="" x="104.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>ret_from_intr (2 samples, 0.01%)</title><rect x="773.1" y="2001" width="0.2" height="15.0" fill="rgb(251,73,9)" rx="2" ry="2" />
<text text-anchor="" x="776.08" 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>lock_sock_nested (15 samples, 0.11%)</title><rect x="303.3" y="1889" width="1.4" height="15.0" fill="rgb(250,130,51)" rx="2" ry="2" />
<text text-anchor="" x="306.34" 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>system_call_fastpath (22 samples, 0.16%)</title><rect x="1160.7" y="1729" width="1.9" height="15.0" fill="rgb(249,116,4)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="500.6" y="1809" width="0.2" height="15.0" fill="rgb(251,142,2)" rx="2" ry="2" />
<text text-anchor="" x="503.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_unlock_irqrestore (4 samples, 0.03%)</title><rect x="740.0" y="1729" width="0.4" height="15.0" fill="rgb(244,123,37)" rx="2" ry="2" />
<text text-anchor="" x="743.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>fget_light (6 samples, 0.04%)</title><rect x="33.5" y="1713" width="0.6" height="15.0" fill="rgb(238,75,47)" rx="2" ry="2" />
<text text-anchor="" x="36.53" 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>grpc_error_unref (2 samples, 0.01%)</title><rect x="799.3" y="2033" width="0.2" height="15.0" fill="rgb(222,215,49)" rx="2" ry="2" />
<text text-anchor="" x="802.32" 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_core (2 samples, 0.01%)</title><rect x="381.1" y="1617" width="0.2" height="15.0" fill="rgb(231,8,27)" rx="2" ry="2" />
<text text-anchor="" x="384.09" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1761" width="1.8" height="15.0" fill="rgb(209,120,12)" rx="2" ry="2" />
<text text-anchor="" x="13.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>__memcpy_ssse3_back (8 samples, 0.06%)</title><rect x="643.6" y="2033" width="0.7" height="15.0" fill="rgb(236,100,42)" rx="2" ry="2" />
<text text-anchor="" x="646.55" 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>sys_read (9 samples, 0.07%)</title><rect x="394.4" y="1985" width="0.8" height="15.0" fill="rgb(229,228,42)" rx="2" ry="2" />
<text text-anchor="" x="397.38" 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>evict (22 samples, 0.16%)</title><rect x="1160.7" y="1665" width="1.9" height="15.0" fill="rgb(234,80,4)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>tikv::raftstore::store::util::get_uuid_from_req::h8865b2965b81611b (3 samples, 0.02%)</title><rect x="974.3" y="1905" width="0.3" height="15.0" fill="rgb(224,155,49)" rx="2" ry="2" />
<text text-anchor="" x="977.33" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1041" width="1.1" height="15.0" fill="rgb(243,32,37)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="1051.5" font-size="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_send_sig_info (13 samples, 0.10%)</title><rect x="210.1" y="1921" width="1.1" height="15.0" fill="rgb(229,136,7)" rx="2" ry="2" />
<text text-anchor="" x="213.11" 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>signal_delivered (10 samples, 0.07%)</title><rect x="638.5" y="1937" width="0.9" height="15.0" fill="rgb(222,73,6)" rx="2" ry="2" />
<text text-anchor="" x="641.48" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1089" width="1.1" height="15.0" fill="rgb(211,200,7)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="1099.5" font-size="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] (21 samples, 0.16%)</title><rect x="10.3" y="1361" width="1.8" height="15.0" fill="rgb(236,81,44)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>__mem_cgroup_try_charge (2 samples, 0.01%)</title><rect x="916.2" y="1489" width="0.1" height="15.0" fill="rgb(234,212,31)" rx="2" ry="2" />
<text text-anchor="" x="919.17" 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>protobuf::stream::CodedOutputStream::write_bytes::h83b9049635bb7ba2 (3 samples, 0.02%)</title><rect x="811.4" y="1809" width="0.3" height="15.0" fill="rgb(233,60,3)" rx="2" ry="2" />
<text text-anchor="" x="814.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>uuid::Uuid::new_v4::hc6cb8ffb4dabe4f7 (3 samples, 0.02%)</title><rect x="286.8" y="1873" width="0.3" height="15.0" fill="rgb(227,77,34)" rx="2" ry="2" />
<text text-anchor="" x="289.81" 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>lock_release (5 samples, 0.04%)</title><rect x="738.7" y="1857" width="0.4" height="15.0" fill="rgb(206,63,19)" rx="2" ry="2" />
<text text-anchor="" x="741.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>pollset_kick (7 samples, 0.05%)</title><rect x="410.0" y="2001" width="0.7" height="15.0" fill="rgb(228,97,51)" rx="2" ry="2" />
<text text-anchor="" x="413.04" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1217" width="0.2" height="15.0" fill="rgb(224,138,44)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>lock_release (3 samples, 0.02%)</title><rect x="935.3" y="1729" width="0.3" height="15.0" fill="rgb(231,57,52)" rx="2" ry="2" />
<text text-anchor="" x="938.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (2 samples, 0.01%)</title><rect x="885.8" y="1793" width="0.2" height="15.0" fill="rgb(228,106,24)" rx="2" ry="2" />
<text text-anchor="" x="888.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>rocksdb::(anonymous namespace)::TwoLevelIterator::Seek (9 samples, 0.07%)</title><rect x="896.6" y="1761" width="0.8" height="15.0" fill="rgb(222,18,23)" rx="2" ry="2" />
<text text-anchor="" x="899.57" 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>free_pages_and_swap_cache (4 samples, 0.03%)</title><rect x="604.0" y="1921" width="0.4" height="15.0" fill="rgb(206,219,34)" rx="2" ry="2" />
<text text-anchor="" x="607.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>evict (129 samples, 0.96%)</title><rect x="1146.7" y="1841" width="11.3" height="15.0" fill="rgb(207,135,38)" rx="2" ry="2" />
<text text-anchor="" x="1149.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>system_call_fastpath (1,086 samples, 8.05%)</title><rect x="295.2" y="2001" width="95.0" height="15.0" fill="rgb(248,149,50)" rx="2" ry="2" />
<text text-anchor="" x="298.20" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >system_call..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_ext_handle_unwritten_extents (11 samples, 0.08%)</title><rect x="1138.2" y="1697" width="1.0" height="15.0" fill="rgb(206,27,14)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="737" width="0.1" height="15.0" fill="rgb(241,167,22)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="747.5" font-size="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 (2 samples, 0.01%)</title><rect x="131.2" y="1809" width="0.2" height="15.0" fill="rgb(223,90,30)" rx="2" ry="2" />
<text text-anchor="" x="134.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="465" width="0.2" height="15.0" fill="rgb(207,115,22)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>_$LT$tikv..raft..raft_log..RaftLog$LT$T$GT$$GT$::term::heea8bd3a5697d2f4 (4 samples, 0.03%)</title><rect x="868.2" y="1825" width="0.4" height="15.0" fill="rgb(207,152,40)" rx="2" ry="2" />
<text text-anchor="" x="871.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>core::ptr::drop_in_place::hfca7c257d9c49616 (3 samples, 0.02%)</title><rect x="808.9" y="1889" width="0.2" height="15.0" fill="rgb(216,162,47)" rx="2" ry="2" />
<text text-anchor="" x="811.85" 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>find_get_pages_tag (2 samples, 0.01%)</title><rect x="1141.6" y="1697" width="0.2" height="15.0" fill="rgb(231,35,36)" rx="2" ry="2" />
<text text-anchor="" x="1144.64" 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 (4 samples, 0.03%)</title><rect x="596.2" y="1905" width="0.3" height="15.0" fill="rgb(238,46,47)" rx="2" ry="2" />
<text text-anchor="" x="599.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$kvproto..eraftpb..Message$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::hdf18c863aabbe088 (9 samples, 0.07%)</title><rect x="811.2" y="1841" width="0.8" height="15.0" fill="rgb(223,96,13)" rx="2" ry="2" />
<text text-anchor="" x="814.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1457" width="0.1" height="15.0" fill="rgb(242,54,36)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>pipe_read (14 samples, 0.10%)</title><rect x="962.0" y="1809" width="1.2" height="15.0" fill="rgb(206,36,5)" rx="2" ry="2" />
<text text-anchor="" x="964.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>_$LT$tikv..raft..raft..Raft$LT$T$GT$$GT$::send::h2730dbc6ab34e440 (2 samples, 0.01%)</title><rect x="869.5" y="1841" width="0.1" height="15.0" fill="rgb(227,126,38)" rx="2" ry="2" />
<text text-anchor="" x="872.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>do_softirq (2 samples, 0.01%)</title><rect x="42.4" y="1505" width="0.2" height="15.0" fill="rgb(217,7,15)" rx="2" ry="2" />
<text text-anchor="" x="45.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>lock_is_held (3 samples, 0.02%)</title><rect x="707.6" y="1857" width="0.2" height="15.0" fill="rgb(209,32,51)" rx="2" ry="2" />
<text text-anchor="" x="710.57" 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>grpc-poll-2 (2,377 samples, 17.62%)</title><rect x="491.6" y="2049" width="207.9" height="15.0" fill="rgb(226,51,26)" rx="2" ry="2" />
<text text-anchor="" x="494.64" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >grpc-poll-2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::string::_M_replace_safe (2 samples, 0.01%)</title><rect x="1146.4" y="1937" width="0.2" height="15.0" fill="rgb(205,72,21)" rx="2" ry="2" />
<text text-anchor="" x="1149.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>rocksdb::ReadBlockContents (53 samples, 0.39%)</title><rect x="1121.3" y="1793" width="4.7" height="15.0" fill="rgb(231,106,16)" rx="2" ry="2" />
<text text-anchor="" x="1124.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>__sys_recvmsg (142 samples, 1.05%)</title><rect x="499.9" y="1969" width="12.5" height="15.0" fill="rgb(244,15,4)" rx="2" ry="2" />
<text text-anchor="" x="502.95" 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>dev_hard_start_xmit (2 samples, 0.01%)</title><rect x="311.5" y="1745" width="0.1" height="15.0" fill="rgb(231,105,16)" rx="2" ry="2" />
<text text-anchor="" x="314.47" 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$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::hf45f1801d35c10b9 (409 samples, 3.03%)</title><rect x="661.9" y="2001" width="35.8" height="15.0" fill="rgb(232,139,15)" rx="2" ry="2" />
<text text-anchor="" x="664.92" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free (2 samples, 0.01%)</title><rect x="771.2" y="2001" width="0.2" height="15.0" fill="rgb(246,226,5)" rx="2" ry="2" />
<text text-anchor="" x="774.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>[unknown] (10 samples, 0.07%)</title><rect x="770.0" y="49" width="0.9" height="15.0" fill="rgb(246,154,35)" rx="2" ry="2" />
<text text-anchor="" x="773.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>gpr_mpscq_pop (3 samples, 0.02%)</title><rect x="792.4" y="2001" width="0.3" height="15.0" fill="rgb(251,37,35)" rx="2" ry="2" />
<text text-anchor="" x="795.41" 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::__detail::_Map_base&lt;rocksdb::Slice, std::pair&lt;rocksdb::Slice const, void*&gt;, std::allocator&lt;std::pair&lt;rocksdb::Slice const, void*&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;rocksdb::Slice&gt;, rocksdb::SliceHasher, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt;, true&gt;::operator[] (20 samples, 0.15%)</title><rect x="932.3" y="1745" width="1.8" height="15.0" fill="rgb(215,184,50)" rx="2" ry="2" />
<text text-anchor="" x="935.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>protobuf::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (2 samples, 0.01%)</title><rect x="821.4" y="1857" width="0.2" height="15.0" fill="rgb(214,228,39)" rx="2" ry="2" />
<text text-anchor="" x="824.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>try_to_wake_up (5 samples, 0.04%)</title><rect x="16.6" y="1921" width="0.4" height="15.0" fill="rgb(237,207,54)" rx="2" ry="2" />
<text text-anchor="" x="19.56" 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>free_hot_cold_page (3 samples, 0.02%)</title><rect x="1055.4" y="1825" width="0.3" height="15.0" fill="rgb(236,153,15)" rx="2" ry="2" />
<text text-anchor="" x="1058.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>futex_wait (2 samples, 0.01%)</title><rect x="780.1" y="1937" width="0.2" height="15.0" fill="rgb(249,208,26)" rx="2" ry="2" />
<text text-anchor="" x="783.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>LZ4_compress_generic (609 samples, 4.51%)</title><rect x="993.6" y="2017" width="53.2" height="15.0" fill="rgb(252,224,19)" rx="2" ry="2" />
<text text-anchor="" x="996.57" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >LZ4_c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>verify_iovec (2 samples, 0.01%)</title><rect x="180.9" y="1953" width="0.2" height="15.0" fill="rgb(228,153,35)" rx="2" ry="2" />
<text text-anchor="" x="183.90" 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>lock_acquire (4 samples, 0.03%)</title><rect x="1093.4" y="1537" width="0.3" height="15.0" fill="rgb(214,42,48)" rx="2" ry="2" />
<text text-anchor="" x="1096.36" 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>lock_acquire (15 samples, 0.11%)</title><rect x="516.3" y="1905" width="1.3" height="15.0" fill="rgb(235,123,40)" rx="2" ry="2" />
<text text-anchor="" x="519.30" 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>tikv::util::SlowTimer::elapsed::h2fd1e5be9026db9f (5 samples, 0.04%)</title><rect x="955.3" y="1873" width="0.4" height="15.0" fill="rgb(220,8,50)" rx="2" ry="2" />
<text text-anchor="" x="958.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>[unknown] (18 samples, 0.13%)</title><rect x="492.9" y="2001" width="1.6" height="15.0" fill="rgb(240,105,14)" rx="2" ry="2" />
<text text-anchor="" x="495.95" 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>rocksdb::DBImpl::NewInternalIterator (4 samples, 0.03%)</title><rect x="886.1" y="1761" width="0.3" height="15.0" fill="rgb(211,221,7)" rx="2" ry="2" />
<text text-anchor="" x="889.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1201" width="1.0" height="15.0" fill="rgb(241,59,19)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>do_IRQ (2 samples, 0.01%)</title><rect x="42.4" y="1537" width="0.2" height="15.0" fill="rgb(220,171,26)" rx="2" ry="2" />
<text text-anchor="" x="45.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>lock_release (4 samples, 0.03%)</title><rect x="305.4" y="1873" width="0.4" height="15.0" fill="rgb(246,193,33)" rx="2" ry="2" />
<text text-anchor="" x="308.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="913" width="3.2" height="15.0" fill="rgb(251,182,7)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="923.5" font-size="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$tikv..raft..raft_log..RaftLog$LT$T$GT$$GT$::append::h6c2e98b7f68e33f8 (4 samples, 0.03%)</title><rect x="967.5" y="1841" width="0.4" height="15.0" fill="rgb(233,119,28)" rx="2" ry="2" />
<text text-anchor="" x="970.50" 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>__find_get_block (6 samples, 0.04%)</title><rect x="1094.9" y="1505" width="0.6" height="15.0" fill="rgb(226,153,38)" rx="2" ry="2" />
<text text-anchor="" x="1097.93" 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>__might_sleep (2 samples, 0.01%)</title><rect x="402.6" y="1937" width="0.2" height="15.0" fill="rgb(213,122,38)" rx="2" ry="2" />
<text text-anchor="" x="405.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>lock_release (2 samples, 0.01%)</title><rect x="923.0" y="1649" width="0.2" height="15.0" fill="rgb(211,220,37)" rx="2" ry="2" />
<text text-anchor="" x="925.99" 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] (13 samples, 0.10%)</title><rect x="390.2" y="577" width="1.1" height="15.0" fill="rgb(214,134,12)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>lock_acquire (8 samples, 0.06%)</title><rect x="368.6" y="1537" width="0.7" height="15.0" fill="rgb(205,225,8)" rx="2" ry="2" />
<text text-anchor="" x="371.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>grpc_call_start_batch (15 samples, 0.11%)</title><rect x="624.4" y="2017" width="1.3" height="15.0" fill="rgb(233,156,23)" rx="2" ry="2" />
<text text-anchor="" x="627.40" 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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1793" width="1.1" height="15.0" fill="rgb(230,102,35)" rx="2" ry="2" />
<text text-anchor="" x="393.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>generic_file_aio_write (2 samples, 0.01%)</title><rect x="86.3" y="1681" width="0.1" height="15.0" fill="rgb(223,16,41)" rx="2" ry="2" />
<text text-anchor="" x="89.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>protobuf::stream::CodedInputStream::merge_message::h88c64e61100ab6bb (16 samples, 0.12%)</title><rect x="280.1" y="1873" width="1.4" height="15.0" fill="rgb(218,180,23)" rx="2" ry="2" />
<text text-anchor="" x="283.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>mod_timer (6 samples, 0.04%)</title><rect x="758.9" y="1473" width="0.5" height="15.0" fill="rgb(216,123,23)" rx="2" ry="2" />
<text text-anchor="" x="761.91" 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>rocksdb::TableCache::NewIterator (5 samples, 0.04%)</title><rect x="1137.0" y="1905" width="0.4" height="15.0" fill="rgb(224,205,45)" 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>__dev_queue_xmit (11 samples, 0.08%)</title><rect x="506.4" y="1761" width="1.0" height="15.0" fill="rgb(213,127,37)" rx="2" ry="2" />
<text text-anchor="" x="509.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>std::sys_common::backtrace::__rust_begin_short_backtrace::h42e97b282a7adcda (214 samples, 1.59%)</title><rect x="1171.3" y="1953" width="18.7" height="15.0" fill="rgb(225,87,15)" rx="2" ry="2" />
<text text-anchor="" x="1174.28" 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>gpr_ref (4 samples, 0.03%)</title><rect x="648.9" y="2033" width="0.3" height="15.0" fill="rgb(210,7,4)" rx="2" ry="2" />
<text text-anchor="" x="651.89" 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>std::panicking::try::do_call::h0d7219156e0a38c3 (55 samples, 0.41%)</title><rect x="832.0" y="1969" width="4.8" height="15.0" fill="rgb(238,19,15)" rx="2" ry="2" />
<text text-anchor="" x="835.03" 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>_raw_spin_lock_bh (33 samples, 0.24%)</title><rect x="519.4" y="1873" width="2.8" height="15.0" fill="rgb(251,161,18)" rx="2" ry="2" />
<text text-anchor="" x="522.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>protobuf::stream::CodedInputStream::read_raw_byte::ha2cb1055a4a0050e (3 samples, 0.02%)</title><rect x="280.8" y="1809" width="0.2" height="15.0" fill="rgb(218,175,4)" rx="2" ry="2" />
<text text-anchor="" x="283.77" 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>rocksdb::rocksdb::DBIterator::next::hda0eb64ca00b7b9c (4 samples, 0.03%)</title><rect x="896.2" y="1825" width="0.4" height="15.0" fill="rgb(213,112,41)" rx="2" ry="2" />
<text text-anchor="" x="899.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>lock_is_held (3 samples, 0.02%)</title><rect x="920.5" y="1425" width="0.3" height="15.0" fill="rgb(254,221,42)" rx="2" ry="2" />
<text text-anchor="" x="923.54" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1809" width="0.2" height="15.0" fill="rgb(250,0,43)" rx="2" ry="2" />
<text text-anchor="" x="834.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>__memset_sse2 (2 samples, 0.01%)</title><rect x="17.0" y="2033" width="0.2" height="15.0" fill="rgb(252,177,27)" rx="2" ry="2" />
<text text-anchor="" x="20.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>lock_release (3 samples, 0.02%)</title><rect x="387.2" y="1905" width="0.3" height="15.0" fill="rgb(253,219,1)" rx="2" ry="2" />
<text text-anchor="" x="390.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>continue_fetching_send_locked (2 samples, 0.01%)</title><rect x="239.7" y="2033" width="0.1" height="15.0" fill="rgb(222,48,44)" rx="2" ry="2" />
<text text-anchor="" x="242.67" 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>rocksdb::WriteThread::JoinBatchGroup (13 samples, 0.10%)</title><rect x="934.5" y="1809" width="1.2" height="15.0" fill="rgb(220,114,3)" rx="2" ry="2" />
<text text-anchor="" x="937.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>done_request_event (2 samples, 0.01%)</title><rect x="198.5" y="2017" width="0.1" height="15.0" fill="rgb(208,17,34)" rx="2" ry="2" />
<text text-anchor="" x="201.47" 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>lock_acquire (6 samples, 0.04%)</title><rect x="569.0" y="1537" width="0.5" height="15.0" fill="rgb(218,37,37)" rx="2" ry="2" />
<text text-anchor="" x="571.95" 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>do_tkill (23 samples, 0.17%)</title><rect x="210.0" y="1953" width="2.0" height="15.0" fill="rgb(207,211,46)" rx="2" ry="2" />
<text text-anchor="" x="213.02" 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>do_softirq (15 samples, 0.11%)</title><rect x="1045.3" y="1953" width="1.4" height="15.0" fill="rgb(223,2,31)" rx="2" ry="2" />
<text text-anchor="" x="1048.34" 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] (3 samples, 0.02%)</title><rect x="831.7" y="257" width="0.2" height="15.0" fill="rgb(209,125,14)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>_$LT$kvproto..metapb..Peer$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::h497b5f7a678f8e56 (7 samples, 0.05%)</title><rect x="264.9" y="1841" width="0.7" height="15.0" fill="rgb(207,220,23)" rx="2" ry="2" />
<text text-anchor="" x="267.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>ext4_reserve_inode_write (12 samples, 0.09%)</title><rect x="919.8" y="1505" width="1.0" height="15.0" fill="rgb(247,204,24)" rx="2" ry="2" />
<text text-anchor="" x="922.75" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1169" width="0.2" height="15.0" fill="rgb(252,159,40)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>finish_task_switch (4 samples, 0.03%)</title><rect x="596.2" y="1873" width="0.3" height="15.0" fill="rgb(218,201,41)" rx="2" ry="2" />
<text text-anchor="" x="599.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>lock_acquire (7 samples, 0.05%)</title><rect x="113.6" y="1921" width="0.6" height="15.0" fill="rgb(220,192,46)" rx="2" ry="2" />
<text text-anchor="" x="116.55" 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>lock_release (2 samples, 0.01%)</title><rect x="615.2" y="1937" width="0.2" height="15.0" fill="rgb(206,131,16)" rx="2" ry="2" />
<text text-anchor="" x="618.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="225" width="1.9" height="15.0" fill="rgb(217,83,53)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>skb_release_data (17 samples, 0.13%)</title><rect x="705.8" y="1857" width="1.5" height="15.0" fill="rgb(220,192,39)" rx="2" ry="2" />
<text text-anchor="" x="708.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>ep_scan_ready_list (9 samples, 0.07%)</title><rect x="613.8" y="1937" width="0.8" height="15.0" fill="rgb(243,69,3)" rx="2" ry="2" />
<text text-anchor="" x="616.82" 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 (154 samples, 1.14%)</title><rect x="366.9" y="1569" width="13.5" height="15.0" fill="rgb(253,110,46)" rx="2" ry="2" />
<text text-anchor="" x="369.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>__might_sleep (3 samples, 0.02%)</title><rect x="920.5" y="1441" width="0.3" height="15.0" fill="rgb(209,149,37)" rx="2" ry="2" />
<text text-anchor="" x="923.54" 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] (21 samples, 0.16%)</title><rect x="592.2" y="177" width="1.9" height="15.0" fill="rgb(205,155,44)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>kvproto::raft_cmdpb::RaftResponseHeader::set_uuid::h25490f228258da53 (3 samples, 0.02%)</title><rect x="83.8" y="1889" width="0.3" height="15.0" fill="rgb(228,161,30)" rx="2" ry="2" />
<text text-anchor="" x="86.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>inc_zone_page_state (2 samples, 0.01%)</title><rect x="1140.6" y="1665" width="0.2" height="15.0" fill="rgb(244,226,28)" rx="2" ry="2" />
<text text-anchor="" x="1143.59" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1153" width="3.2" height="15.0" fill="rgb(242,99,52)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>ip_local_out_sk (364 samples, 2.70%)</title><rect x="552.7" y="1809" width="31.8" height="15.0" fill="rgb(241,143,44)" rx="2" ry="2" />
<text text-anchor="" x="555.68" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>write_action_end_locked (3 samples, 0.02%)</title><rect x="830.5" y="2033" width="0.3" height="15.0" fill="rgb(238,211,30)" rx="2" ry="2" />
<text text-anchor="" x="833.54" 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>_raw_spin_lock_bh (19 samples, 0.14%)</title><rect x="533.0" y="1873" width="1.7" height="15.0" fill="rgb(225,0,43)" rx="2" ry="2" />
<text text-anchor="" x="536.01" 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>debug_check_no_obj_freed (2 samples, 0.01%)</title><rect x="302.3" y="1745" width="0.2" height="15.0" fill="rgb(246,126,7)" rx="2" ry="2" />
<text text-anchor="" x="305.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>rocksdb::(anonymous namespace)::SkipListRep::Iterator::Seek (2 samples, 0.01%)</title><rect x="897.4" y="1745" width="0.1" height="15.0" fill="rgb(225,24,5)" rx="2" ry="2" />
<text text-anchor="" x="900.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] (13 samples, 0.10%)</title><rect x="390.2" y="113" width="1.1" height="15.0" fill="rgb(246,43,7)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>skb_release_all (26 samples, 0.19%)</title><rect x="719.6" y="1489" width="2.3" height="15.0" fill="rgb(220,0,43)" rx="2" ry="2" />
<text text-anchor="" x="722.64" 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>ext4_mark_iloc_dirty (13 samples, 0.10%)</title><rect x="44.4" y="1537" width="1.1" height="15.0" fill="rgb(222,160,18)" rx="2" ry="2" />
<text text-anchor="" x="47.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>ip_local_deliver_finish (175 samples, 1.30%)</title><rect x="154.5" y="1585" width="15.3" height="15.0" fill="rgb(208,168,18)" rx="2" ry="2" />
<text text-anchor="" x="157.48" 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>might_fault (75 samples, 0.56%)</title><rect x="122.6" y="1889" width="6.6" height="15.0" fill="rgb(248,136,46)" rx="2" ry="2" />
<text text-anchor="" x="125.65" 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_unlock_irqrestore (5 samples, 0.04%)</title><rect x="204.9" y="1921" width="0.4" height="15.0" fill="rgb(223,9,51)" rx="2" ry="2" />
<text text-anchor="" x="207.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>system_call_fastpath (2 samples, 0.01%)</title><rect x="596.5" y="1985" width="0.2" height="15.0" fill="rgb(239,175,14)" rx="2" ry="2" />
<text text-anchor="" x="599.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>combiner_exec_uncovered (5 samples, 0.04%)</title><rect x="448.5" y="2017" width="0.5" height="15.0" fill="rgb(213,203,51)" rx="2" ry="2" />
<text text-anchor="" x="451.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="673" width="1.8" height="15.0" fill="rgb(219,219,38)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="683.5" font-size="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_acquire (4 samples, 0.03%)</title><rect x="304.3" y="1873" width="0.4" height="15.0" fill="rgb(221,101,38)" rx="2" ry="2" />
<text text-anchor="" x="307.30" 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>grpc_endpoint_write (2 samples, 0.01%)</title><rect x="799.0" y="2033" width="0.1" height="15.0" fill="rgb(253,126,30)" rx="2" ry="2" />
<text text-anchor="" x="801.97" 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_sync_read (48 samples, 0.36%)</title><rect x="1121.6" y="1697" width="4.2" height="15.0" fill="rgb(249,151,31)" rx="2" ry="2" />
<text text-anchor="" x="1124.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>_$LT$rocksdb..rocksdb..WriteBatch$u20$as$u20$rocksdb..rocksdb..Writable$GT$::put_cf::hc0181c6278f526bf (5 samples, 0.04%)</title><rect x="87.8" y="1873" width="0.5" height="15.0" fill="rgb(207,173,39)" rx="2" ry="2" />
<text text-anchor="" x="90.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>std::sys::imp::thread::Thread::new::thread_start::h227b2afaa9316a8d (1,458 samples, 10.81%)</title><rect x="848.6" y="2017" width="127.6" height="15.0" fill="rgb(212,109,33)" rx="2" ry="2" />
<text text-anchor="" x="851.65" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::sys::imp::t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (4 samples, 0.03%)</title><rect x="41.1" y="1553" width="0.4" height="15.0" fill="rgb(210,34,23)" rx="2" ry="2" />
<text text-anchor="" x="44.14" 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>debug_check_no_obj_freed (11 samples, 0.08%)</title><rect x="706.3" y="1777" width="0.9" height="15.0" fill="rgb(229,176,27)" rx="2" ry="2" />
<text text-anchor="" x="709.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>sys_madvise (7 samples, 0.05%)</title><rect x="194.5" y="1985" width="0.6" height="15.0" fill="rgb(251,35,41)" rx="2" ry="2" />
<text text-anchor="" x="197.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$futures..future..map_err..MapErr$LT$A$C$$u20$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h3aa495a5699da241 (18 samples, 0.13%)</title><rect x="256.7" y="1921" width="1.6" height="15.0" fill="rgb(209,93,37)" rx="2" ry="2" />
<text text-anchor="" x="259.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>jbd2_journal_stop (5 samples, 0.04%)</title><rect x="908.4" y="1521" width="0.4" height="15.0" fill="rgb(233,82,44)" rx="2" ry="2" />
<text text-anchor="" x="911.38" 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>tikv::raftstore::store::peer::Peer::insert_peer_cache::h6ea81abb034e78cb (10 samples, 0.07%)</title><rect x="865.4" y="1889" width="0.9" height="15.0" fill="rgb(231,185,5)" rx="2" ry="2" />
<text text-anchor="" x="868.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_finish_output (356 samples, 2.64%)</title><rect x="552.9" y="1777" width="31.2" height="15.0" fill="rgb(228,198,50)" rx="2" ry="2" />
<text text-anchor="" x="555.95" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_madvise (2 samples, 0.01%)</title><rect x="976.6" y="1969" width="0.2" height="15.0" fill="rgb(248,187,27)" rx="2" ry="2" />
<text text-anchor="" x="979.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>pthread_kill (32 samples, 0.24%)</title><rect x="410.7" y="2001" width="2.7" height="15.0" fill="rgb(222,87,41)" rx="2" ry="2" />
<text text-anchor="" x="413.65" 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>try_to_wake_up (2 samples, 0.01%)</title><rect x="13.1" y="1905" width="0.2" height="15.0" fill="rgb(228,97,41)" rx="2" ry="2" />
<text text-anchor="" x="16.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>tcp_rcv_established (18 samples, 0.13%)</title><rect x="536.0" y="1857" width="1.6" height="15.0" fill="rgb(243,153,39)" rx="2" ry="2" />
<text text-anchor="" x="538.98" 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 (84 samples, 0.62%)</title><rect x="755.2" y="1585" width="7.4" height="15.0" fill="rgb(234,110,7)" rx="2" ry="2" />
<text text-anchor="" x="758.24" 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>lock_acquire (2 samples, 0.01%)</title><rect x="906.2" y="1665" width="0.2" height="15.0" fill="rgb(211,106,39)" rx="2" ry="2" />
<text text-anchor="" x="909.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>receiving_stream_ready (2 samples, 0.01%)</title><rect x="803.0" y="2033" width="0.2" height="15.0" fill="rgb(248,108,40)" rx="2" ry="2" />
<text text-anchor="" x="805.99" 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>debug_check_no_obj_freed (10 samples, 0.07%)</title><rect x="990.9" y="1713" width="0.8" height="15.0" fill="rgb(231,194,10)" rx="2" ry="2" />
<text text-anchor="" x="993.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>[unknown] (33 samples, 0.24%)</title><rect x="92.8" y="2001" width="2.9" height="15.0" fill="rgb(209,181,14)" rx="2" ry="2" />
<text text-anchor="" x="95.82" 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_write (27 samples, 0.20%)</title><rect x="190.4" y="1985" width="2.4" height="15.0" fill="rgb(214,204,42)" rx="2" ry="2" />
<text text-anchor="" x="193.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>do_IRQ (15 samples, 0.11%)</title><rect x="1045.3" y="1985" width="1.4" height="15.0" fill="rgb(221,188,23)" rx="2" ry="2" />
<text text-anchor="" x="1048.34" 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$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::merge_from::h57b1d6303c5588ab (57 samples, 0.42%)</title><rect x="686.5" y="1889" width="5.0" height="15.0" fill="rgb(239,143,16)" rx="2" ry="2" />
<text text-anchor="" x="689.50" 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_lookup_established (13 samples, 0.10%)</title><rect x="367.4" y="1553" width="1.1" height="15.0" fill="rgb(232,17,31)" rx="2" ry="2" />
<text text-anchor="" x="370.36" 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>combiner_exec_uncovered (4 samples, 0.03%)</title><rect x="631.4" y="2001" width="0.3" height="15.0" fill="rgb(228,52,41)" rx="2" ry="2" />
<text text-anchor="" x="634.40" 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$F$u20$as$u20$alloc..boxed..FnBox$LT$A$GT$$GT$::call_box::hc7ed49e2100c8d72 (1,458 samples, 10.81%)</title><rect x="848.6" y="2001" width="127.6" height="15.0" fill="rgb(247,170,49)" rx="2" ry="2" />
<text text-anchor="" x="851.65" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_$LT$F$u20$as$u2..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__might_sleep (3 samples, 0.02%)</title><rect x="919.8" y="1441" width="0.3" height="15.0" fill="rgb(216,94,2)" rx="2" ry="2" />
<text text-anchor="" x="922.84" 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>__sk_dst_check (2 samples, 0.01%)</title><rect x="552.4" y="1809" width="0.2" height="15.0" fill="rgb(245,166,42)" rx="2" ry="2" />
<text text-anchor="" x="555.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>finish_task_switch (4 samples, 0.03%)</title><rect x="193.3" y="1889" width="0.4" height="15.0" fill="rgb(245,26,32)" rx="2" ry="2" />
<text text-anchor="" x="196.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>rocksdb::BlockBasedTable::MaybeLoadDataBlockToCache (6 samples, 0.04%)</title><rect x="1128.0" y="1809" width="0.5" height="15.0" fill="rgb(249,156,48)" rx="2" ry="2" />
<text text-anchor="" x="1130.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="241" width="0.5" height="15.0" fill="rgb(245,54,45)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1873" width="1.8" height="15.0" fill="rgb(226,184,27)" rx="2" ry="2" />
<text text-anchor="" x="13.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>rocksdb::BlockBasedTable::BlockEntryIteratorState::NewSecondaryIterator (9 samples, 0.07%)</title><rect x="1165.7" y="1809" width="0.8" height="15.0" fill="rgb(231,42,28)" rx="2" ry="2" />
<text text-anchor="" x="1168.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>tcp_rcv_established (5 samples, 0.04%)</title><rect x="763.3" y="1505" width="0.4" height="15.0" fill="rgb(209,228,19)" rx="2" ry="2" />
<text text-anchor="" x="766.29" 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>finish_batch (5 samples, 0.04%)</title><rect x="796.0" y="2033" width="0.4" height="15.0" fill="rgb(215,14,51)" rx="2" ry="2" />
<text text-anchor="" x="799.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>wake_up_state (26 samples, 0.19%)</title><rect x="434.6" y="1937" width="2.3" height="15.0" fill="rgb(235,121,36)" rx="2" ry="2" />
<text text-anchor="" x="437.61" 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::string::_M_replace_safe (5 samples, 0.04%)</title><rect x="1107.3" y="1905" width="0.4" height="15.0" fill="rgb(252,49,15)" rx="2" ry="2" />
<text text-anchor="" x="1110.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="689" width="0.2" height="15.0" fill="rgb(247,51,10)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="699.5" font-size="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.17.so] (2 samples, 0.01%)</title><rect x="832.4" y="1777" width="0.2" height="15.0" fill="rgb(243,101,18)" rx="2" ry="2" />
<text text-anchor="" x="835.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>rocksdb::Version::AddIterators (4 samples, 0.03%)</title><rect x="886.1" y="1745" width="0.3" height="15.0" fill="rgb(243,212,5)" rx="2" ry="2" />
<text text-anchor="" x="889.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>trace_do_page_fault (2 samples, 0.01%)</title><rect x="290.9" y="1937" width="0.2" height="15.0" fill="rgb(224,223,37)" rx="2" ry="2" />
<text text-anchor="" x="293.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>[unknown] (50 samples, 0.37%)</title><rect x="289.3" y="2017" width="4.4" height="15.0" fill="rgb(245,115,9)" rx="2" ry="2" />
<text text-anchor="" x="292.34" 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>__GI___libc_write (28 samples, 0.21%)</title><rect x="190.3" y="2017" width="2.5" height="15.0" fill="rgb(207,208,45)" rx="2" ry="2" />
<text text-anchor="" x="193.34" 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::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (4 samples, 0.03%)</title><rect x="822.3" y="1841" width="0.4" height="15.0" fill="rgb(214,115,40)" rx="2" ry="2" />
<text text-anchor="" x="825.32" 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>grpcwrap_batch_context_create (3 samples, 0.02%)</title><rect x="476.1" y="1889" width="0.2" height="15.0" fill="rgb(227,208,51)" rx="2" ry="2" />
<text text-anchor="" x="479.07" 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_transmit_skb (57 samples, 0.42%)</title><rect x="106.8" y="1857" width="5.0" height="15.0" fill="rgb(205,80,50)" rx="2" ry="2" />
<text text-anchor="" x="109.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>eventfd_ctx_read (5 samples, 0.04%)</title><rect x="189.9" y="1937" width="0.4" height="15.0" fill="rgb(223,4,20)" rx="2" ry="2" />
<text text-anchor="" x="192.90" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1233" width="1.8" height="15.0" fill="rgb(251,188,17)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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_send_ack (123 samples, 0.91%)</title><rect x="713.3" y="1873" width="10.8" height="15.0" fill="rgb(206,181,24)" rx="2" ry="2" />
<text text-anchor="" x="716.35" 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>__alloc_pages_nodemask (2 samples, 0.01%)</title><rect x="195.7" y="1905" width="0.2" height="15.0" fill="rgb(227,24,29)" rx="2" ry="2" />
<text text-anchor="" x="198.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>free_pages_and_swap_cache (6 samples, 0.04%)</title><rect x="981.2" y="1905" width="0.6" height="15.0" fill="rgb(237,197,10)" rx="2" ry="2" />
<text text-anchor="" x="984.23" 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>rocksdb::BlockBasedTable::GetDataBlockFromCache (5 samples, 0.04%)</title><rect x="1128.1" y="1793" width="0.4" height="15.0" fill="rgb(218,180,4)" rx="2" ry="2" />
<text text-anchor="" x="1131.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>ext4_invalidatepage (7 samples, 0.05%)</title><rect x="1162.0" y="1553" width="0.6" height="15.0" fill="rgb(205,161,6)" rx="2" ry="2" />
<text text-anchor="" x="1165.01" 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>__might_sleep (2 samples, 0.01%)</title><rect x="728.9" y="1873" width="0.2" height="15.0" fill="rgb(220,208,45)" rx="2" ry="2" />
<text text-anchor="" x="731.91" 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>_raw_spin_unlock_irqrestore (9 samples, 0.07%)</title><rect x="372.0" y="1457" width="0.8" height="15.0" fill="rgb(211,38,36)" rx="2" ry="2" />
<text text-anchor="" x="374.99" 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>__memcpy_ssse3_back (7 samples, 0.05%)</title><rect x="859.3" y="1889" width="0.6" height="15.0" fill="rgb(220,8,40)" rx="2" ry="2" />
<text text-anchor="" x="862.32" 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>grpc_slice_buffer_reset_and_unref_internal (3 samples, 0.02%)</title><rect x="599.2" y="2001" width="0.3" height="15.0" fill="rgb(242,12,54)" rx="2" ry="2" />
<text text-anchor="" x="602.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>finish_batch (10 samples, 0.07%)</title><rect x="441.6" y="2033" width="0.9" height="15.0" fill="rgb(231,155,25)" rx="2" ry="2" />
<text text-anchor="" x="444.61" 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_ack (15 samples, 0.11%)</title><rect x="536.2" y="1841" width="1.4" height="15.0" fill="rgb(229,198,16)" rx="2" ry="2" />
<text text-anchor="" x="539.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="161" width="0.5" height="15.0" fill="rgb(250,51,52)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>__ext4_journal_start_sb (34 samples, 0.25%)</title><rect x="910.8" y="1569" width="3.0" height="15.0" fill="rgb(250,85,19)" rx="2" ry="2" />
<text text-anchor="" x="913.83" 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>put_page (50 samples, 0.37%)</title><rect x="298.2" y="1841" width="4.4" height="15.0" fill="rgb(230,156,3)" rx="2" ry="2" />
<text text-anchor="" x="301.18" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1825" width="1.1" height="15.0" fill="rgb(223,72,7)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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_sync_write (2 samples, 0.01%)</title><rect x="86.3" y="1713" width="0.1" height="15.0" fill="rgb(209,201,23)" rx="2" ry="2" />
<text text-anchor="" x="89.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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="966.8" y="1729" width="0.2" height="15.0" fill="rgb(225,6,14)" rx="2" ry="2" />
<text text-anchor="" x="969.80" 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>__might_sleep (7 samples, 0.05%)</title><rect x="386.1" y="1905" width="0.6" height="15.0" fill="rgb(249,112,21)" rx="2" ry="2" />
<text text-anchor="" x="389.07" 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$tikv..raft..raft..Raft$LT$T$GT$$GT$::append_entry::hddb6586380e344ec (4 samples, 0.03%)</title><rect x="967.5" y="1857" width="0.4" height="15.0" fill="rgb(212,2,53)" rx="2" ry="2" />
<text text-anchor="" x="970.50" 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>__clear_user (4 samples, 0.03%)</title><rect x="202.1" y="1937" width="0.3" height="15.0" fill="rgb(245,105,25)" rx="2" ry="2" />
<text text-anchor="" x="205.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>__netif_receive_skb_core (97 samples, 0.72%)</title><rect x="754.4" y="1649" width="8.4" height="15.0" fill="rgb(233,106,35)" rx="2" ry="2" />
<text text-anchor="" x="757.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>combiner_exec_covered (3 samples, 0.02%)</title><rect x="451.9" y="2017" width="0.3" height="15.0" fill="rgb(223,28,17)" rx="2" ry="2" />
<text text-anchor="" x="454.93" 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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="65" width="0.2" height="15.0" fill="rgb(210,229,3)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>system_call_fastpath (23 samples, 0.17%)</title><rect x="1186.2" y="1889" width="2.0" height="15.0" fill="rgb(251,110,20)" rx="2" ry="2" />
<text text-anchor="" x="1189.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="561" width="0.1" height="15.0" fill="rgb(228,104,49)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>mem_cgroup_charge_common (16 samples, 0.12%)</title><rect x="1086.8" y="1569" width="1.4" height="15.0" fill="rgb(208,69,23)" rx="2" ry="2" />
<text text-anchor="" x="1089.80" 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>sk_reset_timer (2 samples, 0.01%)</title><rect x="511.5" y="1505" width="0.2" height="15.0" fill="rgb(246,5,50)" rx="2" ry="2" />
<text text-anchor="" x="514.49" 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>__lll_lock_wait (5 samples, 0.04%)</title><rect x="408.7" y="2001" width="0.5" height="15.0" fill="rgb(232,72,1)" rx="2" ry="2" />
<text text-anchor="" x="411.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>__alloc_pages_nodemask (2 samples, 0.01%)</title><rect x="984.6" y="1553" width="0.1" height="15.0" fill="rgb(216,67,2)" rx="2" ry="2" />
<text text-anchor="" x="987.56" 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] (21 samples, 0.16%)</title><rect x="10.3" y="513" width="1.8" height="15.0" fill="rgb(229,167,44)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::value (2 samples, 0.01%)</title><rect x="1164.7" y="1841" width="0.2" height="15.0" fill="rgb(251,9,53)" rx="2" ry="2" />
<text text-anchor="" x="1167.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>[unknown] (38 samples, 0.28%)</title><rect x="1055.3" y="2017" width="3.3" height="15.0" fill="rgb(230,53,51)" rx="2" ry="2" />
<text text-anchor="" x="1058.31" 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>system_call_fastpath (11 samples, 0.08%)</title><rect x="965.8" y="1841" width="1.0" height="15.0" fill="rgb(207,95,29)" rx="2" ry="2" />
<text text-anchor="" x="968.84" 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$tikv..raft..raft..Raft$LT$T$GT$$GT$::step::h2108b72a21383316 (72 samples, 0.53%)</title><rect x="867.6" y="1873" width="6.3" height="15.0" fill="rgb(244,68,4)" rx="2" ry="2" />
<text text-anchor="" x="870.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>__madvise (8 samples, 0.06%)</title><rect x="603.8" y="2017" width="0.7" height="15.0" fill="rgb(248,142,21)" rx="2" ry="2" />
<text text-anchor="" x="606.76" 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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="209" width="0.5" height="15.0" fill="rgb(213,29,25)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1697" width="1.8" height="15.0" fill="rgb(236,10,33)" rx="2" ry="2" />
<text text-anchor="" x="13.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>net_rx_action (212 samples, 1.57%)</title><rect x="362.7" y="1697" width="18.6" height="15.0" fill="rgb(224,75,14)" rx="2" ry="2" />
<text text-anchor="" x="365.72" 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>__lll_unlock_wake (9 samples, 0.07%)</title><rect x="397.4" y="2017" width="0.7" height="15.0" fill="rgb(209,19,18)" rx="2" ry="2" />
<text text-anchor="" x="400.36" 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>__module_address (12 samples, 0.09%)</title><rect x="38.0" y="1505" width="1.0" height="15.0" fill="rgb(247,164,19)" rx="2" ry="2" />
<text text-anchor="" x="40.99" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1857" width="0.2" height="15.0" fill="rgb(209,41,2)" rx="2" ry="2" />
<text text-anchor="" x="834.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="417" width="1.8" height="15.0" fill="rgb(213,143,40)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>tikv::raftstore::store::peer::Peer::propose_normal::h8e8f023fcb8a5381 (75 samples, 0.56%)</title><rect x="967.1" y="1889" width="6.5" height="15.0" fill="rgb(249,116,8)" rx="2" ry="2" />
<text text-anchor="" x="970.07" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1617" width="0.5" height="15.0" fill="rgb(212,97,38)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>_raw_spin_unlock_irqrestore (6 samples, 0.04%)</title><rect x="981.2" y="1809" width="0.6" height="15.0" fill="rgb(244,112,32)" rx="2" ry="2" />
<text text-anchor="" x="984.23" 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] (21 samples, 0.16%)</title><rect x="592.2" y="817" width="1.9" height="15.0" fill="rgb(224,96,38)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="827.5" font-size="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] (21 samples, 0.16%)</title><rect x="10.3" y="209" width="1.8" height="15.0" fill="rgb(212,130,28)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>finish_task_switch (6 samples, 0.04%)</title><rect x="207.3" y="1873" width="0.5" height="15.0" fill="rgb(236,181,25)" rx="2" ry="2" />
<text text-anchor="" x="210.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>tcp_v4_do_rcv (6 samples, 0.04%)</title><rect x="305.8" y="1873" width="0.5" height="15.0" fill="rgb(240,11,40)" rx="2" ry="2" />
<text text-anchor="" x="308.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="545" width="0.5" height="15.0" fill="rgb(218,146,19)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>iput (9 samples, 0.07%)</title><rect x="979.4" y="1873" width="0.8" height="15.0" fill="rgb(226,100,40)" rx="2" ry="2" />
<text text-anchor="" x="982.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>_raw_spin_unlock_irq (8 samples, 0.06%)</title><rect x="602.5" y="1873" width="0.7" height="15.0" fill="rgb(213,46,14)" rx="2" ry="2" />
<text text-anchor="" x="605.54" 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_sendmsg (513 samples, 3.80%)</title><rect x="725.2" y="1985" width="44.8" height="15.0" fill="rgb(224,24,44)" rx="2" ry="2" />
<text text-anchor="" x="728.15" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::log::Writer::AddRecord (173 samples, 1.28%)</title><rect x="32.6" y="1825" width="15.1" height="15.0" fill="rgb(222,204,47)" rx="2" ry="2" />
<text text-anchor="" x="35.56" 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>continue_fetching_send_locked (3 samples, 0.02%)</title><rect x="646.8" y="2033" width="0.3" height="15.0" fill="rgb(230,175,22)" rx="2" ry="2" />
<text text-anchor="" x="649.79" 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>might_fault (4 samples, 0.03%)</title><rect x="601.6" y="1937" width="0.3" height="15.0" fill="rgb(219,45,30)" rx="2" ry="2" />
<text text-anchor="" x="604.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>lock_is_held (6 samples, 0.04%)</title><rect x="580.8" y="1633" width="0.5" height="15.0" fill="rgb(232,13,5)" rx="2" ry="2" />
<text text-anchor="" x="583.76" 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::write::h4596c4f5073895b5 (5 samples, 0.04%)</title><rect x="86.0" y="1825" width="0.4" height="15.0" fill="rgb(243,85,51)" rx="2" ry="2" />
<text text-anchor="" x="89.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>__madvise (3 samples, 0.02%)</title><rect x="1055.4" y="1969" width="0.3" height="15.0" fill="rgb(242,185,12)" rx="2" ry="2" />
<text text-anchor="" x="1058.40" 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>do_softirq (2 samples, 0.01%)</title><rect x="788.5" y="1905" width="0.1" height="15.0" fill="rgb(222,96,51)" rx="2" ry="2" />
<text text-anchor="" x="791.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>lock_release (6 samples, 0.04%)</title><rect x="106.1" y="1841" width="0.5" height="15.0" fill="rgb(214,113,31)" rx="2" ry="2" />
<text text-anchor="" x="109.12" 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>grpc_combiner_continue_exec_ctx (7 samples, 0.05%)</title><rect x="220.4" y="2017" width="0.6" height="15.0" fill="rgb(218,72,25)" rx="2" ry="2" />
<text text-anchor="" x="223.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (7 samples, 0.05%)</title><rect x="80.5" y="1857" width="0.6" height="15.0" fill="rgb(241,61,33)" rx="2" ry="2" />
<text text-anchor="" x="83.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>copy_user_enhanced_fast_string (2 samples, 0.01%)</title><rect x="326.5" y="1905" width="0.2" height="15.0" fill="rgb(206,191,17)" rx="2" ry="2" />
<text text-anchor="" x="329.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>__audit_syscall_exit (2 samples, 0.01%)</title><rect x="774.7" y="1985" width="0.2" height="15.0" fill="rgb(233,179,20)" rx="2" ry="2" />
<text text-anchor="" x="777.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>do_signal (12 samples, 0.09%)</title><rect x="230.7" y="1969" width="1.1" height="15.0" fill="rgb(221,35,19)" rx="2" ry="2" />
<text text-anchor="" x="233.75" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1569" width="0.1" height="15.0" fill="rgb(254,130,30)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>___slab_alloc (2 samples, 0.01%)</title><rect x="983.1" y="1489" width="0.1" height="15.0" fill="rgb(205,111,24)" rx="2" ry="2" />
<text text-anchor="" x="986.07" 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>rocksdb::crc32c::ExtendImpl&lt;&amp;rocksdb::crc32c::Fast_CRC32&gt; (2 samples, 0.01%)</title><rect x="985.7" y="1825" width="0.2" height="15.0" fill="rgb(240,122,23)" rx="2" ry="2" />
<text text-anchor="" x="988.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>rocksdb::ThreadPoolImpl::Impl::BGThread (39 samples, 0.29%)</title><rect x="976.8" y="2001" width="3.4" height="15.0" fill="rgb(236,50,31)" rx="2" ry="2" />
<text text-anchor="" x="979.77" 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>rocksdb::WritableFileWriter::SyncInternal (4 samples, 0.03%)</title><rect x="990.0" y="1873" width="0.3" height="15.0" fill="rgb(230,98,17)" rx="2" ry="2" />
<text text-anchor="" x="992.98" 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>call_softirq (2 samples, 0.01%)</title><rect x="473.5" y="1809" width="0.2" height="15.0" fill="rgb(208,32,25)" rx="2" ry="2" />
<text text-anchor="" x="476.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="593" width="1.0" height="15.0" fill="rgb(242,107,16)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>__schedule (2 samples, 0.01%)</title><rect x="615.0" y="1889" width="0.2" height="15.0" fill="rgb(247,126,5)" rx="2" ry="2" />
<text text-anchor="" x="618.04" 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$collections..vec..Vec$LT$T$GT$$GT$::extend_from_slice::h76bfead8f20e7d0c (8 samples, 0.06%)</title><rect x="879.9" y="1873" width="0.7" height="15.0" fill="rgb(248,204,51)" rx="2" ry="2" />
<text text-anchor="" x="882.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>finish_task_switch (2 samples, 0.01%)</title><rect x="780.1" y="1873" width="0.2" height="15.0" fill="rgb(244,76,17)" rx="2" ry="2" />
<text text-anchor="" x="783.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>__do_softirq (3 samples, 0.02%)</title><rect x="737.3" y="1793" width="0.3" height="15.0" fill="rgb(212,186,46)" rx="2" ry="2" />
<text text-anchor="" x="740.31" 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] (13 samples, 0.10%)</title><rect x="390.2" y="513" width="1.1" height="15.0" fill="rgb(236,78,31)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1313" width="0.2" height="15.0" fill="rgb(217,174,42)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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_sendmsg (441 samples, 3.27%)</title><rect x="727.9" y="1905" width="38.5" height="15.0" fill="rgb(227,62,44)" rx="2" ry="2" />
<text text-anchor="" x="730.87" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tcp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::StatisticsImpl::measureTime (4 samples, 0.03%)</title><rect x="47.8" y="1841" width="0.3" height="15.0" fill="rgb(235,106,11)" rx="2" ry="2" />
<text text-anchor="" x="50.78" 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_tag_unpack::h60700b1f76c3f32e (2 samples, 0.01%)</title><rect x="688.2" y="1857" width="0.2" height="15.0" fill="rgb(211,62,29)" rx="2" ry="2" />
<text text-anchor="" x="691.25" 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>lock_acquire (3 samples, 0.02%)</title><rect x="321.1" y="1825" width="0.3" height="15.0" fill="rgb(250,32,6)" rx="2" ry="2" />
<text text-anchor="" x="324.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>sys_futex (2 samples, 0.01%)</title><rect x="780.1" y="1969" width="0.2" height="15.0" fill="rgb(218,97,38)" rx="2" ry="2" />
<text text-anchor="" x="783.08" 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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1265" width="1.1" height="15.0" fill="rgb(217,195,6)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>__lll_unlock_wake (6 samples, 0.04%)</title><rect x="16.5" y="2033" width="0.5" height="15.0" fill="rgb(233,50,53)" rx="2" ry="2" />
<text text-anchor="" x="19.47" 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>release_pages (4 samples, 0.03%)</title><rect x="604.0" y="1905" width="0.4" height="15.0" fill="rgb(252,32,38)" rx="2" ry="2" />
<text text-anchor="" x="607.02" 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>irq_exit (15 samples, 0.11%)</title><rect x="1045.3" y="1969" width="1.4" height="15.0" fill="rgb(249,93,30)" rx="2" ry="2" />
<text text-anchor="" x="1048.34" 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>lock_acquired (2 samples, 0.01%)</title><rect x="305.0" y="1857" width="0.2" height="15.0" fill="rgb(218,198,48)" rx="2" ry="2" />
<text text-anchor="" x="308.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>sk_stream_alloc_skb (13 samples, 0.10%)</title><rect x="740.6" y="1889" width="1.2" height="15.0" fill="rgb(243,182,6)" rx="2" ry="2" />
<text text-anchor="" x="743.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1265" width="1.9" height="15.0" fill="rgb(247,11,36)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>lock_is_held (3 samples, 0.02%)</title><rect x="1077.0" y="1585" width="0.3" height="15.0" fill="rgb(239,10,39)" rx="2" ry="2" />
<text text-anchor="" x="1080.00" 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>ep_send_events_proc (2 samples, 0.01%)</title><rect x="205.3" y="1921" width="0.2" height="15.0" fill="rgb(208,168,10)" rx="2" ry="2" />
<text text-anchor="" x="208.30" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="433" width="0.5" height="15.0" fill="rgb(241,214,17)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>copy_user_enhanced_fast_string (4 samples, 0.03%)</title><rect x="909.6" y="1585" width="0.4" height="15.0" fill="rgb(232,204,6)" rx="2" ry="2" />
<text text-anchor="" x="912.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>__might_sleep (2 samples, 0.01%)</title><rect x="105.1" y="1841" width="0.1" height="15.0" fill="rgb(220,26,53)" rx="2" ry="2" />
<text text-anchor="" x="108.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>tcp_transmit_skb (369 samples, 2.73%)</title><rect x="143.6" y="1841" width="32.3" height="15.0" fill="rgb(211,80,30)" rx="2" ry="2" />
<text text-anchor="" x="146.64" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_is_held (4 samples, 0.03%)</title><rect x="1091.4" y="1537" width="0.4" height="15.0" fill="rgb(222,188,15)" rx="2" ry="2" />
<text text-anchor="" x="1094.43" 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_rcv_finish (178 samples, 1.32%)</title><rect x="154.4" y="1617" width="15.6" height="15.0" fill="rgb(236,132,5)" rx="2" ry="2" />
<text text-anchor="" x="157.40" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="385" width="0.5" height="15.0" fill="rgb(242,139,9)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>ext4_writepages (53 samples, 0.39%)</title><rect x="1138.0" y="1745" width="4.7" height="15.0" fill="rgb(240,227,29)" rx="2" ry="2" />
<text text-anchor="" x="1141.05" 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_timer_check (3 samples, 0.02%)</title><rect x="800.3" y="2033" width="0.2" height="15.0" fill="rgb(236,9,34)" rx="2" ry="2" />
<text text-anchor="" x="803.28" 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_transmit_skb (2 samples, 0.01%)</title><rect x="315.4" y="1505" width="0.2" height="15.0" fill="rgb(247,28,50)" rx="2" ry="2" />
<text text-anchor="" x="318.41" 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>grpcwrap_batch_context_destroy (3 samples, 0.02%)</title><rect x="455.5" y="1953" width="0.3" height="15.0" fill="rgb(214,15,16)" rx="2" ry="2" />
<text text-anchor="" x="458.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1009" width="1.1" height="15.0" fill="rgb(245,85,50)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::DBImpl::PurgeObsoleteFiles (22 samples, 0.16%)</title><rect x="1160.7" y="1793" width="1.9" height="15.0" fill="rgb(210,183,16)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="945" width="1.0" height="15.0" fill="rgb(254,75,40)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="955.5" font-size="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_sendmsg (877 samples, 6.50%)</title><rect x="512.5" y="1953" width="76.7" height="15.0" fill="rgb(253,12,8)" rx="2" ry="2" />
<text text-anchor="" x="515.54" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >___sys_s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1617" width="1.8" height="15.0" fill="rgb(238,209,25)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>set_current_blocked (2 samples, 0.01%)</title><rect x="399.5" y="1969" width="0.1" height="15.0" fill="rgb(227,62,51)" rx="2" ry="2" />
<text text-anchor="" x="402.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>lock_acquire (12 samples, 0.09%)</title><rect x="388.2" y="1921" width="1.0" height="15.0" fill="rgb(247,211,25)" rx="2" ry="2" />
<text text-anchor="" x="391.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1921" width="1.0" height="15.0" fill="rgb(242,42,14)" rx="2" ry="2" />
<text text-anchor="" x="184.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>_$LT$grpc..call..server..UnarySink$LT$T$GT$$GT$::complete::h39ed979fa436a5b4 (2 samples, 0.01%)</title><rect x="257.2" y="1905" width="0.1" height="15.0" fill="rgb(235,216,24)" rx="2" ry="2" />
<text text-anchor="" x="260.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>grpc-poll-0 (2,247 samples, 16.65%)</title><rect x="92.4" y="2049" width="196.5" height="15.0" fill="rgb(213,25,9)" rx="2" ry="2" />
<text text-anchor="" x="95.39" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >grpc-poll-0</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (10 samples, 0.07%)</title><rect x="990.9" y="1697" width="0.8" height="15.0" fill="rgb(251,86,13)" rx="2" ry="2" />
<text text-anchor="" x="993.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>_raw_spin_unlock_irqrestore (4 samples, 0.03%)</title><rect x="194.5" y="1825" width="0.4" height="15.0" fill="rgb(214,76,33)" rx="2" ry="2" />
<text text-anchor="" x="197.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>protobuf::stream::CodedInputStream::read_uint64::h8cde9d4ea3b04318 (10 samples, 0.07%)</title><rect x="74.6" y="1825" width="0.9" height="15.0" fill="rgb(245,183,39)" rx="2" ry="2" />
<text text-anchor="" x="77.63" 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>system_call_fastpath (34 samples, 0.25%)</title><rect x="990.3" y="1921" width="3.0" height="15.0" fill="rgb(221,132,48)" rx="2" ry="2" />
<text text-anchor="" x="993.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1729" width="1.1" height="15.0" fill="rgb(221,175,0)" rx="2" ry="2" />
<text text-anchor="" x="773.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1697" width="0.5" height="15.0" fill="rgb(248,27,24)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="225" width="0.5" height="15.0" fill="rgb(223,178,50)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1921" width="1.1" height="15.0" fill="rgb(252,83,40)" rx="2" ry="2" />
<text text-anchor="" x="773.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1521" width="1.8" height="15.0" fill="rgb(209,118,1)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>core::ptr::drop_in_place::h6b83b48c9b3fff57 (4 samples, 0.03%)</title><rect x="886.8" y="1825" width="0.3" height="15.0" fill="rgb(225,140,0)" rx="2" ry="2" />
<text text-anchor="" x="889.78" 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] (37 samples, 0.27%)</title><rect x="837.4" y="897" width="3.2" height="15.0" fill="rgb(206,52,41)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="907.5" font-size="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 (7 samples, 0.05%)</title><rect x="538.4" y="1825" width="0.6" height="15.0" fill="rgb(205,154,18)" rx="2" ry="2" />
<text text-anchor="" x="541.43" 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>debug_check_no_obj_freed (17 samples, 0.13%)</title><rect x="501.0" y="1777" width="1.5" height="15.0" fill="rgb(222,115,2)" rx="2" ry="2" />
<text text-anchor="" x="504.00" 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_clean_rtx_queue (27 samples, 0.20%)</title><rect x="108.8" y="1521" width="2.4" height="15.0" fill="rgb(239,80,5)" rx="2" ry="2" />
<text text-anchor="" x="111.83" 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>schedule (13 samples, 0.10%)</title><rect x="89.9" y="1825" width="1.1" height="15.0" fill="rgb(239,183,45)" rx="2" ry="2" />
<text text-anchor="" x="92.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="961" width="1.1" height="15.0" fill="rgb(210,169,10)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="971.5" font-size="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::ptr::drop_in_place::h2c0da44511c9f677 (6 samples, 0.04%)</title><rect x="860.3" y="1873" width="0.5" height="15.0" fill="rgb(212,161,32)" rx="2" ry="2" />
<text text-anchor="" x="863.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>kfree (2 samples, 0.01%)</title><rect x="500.6" y="1841" width="0.2" height="15.0" fill="rgb(210,64,36)" rx="2" ry="2" />
<text text-anchor="" x="503.65" 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>__memcpy_ssse3_back (4 samples, 0.03%)</title><rect x="32.8" y="1793" width="0.4" height="15.0" fill="rgb(235,211,44)" rx="2" ry="2" />
<text text-anchor="" x="35.83" 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>__find_lock_page (16 samples, 0.12%)</title><rect x="1083.6" y="1617" width="1.4" height="15.0" fill="rgb(218,52,11)" rx="2" ry="2" />
<text text-anchor="" x="1086.56" 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_output (112 samples, 0.83%)</title><rect x="311.2" y="1809" width="9.8" height="15.0" fill="rgb(240,182,2)" rx="2" ry="2" />
<text text-anchor="" x="314.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>sys_madvise (6 samples, 0.04%)</title><rect x="981.2" y="1969" width="0.6" height="15.0" fill="rgb(225,67,45)" rx="2" ry="2" />
<text text-anchor="" x="984.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>do_unlinkat (22 samples, 0.16%)</title><rect x="1160.7" y="1697" width="1.9" height="15.0" fill="rgb(217,140,54)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>grpc_slice_unref_internal (2 samples, 0.01%)</title><rect x="225.8" y="1953" width="0.2" height="15.0" fill="rgb(237,10,10)" rx="2" ry="2" />
<text text-anchor="" x="228.85" 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>async_page_fault (2 samples, 0.01%)</title><rect x="290.9" y="1969" width="0.2" height="15.0" fill="rgb(252,32,12)" rx="2" ry="2" />
<text text-anchor="" x="293.92" 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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="385" width="1.1" height="15.0" fill="rgb(239,228,25)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1633" width="1.0" height="15.0" fill="rgb(244,138,53)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>async_page_fault (2 samples, 0.01%)</title><rect x="437.5" y="2017" width="0.2" height="15.0" fill="rgb(209,45,23)" rx="2" ry="2" />
<text text-anchor="" x="440.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>_$LT$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::merge_from::h57b1d6303c5588ab (73 samples, 0.54%)</title><rect x="275.6" y="1889" width="6.4" height="15.0" fill="rgb(233,78,45)" rx="2" ry="2" />
<text text-anchor="" x="278.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>__wake_up_sync_key (3 samples, 0.02%)</title><rect x="306.0" y="1825" width="0.2" height="15.0" fill="rgb(220,159,14)" rx="2" ry="2" />
<text text-anchor="" x="308.96" 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$tikv..server..transport..ServerRaftStoreRouter$u20$as$u20$tikv..server..transport..RaftStoreRouter$GT$::send_raft_msg::h20154fbbe9a9ae26 (33 samples, 0.24%)</title><rect x="471.3" y="1905" width="2.9" height="15.0" fill="rgb(247,30,18)" rx="2" ry="2" />
<text text-anchor="" x="474.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>__might_sleep (2 samples, 0.01%)</title><rect x="36.4" y="1617" width="0.2" height="15.0" fill="rgb(215,135,19)" rx="2" ry="2" />
<text text-anchor="" x="39.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>copy_user_enhanced_fast_string (2 samples, 0.01%)</title><rect x="513.1" y="1937" width="0.1" height="15.0" fill="rgb(252,32,8)" rx="2" ry="2" />
<text text-anchor="" x="516.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>mio::sys::unix::awakener::pipe::Awakener::wakeup::h815fa66d29a1eb12 (6 samples, 0.04%)</title><rect x="473.0" y="1873" width="0.5" height="15.0" fill="rgb(252,143,5)" rx="2" ry="2" />
<text text-anchor="" x="476.01" 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>__ext4_journal_stop (16 samples, 0.12%)</title><rect x="916.7" y="1569" width="1.4" height="15.0" fill="rgb(245,189,50)" rx="2" ry="2" />
<text text-anchor="" x="919.69" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1089" width="3.2" height="15.0" fill="rgb(226,189,10)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="1099.5" font-size="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_chttp2_begin_write (4 samples, 0.03%)</title><rect x="598.4" y="2001" width="0.4" height="15.0" fill="rgb(228,168,34)" rx="2" ry="2" />
<text text-anchor="" x="601.43" 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>grpcwrap_batch_context_recv_message_length (3 samples, 0.02%)</title><rect x="455.8" y="1953" width="0.2" height="15.0" fill="rgb(251,18,28)" rx="2" ry="2" />
<text text-anchor="" x="458.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>_$LT$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::compute_size::ha5adab845ea77d84 (23 samples, 0.17%)</title><rect x="672.2" y="1857" width="2.1" height="15.0" fill="rgb(217,60,44)" rx="2" ry="2" />
<text text-anchor="" x="675.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1313" width="0.1" height="15.0" fill="rgb(251,121,44)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>_$LT$futures..task_impl..std..ArcWrapped$LT$T$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::drop_raw::h3395b44c88f6b7a9 (4 samples, 0.03%)</title><rect x="805.1" y="1937" width="0.3" height="15.0" fill="rgb(207,218,21)" rx="2" ry="2" />
<text text-anchor="" x="808.09" 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 (85 samples, 0.63%)</title><rect x="755.2" y="1601" width="7.5" height="15.0" fill="rgb(211,197,17)" rx="2" ry="2" />
<text text-anchor="" x="758.24" 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>rocksdb::MemTable::KeyComparator::operator (12 samples, 0.09%)</title><rect x="69.0" y="1713" width="1.1" height="15.0" fill="rgb(221,189,50)" rx="2" ry="2" />
<text text-anchor="" x="72.03" 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>get_signal_to_deliver (17 samples, 0.13%)</title><rect x="608.6" y="1953" width="1.5" height="15.0" fill="rgb(216,32,8)" rx="2" ry="2" />
<text text-anchor="" x="611.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>_raw_spin_unlock_irqrestore (30 samples, 0.22%)</title><rect x="943.2" y="1713" width="2.6" height="15.0" fill="rgb(241,163,51)" rx="2" ry="2" />
<text text-anchor="" x="946.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_is_held (4 samples, 0.03%)</title><rect x="585.5" y="1809" width="0.3" height="15.0" fill="rgb(207,104,30)" rx="2" ry="2" />
<text text-anchor="" x="588.48" 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>int_signal (12 samples, 0.09%)</title><rect x="230.7" y="2001" width="1.1" height="15.0" fill="rgb(237,54,13)" rx="2" ry="2" />
<text text-anchor="" x="233.75" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1201" width="0.5" height="15.0" fill="rgb(206,211,20)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="945" width="1.1" height="15.0" fill="rgb(229,88,29)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="955.5" font-size="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 (26 samples, 0.19%)</title><rect x="719.6" y="1473" width="2.3" height="15.0" fill="rgb(220,28,35)" rx="2" ry="2" />
<text text-anchor="" x="722.64" 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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1537" width="0.5" height="15.0" fill="rgb(218,46,46)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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] (12 samples, 0.09%)</title><rect x="181.1" y="673" width="1.0" height="15.0" fill="rgb(245,171,16)" rx="2" ry="2" />
<text text-anchor="" x="184.07" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::(anonymous namespace)::FullFilterBitsBuilder::Finish (26 samples, 0.19%)</title><rect x="1134.7" y="1873" width="2.3" height="15.0" fill="rgb(241,185,37)" rx="2" ry="2" />
<text text-anchor="" x="1137.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>_raw_spin_unlock (5 samples, 0.04%)</title><rect x="522.2" y="1873" width="0.5" height="15.0" fill="rgb(217,66,2)" rx="2" ry="2" />
<text text-anchor="" x="525.25" 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>__alloc_skb (29 samples, 0.21%)</title><rect x="344.4" y="1873" width="2.5" height="15.0" fill="rgb(235,63,33)" rx="2" ry="2" />
<text text-anchor="" x="347.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>__sb_start_write (3 samples, 0.02%)</title><rect x="34.7" y="1697" width="0.2" height="15.0" fill="rgb(248,24,49)" rx="2" ry="2" />
<text text-anchor="" x="37.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>rcu_read_lock (5 samples, 0.04%)</title><rect x="159.0" y="1553" width="0.5" height="15.0" fill="rgb(216,173,31)" rx="2" ry="2" />
<text text-anchor="" x="162.03" 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>futex_wait (4 samples, 0.03%)</title><rect x="596.2" y="1937" width="0.3" height="15.0" fill="rgb(235,179,49)" rx="2" ry="2" />
<text text-anchor="" x="599.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>rocksdb::RandomAccessFileReader::Read (2 samples, 0.01%)</title><rect x="1137.1" y="1761" width="0.2" height="15.0" fill="rgb(226,125,49)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>core::fmt::num::_$LT$impl$u20$core..fmt..Display$u20$for$u20$u64$GT$::fmt::h55f6348788afda0c (3 samples, 0.02%)</title><rect x="88.9" y="1857" width="0.3" height="15.0" fill="rgb(222,203,41)" rx="2" ry="2" />
<text text-anchor="" x="91.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>_$LT$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::compute_size::ha5adab845ea77d84 (32 samples, 0.24%)</title><rect x="260.7" y="1857" width="2.8" height="15.0" fill="rgb(234,35,29)" rx="2" ry="2" />
<text text-anchor="" x="263.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$grpc..call..server..UnarySinkResult$u20$as$u20$futures..future..Future$GT$::poll::h8e17579f947f0fd5 (3 samples, 0.02%)</title><rect x="807.2" y="1905" width="0.3" height="15.0" fill="rgb(244,152,11)" rx="2" ry="2" />
<text text-anchor="" x="810.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1121" width="0.2" height="15.0" fill="rgb(220,228,28)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="1131.5" font-size="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 (3 samples, 0.02%)</title><rect x="506.4" y="1713" width="0.3" height="15.0" fill="rgb(219,101,34)" rx="2" ry="2" />
<text text-anchor="" x="509.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>system_call_fastpath (7 samples, 0.05%)</title><rect x="395.3" y="2001" width="0.7" height="15.0" fill="rgb(216,174,32)" rx="2" ry="2" />
<text text-anchor="" x="398.35" 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>mallocx (4 samples, 0.03%)</title><rect x="1170.8" y="2033" width="0.4" height="15.0" fill="rgb(218,3,36)" rx="2" ry="2" />
<text text-anchor="" x="1173.85" 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>gpr_ref (2 samples, 0.01%)</title><rect x="241.6" y="2033" width="0.2" height="15.0" fill="rgb(252,220,16)" rx="2" ry="2" />
<text text-anchor="" x="244.59" 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>vfs_read (17 samples, 0.13%)</title><rect x="961.8" y="1841" width="1.5" height="15.0" fill="rgb(228,142,21)" rx="2" ry="2" />
<text text-anchor="" x="964.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>malloc (3 samples, 0.02%)</title><rect x="655.4" y="2033" width="0.2" height="15.0" fill="rgb(217,198,27)" rx="2" ry="2" />
<text text-anchor="" x="658.36" 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>__mem_cgroup_try_charge (14 samples, 0.10%)</title><rect x="1086.9" y="1553" width="1.2" height="15.0" fill="rgb(217,194,12)" rx="2" ry="2" />
<text text-anchor="" x="1089.89" 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>rocksdb::FlushJob::Run (30 samples, 0.22%)</title><rect x="976.8" y="1937" width="2.6" height="15.0" fill="rgb(246,52,30)" rx="2" ry="2" />
<text text-anchor="" x="979.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>std::sys_common::backtrace::__rust_begin_short_backtrace::h1ce817c7c2e301be (7 samples, 0.05%)</title><rect x="831.1" y="1953" width="0.6" height="15.0" fill="rgb(232,222,25)" rx="2" ry="2" />
<text text-anchor="" x="834.07" 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>get_signal_to_deliver (30 samples, 0.22%)</title><rect x="198.9" y="1953" width="2.6" height="15.0" fill="rgb(240,157,29)" rx="2" ry="2" />
<text text-anchor="" x="201.91" 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>grpc_exec_ctx_ready_to_finish (2 samples, 0.01%)</title><rect x="629.0" y="2017" width="0.2" height="15.0" fill="rgb(219,113,39)" rx="2" ry="2" />
<text text-anchor="" x="632.04" 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>might_fault (4 samples, 0.03%)</title><rect x="403.5" y="1969" width="0.3" height="15.0" fill="rgb(229,226,7)" rx="2" ry="2" />
<text text-anchor="" x="406.48" 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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="417" width="0.2" height="15.0" fill="rgb(206,71,38)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>_$LT$rand..ThreadRngReseeder$u20$as$u20$rand..reseeding..Reseeder$LT$rand..StdRng$GT$$GT$::reseed::h866bccb3b0c9ac19 (3 samples, 0.02%)</title><rect x="286.8" y="1857" width="0.3" height="15.0" fill="rgb(206,16,36)" rx="2" ry="2" />
<text text-anchor="" x="289.81" 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 (26 samples, 0.19%)</title><rect x="719.6" y="1457" width="2.3" height="15.0" fill="rgb(211,174,46)" rx="2" ry="2" />
<text text-anchor="" x="722.64" 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_rcv_established (65 samples, 0.48%)</title><rect x="314.8" y="1553" width="5.7" height="15.0" fill="rgb(225,10,8)" rx="2" ry="2" />
<text text-anchor="" x="317.80" 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>offload (2 samples, 0.01%)</title><rect x="657.5" y="1953" width="0.1" height="15.0" fill="rgb(231,170,14)" rx="2" ry="2" />
<text text-anchor="" x="660.46" 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>grpc_chttp2_incoming_frame_queue_pop (2 samples, 0.01%)</title><rect x="94.7" y="1985" width="0.2" height="15.0" fill="rgb(245,180,7)" rx="2" ry="2" />
<text text-anchor="" x="97.75" 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>combiner_finally_exec_covered (3 samples, 0.02%)</title><rect x="699.2" y="2017" width="0.2" height="15.0" fill="rgb(241,173,6)" rx="2" ry="2" />
<text text-anchor="" x="702.18" 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>tikv::raftstore::store::peer::Peer::get_peer_from_cache::he433d9e4422ab728 (16 samples, 0.12%)</title><rect x="950.5" y="1857" width="1.4" height="15.0" fill="rgb(253,121,48)" rx="2" ry="2" />
<text text-anchor="" x="953.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>rocksdb::(anonymous namespace)::BytewiseComparatorImpl::Compare (5 samples, 0.04%)</title><rect x="67.0" y="1697" width="0.5" height="15.0" fill="rgb(250,34,3)" rx="2" ry="2" />
<text text-anchor="" x="70.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_bh_enable (82 samples, 0.61%)</title><rect x="716.1" y="1777" width="7.1" height="15.0" fill="rgb(221,12,7)" rx="2" ry="2" />
<text text-anchor="" x="719.06" 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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::InsertConcurrently (17 samples, 0.13%)</title><rect x="834.9" y="1793" width="1.5" height="15.0" fill="rgb(247,141,35)" rx="2" ry="2" />
<text text-anchor="" x="837.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>tcp_flush (2 samples, 0.01%)</title><rect x="232.3" y="2017" width="0.2" height="15.0" fill="rgb(218,207,40)" rx="2" ry="2" />
<text text-anchor="" x="235.32" 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>system_call_fastpath (2 samples, 0.01%)</title><rect x="635.1" y="1985" width="0.1" height="15.0" fill="rgb(212,33,5)" rx="2" ry="2" />
<text text-anchor="" x="638.07" 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_clock_gettime (6 samples, 0.04%)</title><rect x="71.7" y="1793" width="0.6" height="15.0" fill="rgb(243,49,8)" rx="2" ry="2" />
<text text-anchor="" x="74.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>rocksdb::InternalKeyComparator::Compare (6 samples, 0.04%)</title><rect x="1166.9" y="1857" width="0.5" height="15.0" fill="rgb(229,106,44)" rx="2" ry="2" />
<text text-anchor="" x="1169.91" 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>pollset_work (3 samples, 0.02%)</title><rect x="789.8" y="2017" width="0.2" height="15.0" fill="rgb(220,3,44)" rx="2" ry="2" />
<text text-anchor="" x="792.79" 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_unlock_irq (4 samples, 0.03%)</title><rect x="394.6" y="1921" width="0.3" height="15.0" fill="rgb(245,186,30)" rx="2" ry="2" />
<text text-anchor="" x="397.56" 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>_raw_spin_unlock_irqrestore (6 samples, 0.04%)</title><rect x="536.3" y="1745" width="0.6" height="15.0" fill="rgb(254,3,15)" rx="2" ry="2" />
<text text-anchor="" x="539.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] (2 samples, 0.01%)</title><rect x="1160.3" y="849" width="0.1" height="15.0" fill="rgb(245,158,16)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="859.5" font-size="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.01%)</title><rect x="258.0" y="1889" width="0.2" height="15.0" fill="rgb(213,101,24)" rx="2" ry="2" />
<text text-anchor="" x="261.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>grpc_exec_ctx_ready_to_finish (2 samples, 0.01%)</title><rect x="222.1" y="2017" width="0.2" height="15.0" fill="rgb(249,130,13)" rx="2" ry="2" />
<text text-anchor="" x="225.09" 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>mem_cgroup_newpage_charge (2 samples, 0.01%)</title><rect x="195.9" y="1921" width="0.1" height="15.0" fill="rgb(241,59,27)" rx="2" ry="2" />
<text text-anchor="" x="198.85" 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>__ext4_get_inode_loc (3 samples, 0.02%)</title><rect x="920.5" y="1473" width="0.3" height="15.0" fill="rgb(221,208,22)" rx="2" ry="2" />
<text text-anchor="" x="923.54" 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>grpc::async::executor::poll::ha9391dc4b3a313b1 (309 samples, 2.29%)</title><rect x="666.6" y="1937" width="27.0" height="15.0" fill="rgb(228,64,29)" rx="2" ry="2" />
<text text-anchor="" x="669.56" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::(anonymous namespace)::TwoLevelIterator::Next (33 samples, 0.24%)</title><rect x="1118.4" y="1873" width="2.9" height="15.0" fill="rgb(235,223,45)" rx="2" ry="2" />
<text text-anchor="" x="1121.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>start_thread (809 samples, 6.00%)</title><rect x="21.2" y="2033" width="70.7" height="15.0" fill="rgb(228,76,9)" rx="2" ry="2" />
<text text-anchor="" x="24.19" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc_completion_queue_next (4 samples, 0.03%)</title><rect x="208.7" y="2001" width="0.4" height="15.0" fill="rgb(220,97,51)" rx="2" ry="2" />
<text text-anchor="" x="211.71" 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_rcv_finish (8 samples, 0.06%)</title><rect x="1045.9" y="1793" width="0.7" height="15.0" fill="rgb(251,144,22)" 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>tcp_push (2 samples, 0.01%)</title><rect x="517.9" y="1905" width="0.2" height="15.0" fill="rgb(224,72,47)" rx="2" ry="2" />
<text text-anchor="" x="520.88" 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_handle_read (7 samples, 0.05%)</title><rect x="490.2" y="2033" width="0.6" height="15.0" fill="rgb(223,105,40)" rx="2" ry="2" />
<text text-anchor="" x="493.15" 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>_raw_spin_unlock_irqrestore (3 samples, 0.02%)</title><rect x="323.6" y="1905" width="0.3" height="15.0" fill="rgb(216,174,15)" rx="2" ry="2" />
<text text-anchor="" x="326.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>core::fmt::num::_$LT$impl$u20$core..fmt..Display$u20$for$u20$usize$GT$::fmt::hca076294251e50ea (2 samples, 0.01%)</title><rect x="89.2" y="1857" width="0.1" height="15.0" fill="rgb(209,154,25)" rx="2" ry="2" />
<text text-anchor="" x="92.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>skb_release_all (6 samples, 0.04%)</title><rect x="314.9" y="1521" width="0.5" height="15.0" fill="rgb(229,104,34)" rx="2" ry="2" />
<text text-anchor="" x="317.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>pthread_cond_wait@@GLIBC_2.3.2 (6 samples, 0.04%)</title><rect x="934.5" y="1777" width="0.6" height="15.0" fill="rgb(226,205,2)" rx="2" ry="2" />
<text text-anchor="" x="937.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>tcp_v4_do_rcv (38 samples, 0.28%)</title><rect x="108.4" y="1569" width="3.3" height="15.0" fill="rgb(230,43,15)" rx="2" ry="2" />
<text text-anchor="" x="111.39" 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.01%)</title><rect x="745.4" y="1697" width="0.2" height="15.0" fill="rgb(246,165,19)" rx="2" ry="2" />
<text text-anchor="" x="748.44" 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>ret_from_intr (2 samples, 0.01%)</title><rect x="187.7" y="1985" width="0.2" height="15.0" fill="rgb(244,167,47)" rx="2" ry="2" />
<text text-anchor="" x="190.72" 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_def_readable (6 samples, 0.04%)</title><rect x="305.8" y="1841" width="0.5" height="15.0" fill="rgb(223,126,12)" rx="2" ry="2" />
<text text-anchor="" x="308.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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1953" width="1.1" height="15.0" fill="rgb(230,184,48)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>rocksdb::DBImpl::Write (366 samples, 2.71%)</title><rect x="903.8" y="1841" width="32.0" height="15.0" fill="rgb(232,31,32)" rx="2" ry="2" />
<text text-anchor="" x="906.83" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ro..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="753" width="1.1" height="15.0" fill="rgb(227,126,14)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbd2_journal_put_journal_head (2 samples, 0.01%)</title><rect x="1094.8" y="1521" width="0.1" height="15.0" fill="rgb(250,213,35)" rx="2" ry="2" />
<text text-anchor="" x="1097.76" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1489" width="1.1" height="15.0" fill="rgb(205,149,17)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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] (4 samples, 0.03%)</title><rect x="225.7" y="1969" width="0.3" height="15.0" fill="rgb(219,223,4)" rx="2" ry="2" />
<text text-anchor="" x="228.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>rocksdb::DBImpl::BackgroundFlush (30 samples, 0.22%)</title><rect x="976.8" y="1969" width="2.6" height="15.0" fill="rgb(237,186,41)" rx="2" ry="2" />
<text text-anchor="" x="979.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>tcp_rcv_established (2 samples, 0.01%)</title><rect x="62.1" y="1425" width="0.2" height="15.0" fill="rgb(211,150,24)" rx="2" ry="2" />
<text text-anchor="" x="65.13" 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>gpr_stack_lockfree_push (3 samples, 0.02%)</title><rect x="622.4" y="2017" width="0.3" height="15.0" fill="rgb(226,92,6)" rx="2" ry="2" />
<text text-anchor="" x="625.39" 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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1441" width="1.0" height="15.0" fill="rgb(218,60,44)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="417" width="0.5" height="15.0" fill="rgb(229,225,53)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::FindGreaterOrEqual (2 samples, 0.01%)</title><rect x="897.4" y="1729" width="0.1" height="15.0" fill="rgb(249,91,17)" rx="2" ry="2" />
<text text-anchor="" x="900.36" 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>__memcpy_ssse3_back (14 samples, 0.10%)</title><rect x="282.2" y="1921" width="1.2" height="15.0" fill="rgb(242,73,36)" rx="2" ry="2" />
<text text-anchor="" x="285.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>lock_release (3 samples, 0.02%)</title><rect x="569.5" y="1537" width="0.2" height="15.0" fill="rgb(242,191,31)" rx="2" ry="2" />
<text text-anchor="" x="572.48" 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] (12 samples, 0.09%)</title><rect x="181.1" y="225" width="1.0" height="15.0" fill="rgb(217,152,51)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>system_call_fastpath (23 samples, 0.17%)</title><rect x="234.1" y="2017" width="2.0" height="15.0" fill="rgb(215,229,21)" rx="2" ry="2" />
<text text-anchor="" x="237.07" 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>loopback_xmit (3 samples, 0.02%)</title><rect x="714.3" y="1729" width="0.3" height="15.0" fill="rgb(242,150,17)" rx="2" ry="2" />
<text text-anchor="" x="717.31" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1809" width="1.1" height="15.0" fill="rgb(219,188,38)" rx="2" ry="2" />
<text text-anchor="" x="773.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>ip_rcv (2 samples, 0.01%)</title><rect x="42.4" y="1361" width="0.2" height="15.0" fill="rgb(245,124,48)" rx="2" ry="2" />
<text text-anchor="" x="45.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>combiner_exec_uncovered (4 samples, 0.03%)</title><rect x="423.9" y="2001" width="0.4" height="15.0" fill="rgb(242,91,43)" rx="2" ry="2" />
<text text-anchor="" x="426.94" 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>rocksdb::WritableFileWriter::WriteBuffered (210 samples, 1.56%)</title><rect x="905.1" y="1745" width="18.3" height="15.0" fill="rgb(244,219,10)" rx="2" ry="2" />
<text text-anchor="" x="908.06" 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>ret_from_intr (3 samples, 0.02%)</title><rect x="747.5" y="1793" width="0.2" height="15.0" fill="rgb(241,53,42)" rx="2" ry="2" />
<text text-anchor="" x="750.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>_raw_spin_lock_bh (6 samples, 0.04%)</title><rect x="737.7" y="1873" width="0.6" height="15.0" fill="rgb(211,124,11)" rx="2" ry="2" />
<text text-anchor="" x="740.75" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::SkipEmptyDataBlocksForward (83 samples, 0.62%)</title><rect x="1121.3" y="1873" width="7.2" height="15.0" fill="rgb(235,193,34)" rx="2" ry="2" />
<text text-anchor="" x="1124.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_md5_do_lookup (2 samples, 0.01%)</title><rect x="176.9" y="1825" width="0.1" height="15.0" fill="rgb(222,130,37)" rx="2" ry="2" />
<text text-anchor="" x="179.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>grpc_chttp2_list_add_writable_stream (2 samples, 0.01%)</title><rect x="427.0" y="1969" width="0.2" height="15.0" fill="rgb(210,137,35)" rx="2" ry="2" />
<text text-anchor="" x="430.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>__lll_unlock_wake (2 samples, 0.01%)</title><rect x="208.0" y="2001" width="0.2" height="15.0" fill="rgb(222,145,20)" rx="2" ry="2" />
<text text-anchor="" x="211.01" 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>lock_is_held (2 samples, 0.01%)</title><rect x="601.6" y="1905" width="0.1" height="15.0" fill="rgb(224,85,19)" rx="2" ry="2" />
<text text-anchor="" x="604.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1697" width="1.0" height="15.0" fill="rgb(242,92,16)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>lock_release (3 samples, 0.02%)</title><rect x="304.0" y="1857" width="0.2" height="15.0" fill="rgb(220,77,51)" rx="2" ry="2" />
<text text-anchor="" x="306.95" 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>sch_direct_xmit (18 samples, 0.13%)</title><rect x="360.2" y="1729" width="1.6" height="15.0" fill="rgb(212,211,32)" rx="2" ry="2" />
<text text-anchor="" x="363.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>protobuf::stream::CodedInputStream::merge_message::h88c64e61100ab6bb (14 samples, 0.10%)</title><rect x="75.9" y="1857" width="1.2" height="15.0" fill="rgb(252,162,6)" rx="2" ry="2" />
<text text-anchor="" x="78.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>pthread_mutex_lock (3 samples, 0.02%)</title><rect x="790.1" y="2017" width="0.3" height="15.0" fill="rgb(254,74,38)" rx="2" ry="2" />
<text text-anchor="" x="793.14" 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>malloc (9 samples, 0.07%)</title><rect x="592.3" y="33" width="0.8" height="15.0" fill="rgb(244,54,45)" rx="2" ry="2" />
<text text-anchor="" x="595.30" 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>fget_light (6 samples, 0.04%)</title><rect x="855.1" y="1857" width="0.5" height="15.0" fill="rgb(249,23,22)" rx="2" ry="2" />
<text text-anchor="" x="858.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>protobuf::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (8 samples, 0.06%)</title><rect x="689.9" y="1841" width="0.7" height="15.0" fill="rgb(251,7,33)" rx="2" ry="2" />
<text text-anchor="" x="692.91" 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>unmap_page_range (2 samples, 0.01%)</title><rect x="194.9" y="1937" width="0.2" height="15.0" fill="rgb(214,26,25)" rx="2" ry="2" />
<text text-anchor="" x="197.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>rocksdb::rocksdb::DBIterator::next::hda0eb64ca00b7b9c (50 samples, 0.37%)</title><rect x="1163.2" y="1905" width="4.4" height="15.0" fill="rgb(253,76,31)" rx="2" ry="2" />
<text text-anchor="" x="1166.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>ext4_journal_check_start (4 samples, 0.03%)</title><rect x="1077.0" y="1617" width="0.4" height="15.0" fill="rgb(251,162,41)" rx="2" ry="2" />
<text text-anchor="" x="1080.00" 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_finish_output (65 samples, 0.48%)</title><rect x="506.3" y="1793" width="5.7" height="15.0" fill="rgb(246,23,32)" rx="2" ry="2" />
<text text-anchor="" x="509.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="1457" width="1.1" height="15.0" fill="rgb(208,103,4)" rx="2" ry="2" />
<text text-anchor="" x="393.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>mark_page_accessed (8 samples, 0.06%)</title><rect x="1098.0" y="1649" width="0.7" height="15.0" fill="rgb(214,8,1)" rx="2" ry="2" />
<text text-anchor="" x="1100.99" 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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (2 samples, 0.01%)</title><rect x="822.7" y="1825" width="0.1" height="15.0" fill="rgb(224,228,18)" rx="2" ry="2" />
<text text-anchor="" x="825.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1073" width="1.9" height="15.0" fill="rgb(247,217,49)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="1083.5" font-size="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 (718 samples, 5.32%)</title><rect x="114.6" y="1937" width="62.8" height="15.0" fill="rgb(215,221,3)" rx="2" ry="2" />
<text text-anchor="" x="117.60" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sock_s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timer_callback (3 samples, 0.02%)</title><rect x="698.8" y="1953" width="0.3" height="15.0" fill="rgb(250,172,48)" rx="2" ry="2" />
<text text-anchor="" x="701.83" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1265" width="1.8" height="15.0" fill="rgb(239,28,22)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>rocksdb::ThreadLocalPtr::StaticMeta::Get (2 samples, 0.01%)</title><rect x="48.3" y="1809" width="0.2" height="15.0" fill="rgb(237,25,26)" rx="2" ry="2" />
<text text-anchor="" x="51.31" 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_current_mss (11 samples, 0.08%)</title><rect x="176.2" y="1873" width="0.9" height="15.0" fill="rgb(237,217,43)" rx="2" ry="2" />
<text text-anchor="" x="179.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>grpc::async::executor::poll::ha9391dc4b3a313b1 (334 samples, 2.48%)</title><rect x="459.4" y="1937" width="29.2" height="15.0" fill="rgb(248,218,29)" rx="2" ry="2" />
<text text-anchor="" x="462.37" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_tkill (31 samples, 0.23%)</title><rect x="410.7" y="1953" width="2.7" height="15.0" fill="rgb(242,29,26)" rx="2" ry="2" />
<text text-anchor="" x="413.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>__libc_sendmsg (2 samples, 0.01%)</title><rect x="193.1" y="2017" width="0.1" height="15.0" fill="rgb(205,113,34)" rx="2" ry="2" />
<text text-anchor="" x="196.05" 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$kvproto..eraftpb..Entry$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::hb1f38a70abc626b2 (2 samples, 0.01%)</title><rect x="264.2" y="1825" width="0.1" height="15.0" fill="rgb(234,221,11)" rx="2" ry="2" />
<text text-anchor="" x="267.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="785" width="1.1" height="15.0" fill="rgb(246,26,11)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tikv::raftstore::store::peer::Peer::post_propose::hd7f7194a02ce6937 (25 samples, 0.19%)</title><rect x="964.9" y="1889" width="2.2" height="15.0" fill="rgb(253,102,27)" rx="2" ry="2" />
<text text-anchor="" x="967.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>_$LT$protobuf..singular..SingularPtrField$LT$T$GT$$GT$::set_default::h7f298104376dbe5d (3 samples, 0.02%)</title><rect x="79.2" y="1857" width="0.2" height="15.0" fill="rgb(219,202,20)" rx="2" ry="2" />
<text text-anchor="" x="82.18" 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>lock_release (6 samples, 0.04%)</title><rect x="739.3" y="1873" width="0.5" height="15.0" fill="rgb(209,129,32)" rx="2" ry="2" />
<text text-anchor="" x="742.32" 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>netif_rx_internal (16 samples, 0.12%)</title><rect x="358.1" y="1681" width="1.4" height="15.0" fill="rgb(233,85,0)" rx="2" ry="2" />
<text text-anchor="" x="361.09" 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>protobuf::stream::CodedInputStream::read_tag_unpack::h60700b1f76c3f32e (2 samples, 0.01%)</title><rect x="79.9" y="1857" width="0.2" height="15.0" fill="rgb(240,72,54)" rx="2" ry="2" />
<text text-anchor="" x="82.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1105" width="3.2" height="15.0" fill="rgb(223,135,18)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="1115.5" font-size="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..async..CqFuture$LT$T$GT$$u20$as$u20$futures..future..Future$GT$::poll::h66d147b58b1133be (10 samples, 0.07%)</title><rect x="670.8" y="1873" width="0.8" height="15.0" fill="rgb(222,76,1)" rx="2" ry="2" />
<text text-anchor="" x="673.75" 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>rocksdb::WriteBatchInternal::Delete (2 samples, 0.01%)</title><rect x="832.1" y="1873" width="0.2" height="15.0" fill="rgb(237,8,29)" rx="2" ry="2" />
<text text-anchor="" x="835.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>lock_is_held (2 samples, 0.01%)</title><rect x="916.2" y="1473" width="0.1" height="15.0" fill="rgb(232,40,26)" rx="2" ry="2" />
<text text-anchor="" x="919.17" 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>_raw_spin_unlock_irqrestore (11 samples, 0.08%)</title><rect x="510.5" y="1425" width="1.0" height="15.0" fill="rgb(237,8,44)" rx="2" ry="2" />
<text text-anchor="" x="513.53" 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>lock_acquire (13 samples, 0.10%)</title><rect x="504.8" y="1841" width="1.1" height="15.0" fill="rgb(206,8,35)" rx="2" ry="2" />
<text text-anchor="" x="507.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>clock_gettime (4 samples, 0.03%)</title><rect x="596.7" y="2001" width="0.3" height="15.0" fill="rgb(225,174,6)" rx="2" ry="2" />
<text text-anchor="" x="599.68" 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>grpc::call::SinkBase::poll_complete::hc31bf7164390422b (11 samples, 0.08%)</title><rect x="259.5" y="1889" width="1.0" height="15.0" fill="rgb(229,86,12)" rx="2" ry="2" />
<text text-anchor="" x="262.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>schedule (3 samples, 0.02%)</title><rect x="391.3" y="1905" width="0.3" height="15.0" fill="rgb(221,31,12)" rx="2" ry="2" />
<text text-anchor="" x="394.32" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1025" width="1.1" height="15.0" fill="rgb(208,209,37)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="1035.5" font-size="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_unlinkat (34 samples, 0.25%)</title><rect x="990.3" y="1889" width="3.0" height="15.0" fill="rgb(245,25,4)" rx="2" ry="2" />
<text text-anchor="" x="993.33" 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>LZ4_decompress_generic (4 samples, 0.03%)</title><rect x="1159.9" y="2017" width="0.4" height="15.0" fill="rgb(211,188,15)" rx="2" ry="2" />
<text text-anchor="" x="1162.91" 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 (5 samples, 0.04%)</title><rect x="304.7" y="1873" width="0.5" height="15.0" fill="rgb(215,64,11)" rx="2" ry="2" />
<text text-anchor="" x="307.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>ip_queue_xmit (327 samples, 2.42%)</title><rect x="355.6" y="1825" width="28.6" height="15.0" fill="rgb(213,189,36)" rx="2" ry="2" />
<text text-anchor="" x="358.64" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::read_raw_byte::ha2cb1055a4a0050e (2 samples, 0.01%)</title><rect x="689.2" y="1809" width="0.2" height="15.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="692.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>_$LT$kvproto..kvrpcpb..RawPutRequest$u20$as$u20$protobuf..core..Message$GT$::merge_from::h5578a357f333059a (8 samples, 0.06%)</title><rect x="284.4" y="1905" width="0.7" height="15.0" fill="rgb(220,8,38)" rx="2" ry="2" />
<text text-anchor="" x="287.36" 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>lock_is_held (3 samples, 0.02%)</title><rect x="380.4" y="1633" width="0.3" height="15.0" fill="rgb(253,111,32)" rx="2" ry="2" />
<text text-anchor="" x="383.39" 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] (12 samples, 0.09%)</title><rect x="770.0" y="705" width="1.1" height="15.0" fill="rgb(210,221,41)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="715.5" font-size="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] (12 samples, 0.09%)</title><rect x="770.0" y="513" width="1.1" height="15.0" fill="rgb(208,134,26)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>rocksdb::MergingIterator::Next (29 samples, 0.21%)</title><rect x="1164.9" y="1873" width="2.5" height="15.0" fill="rgb(253,162,25)" rx="2" ry="2" />
<text text-anchor="" x="1167.90" 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] (12 samples, 0.09%)</title><rect x="181.1" y="481" width="1.0" height="15.0" fill="rgb(230,52,47)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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] (12 samples, 0.09%)</title><rect x="770.0" y="529" width="1.1" height="15.0" fill="rgb(248,189,54)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1345" width="0.2" height="15.0" fill="rgb(244,185,6)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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 (477 samples, 3.54%)</title><rect x="134.3" y="1889" width="41.7" height="15.0" fill="rgb(252,202,51)" rx="2" ry="2" />
<text text-anchor="" x="137.28" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tcp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcpy_ssse3_back (8 samples, 0.06%)</title><rect x="817.9" y="1905" width="0.7" height="15.0" fill="rgb(219,81,31)" rx="2" ry="2" />
<text text-anchor="" x="820.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>skb_release_all (30 samples, 0.22%)</title><rect x="500.6" y="1873" width="2.6" height="15.0" fill="rgb(206,144,40)" rx="2" ry="2" />
<text text-anchor="" x="503.56" 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..then..Then$LT$A$C$$u20$B$C$$u20$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::hbe23fdc11ef511cb (145 samples, 1.07%)</title><rect x="269.5" y="1921" width="12.7" height="15.0" fill="rgb(231,72,26)" rx="2" ry="2" />
<text text-anchor="" x="272.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>_$LT$tikv..raft..raft_log..RaftLog$LT$T$GT$$GT$::slice::hac66c5be4b0928a3 (2 samples, 0.01%)</title><rect x="872.3" y="1841" width="0.2" height="15.0" fill="rgb(244,192,34)" rx="2" ry="2" />
<text text-anchor="" x="875.35" 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>grpc_error_unref (3 samples, 0.02%)</title><rect x="445.5" y="2033" width="0.2" height="15.0" fill="rgb(236,81,54)" rx="2" ry="2" />
<text text-anchor="" x="448.46" 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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1505" width="0.1" height="15.0" fill="rgb(214,162,14)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1121" width="1.8" height="15.0" fill="rgb(210,0,37)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="1131.5" font-size="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_irq (3 samples, 0.02%)</title><rect x="1161.8" y="1569" width="0.2" height="15.0" fill="rgb(251,120,31)" rx="2" ry="2" />
<text text-anchor="" x="1164.75" 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>kmem_cache_alloc (6 samples, 0.04%)</title><rect x="1073.9" y="1553" width="0.6" height="15.0" fill="rgb(243,193,51)" rx="2" ry="2" />
<text text-anchor="" x="1076.94" 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>delay_tsc (12 samples, 0.09%)</title><rect x="519.5" y="1825" width="1.0" height="15.0" fill="rgb(244,154,47)" rx="2" ry="2" />
<text text-anchor="" x="522.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>pollset_kick (5 samples, 0.04%)</title><rect x="618.1" y="2001" width="0.4" height="15.0" fill="rgb(234,28,8)" rx="2" ry="2" />
<text text-anchor="" x="621.10" 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>tikv::raftstore::store::peer_storage::PeerStorage::term::h6d069a706a2a138e (2 samples, 0.01%)</title><rect x="868.4" y="1809" width="0.2" height="15.0" fill="rgb(227,17,45)" rx="2" ry="2" />
<text text-anchor="" x="871.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>__add_to_page_cache_locked (2 samples, 0.01%)</title><rect x="984.7" y="1569" width="0.2" height="15.0" fill="rgb(215,113,49)" rx="2" ry="2" />
<text text-anchor="" x="987.73" 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>lockdep_init_map (6 samples, 0.04%)</title><rect x="907.7" y="1489" width="0.5" height="15.0" fill="rgb(220,218,51)" rx="2" ry="2" />
<text text-anchor="" x="910.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>timer_callback (7 samples, 0.05%)</title><rect x="698.5" y="2017" width="0.6" height="15.0" fill="rgb(212,183,26)" rx="2" ry="2" />
<text text-anchor="" x="701.48" 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>pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="20.7" y="2033" width="0.1" height="15.0" fill="rgb(222,58,4)" rx="2" ry="2" />
<text text-anchor="" x="23.67" 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>fget_light (26 samples, 0.19%)</title><rect x="589.6" y="1937" width="2.3" height="15.0" fill="rgb(243,189,44)" rx="2" ry="2" />
<text text-anchor="" x="592.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>timer_callback (4 samples, 0.03%)</title><rect x="491.2" y="1985" width="0.4" height="15.0" fill="rgb(224,168,23)" rx="2" ry="2" />
<text text-anchor="" x="494.20" 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>_raw_spin_unlock_irqrestore (11 samples, 0.08%)</title><rect x="404.5" y="1937" width="1.0" height="15.0" fill="rgb(215,118,28)" rx="2" ry="2" />
<text text-anchor="" x="407.53" 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>lock_release (5 samples, 0.04%)</title><rect x="203.3" y="1953" width="0.4" height="15.0" fill="rgb(250,70,50)" rx="2" ry="2" />
<text text-anchor="" x="206.28" 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_queue_xmit (57 samples, 0.42%)</title><rect x="106.8" y="1841" width="5.0" height="15.0" fill="rgb(223,170,49)" rx="2" ry="2" />
<text text-anchor="" x="109.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>grpc::call::StreamingBase::poll::h64f8f0b2fb4e84d3 (13 samples, 0.10%)</title><rect x="475.3" y="1905" width="1.1" height="15.0" fill="rgb(226,57,37)" rx="2" ry="2" />
<text text-anchor="" x="478.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="497" width="1.0" height="15.0" fill="rgb(209,135,40)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>offload (6 samples, 0.04%)</title><rect x="657.3" y="2001" width="0.5" height="15.0" fill="rgb(239,28,20)" rx="2" ry="2" />
<text text-anchor="" x="660.29" 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>core::ptr::drop_in_place::h12862241b4e6da11 (2 samples, 0.01%)</title><rect x="462.6" y="1873" width="0.2" height="15.0" fill="rgb(221,13,27)" rx="2" ry="2" />
<text text-anchor="" x="465.60" 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>_raw_spin_unlock_irqrestore (68 samples, 0.50%)</title><rect x="373.2" y="1489" width="6.0" height="15.0" fill="rgb(244,76,2)" rx="2" ry="2" />
<text text-anchor="" x="376.22" 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] (12 samples, 0.09%)</title><rect x="181.1" y="369" width="1.0" height="15.0" fill="rgb(220,112,36)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>ret_from_intr (2 samples, 0.01%)</title><rect x="745.4" y="1777" width="0.2" height="15.0" fill="rgb(245,108,36)" rx="2" ry="2" />
<text text-anchor="" x="748.44" 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] (21 samples, 0.16%)</title><rect x="10.3" y="993" width="1.8" height="15.0" fill="rgb(236,223,6)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="1003.5" font-size="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] (5 samples, 0.04%)</title><rect x="1168.2" y="1649" width="0.5" height="15.0" fill="rgb(227,176,35)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="177" width="0.1" height="15.0" fill="rgb(248,39,23)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="161.8" y="1457" width="0.2" height="15.0" fill="rgb(234,157,10)" rx="2" ry="2" />
<text text-anchor="" x="164.83" 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>_raw_spin_unlock_irqrestore (8 samples, 0.06%)</title><rect x="316.3" y="1441" width="0.7" height="15.0" fill="rgb(249,139,12)" rx="2" ry="2" />
<text text-anchor="" x="319.28" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="1601" width="0.1" height="15.0" fill="rgb(246,149,53)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>start_thread (55 samples, 0.41%)</title><rect x="832.0" y="2033" width="4.8" height="15.0" fill="rgb(225,44,53)" rx="2" ry="2" />
<text text-anchor="" x="835.03" 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>sdallocx (2 samples, 0.01%)</title><rect x="21.0" y="2033" width="0.2" height="15.0" fill="rgb(224,189,9)" rx="2" ry="2" />
<text text-anchor="" x="24.02" 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>sys_pread64 (49 samples, 0.36%)</title><rect x="1121.5" y="1729" width="4.3" height="15.0" fill="rgb(222,49,50)" rx="2" ry="2" />
<text text-anchor="" x="1124.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>__list_del_entry (2 samples, 0.01%)</title><rect x="405.7" y="1905" width="0.1" height="15.0" fill="rgb(243,189,43)" rx="2" ry="2" />
<text text-anchor="" x="408.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>__might_sleep (2 samples, 0.01%)</title><rect x="1141.1" y="1713" width="0.2" height="15.0" fill="rgb(239,66,30)" rx="2" ry="2" />
<text text-anchor="" x="1144.11" 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] (2 samples, 0.01%)</title><rect x="830.8" y="2033" width="0.2" height="15.0" fill="rgb(209,27,22)" rx="2" ry="2" />
<text text-anchor="" x="833.80" 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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1121" width="3.2" height="15.0" fill="rgb(210,191,31)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="1131.5" font-size="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$tikv..raftstore..store..store..Store$LT$T$C$$u20$C$GT$$GT$::on_raft_message::h78badd38c1cc2694 (236 samples, 1.75%)</title><rect x="856.3" y="1905" width="20.6" height="15.0" fill="rgb(223,171,20)" rx="2" ry="2" />
<text text-anchor="" x="859.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1905" width="1.9" height="15.0" fill="rgb(210,41,15)" rx="2" ry="2" />
<text text-anchor="" x="595.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>start_transport_stream_op_batch (2 samples, 0.01%)</title><rect x="432.3" y="2017" width="0.2" height="15.0" fill="rgb(251,182,5)" rx="2" ry="2" />
<text text-anchor="" x="435.34" 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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1489" width="3.2" height="15.0" fill="rgb(238,39,3)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>rocksdb::BlockIter::ParseNextKey (18 samples, 0.13%)</title><rect x="1119.6" y="1857" width="1.6" height="15.0" fill="rgb(228,193,48)" rx="2" ry="2" />
<text text-anchor="" x="1122.60" 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.17.so] (9 samples, 0.07%)</title><rect x="699.5" y="2033" width="0.8" height="15.0" fill="rgb(242,79,34)" rx="2" ry="2" />
<text text-anchor="" x="702.53" 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>gpr_ref (8 samples, 0.06%)</title><rect x="492.9" y="1985" width="0.7" height="15.0" fill="rgb(252,168,26)" rx="2" ry="2" />
<text text-anchor="" x="495.95" 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_rcv (71 samples, 0.53%)</title><rect x="716.6" y="1649" width="6.2" height="15.0" fill="rgb(225,86,24)" rx="2" ry="2" />
<text text-anchor="" x="719.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>__alloc_pages_nodemask (7 samples, 0.05%)</title><rect x="915.1" y="1521" width="0.6" height="15.0" fill="rgb(209,0,35)" rx="2" ry="2" />
<text text-anchor="" x="918.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>_$LT$grpc..async..CqFuture$LT$T$GT$$u20$as$u20$futures..future..Future$GT$::poll::h66d147b58b1133be (8 samples, 0.06%)</title><rect x="463.1" y="1873" width="0.7" height="15.0" fill="rgb(241,24,19)" rx="2" ry="2" />
<text text-anchor="" x="466.13" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1073" width="1.8" height="15.0" fill="rgb(206,37,29)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="1083.5" font-size="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] (21 samples, 0.16%)</title><rect x="10.3" y="801" width="1.8" height="15.0" fill="rgb(235,220,51)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="811.5" font-size="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] (21 samples, 0.16%)</title><rect x="592.2" y="1665" width="1.9" height="15.0" fill="rgb(237,187,35)" rx="2" ry="2" />
<text text-anchor="" x="595.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>block_write_end (21 samples, 0.16%)</title><rect x="1096.0" y="1617" width="1.8" height="15.0" fill="rgb(254,163,33)" rx="2" ry="2" />
<text text-anchor="" x="1098.98" 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>_raw_spin_unlock_irq (2 samples, 0.01%)</title><rect x="615.0" y="1857" width="0.2" height="15.0" fill="rgb(232,51,16)" rx="2" ry="2" />
<text text-anchor="" x="618.04" 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_sync_read (11 samples, 0.08%)</title><rect x="1129.5" y="1713" width="0.9" height="15.0" fill="rgb(206,146,20)" rx="2" ry="2" />
<text text-anchor="" x="1132.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>ext4_get_inode_flags (2 samples, 0.01%)</title><rect x="45.3" y="1521" width="0.2" height="15.0" fill="rgb(222,158,3)" rx="2" ry="2" />
<text text-anchor="" x="48.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>_$LT$std..sync..mpsc..mpsc_queue..Queue$LT$T$GT$$GT$::pop::hdff4b908a1418db5 (4 samples, 0.03%)</title><rect x="23.2" y="1921" width="0.4" height="15.0" fill="rgb(230,16,52)" rx="2" ry="2" />
<text text-anchor="" x="26.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>memcpy_toiovec (24 samples, 0.18%)</title><rect x="711.1" y="1873" width="2.1" height="15.0" fill="rgb(217,113,43)" rx="2" ry="2" />
<text text-anchor="" x="714.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] (37 samples, 0.27%)</title><rect x="837.4" y="785" width="3.2" height="15.0" fill="rgb(251,174,14)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="795.5" font-size="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_reset_timer (52 samples, 0.39%)</title><rect x="546.8" y="1825" width="4.6" height="15.0" fill="rgb(207,100,29)" rx="2" ry="2" />
<text text-anchor="" x="549.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>crocksdb_write (366 samples, 2.71%)</title><rect x="903.8" y="1857" width="32.0" height="15.0" fill="rgb(205,92,19)" rx="2" ry="2" />
<text text-anchor="" x="906.83" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gpr_mpscq_push (2 samples, 0.01%)</title><rect x="227.9" y="2001" width="0.1" height="15.0" fill="rgb(241,65,7)" rx="2" ry="2" />
<text text-anchor="" x="230.86" 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>napi_gro_receive (2 samples, 0.01%)</title><rect x="497.1" y="1857" width="0.2" height="15.0" fill="rgb(252,70,51)" rx="2" ry="2" />
<text text-anchor="" x="500.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>lock_acquire (3 samples, 0.02%)</title><rect x="40.4" y="1553" width="0.3" height="15.0" fill="rgb(234,28,6)" rx="2" ry="2" />
<text text-anchor="" x="43.44" 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$tikv..util..logger..Logger$LT$W$GT$$u20$as$u20$log..Log$GT$::log::h34fd7d073ccaa993 (5 samples, 0.04%)</title><rect x="86.0" y="1857" width="0.4" height="15.0" fill="rgb(226,225,44)" rx="2" ry="2" />
<text text-anchor="" x="89.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>std::string::_M_mutate (3 samples, 0.02%)</title><rect x="993.3" y="2033" width="0.3" height="15.0" fill="rgb(232,179,25)" rx="2" ry="2" />
<text text-anchor="" x="996.30" 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>vfs_write (46 samples, 0.34%)</title><rect x="943.0" y="1777" width="4.0" height="15.0" fill="rgb(252,155,37)" rx="2" ry="2" />
<text text-anchor="" x="946.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>start_xmit (17 samples, 0.13%)</title><rect x="558.4" y="1697" width="1.5" height="15.0" fill="rgb(234,156,40)" rx="2" ry="2" />
<text text-anchor="" x="561.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>__GI___libc_read (9 samples, 0.07%)</title><rect x="394.4" y="2017" width="0.8" height="15.0" fill="rgb(214,141,30)" rx="2" ry="2" />
<text text-anchor="" x="397.38" 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_established_options (2 samples, 0.01%)</title><rect x="385.8" y="1857" width="0.2" height="15.0" fill="rgb(235,139,46)" rx="2" ry="2" />
<text text-anchor="" x="388.81" 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_sk (57 samples, 0.42%)</title><rect x="106.8" y="1825" width="5.0" height="15.0" fill="rgb(231,45,14)" rx="2" ry="2" />
<text text-anchor="" x="109.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>might_fault (97 samples, 0.72%)</title><rect x="524.4" y="1889" width="8.5" height="15.0" fill="rgb(217,87,6)" rx="2" ry="2" />
<text text-anchor="" x="527.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>copy_user_enhanced_fast_string (8 samples, 0.06%)</title><rect x="307.0" y="1873" width="0.7" height="15.0" fill="rgb(226,180,41)" rx="2" ry="2" />
<text text-anchor="" x="310.01" 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>syscall (3 samples, 0.02%)</title><rect x="976.2" y="2033" width="0.2" height="15.0" fill="rgb(212,115,19)" rx="2" ry="2" />
<text text-anchor="" x="979.16" 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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="497" width="1.1" height="15.0" fill="rgb(233,68,1)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>__sys_sendmsg (783 samples, 5.80%)</title><rect x="112.6" y="1969" width="68.5" height="15.0" fill="rgb(212,19,27)" rx="2" ry="2" />
<text text-anchor="" x="115.59" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sys_s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (3 samples, 0.02%)</title><rect x="281.6" y="1857" width="0.3" height="15.0" fill="rgb(243,178,35)" rx="2" ry="2" />
<text text-anchor="" x="284.65" 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>rocksdb::DBImpl::DeleteObsoleteFileImpl (129 samples, 0.96%)</title><rect x="1146.7" y="1953" width="11.3" height="15.0" fill="rgb(241,48,33)" rx="2" ry="2" />
<text text-anchor="" x="1149.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>[libpthread-2.17.so] (2 samples, 0.01%)</title><rect x="837.2" y="2033" width="0.2" height="15.0" fill="rgb(226,82,18)" rx="2" ry="2" />
<text text-anchor="" x="840.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>ext4_evict_inode (9 samples, 0.07%)</title><rect x="979.4" y="1841" width="0.8" height="15.0" fill="rgb(242,139,27)" rx="2" ry="2" />
<text text-anchor="" x="982.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>__memset_sse2 (13 samples, 0.10%)</title><rect x="398.3" y="2017" width="1.2" height="15.0" fill="rgb(254,1,24)" rx="2" ry="2" />
<text text-anchor="" x="401.32" 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>lock_is_held (3 samples, 0.02%)</title><rect x="722.8" y="1649" width="0.3" height="15.0" fill="rgb(233,78,50)" rx="2" ry="2" />
<text text-anchor="" x="725.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>_$LT$kvproto..raft_cmdpb..PutRequest$u20$as$u20$protobuf..core..Message$GT$::merge_from::hf8cc7d007c28116e (14 samples, 0.10%)</title><rect x="78.0" y="1857" width="1.2" height="15.0" fill="rgb(208,186,38)" rx="2" ry="2" />
<text text-anchor="" x="80.96" 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>futex_wait (6 samples, 0.04%)</title><rect x="193.2" y="1953" width="0.6" height="15.0" fill="rgb(253,19,22)" rx="2" ry="2" />
<text text-anchor="" x="196.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>do_sync_write (181 samples, 1.34%)</title><rect x="907.1" y="1665" width="15.8" height="15.0" fill="rgb(212,221,47)" rx="2" ry="2" />
<text text-anchor="" x="910.07" 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] (21 samples, 0.16%)</title><rect x="592.2" y="1569" width="1.9" height="15.0" fill="rgb(235,157,27)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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::core::Message::write_to_vec::hda7b790c7eae485c (70 samples, 0.52%)</title><rect x="260.5" y="1873" width="6.1" height="15.0" fill="rgb(240,196,30)" rx="2" ry="2" />
<text text-anchor="" x="263.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>[unknown] (13 samples, 0.10%)</title><rect x="390.2" y="497" width="1.1" height="15.0" fill="rgb(215,199,2)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>_$LT$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::write_to_with_cached_sizes::he321246aec1004b7 (45 samples, 0.33%)</title><rect x="674.3" y="1857" width="3.9" height="15.0" fill="rgb(222,113,38)" rx="2" ry="2" />
<text text-anchor="" x="677.25" 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>ext4_sync_file (53 samples, 0.39%)</title><rect x="1138.0" y="1809" width="4.7" height="15.0" fill="rgb(221,195,36)" rx="2" ry="2" />
<text text-anchor="" x="1141.05" 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 (34 samples, 0.25%)</title><rect x="852.1" y="1825" width="3.0" height="15.0" fill="rgb(238,83,2)" rx="2" ry="2" />
<text text-anchor="" x="855.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>mio::sys::unix::awakener::pipe::Awakener::cleanup::h04d87b782e4d1f66 (27 samples, 0.20%)</title><rect x="1186.0" y="1921" width="2.3" height="15.0" fill="rgb(238,114,30)" rx="2" ry="2" />
<text text-anchor="" x="1188.98" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="401" width="0.1" height="15.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>_raw_spin_unlock_irqrestore (6 samples, 0.04%)</title><rect x="1125.0" y="1617" width="0.5" height="15.0" fill="rgb(207,141,30)" rx="2" ry="2" />
<text text-anchor="" x="1128.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>sys_rt_sigreturn (8 samples, 0.06%)</title><rect x="606.1" y="1985" width="0.7" height="15.0" fill="rgb(227,226,20)" rx="2" ry="2" />
<text text-anchor="" x="609.12" 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>kvproto::raft_cmdpb::RaftRequestHeader::new::h0a22f491b89b16e2 (2 samples, 0.01%)</title><rect x="696.6" y="1873" width="0.1" height="15.0" fill="rgb(251,225,45)" rx="2" ry="2" />
<text text-anchor="" x="699.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>rocksdb::WritableFileWriter::Sync (60 samples, 0.44%)</title><rect x="1137.4" y="1905" width="5.3" height="15.0" fill="rgb(214,4,26)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>do_softirq (46 samples, 0.34%)</title><rect x="107.8" y="1761" width="4.0" height="15.0" fill="rgb(214,94,18)" rx="2" ry="2" />
<text text-anchor="" x="110.78" 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>futex_wait_queue_me (2 samples, 0.01%)</title><rect x="71.2" y="1729" width="0.2" height="15.0" fill="rgb(247,110,1)" rx="2" ry="2" />
<text text-anchor="" x="74.22" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="321" width="0.1" height="15.0" fill="rgb(209,227,14)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>__schedule (24 samples, 0.18%)</title><rect x="1174.3" y="1809" width="2.1" height="15.0" fill="rgb(212,131,46)" rx="2" ry="2" />
<text text-anchor="" x="1177.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>new_handle (20 samples, 0.15%)</title><rect x="911.0" y="1537" width="1.8" height="15.0" fill="rgb(228,18,47)" rx="2" ry="2" />
<text text-anchor="" x="914.01" 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] (37 samples, 0.27%)</title><rect x="837.4" y="1265" width="3.2" height="15.0" fill="rgb(226,207,7)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>free_buffer_head (5 samples, 0.04%)</title><rect x="1162.2" y="1457" width="0.4" height="15.0" fill="rgb(209,24,54)" rx="2" ry="2" />
<text text-anchor="" x="1165.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>_raw_read_unlock (5 samples, 0.04%)</title><rect x="1082.3" y="1585" width="0.5" height="15.0" fill="rgb(242,66,48)" rx="2" ry="2" />
<text text-anchor="" x="1085.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>pthread_mutex_unlock (3 samples, 0.02%)</title><rect x="82.9" y="1857" width="0.2" height="15.0" fill="rgb(211,182,52)" rx="2" ry="2" />
<text text-anchor="" x="85.85" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1969" width="1.1" height="15.0" fill="rgb(229,175,13)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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_send_delayed_ack (9 samples, 0.07%)</title><rect x="372.0" y="1505" width="0.8" height="15.0" fill="rgb(245,90,9)" rx="2" ry="2" />
<text text-anchor="" x="374.99" 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>lock_acquire (3 samples, 0.02%)</title><rect x="72.0" y="1761" width="0.3" height="15.0" fill="rgb(221,126,7)" rx="2" ry="2" />
<text text-anchor="" x="75.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>lock_acquire (19 samples, 0.14%)</title><rect x="121.0" y="1873" width="1.6" height="15.0" fill="rgb(209,168,2)" rx="2" ry="2" />
<text text-anchor="" x="123.99" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="833" width="0.5" height="15.0" fill="rgb(251,113,25)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="843.5" font-size="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] (12 samples, 0.09%)</title><rect x="770.0" y="785" width="1.1" height="15.0" fill="rgb(231,207,0)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="795.5" font-size="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] (21 samples, 0.16%)</title><rect x="10.3" y="657" width="1.8" height="15.0" fill="rgb(205,127,10)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="667.5" font-size="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 (15 samples, 0.11%)</title><rect x="566.6" y="1553" width="1.3" height="15.0" fill="rgb(253,159,2)" rx="2" ry="2" />
<text text-anchor="" x="569.59" 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>lock_release (3 samples, 0.02%)</title><rect x="769.6" y="1921" width="0.2" height="15.0" fill="rgb(245,224,18)" rx="2" ry="2" />
<text text-anchor="" x="772.58" 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>might_fault (17 samples, 0.13%)</title><rect x="504.6" y="1857" width="1.5" height="15.0" fill="rgb(240,217,19)" rx="2" ry="2" />
<text text-anchor="" x="507.58" 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>zap_page_range (7 samples, 0.05%)</title><rect x="603.8" y="1969" width="0.7" height="15.0" fill="rgb(208,161,7)" rx="2" ry="2" />
<text text-anchor="" x="606.85" 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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (2 samples, 0.01%)</title><rect x="688.2" y="1841" width="0.2" height="15.0" fill="rgb(233,122,20)" rx="2" ry="2" />
<text text-anchor="" x="691.25" 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>gpr_mpscq_pop (4 samples, 0.03%)</title><rect x="452.2" y="2017" width="0.3" height="15.0" fill="rgb(233,90,53)" rx="2" ry="2" />
<text text-anchor="" x="455.19" 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>__put_single_page (18 samples, 0.13%)</title><rect x="500.9" y="1825" width="1.6" height="15.0" fill="rgb(251,154,49)" rx="2" ry="2" />
<text text-anchor="" x="503.91" 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>rocksdb::MemTable::UpdateFlushState (6 samples, 0.04%)</title><rect x="931.8" y="1745" width="0.5" height="15.0" fill="rgb(223,67,28)" rx="2" ry="2" />
<text text-anchor="" x="934.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>grpc_chttp2_list_add_writable_stream (2 samples, 0.01%)</title><rect x="633.8" y="1969" width="0.2" height="15.0" fill="rgb(230,80,50)" rx="2" ry="2" />
<text text-anchor="" x="636.85" 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>__lll_lock_wait (3 samples, 0.02%)</title><rect x="391.3" y="2001" width="0.3" height="15.0" fill="rgb(226,180,24)" rx="2" ry="2" />
<text text-anchor="" x="394.32" 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] (13 samples, 0.10%)</title><rect x="390.2" y="1825" width="1.1" height="15.0" fill="rgb(229,20,19)" rx="2" ry="2" />
<text text-anchor="" x="393.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>_raw_spin_unlock_irqrestore (4 samples, 0.03%)</title><rect x="853.2" y="1777" width="0.3" height="15.0" fill="rgb(220,59,29)" rx="2" ry="2" />
<text text-anchor="" x="856.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>rocksdb::(anonymous namespace)::SkipListRep::Iterator::Next (3 samples, 0.02%)</title><rect x="986.8" y="1873" width="0.3" height="15.0" fill="rgb(208,187,7)" rx="2" ry="2" />
<text text-anchor="" x="989.83" 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>alloc_pages_vma (3 samples, 0.02%)</title><rect x="605.3" y="1921" width="0.3" height="15.0" fill="rgb(226,147,8)" rx="2" ry="2" />
<text text-anchor="" x="608.34" 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] (21 samples, 0.16%)</title><rect x="10.3" y="817" width="1.8" height="15.0" fill="rgb(208,111,16)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="827.5" font-size="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 (3 samples, 0.02%)</title><rect x="406.8" y="1873" width="0.3" height="15.0" fill="rgb(237,45,20)" rx="2" ry="2" />
<text text-anchor="" x="409.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>delete_from_page_cache (3 samples, 0.02%)</title><rect x="979.8" y="1777" width="0.3" height="15.0" fill="rgb(212,116,17)" rx="2" ry="2" />
<text text-anchor="" x="982.84" 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 (220 samples, 1.63%)</title><rect x="704.9" y="1937" width="19.2" height="15.0" fill="rgb(253,186,46)" rx="2" ry="2" />
<text text-anchor="" x="707.86" 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>grpc_closure_run (2 samples, 0.01%)</title><rect x="419.7" y="2017" width="0.1" height="15.0" fill="rgb(244,221,38)" rx="2" ry="2" />
<text text-anchor="" x="422.66" 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_rcv_finish (45 samples, 0.33%)</title><rect x="507.7" y="1633" width="4.0" height="15.0" fill="rgb(232,0,4)" rx="2" ry="2" />
<text text-anchor="" x="510.73" 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>__memcpy_ssse3_back (29 samples, 0.21%)</title><rect x="947.2" y="1857" width="2.5" height="15.0" fill="rgb(228,162,13)" rx="2" ry="2" />
<text text-anchor="" x="950.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>lock_is_held (3 samples, 0.02%)</title><rect x="356.3" y="1777" width="0.3" height="15.0" fill="rgb(231,217,44)" rx="2" ry="2" />
<text text-anchor="" x="359.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>lock_acquire (6 samples, 0.04%)</title><rect x="922.0" y="1601" width="0.5" height="15.0" fill="rgb(210,87,19)" rx="2" ry="2" />
<text text-anchor="" x="925.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>_$LT$grpc..async..CqFuture$LT$T$GT$$u20$as$u20$futures..future..Future$GT$::poll::hd9fbf7b44a132b2c (6 samples, 0.04%)</title><rect x="475.5" y="1889" width="0.5" height="15.0" fill="rgb(236,33,15)" rx="2" ry="2" />
<text text-anchor="" x="478.46" 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>ext4_bio_write_page (18 samples, 0.13%)</title><rect x="1139.4" y="1697" width="1.6" height="15.0" fill="rgb(244,149,36)" rx="2" ry="2" />
<text text-anchor="" x="1142.45" 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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (2 samples, 0.01%)</title><rect x="689.0" y="1825" width="0.2" height="15.0" fill="rgb(214,157,5)" rx="2" ry="2" />
<text text-anchor="" x="692.03" 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>__GI___libc_write (9 samples, 0.07%)</title><rect x="395.2" y="2017" width="0.8" height="15.0" fill="rgb(243,195,48)" rx="2" ry="2" />
<text text-anchor="" x="398.17" 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>ext4_da_get_block_prep (3 samples, 0.02%)</title><rect x="910.2" y="1553" width="0.3" height="15.0" fill="rgb(248,166,36)" rx="2" ry="2" />
<text text-anchor="" x="913.22" 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>block_write_end (2 samples, 0.01%)</title><rect x="46.0" y="1585" width="0.2" height="15.0" fill="rgb(226,151,17)" rx="2" ry="2" />
<text text-anchor="" x="49.03" 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>__lll_lock_wait (12 samples, 0.09%)</title><rect x="207.0" y="2001" width="1.0" height="15.0" fill="rgb(246,34,3)" rx="2" ry="2" />
<text text-anchor="" x="209.96" 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>grpc_error_unref (2 samples, 0.01%)</title><rect x="628.7" y="2017" width="0.2" height="15.0" fill="rgb(212,135,50)" rx="2" ry="2" />
<text text-anchor="" x="631.69" 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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1185" width="1.0" height="15.0" fill="rgb(225,202,10)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>offload (17 samples, 0.13%)</title><rect x="656.4" y="2033" width="1.5" height="15.0" fill="rgb(228,84,22)" rx="2" ry="2" />
<text text-anchor="" x="659.41" 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>_raw_spin_unlock_bh (10 samples, 0.07%)</title><rect x="738.3" y="1873" width="0.8" height="15.0" fill="rgb(254,174,0)" rx="2" ry="2" />
<text text-anchor="" x="741.27" 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>skb_release_head_state (9 samples, 0.07%)</title><rect x="302.6" y="1857" width="0.7" height="15.0" fill="rgb(207,159,27)" rx="2" ry="2" />
<text text-anchor="" x="305.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>sys_sendmsg (784 samples, 5.81%)</title><rect x="112.5" y="1985" width="68.6" height="15.0" fill="rgb(240,122,25)" rx="2" ry="2" />
<text text-anchor="" x="115.50" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_sen..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (6 samples, 0.04%)</title><rect x="776.2" y="1921" width="0.6" height="15.0" fill="rgb(217,12,0)" rx="2" ry="2" />
<text text-anchor="" x="779.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>ip_rcv (43 samples, 0.32%)</title><rect x="108.0" y="1649" width="3.7" height="15.0" fill="rgb(249,105,46)" rx="2" ry="2" />
<text text-anchor="" x="110.95" 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>__ext4_journal_start_sb (6 samples, 0.04%)</title><rect x="35.2" y="1569" width="0.5" height="15.0" fill="rgb(205,80,22)" rx="2" ry="2" />
<text text-anchor="" x="38.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1873" width="0.5" height="15.0" fill="rgb(253,139,20)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>__module_address (35 samples, 0.26%)</title><rect x="1078.2" y="1537" width="3.1" height="15.0" fill="rgb(231,128,8)" rx="2" ry="2" />
<text text-anchor="" x="1081.23" 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>call_softirq (2 samples, 0.01%)</title><rect x="187.7" y="1921" width="0.2" height="15.0" fill="rgb(247,202,40)" rx="2" ry="2" />
<text text-anchor="" x="190.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>lockdep_sys_exit_thunk (2 samples, 0.01%)</title><rect x="703.6" y="1985" width="0.2" height="15.0" fill="rgb(244,84,31)" rx="2" ry="2" />
<text text-anchor="" x="706.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>_raw_spin_unlock_irqrestore (10 samples, 0.07%)</title><rect x="684.2" y="1745" width="0.9" height="15.0" fill="rgb(234,164,20)" rx="2" ry="2" />
<text text-anchor="" x="687.22" 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>protobuf::stream::CodedOutputStream::write_uint64::h6910587e0896722d (2 samples, 0.01%)</title><rect x="467.1" y="1825" width="0.2" height="15.0" fill="rgb(245,107,52)" rx="2" ry="2" />
<text text-anchor="" x="470.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>lock_acquired (2 samples, 0.01%)</title><rect x="342.3" y="1857" width="0.1" height="15.0" fill="rgb(244,48,54)" rx="2" ry="2" />
<text text-anchor="" x="345.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>_$LT$protobuf..buf_read_iter..BufReadIter$LT$R$GT$$u20$as$u20$std..io..BufRead$GT$::fill_buf::h9191fa0c3b56d03a (2 samples, 0.01%)</title><rect x="885.6" y="1761" width="0.2" height="15.0" fill="rgb(219,65,19)" rx="2" ry="2" />
<text text-anchor="" x="888.64" 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>lock_acquire (5 samples, 0.04%)</title><rect x="177.8" y="1905" width="0.5" height="15.0" fill="rgb(215,15,22)" rx="2" ry="2" />
<text text-anchor="" x="180.83" 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] (21 samples, 0.16%)</title><rect x="10.3" y="321" width="1.8" height="15.0" fill="rgb(214,192,16)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>lock_release (2 samples, 0.01%)</title><rect x="379.8" y="1505" width="0.2" height="15.0" fill="rgb(247,81,45)" rx="2" ry="2" />
<text text-anchor="" x="382.78" 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>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="408.7" y="1921" width="0.3" height="15.0" fill="rgb(223,186,39)" rx="2" ry="2" />
<text text-anchor="" x="411.73" 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 (5 samples, 0.04%)</title><rect x="131.5" y="1809" width="0.4" height="15.0" fill="rgb(232,208,38)" rx="2" ry="2" />
<text text-anchor="" x="134.48" 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.01%)</title><rect x="436.7" y="1825" width="0.2" height="15.0" fill="rgb(216,73,30)" rx="2" ry="2" />
<text text-anchor="" x="439.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>start_thread (297 samples, 2.20%)</title><rect x="803.3" y="2033" width="25.9" height="15.0" fill="rgb(251,218,11)" rx="2" ry="2" />
<text text-anchor="" x="806.26" y="2043.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>std::sys_common::backtrace::__rust_begin_short_backtrace::hf406faf8dd6114a3 (384 samples, 2.85%)</title><rect x="456.4" y="1953" width="33.6" height="15.0" fill="rgb(234,36,31)" rx="2" ry="2" />
<text text-anchor="" x="459.39" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__might_sleep (3 samples, 0.02%)</title><rect x="345.0" y="1825" width="0.2" height="15.0" fill="rgb(219,75,49)" rx="2" ry="2" />
<text text-anchor="" x="347.97" 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>gpr_unref (7 samples, 0.05%)</title><rect x="781.8" y="2017" width="0.6" height="15.0" fill="rgb(217,85,6)" rx="2" ry="2" />
<text text-anchor="" x="784.83" 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>generic_file_buffered_write (7 samples, 0.05%)</title><rect x="1137.4" y="1729" width="0.6" height="15.0" fill="rgb(250,115,34)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>protobuf::stream::CodedOutputStream::write_uint64::h6910587e0896722d (3 samples, 0.02%)</title><rect x="264.4" y="1825" width="0.3" height="15.0" fill="rgb(241,200,32)" rx="2" ry="2" />
<text text-anchor="" x="267.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>__memcmp_sse4_1 (4 samples, 0.03%)</title><rect x="1164.1" y="1857" width="0.4" height="15.0" fill="rgb(238,154,40)" rx="2" ry="2" />
<text text-anchor="" x="1167.11" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="753" width="0.5" height="15.0" fill="rgb(235,79,49)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="763.5" font-size="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_timer_init (2 samples, 0.01%)</title><rect x="18.9" y="2033" width="0.2" height="15.0" fill="rgb(208,39,16)" rx="2" ry="2" />
<text text-anchor="" x="21.92" 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>loopback_xmit (2 samples, 0.01%)</title><rect x="311.5" y="1729" width="0.1" height="15.0" fill="rgb(235,181,21)" rx="2" ry="2" />
<text text-anchor="" x="314.47" 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] (37 samples, 0.27%)</title><rect x="837.4" y="641" width="3.2" height="15.0" fill="rgb(251,219,6)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>rocksdb::InternalKeyComparator::Compare (2 samples, 0.01%)</title><rect x="834.7" y="1761" width="0.2" height="15.0" fill="rgb(236,14,37)" rx="2" ry="2" />
<text text-anchor="" x="837.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>tikv::util::rocksdb::get_cf_handle::h38150a015be6bd6e (3 samples, 0.02%)</title><rect x="955.8" y="1873" width="0.2" height="15.0" fill="rgb(238,178,28)" rx="2" ry="2" />
<text text-anchor="" x="958.78" 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>clear_huge_page (4 samples, 0.03%)</title><rect x="925.2" y="1649" width="0.3" height="15.0" fill="rgb(226,192,12)" rx="2" ry="2" />
<text text-anchor="" x="928.17" 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_v4_do_rcv (65 samples, 0.48%)</title><rect x="314.8" y="1569" width="5.7" height="15.0" fill="rgb(205,164,18)" rx="2" ry="2" />
<text text-anchor="" x="317.80" 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>ret_from_intr (2 samples, 0.01%)</title><rect x="436.7" y="1905" width="0.2" height="15.0" fill="rgb(215,56,15)" rx="2" ry="2" />
<text text-anchor="" x="439.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>rocksdb::(anonymous namespace)::ReadBlockFromFile (76 samples, 0.56%)</title><rect x="1121.3" y="1809" width="6.7" height="15.0" fill="rgb(210,185,24)" rx="2" ry="2" />
<text text-anchor="" x="1124.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_page_fault (2 samples, 0.01%)</title><rect x="290.9" y="1921" width="0.2" height="15.0" fill="rgb(222,48,30)" rx="2" ry="2" />
<text text-anchor="" x="293.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>__might_sleep (5 samples, 0.04%)</title><rect x="345.9" y="1841" width="0.5" height="15.0" fill="rgb(222,32,31)" rx="2" ry="2" />
<text text-anchor="" x="348.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>grpc_slice_from_copied_buffer (2 samples, 0.01%)</title><rect x="652.4" y="2033" width="0.2" height="15.0" fill="rgb(246,135,47)" rx="2" ry="2" />
<text text-anchor="" x="655.39" 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>loopback_xmit (23 samples, 0.17%)</title><rect x="147.0" y="1713" width="2.0" height="15.0" fill="rgb(207,71,36)" rx="2" ry="2" />
<text text-anchor="" x="149.96" 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_batch_completion (66 samples, 0.49%)</title><rect x="207.0" y="2017" width="5.7" height="15.0" fill="rgb(208,163,40)" rx="2" ry="2" />
<text text-anchor="" x="209.96" 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>offload (3 samples, 0.02%)</title><rect x="801.3" y="2033" width="0.3" height="15.0" fill="rgb(229,127,4)" rx="2" ry="2" />
<text text-anchor="" x="804.33" 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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="369" width="1.9" height="15.0" fill="rgb(207,124,8)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>_raw_spin_lock_nested (3 samples, 0.02%)</title><rect x="756.9" y="1553" width="0.3" height="15.0" fill="rgb(216,5,42)" rx="2" ry="2" />
<text text-anchor="" x="759.90" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1297" width="1.8" height="15.0" fill="rgb(229,114,3)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="1313" width="3.2" height="15.0" fill="rgb(254,36,50)" rx="2" ry="2" />
<text text-anchor="" x="840.36" 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>rcu_lockdep_current_cpu_online (2 samples, 0.01%)</title><rect x="1080.9" y="1521" width="0.2" height="15.0" fill="rgb(245,147,39)" rx="2" ry="2" />
<text text-anchor="" x="1083.94" 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] (12 samples, 0.09%)</title><rect x="181.1" y="1505" width="1.0" height="15.0" fill="rgb(226,12,41)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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] (3 samples, 0.02%)</title><rect x="831.7" y="1425" width="0.2" height="15.0" fill="rgb(205,173,38)" rx="2" ry="2" />
<text text-anchor="" x="834.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>rand::StdRng::new::h1962ca6b5069fe1c (3 samples, 0.02%)</title><rect x="286.8" y="1841" width="0.3" height="15.0" fill="rgb(220,170,24)" rx="2" ry="2" />
<text text-anchor="" x="289.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>schedule (9 samples, 0.07%)</title><rect x="778.7" y="1905" width="0.8" height="15.0" fill="rgb(216,135,40)" rx="2" ry="2" />
<text text-anchor="" x="781.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="849" width="0.5" height="15.0" fill="rgb(245,22,16)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="859.5" font-size="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] (13 samples, 0.10%)</title><rect x="390.2" y="1489" width="1.1" height="15.0" fill="rgb(246,101,33)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>sys_futex (9 samples, 0.07%)</title><rect x="899.3" y="1793" width="0.8" height="15.0" fill="rgb(221,66,50)" rx="2" ry="2" />
<text text-anchor="" x="902.29" 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>lock_release (2 samples, 0.01%)</title><rect x="725.0" y="1921" width="0.2" height="15.0" fill="rgb(234,20,44)" rx="2" ry="2" />
<text text-anchor="" x="727.98" 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>pollset_work (6 samples, 0.04%)</title><rect x="249.1" y="2033" width="0.5" height="15.0" fill="rgb(231,28,52)" rx="2" ry="2" />
<text text-anchor="" x="252.11" 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$prometheus..histogram..HistogramTimer$u20$as$u20$core..ops..Drop$GT$::drop::h69f97ee52342082a (2 samples, 0.01%)</title><rect x="29.9" y="1905" width="0.1" height="15.0" fill="rgb(231,112,13)" rx="2" ry="2" />
<text text-anchor="" x="32.85" 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>native_flush_tlb_others (2 samples, 0.01%)</title><rect x="603.8" y="1905" width="0.2" height="15.0" fill="rgb(223,136,8)" rx="2" ry="2" />
<text text-anchor="" x="606.85" 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] (13 samples, 0.10%)</title><rect x="390.2" y="929" width="1.1" height="15.0" fill="rgb(234,53,46)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="939.5" font-size="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_nested (6 samples, 0.04%)</title><rect x="946.0" y="1729" width="0.5" height="15.0" fill="rgb(234,76,36)" rx="2" ry="2" />
<text text-anchor="" x="948.99" 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>arena_bin_malloc_hard (2 samples, 0.01%)</title><rect x="844.0" y="2033" width="0.2" height="15.0" fill="rgb(241,6,50)" rx="2" ry="2" />
<text text-anchor="" x="847.01" 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>[tikv-server] (24 samples, 0.18%)</title><rect x="700.3" y="2033" width="2.1" height="15.0" fill="rgb(243,123,1)" rx="2" ry="2" />
<text text-anchor="" x="703.32" 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>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="184.6" y="1985" width="0.1" height="15.0" fill="rgb(254,158,30)" rx="2" ry="2" />
<text text-anchor="" x="187.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>futex_wake_op (8 samples, 0.06%)</title><rect x="899.4" y="1761" width="0.7" height="15.0" fill="rgb(237,25,28)" rx="2" ry="2" />
<text text-anchor="" x="902.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>tcp_rearm_rto (10 samples, 0.07%)</title><rect x="319.5" y="1521" width="0.9" height="15.0" fill="rgb(244,42,41)" rx="2" ry="2" />
<text text-anchor="" x="322.52" 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>futex_wake (5 samples, 0.04%)</title><rect x="603.3" y="1953" width="0.5" height="15.0" fill="rgb(211,165,28)" rx="2" ry="2" />
<text text-anchor="" x="606.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="257" width="3.2" height="15.0" fill="rgb(210,130,8)" rx="2" ry="2" />
<text text-anchor="" x="840.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>dev_queue_xmit (2 samples, 0.01%)</title><rect x="145.4" y="1777" width="0.2" height="15.0" fill="rgb(217,215,34)" rx="2" ry="2" />
<text text-anchor="" x="148.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>arena_dalloc_bin_locked_impl.isra.56 (5 samples, 0.04%)</title><rect x="17.2" y="2033" width="0.4" height="15.0" fill="rgb(221,215,29)" rx="2" ry="2" />
<text text-anchor="" x="20.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>virtnet_poll (2 samples, 0.01%)</title><rect x="42.4" y="1441" width="0.2" height="15.0" fill="rgb(229,118,16)" rx="2" ry="2" />
<text text-anchor="" x="45.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>sock_recvmsg (292 samples, 2.16%)</title><rect x="296.1" y="1937" width="25.5" height="15.0" fill="rgb(233,37,44)" rx="2" ry="2" />
<text text-anchor="" x="299.08" y="1947.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>[unknown] (36 samples, 0.27%)</title><rect x="837.4" y="177" width="3.1" height="15.0" fill="rgb(232,57,4)" rx="2" ry="2" />
<text text-anchor="" x="840.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>_$LT$kvproto..raft_serverpb..RaftMessage$u20$as$u20$protobuf..core..Message$GT$::merge_from::h57b1d6303c5588ab (58 samples, 0.43%)</title><rect x="819.7" y="1889" width="5.1" height="15.0" fill="rgb(219,226,36)" rx="2" ry="2" />
<text text-anchor="" x="822.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>lock_is_held (3 samples, 0.02%)</title><rect x="519.1" y="1857" width="0.3" height="15.0" fill="rgb(209,183,20)" rx="2" ry="2" />
<text text-anchor="" x="522.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="1633" width="1.9" height="15.0" fill="rgb(253,124,5)" rx="2" ry="2" />
<text text-anchor="" x="595.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>schedule (10 samples, 0.07%)</title><rect x="615.8" y="1905" width="0.9" height="15.0" fill="rgb(250,164,16)" rx="2" ry="2" />
<text text-anchor="" x="618.83" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1169" width="1.8" height="15.0" fill="rgb(247,81,21)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>perform_stream_op_locked (8 samples, 0.06%)</title><rect x="248.4" y="2033" width="0.7" height="15.0" fill="rgb(240,229,28)" rx="2" ry="2" />
<text text-anchor="" x="251.41" 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>protobuf::stream::CodedInputStream::read_uint64::h8cde9d4ea3b04318 (4 samples, 0.03%)</title><rect x="688.4" y="1857" width="0.4" height="15.0" fill="rgb(250,76,21)" rx="2" ry="2" />
<text text-anchor="" x="691.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>ext4_get_inode_loc (2 samples, 0.01%)</title><rect x="909.1" y="1505" width="0.2" height="15.0" fill="rgb(222,229,29)" rx="2" ry="2" />
<text text-anchor="" x="912.08" 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>futex_wait_queue_me (8 samples, 0.06%)</title><rect x="602.5" y="1937" width="0.7" height="15.0" fill="rgb(235,2,54)" rx="2" ry="2" />
<text text-anchor="" x="605.54" 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>dev_hard_start_xmit (17 samples, 0.13%)</title><rect x="558.4" y="1713" width="1.5" height="15.0" fill="rgb(247,130,30)" rx="2" ry="2" />
<text text-anchor="" x="561.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>finish_batch_step (3 samples, 0.02%)</title><rect x="212.7" y="2017" width="0.3" height="15.0" fill="rgb(227,57,24)" rx="2" ry="2" />
<text text-anchor="" x="215.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>__find_get_block_slow (2 samples, 0.01%)</title><rect x="990.2" y="1697" width="0.1" height="15.0" fill="rgb(249,201,6)" rx="2" ry="2" />
<text text-anchor="" x="993.16" 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 (2 samples, 0.01%)</title><rect x="305.2" y="1857" width="0.1" height="15.0" fill="rgb(234,48,43)" rx="2" ry="2" />
<text text-anchor="" x="308.17" 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>lock_acquire (2 samples, 0.01%)</title><rect x="992.4" y="1633" width="0.2" height="15.0" fill="rgb(234,229,38)" rx="2" ry="2" />
<text text-anchor="" x="995.43" 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>protobuf::stream::CodedInputStream::merge_message::h88c64e61100ab6bb (11 samples, 0.08%)</title><rect x="823.2" y="1873" width="1.0" height="15.0" fill="rgb(237,60,9)" rx="2" ry="2" />
<text text-anchor="" x="826.20" 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_IRQ (2 samples, 0.01%)</title><rect x="1081.1" y="1505" width="0.2" height="15.0" fill="rgb(239,134,12)" rx="2" ry="2" />
<text text-anchor="" x="1084.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>protobuf::stream::CodedInputStream::read_raw_varint64::hd1c6da326d135def (2 samples, 0.01%)</title><rect x="822.9" y="1857" width="0.2" height="15.0" fill="rgb(233,118,41)" rx="2" ry="2" />
<text text-anchor="" x="825.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>do_raw_spin_trylock (2 samples, 0.01%)</title><rect x="739.1" y="1873" width="0.2" height="15.0" fill="rgb(221,55,48)" rx="2" ry="2" />
<text text-anchor="" x="742.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>rocksdb::LRUHandleTable::FindPointer (3 samples, 0.02%)</title><rect x="1128.2" y="1729" width="0.2" height="15.0" fill="rgb(216,213,42)" rx="2" ry="2" />
<text text-anchor="" x="1131.17" 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>try_to_free_buffers (44 samples, 0.33%)</title><rect x="1154.0" y="1649" width="3.8" height="15.0" fill="rgb(252,16,45)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>__wake_up_sync_key (30 samples, 0.22%)</title><rect x="943.2" y="1729" width="2.6" height="15.0" fill="rgb(233,99,4)" rx="2" ry="2" />
<text text-anchor="" x="946.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>fget_light (3 samples, 0.02%)</title><rect x="182.2" y="1953" width="0.3" height="15.0" fill="rgb(223,141,54)" rx="2" ry="2" />
<text text-anchor="" x="185.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>_$LT$ordermap..OrderMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::find::hbba80913b1d6b4d7 (2 samples, 0.01%)</title><rect x="24.5" y="1921" width="0.2" height="15.0" fill="rgb(207,215,52)" rx="2" ry="2" />
<text text-anchor="" x="27.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>do_notify_resume (7 samples, 0.05%)</title><rect x="774.1" y="1985" width="0.6" height="15.0" fill="rgb(243,80,51)" rx="2" ry="2" />
<text text-anchor="" x="777.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>add_to_page_cache_lru (7 samples, 0.05%)</title><rect x="915.8" y="1553" width="0.6" height="15.0" fill="rgb(230,143,15)" rx="2" ry="2" />
<text text-anchor="" x="918.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>free_hot_cold_page (16 samples, 0.12%)</title><rect x="705.9" y="1809" width="1.4" height="15.0" fill="rgb(234,86,36)" rx="2" ry="2" />
<text text-anchor="" x="708.91" 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>tikv::raftstore::store::peer::check_epoch::h77ddf916054ffdd6 (2 samples, 0.01%)</title><rect x="974.2" y="1905" width="0.1" height="15.0" fill="rgb(233,130,35)" rx="2" ry="2" />
<text text-anchor="" x="977.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>rocksdb::CompactionIterator::Next (33 samples, 0.24%)</title><rect x="986.8" y="1889" width="2.9" height="15.0" fill="rgb(210,194,16)" rx="2" ry="2" />
<text text-anchor="" x="989.83" 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>sch_direct_xmit (5 samples, 0.04%)</title><rect x="107.3" y="1745" width="0.5" height="15.0" fill="rgb(237,12,51)" rx="2" ry="2" />
<text text-anchor="" x="110.34" 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>free_hot_cold_page (17 samples, 0.13%)</title><rect x="102.2" y="1809" width="1.5" height="15.0" fill="rgb(254,87,53)" rx="2" ry="2" />
<text text-anchor="" x="105.18" 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>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::Insert&lt;false&gt; (39 samples, 0.29%)</title><rect x="927.3" y="1745" width="3.4" height="15.0" fill="rgb(214,97,18)" rx="2" ry="2" />
<text text-anchor="" x="930.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>[unknown] (2 samples, 0.01%)</title><rect x="1160.3" y="1361" width="0.1" height="15.0" fill="rgb(219,86,44)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>__memcmp_sse4_1 (3 samples, 0.02%)</title><rect x="953.8" y="1857" width="0.2" height="15.0" fill="rgb(221,104,29)" rx="2" ry="2" />
<text text-anchor="" x="956.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>schedule (3 samples, 0.02%)</title><rect x="408.7" y="1905" width="0.3" height="15.0" fill="rgb(228,137,53)" rx="2" ry="2" />
<text text-anchor="" x="411.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>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="498.2" y="1937" width="0.2" height="15.0" fill="rgb(220,82,34)" rx="2" ry="2" />
<text text-anchor="" x="501.20" 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>lock_is_held (2 samples, 0.01%)</title><rect x="1129.8" y="1633" width="0.2" height="15.0" fill="rgb(209,26,49)" rx="2" ry="2" />
<text text-anchor="" x="1132.83" 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 (5 samples, 0.04%)</title><rect x="594.4" y="1953" width="0.4" height="15.0" fill="rgb(239,208,22)" rx="2" ry="2" />
<text text-anchor="" x="597.40" 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>do_softirq (2 samples, 0.01%)</title><rect x="491.8" y="1969" width="0.2" height="15.0" fill="rgb(237,66,6)" rx="2" ry="2" />
<text text-anchor="" x="494.81" 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>lock_acquire (3 samples, 0.02%)</title><rect x="610.3" y="1921" width="0.3" height="15.0" fill="rgb(232,185,25)" rx="2" ry="2" />
<text text-anchor="" x="613.32" 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-2.17.so] (2 samples, 0.01%)</title><rect x="1168.0" y="2033" width="0.2" height="15.0" fill="rgb(241,223,2)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>might_fault (12 samples, 0.09%)</title><rect x="177.5" y="1921" width="1.0" height="15.0" fill="rgb(212,63,7)" rx="2" ry="2" />
<text text-anchor="" x="180.48" 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>pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="291.4" y="1985" width="0.2" height="15.0" fill="rgb(253,138,25)" rx="2" ry="2" />
<text text-anchor="" x="294.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>_$LT$tikv..raftstore..store..worker..raftlog_gc..Runner$u20$as$u20$tikv..util..worker..Runnable$LT$tikv..raftstore..store..worker..raftlog_gc..Task$GT$$GT$::run::hbf22af84dfdc1a3c (55 samples, 0.41%)</title><rect x="832.0" y="1937" width="4.8" height="15.0" fill="rgb(212,218,54)" rx="2" ry="2" />
<text text-anchor="" x="835.03" 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>uuid::Uuid::new_v4::hc6cb8ffb4dabe4f7 (4 samples, 0.03%)</title><rect x="696.9" y="1873" width="0.4" height="15.0" fill="rgb(238,48,42)" rx="2" ry="2" />
<text text-anchor="" x="699.90" 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_raw_byte::ha2cb1055a4a0050e (2 samples, 0.01%)</title><rect x="690.7" y="1809" width="0.2" height="15.0" fill="rgb(253,76,41)" rx="2" ry="2" />
<text text-anchor="" x="693.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>gpr_mpscq_push (2 samples, 0.01%)</title><rect x="830.6" y="2017" width="0.2" height="15.0" fill="rgb(215,127,38)" rx="2" ry="2" />
<text text-anchor="" x="833.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>process_backlog (48 samples, 0.36%)</title><rect x="507.6" y="1697" width="4.2" height="15.0" fill="rgb(229,158,21)" rx="2" ry="2" />
<text text-anchor="" x="510.56" 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>eventfd_write (7 samples, 0.05%)</title><rect x="450.2" y="1953" width="0.6" height="15.0" fill="rgb(243,175,6)" rx="2" ry="2" />
<text text-anchor="" x="453.18" 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>__might_sleep (2 samples, 0.01%)</title><rect x="962.9" y="1777" width="0.1" height="15.0" fill="rgb(218,14,39)" rx="2" ry="2" />
<text text-anchor="" x="965.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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1569" width="0.2" height="15.0" fill="rgb(209,99,7)" rx="2" ry="2" />
<text text-anchor="" x="834.68" 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>_raw_spin_unlock_irq (4 samples, 0.03%)</title><rect x="247.5" y="1937" width="0.3" height="15.0" fill="rgb(225,161,45)" rx="2" ry="2" />
<text text-anchor="" x="250.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>ret_from_intr (3 samples, 0.02%)</title><rect x="737.3" y="1873" width="0.3" height="15.0" fill="rgb(229,214,4)" rx="2" ry="2" />
<text text-anchor="" x="740.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="177" width="1.0" height="15.0" fill="rgb(240,181,34)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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] (2 samples, 0.01%)</title><rect x="1160.3" y="1537" width="0.1" height="15.0" fill="rgb(252,173,9)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" 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>fdatasync (53 samples, 0.39%)</title><rect x="1138.0" y="1873" width="4.7" height="15.0" fill="rgb(219,48,19)" rx="2" ry="2" />
<text text-anchor="" x="1141.05" 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 (3 samples, 0.02%)</title><rect x="62.0" y="1633" width="0.3" height="15.0" fill="rgb(230,2,9)" rx="2" ry="2" />
<text text-anchor="" x="65.04" 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>__might_sleep (2 samples, 0.01%)</title><rect x="710.7" y="1873" width="0.2" height="15.0" fill="rgb(214,37,1)" rx="2" ry="2" />
<text text-anchor="" x="713.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>mpage_process_page_bufs (4 samples, 0.03%)</title><rect x="1141.3" y="1713" width="0.3" height="15.0" fill="rgb(254,44,46)" rx="2" ry="2" />
<text text-anchor="" x="1144.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>[unknown] (12 samples, 0.09%)</title><rect x="181.1" y="1457" width="1.0" height="15.0" fill="rgb(240,182,52)" rx="2" ry="2" />
<text text-anchor="" x="184.07" 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>grpc_closure_sched (2 samples, 0.01%)</title><rect x="232.5" y="1985" width="0.2" height="15.0" fill="rgb(236,197,44)" rx="2" ry="2" />
<text text-anchor="" x="235.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>sockfd_lookup_light (8 samples, 0.06%)</title><rect x="322.3" y="1953" width="0.7" height="15.0" fill="rgb(252,22,31)" rx="2" ry="2" />
<text text-anchor="" x="325.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_sendmsg (512 samples, 3.79%)</title><rect x="725.2" y="1969" width="44.7" height="15.0" fill="rgb(212,199,20)" rx="2" ry="2" />
<text text-anchor="" x="728.15" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (11 samples, 0.08%)</title><rect x="506.4" y="1777" width="1.0" height="15.0" fill="rgb(225,7,53)" rx="2" ry="2" />
<text text-anchor="" x="509.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>tikv::raftstore::store::peer::Peer::propose::h5241aa4372a0cb4b (115 samples, 0.85%)</title><rect x="964.0" y="1905" width="10.1" height="15.0" fill="rgb(246,153,0)" rx="2" ry="2" />
<text text-anchor="" x="967.01" 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 (5 samples, 0.04%)</title><rect x="332.0" y="1873" width="0.5" height="15.0" fill="rgb(225,187,26)" rx="2" ry="2" />
<text text-anchor="" x="335.02" 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 (2 samples, 0.01%)</title><rect x="1046.3" y="1681" width="0.2" height="15.0" fill="rgb(216,38,32)" rx="2" ry="2" />
<text text-anchor="" x="1049.30" 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 (4 samples, 0.03%)</title><rect x="599.9" y="1985" width="0.4" height="15.0" fill="rgb(208,78,45)" rx="2" ry="2" />
<text text-anchor="" x="602.91" 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>_raw_spin_unlock_irqrestore (3 samples, 0.02%)</title><rect x="710.4" y="1809" width="0.2" height="15.0" fill="rgb(228,143,37)" rx="2" ry="2" />
<text text-anchor="" x="713.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1361" width="0.5" height="15.0" fill="rgb(211,57,28)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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] (12 samples, 0.09%)</title><rect x="770.0" y="417" width="1.1" height="15.0" fill="rgb(211,184,7)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>clear_page_c_e (2 samples, 0.01%)</title><rect x="50.2" y="1649" width="0.2" height="15.0" fill="rgb(227,204,24)" rx="2" ry="2" />
<text text-anchor="" x="53.23" 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>mod_timer (60 samples, 0.44%)</title><rect x="541.1" y="1793" width="5.3" height="15.0" fill="rgb(243,40,21)" rx="2" ry="2" />
<text text-anchor="" x="544.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>_$LT$kvproto..eraftpb..Message$u20$as$u20$protobuf..core..Message$GT$::merge_from::h07712a0ff18d0d93 (42 samples, 0.31%)</title><rect x="477.4" y="1873" width="3.7" height="15.0" fill="rgb(249,45,5)" rx="2" ry="2" />
<text text-anchor="" x="480.38" 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$kvproto..raft_cmdpb..RaftCmdRequest$u20$as$u20$protobuf..core..Message$GT$::merge_from::h073ec97f916c777d (96 samples, 0.71%)</title><rect x="72.8" y="1889" width="8.4" height="15.0" fill="rgb(211,149,7)" rx="2" ry="2" />
<text text-anchor="" x="75.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>__set_current_blocked (5 samples, 0.04%)</title><rect x="203.7" y="1953" width="0.5" height="15.0" fill="rgb(217,37,4)" rx="2" ry="2" />
<text text-anchor="" x="206.72" 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>grpc_stream_ref (2 samples, 0.01%)</title><rect x="223.8" y="2017" width="0.1" height="15.0" fill="rgb(225,99,46)" rx="2" ry="2" />
<text text-anchor="" x="226.75" 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>grpcwrap_batch_context_destroy (2 samples, 0.01%)</title><rect x="804.0" y="1953" width="0.2" height="15.0" fill="rgb(244,197,32)" rx="2" ry="2" />
<text text-anchor="" x="807.04" 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>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="400.7" y="2001" width="0.2" height="15.0" fill="rgb(251,199,19)" rx="2" ry="2" />
<text text-anchor="" x="403.68" 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>__vdso_clock_gettime (15 samples, 0.11%)</title><rect x="238.4" y="2017" width="1.3" height="15.0" fill="rgb(240,130,11)" rx="2" ry="2" />
<text text-anchor="" x="241.36" 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>memcpy_toiovec (21 samples, 0.16%)</title><rect x="104.9" y="1873" width="1.8" height="15.0" fill="rgb(207,140,51)" rx="2" ry="2" />
<text text-anchor="" x="107.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>system_call_fastpath (2 samples, 0.01%)</title><rect x="286.8" y="1793" width="0.2" height="15.0" fill="rgb(219,216,6)" rx="2" ry="2" />
<text text-anchor="" x="289.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>__might_sleep (2 samples, 0.01%)</title><rect x="43.7" y="1521" width="0.1" height="15.0" fill="rgb(224,182,10)" rx="2" ry="2" />
<text text-anchor="" x="46.67" 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>vfs_write (4 samples, 0.03%)</title><rect x="395.6" y="1969" width="0.4" height="15.0" fill="rgb(226,226,41)" rx="2" ry="2" />
<text text-anchor="" x="398.61" 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$rocksdb..rocksdb..DB$u20$as$u20$tikv..raftstore..store..engine..Iterable$GT$::new_iterator_cf::h2538981e042268d2 (7 samples, 0.05%)</title><rect x="886.0" y="1825" width="0.6" height="15.0" fill="rgb(215,52,4)" rx="2" ry="2" />
<text text-anchor="" x="888.99" 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_unlock_irqrestore (57 samples, 0.42%)</title><rect x="135.2" y="1777" width="4.9" height="15.0" fill="rgb(214,196,7)" rx="2" ry="2" />
<text text-anchor="" x="138.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>_raw_spin_unlock_irq (2 samples, 0.01%)</title><rect x="408.7" y="1857" width="0.2" height="15.0" fill="rgb(223,202,9)" rx="2" ry="2" />
<text text-anchor="" x="411.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>system_call_fastpath (207 samples, 1.53%)</title><rect x="905.2" y="1713" width="18.1" height="15.0" fill="rgb(223,109,27)" rx="2" ry="2" />
<text text-anchor="" x="908.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>__memcpy_ssse3_back (4 samples, 0.03%)</title><rect x="884.6" y="1777" width="0.3" height="15.0" fill="rgb(248,213,28)" rx="2" ry="2" />
<text text-anchor="" x="887.59" 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>grpc_exec_ctx_ready_to_finish (2 samples, 0.01%)</title><rect x="785.4" y="2017" width="0.2" height="15.0" fill="rgb(206,159,37)" rx="2" ry="2" />
<text text-anchor="" x="788.41" 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_bytes_into::h23f2d443b5f2ddd7 (2 samples, 0.01%)</title><rect x="478.4" y="1841" width="0.2" height="15.0" fill="rgb(241,59,34)" rx="2" ry="2" />
<text text-anchor="" x="481.43" 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>lock_acquire (2 samples, 0.01%)</title><rect x="196.6" y="1953" width="0.1" height="15.0" fill="rgb(220,130,17)" rx="2" ry="2" />
<text text-anchor="" x="199.55" 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] (5 samples, 0.04%)</title><rect x="1168.2" y="1233" width="0.5" height="15.0" fill="rgb(211,25,14)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>grpc_slice_buffer_move_into (4 samples, 0.03%)</title><rect x="187.5" y="2001" width="0.4" height="15.0" fill="rgb(252,215,23)" rx="2" ry="2" />
<text text-anchor="" x="190.54" 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] (12 samples, 0.09%)</title><rect x="770.0" y="1969" width="1.1" height="15.0" fill="rgb(232,198,28)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>finish_task_switch (12 samples, 0.09%)</title><rect x="854.1" y="1777" width="1.0" height="15.0" fill="rgb(206,12,47)" rx="2" ry="2" />
<text text-anchor="" x="857.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>std::string::_M_replace_safe (10 samples, 0.07%)</title><rect x="1057.7" y="2001" width="0.8" height="15.0" fill="rgb(239,109,35)" rx="2" ry="2" />
<text text-anchor="" x="1060.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>might_fault (16 samples, 0.12%)</title><rect x="113.2" y="1937" width="1.4" height="15.0" fill="rgb(251,186,52)" rx="2" ry="2" />
<text text-anchor="" x="116.20" 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>ext4_releasepage (6 samples, 0.04%)</title><rect x="1162.1" y="1505" width="0.5" height="15.0" fill="rgb(228,164,15)" rx="2" ry="2" />
<text text-anchor="" x="1165.10" 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>futex_wake (28 samples, 0.21%)</title><rect x="434.4" y="1969" width="2.5" height="15.0" fill="rgb(233,15,1)" rx="2" ry="2" />
<text text-anchor="" x="437.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>_$LT$kvproto..kvrpcpb..RawPutRequest$u20$as$u20$protobuf..core..Message$GT$::merge_from::h5578a357f333059a (14 samples, 0.10%)</title><rect x="694.4" y="1905" width="1.2" height="15.0" fill="rgb(241,121,40)" rx="2" ry="2" />
<text text-anchor="" x="697.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>inet_recvmsg (137 samples, 1.02%)</title><rect x="500.1" y="1921" width="12.0" height="15.0" fill="rgb(216,198,11)" rx="2" ry="2" />
<text text-anchor="" x="503.12" 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_rfree (2 samples, 0.01%)</title><rect x="303.2" y="1841" width="0.1" height="15.0" fill="rgb(217,110,35)" rx="2" ry="2" />
<text text-anchor="" x="306.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>__filemap_fdatawrite_range (53 samples, 0.39%)</title><rect x="1138.0" y="1777" width="4.7" height="15.0" fill="rgb(233,102,5)" rx="2" ry="2" />
<text text-anchor="" x="1141.05" 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>epoll_pwait (4 samples, 0.03%)</title><rect x="647.2" y="2033" width="0.4" height="15.0" fill="rgb(231,141,15)" rx="2" ry="2" />
<text text-anchor="" x="650.23" 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>rocksdb::WriteThread::AwaitState (5 samples, 0.04%)</title><rect x="71.0" y="1825" width="0.5" height="15.0" fill="rgb(245,72,24)" rx="2" ry="2" />
<text text-anchor="" x="74.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>clock_gettime (2 samples, 0.01%)</title><rect x="28.5" y="1857" width="0.2" height="15.0" fill="rgb(222,207,47)" rx="2" ry="2" />
<text text-anchor="" x="31.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>mpage_submit_page (2 samples, 0.01%)</title><rect x="990.0" y="1697" width="0.2" height="15.0" fill="rgb(248,150,10)" rx="2" ry="2" />
<text text-anchor="" x="992.98" 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] (12 samples, 0.09%)</title><rect x="770.0" y="673" width="1.1" height="15.0" fill="rgb(247,134,36)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::InlineSkipList&lt;rocksdb::MemTableRep::KeyComparator const&amp;&gt;::RecomputeSpliceLevels (194 samples, 1.44%)</title><rect x="50.8" y="1761" width="16.9" height="15.0" fill="rgb(218,53,53)" rx="2" ry="2" />
<text text-anchor="" x="53.76" 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>std::sys::imp::thread::Thread::new::thread_start::h227b2afaa9316a8d (297 samples, 2.20%)</title><rect x="803.3" y="2017" width="25.9" height="15.0" fill="rgb(241,197,53)" rx="2" ry="2" />
<text text-anchor="" x="806.26" y="2027.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>rocksdb::BlockBasedTableFactory::NewTableReader (4 samples, 0.03%)</title><rect x="1137.1" y="1857" width="0.3" height="15.0" fill="rgb(232,9,29)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>__memcpy_ssse3_back (2 samples, 0.01%)</title><rect x="23.6" y="1921" width="0.1" height="15.0" fill="rgb(225,98,21)" rx="2" ry="2" />
<text text-anchor="" x="26.56" 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.17.so] (46 samples, 0.34%)</title><rect x="943.0" y="1825" width="4.0" height="15.0" fill="rgb(247,90,41)" rx="2" ry="2" />
<text text-anchor="" x="946.02" 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] (12 samples, 0.09%)</title><rect x="770.0" y="737" width="1.1" height="15.0" fill="rgb(230,64,16)" rx="2" ry="2" />
<text text-anchor="" x="773.02" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::LRUCacheShard::Lookup (4 samples, 0.03%)</title><rect x="1128.1" y="1761" width="0.3" height="15.0" fill="rgb(229,70,50)" rx="2" ry="2" />
<text text-anchor="" x="1131.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>mallocx (18 samples, 0.13%)</title><rect x="837.6" y="33" width="1.6" height="15.0" fill="rgb(215,94,27)" rx="2" ry="2" />
<text text-anchor="" x="840.63" 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>handle_mm_fault (2 samples, 0.01%)</title><rect x="94.6" y="1905" width="0.1" height="15.0" fill="rgb(232,118,16)" rx="2" ry="2" />
<text text-anchor="" x="97.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>ip_local_out_sk (308 samples, 2.28%)</title><rect x="356.1" y="1809" width="26.9" height="15.0" fill="rgb(254,7,43)" rx="2" ry="2" />
<text text-anchor="" x="359.08" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>debug_check_no_obj_freed (6 samples, 0.04%)</title><rect x="536.3" y="1761" width="0.6" height="15.0" fill="rgb(234,118,14)" rx="2" ry="2" />
<text text-anchor="" x="539.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>[unknown] (37 samples, 0.27%)</title><rect x="837.4" y="977" width="3.2" height="15.0" fill="rgb(235,229,4)" rx="2" ry="2" />
<text text-anchor="" x="840.36" y="987.5" font-size="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.01%)</title><rect x="1160.3" y="945" width="0.1" height="15.0" fill="rgb(221,7,53)" rx="2" ry="2" />
<text text-anchor="" x="1163.26" y="955.5" font-size="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_acquire (21 samples, 0.16%)</title><rect x="308.3" y="1841" width="1.9" height="15.0" fill="rgb(224,73,18)" rx="2" ry="2" />
<text text-anchor="" x="311.32" 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] (21 samples, 0.16%)</title><rect x="592.2" y="417" width="1.9" height="15.0" fill="rgb(228,20,6)" rx="2" ry="2" />
<text text-anchor="" x="595.22" 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>[unknown] (12 samples, 0.09%)</title><rect x="770.0" y="1873" width="1.1" height="15.0" fill="rgb(240,19,30)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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 (6 samples, 0.04%)</title><rect x="193.2" y="1921" width="0.6" height="15.0" fill="rgb(232,181,21)" rx="2" ry="2" />
<text text-anchor="" x="196.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="897" width="1.9" height="15.0" fill="rgb(212,136,5)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rocksdb::WritableFileWriter::Flush (210 samples, 1.56%)</title><rect x="905.1" y="1761" width="18.3" height="15.0" fill="rgb(251,15,45)" rx="2" ry="2" />
<text text-anchor="" x="908.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>_raw_spin_lock_bh (23 samples, 0.17%)</title><rect x="118.4" y="1873" width="2.0" height="15.0" fill="rgb(210,85,29)" rx="2" ry="2" />
<text text-anchor="" x="121.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>grpc_call_destroy (2 samples, 0.01%)</title><rect x="649.9" y="2033" width="0.2" height="15.0" fill="rgb(211,223,21)" rx="2" ry="2" />
<text text-anchor="" x="652.94" 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>wake_futex (5 samples, 0.04%)</title><rect x="16.6" y="1953" width="0.4" height="15.0" fill="rgb(240,211,48)" rx="2" ry="2" />
<text text-anchor="" x="19.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>system_call_after_swapgs (2 samples, 0.01%)</title><rect x="976.2" y="2017" width="0.2" height="15.0" fill="rgb(217,69,7)" rx="2" ry="2" />
<text text-anchor="" x="979.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>__page_cache_alloc (9 samples, 0.07%)</title><rect x="915.0" y="1553" width="0.8" height="15.0" fill="rgb(231,193,49)" rx="2" ry="2" />
<text text-anchor="" x="918.03" 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] (13 samples, 0.10%)</title><rect x="390.2" y="913" width="1.1" height="15.0" fill="rgb(243,92,47)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pagevec_release (13 samples, 0.10%)</title><rect x="990.6" y="1793" width="1.1" height="15.0" fill="rgb(212,38,45)" rx="2" ry="2" />
<text text-anchor="" x="993.59" 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] (13 samples, 0.10%)</title><rect x="390.2" y="817" width="1.1" height="15.0" fill="rgb(230,147,24)" rx="2" ry="2" />
<text text-anchor="" x="393.19" y="827.5" font-size="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$kvproto..metapb..RegionEpoch$u20$as$u20$protobuf..core..Message$GT$::merge_from::hc6a984f5ed2eff78 (9 samples, 0.07%)</title><rect x="481.9" y="1857" width="0.8" height="15.0" fill="rgb(240,140,39)" rx="2" ry="2" />
<text text-anchor="" x="484.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>rocksdb::DBImpl::GetSnapshotImpl (5 samples, 0.04%)</title><rect x="82.8" y="1873" width="0.4" height="15.0" fill="rgb(250,4,25)" rx="2" ry="2" />
<text text-anchor="" x="85.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>__memcpy_ssse3_back (4 samples, 0.03%)</title><rect x="904.6" y="1761" width="0.4" height="15.0" fill="rgb(225,142,33)" rx="2" ry="2" />
<text text-anchor="" x="907.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>might_fault (2 samples, 0.01%)</title><rect x="610.1" y="1921" width="0.2" height="15.0" fill="rgb(225,22,35)" rx="2" ry="2" />
<text text-anchor="" x="613.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1889" width="1.8" height="15.0" fill="rgb(241,138,53)" rx="2" ry="2" />
<text text-anchor="" x="13.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>debug_object_init_on_stack (3 samples, 0.02%)</title><rect x="406.8" y="1905" width="0.3" height="15.0" fill="rgb(225,228,42)" rx="2" ry="2" />
<text text-anchor="" x="409.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>system_call_fastpath (5 samples, 0.04%)</title><rect x="603.3" y="2001" width="0.5" height="15.0" fill="rgb(226,186,36)" rx="2" ry="2" />
<text text-anchor="" x="606.32" 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>prometheus::push::push_metrics::h14ea269d80d1e253 (2 samples, 0.01%)</title><rect x="831.1" y="1937" width="0.1" height="15.0" fill="rgb(244,183,54)" rx="2" ry="2" />
<text text-anchor="" x="834.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>malloc_unref (20 samples, 0.15%)</title><rect x="632.9" y="2017" width="1.7" height="15.0" fill="rgb(228,160,42)" rx="2" ry="2" />
<text text-anchor="" x="635.88" 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_unlock_irqrestore (8 samples, 0.06%)</title><rect x="1161.1" y="1505" width="0.7" height="15.0" fill="rgb(239,166,31)" rx="2" ry="2" />
<text text-anchor="" x="1164.05" 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,032 samples, 7.65%)</title><rect x="702.4" y="2033" width="90.3" height="15.0" fill="rgb(211,214,18)" rx="2" ry="2" />
<text text-anchor="" x="705.41" 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>rocksdb::BlockBasedTable::BlockEntryIteratorState::NewSecondaryIterator (83 samples, 0.62%)</title><rect x="1121.3" y="1841" width="7.2" height="15.0" fill="rgb(233,40,32)" rx="2" ry="2" />
<text text-anchor="" x="1124.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>pthread_mutex_unlock (5 samples, 0.04%)</title><rect x="790.5" y="2017" width="0.4" height="15.0" fill="rgb(247,162,38)" rx="2" ry="2" />
<text text-anchor="" x="793.49" 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>done_request_event (2 samples, 0.01%)</title><rect x="608.0" y="2017" width="0.2" height="15.0" fill="rgb(226,49,35)" rx="2" ry="2" />
<text text-anchor="" x="611.05" 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>lock_release (2 samples, 0.01%)</title><rect x="206.7" y="1937" width="0.2" height="15.0" fill="rgb(241,123,4)" rx="2" ry="2" />
<text text-anchor="" x="209.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>vfs_read (2 samples, 0.01%)</title><rect x="286.8" y="1761" width="0.2" height="15.0" fill="rgb(229,7,45)" rx="2" ry="2" />
<text text-anchor="" x="289.81" 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_futex (2 samples, 0.01%)</title><rect x="184.2" y="1953" width="0.2" height="15.0" fill="rgb(242,202,11)" rx="2" ry="2" />
<text text-anchor="" x="187.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>__memcmp_sse4_1 (37 samples, 0.27%)</title><rect x="63.7" y="1697" width="3.2" height="15.0" fill="rgb(220,147,30)" rx="2" ry="2" />
<text text-anchor="" x="66.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="321" width="0.5" height="15.0" fill="rgb(252,104,35)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" 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>touch_atime (3 samples, 0.02%)</title><rect x="1187.9" y="1809" width="0.3" height="15.0" fill="rgb(207,80,26)" rx="2" ry="2" />
<text text-anchor="" x="1190.90" 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_sync_write (2 samples, 0.01%)</title><rect x="86.1" y="1649" width="0.2" height="15.0" fill="rgb(222,172,31)" rx="2" ry="2" />
<text text-anchor="" x="89.09" 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>gpr_ref (11 samples, 0.08%)</title><rect x="213.8" y="2017" width="0.9" height="15.0" fill="rgb(223,89,53)" rx="2" ry="2" />
<text text-anchor="" x="216.78" 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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="945" width="1.9" height="15.0" fill="rgb(250,2,53)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="955.5" font-size="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 (76 samples, 0.56%)</title><rect x="313.8" y="1665" width="6.7" height="15.0" fill="rgb(254,17,52)" rx="2" ry="2" />
<text text-anchor="" x="316.83" 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] (21 samples, 0.16%)</title><rect x="10.3" y="1377" width="1.8" height="15.0" fill="rgb(236,65,26)" rx="2" ry="2" />
<text text-anchor="" x="13.26" 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>rocksdb::(anonymous namespace)::TwoLevelIterator::SkipEmptyDataBlocksForward (9 samples, 0.07%)</title><rect x="1165.7" y="1841" width="0.8" height="15.0" fill="rgb(215,227,42)" rx="2" ry="2" />
<text text-anchor="" x="1168.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>__tcp_push_pending_frames (474 samples, 3.51%)</title><rect x="134.5" y="1873" width="41.4" height="15.0" fill="rgb(213,78,42)" rx="2" ry="2" />
<text text-anchor="" x="137.45" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (75 samples, 0.56%)</title><rect x="313.9" y="1601" width="6.6" height="15.0" fill="rgb(233,161,10)" rx="2" ry="2" />
<text text-anchor="" x="316.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>sock_def_readable (35 samples, 0.26%)</title><rect x="759.4" y="1521" width="3.1" height="15.0" fill="rgb(245,11,26)" rx="2" ry="2" />
<text text-anchor="" x="762.44" 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>virtnet_poll (2 samples, 0.01%)</title><rect x="582.0" y="1681" width="0.2" height="15.0" fill="rgb(227,148,4)" rx="2" ry="2" />
<text text-anchor="" x="584.98" 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 (4 samples, 0.03%)</title><rect x="599.9" y="1969" width="0.4" height="15.0" fill="rgb(217,141,23)" rx="2" ry="2" />
<text text-anchor="" x="602.91" 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$tikv..raft..raft..Raft$LT$T$GT$$GT$::handle_append_entries::hb1b57637078319e4 (29 samples, 0.21%)</title><rect x="869.3" y="1857" width="2.5" height="15.0" fill="rgb(250,186,41)" rx="2" ry="2" />
<text text-anchor="" x="872.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>rocksdb::MemTable::KeyComparator::operator (12 samples, 0.09%)</title><rect x="833.6" y="1745" width="1.1" height="15.0" fill="rgb(234,4,37)" rx="2" ry="2" />
<text text-anchor="" x="836.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>[unknown] (21 samples, 0.16%)</title><rect x="592.2" y="705" width="1.9" height="15.0" fill="rgb(233,227,23)" rx="2" ry="2" />
<text text-anchor="" x="595.22" y="715.5" font-size="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_md5_do_lookup (2 samples, 0.01%)</title><rect x="587.7" y="1825" width="0.1" height="15.0" fill="rgb(234,42,54)" rx="2" ry="2" />
<text text-anchor="" x="590.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>do_IRQ (3 samples, 0.02%)</title><rect x="747.5" y="1777" width="0.2" height="15.0" fill="rgb(243,45,19)" rx="2" ry="2" />
<text text-anchor="" x="750.46" 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 (431 samples, 3.19%)</title><rect x="347.2" y="1873" width="37.7" height="15.0" fill="rgb(254,182,23)" rx="2" ry="2" />
<text text-anchor="" x="350.16" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grpc::codec::pb_codec::de::h4dda9bd77c05a674 (3 samples, 0.02%)</title><rect x="827.2" y="1921" width="0.3" height="15.0" fill="rgb(237,71,22)" rx="2" ry="2" />
<text text-anchor="" x="830.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>[unknown] (21 samples, 0.16%)</title><rect x="10.3" y="1809" width="1.8" height="15.0" fill="rgb(246,46,7)" rx="2" ry="2" />
<text text-anchor="" x="13.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>grpc_error_unref (2 samples, 0.01%)</title><rect x="243.9" y="2033" width="0.1" height="15.0" fill="rgb(228,36,13)" rx="2" ry="2" />
<text text-anchor="" x="246.87" 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$kvproto..eraftpb..Message$u20$as$u20$protobuf..core..Message$GT$::compute_size::h2372fa59dc9cf7f1 (10 samples, 0.07%)</title><rect x="464.3" y="1841" width="0.8" height="15.0" fill="rgb(212,205,49)" rx="2" ry="2" />
<text text-anchor="" x="467.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>ext4_da_write_end (109 samples, 0.81%)</title><rect x="1088.3" y="1649" width="9.5" height="15.0" fill="rgb(214,59,45)" rx="2" ry="2" />
<text text-anchor="" x="1091.28" 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>lock_release (3 samples, 0.02%)</title><rect x="589.0" y="1905" width="0.2" height="15.0" fill="rgb(229,86,31)" rx="2" ry="2" />
<text text-anchor="" x="591.98" 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>receiving_stream_ready (2 samples, 0.01%)</title><rect x="250.6" y="2033" width="0.2" height="15.0" fill="rgb(228,100,1)" rx="2" ry="2" />
<text text-anchor="" x="253.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_IRQ (2 samples, 0.01%)</title><rect x="819.3" y="1857" width="0.1" height="15.0" fill="rgb(225,96,24)" rx="2" ry="2" />
<text text-anchor="" x="822.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>do_softirq (126 samples, 0.93%)</title><rect x="753.0" y="1745" width="11.0" height="15.0" fill="rgb(217,40,42)" rx="2" ry="2" />
<text text-anchor="" x="755.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_ack_snd_check (8 samples, 0.06%)</title><rect x="758.7" y="1521" width="0.7" height="15.0" fill="rgb(206,31,54)" rx="2" ry="2" />
<text text-anchor="" x="761.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>tcp_wfree (2 samples, 0.01%)</title><rect x="359.5" y="1697" width="0.2" height="15.0" fill="rgb(236,49,2)" rx="2" ry="2" />
<text text-anchor="" x="362.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>[unknown] (5 samples, 0.04%)</title><rect x="1168.2" y="1937" width="0.5" height="15.0" fill="rgb(228,15,24)" rx="2" ry="2" />
<text text-anchor="" x="1171.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>lock_acquired (3 samples, 0.02%)</title><rect x="331.8" y="1857" width="0.2" height="15.0" fill="rgb(209,147,53)" rx="2" ry="2" />
<text text-anchor="" x="334.76" 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>free (8 samples, 0.06%)</title><rect x="12.2" y="2001" width="0.7" height="15.0" fill="rgb(239,202,23)" rx="2" ry="2" />
<text text-anchor="" x="15.19" 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] (13 samples, 0.10%)</title><rect x="390.2" y="593" width="1.1" height="15.0" fill="rgb(238,93,19)" rx="2" ry="2" />
<text text-anchor="" x="393.19" 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>__netif_receive_skb_core (2 samples, 0.01%)</title><rect x="904.0" y="1633" width="0.2" height="15.0" fill="rgb(228,192,0)" rx="2" ry="2" />
<text text-anchor="" x="907.01" 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] (12 samples, 0.09%)</title><rect x="770.0" y="561" width="1.1" height="15.0" fill="rgb(216,200,47)" rx="2" ry="2" />
<text text-anchor="" x="773.02" 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>[unknown] (3 samples, 0.02%)</title><rect x="831.7" y="1073" width="0.2" height="15.0" fill="rgb(240,119,2)" rx="2" ry="2" />
<text text-anchor="" x="834.68" y="1083.5" font-size="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 (2 samples, 0.01%)</title><rect x="504.1" y="1777" width="0.1" height="15.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment