Skip to content

Instantly share code, notes, and snippets.

@FranckPachot
Created July 21, 2019 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FranckPachot/b676683025ea6bdfdcea448965fa5a2a to your computer and use it in GitHub Desktop.
Save FranckPachot/b676683025ea6bdfdcea448965fa5a2a to your computer and use it in GitHub Desktop.
pgbench-yugabytedb-init-fk.svg
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1046" onload="init(evt)" viewBox="0 0 1200 1046" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// 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]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames 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.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1046.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1029" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="matched" x="1090.00" y="1029" > </text>
<g id="frames">
<g >
<title>[libc-2.23.so] (4 samples, 0.02%)</title><rect x="395.1" y="901" width="0.2" height="15.0" fill="rgb(240,162,30)" rx="2" ry="2" />
<text x="398.13" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus14ReplicateBatchEPSt6vectorI13scoped_refptrINS0_14ConsensusRoundEESaIS5_EE (118 samples, 0.50%)</title><rect x="490.0" y="869" width="6.0" height="15.0" fill="rgb(244,48,35)" rx="2" ry="2" />
<text x="493.04" y="879.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="536.8" y="805" width="0.1" height="15.0" fill="rgb(233,91,35)" rx="2" ry="2" />
<text x="539.76" y="815.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (3 samples, 0.01%)</title><rect x="414.5" y="789" width="0.1" height="15.0" fill="rgb(223,115,19)" rx="2" ry="2" />
<text x="417.46" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log16allocation_stateEv (4 samples, 0.02%)</title><rect x="403.2" y="869" width="0.2" height="15.0" fill="rgb(206,28,43)" rx="2" ry="2" />
<text x="406.23" y="879.5" ></text>
</g>
<g >
<title>__ip_local_out (3 samples, 0.01%)</title><rect x="341.6" y="149" width="0.2" height="15.0" fill="rgb(237,223,20)" rx="2" ry="2" />
<text x="344.60" y="159.5" ></text>
</g>
<g >
<title>enqueue_task_fair (5 samples, 0.02%)</title><rect x="354.3" y="85" width="0.3" height="15.0" fill="rgb(224,175,4)" rx="2" ry="2" />
<text x="357.34" y="95.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (27 samples, 0.12%)</title><rect x="324.0" y="597" width="1.3" height="15.0" fill="rgb(213,7,7)" rx="2" ry="2" />
<text x="326.98" y="607.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator4NextEv (4 samples, 0.02%)</title><rect x="1003.0" y="725" width="0.2" height="15.0" fill="rgb(241,100,12)" rx="2" ry="2" />
<text x="1005.95" y="735.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3 samples, 0.01%)</title><rect x="614.7" y="789" width="0.2" height="15.0" fill="rgb(228,1,37)" rx="2" ry="2" />
<text x="617.70" y="799.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="396.1" y="629" width="0.2" height="15.0" fill="rgb(208,207,30)" rx="2" ry="2" />
<text x="399.13" y="639.5" ></text>
</g>
<g >
<title>sock_def_readable (11 samples, 0.05%)</title><rect x="342.3" y="229" width="0.5" height="15.0" fill="rgb(206,99,46)" rx="2" ry="2" />
<text x="345.26" y="239.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (131 samples, 0.56%)</title><rect x="337.9" y="773" width="6.6" height="15.0" fill="rgb(233,164,1)" rx="2" ry="2" />
<text x="340.88" y="783.5" ></text>
</g>
<g >
<title>__libc_disable_asynccancel (12 samples, 0.05%)</title><rect x="211.1" y="901" width="0.7" height="15.0" fill="rgb(231,197,43)" rx="2" ry="2" />
<text x="214.15" y="911.5" ></text>
</g>
<g >
<title>enqueue_entity (2 samples, 0.01%)</title><rect x="766.3" y="645" width="0.1" height="15.0" fill="rgb(250,168,52)" rx="2" ry="2" />
<text x="769.26" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue30LeaderLeaseExpirationWatermarkEv (2 samples, 0.01%)</title><rect x="398.9" y="821" width="0.1" height="15.0" fill="rgb(240,200,51)" rx="2" ry="2" />
<text x="401.90" y="831.5" ></text>
</g>
<g >
<title>sched_clock (2 samples, 0.01%)</title><rect x="1073.5" y="725" width="0.1" height="15.0" fill="rgb(248,58,44)" rx="2" ry="2" />
<text x="1076.49" y="735.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (5 samples, 0.02%)</title><rect x="162.6" y="661" width="0.3" height="15.0" fill="rgb(206,224,24)" rx="2" ry="2" />
<text x="165.61" y="671.5" ></text>
</g>
<g >
<title>__fget (2 samples, 0.01%)</title><rect x="545.7" y="661" width="0.1" height="15.0" fill="rgb(212,171,33)" rx="2" ry="2" />
<text x="548.72" y="671.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (5 samples, 0.02%)</title><rect x="618.5" y="965" width="0.2" height="15.0" fill="rgb(215,108,38)" rx="2" ry="2" />
<text x="621.48" y="975.5" ></text>
</g>
<g >
<title>update_process_times (11 samples, 0.05%)</title><rect x="521.9" y="661" width="0.5" height="15.0" fill="rgb(230,136,28)" rx="2" ry="2" />
<text x="524.86" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13RequestHeader10SharedDtorEv (3 samples, 0.01%)</title><rect x="431.8" y="805" width="0.2" height="15.0" fill="rgb(246,81,11)" rx="2" ry="2" />
<text x="434.83" y="815.5" ></text>
</g>
<g >
<title>_ZN2ev4baseI8ev_timerNS_5timerEE12method_thunkIN2yb3rpc7ReactorEXadL_ZNS7_12TimerHandlerERS2_iEEEEvP7ev_loopPS1_i (3 samples, 0.01%)</title><rect x="210.3" y="901" width="0.2" height="15.0" fill="rgb(222,49,29)" rx="2" ry="2" />
<text x="213.34" y="911.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (8 samples, 0.03%)</title><rect x="753.5" y="661" width="0.4" height="15.0" fill="rgb(206,135,46)" rx="2" ry="2" />
<text x="756.52" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb16FunctionRunnableD1Ev (2 samples, 0.01%)</title><rect x="598.1" y="933" width="0.1" height="15.0" fill="rgb(215,151,51)" rx="2" ry="2" />
<text x="601.09" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock8NowRangeEv (10 samples, 0.04%)</title><rect x="538.0" y="837" width="0.5" height="15.0" fill="rgb(221,7,0)" rx="2" ry="2" />
<text x="541.02" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc26YBInboundConnectionContext12ProcessCallsERKSt10shared_ptrINS0_10ConnectionEERKN5boost9container12small_vectorI5iovecLm4ENS8_13new_allocatorISA_EEEENS_17StronglyTypedBoolINS0_18ReadBufferFull_TagEEE (2 samples, 0.01%)</title><rect x="380.0" y="821" width="0.1" height="15.0" fill="rgb(242,187,2)" rx="2" ry="2" />
<text x="382.97" y="831.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="766.1" y="565" width="0.1" height="15.0" fill="rgb(223,97,25)" rx="2" ry="2" />
<text x="769.10" y="575.5" ></text>
</g>
<g >
<title>wake_up_q (13 samples, 0.06%)</title><rect x="430.2" y="725" width="0.7" height="15.0" fill="rgb(246,182,19)" rx="2" ry="2" />
<text x="433.22" y="735.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (92 samples, 0.39%)</title><rect x="320.8" y="693" width="4.6" height="15.0" fill="rgb(213,58,41)" rx="2" ry="2" />
<text x="323.76" y="703.5" ></text>
</g>
<g >
<title>ev_invoke_pending (2 samples, 0.01%)</title><rect x="13.3" y="917" width="0.1" height="15.0" fill="rgb(228,95,19)" rx="2" ry="2" />
<text x="16.27" y="927.5" ></text>
</g>
<g >
<title>scheduler_tick (61 samples, 0.26%)</title><rect x="110.1" y="629" width="3.1" height="15.0" fill="rgb(228,227,37)" rx="2" ry="2" />
<text x="113.15" y="639.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator3keyEv (8 samples, 0.03%)</title><rect x="711.5" y="677" width="0.4" height="15.0" fill="rgb(205,187,14)" rx="2" ry="2" />
<text x="714.47" y="687.5" ></text>
</g>
<g >
<title>_ZNSt6chrono3_V212steady_clock3nowEv (2 samples, 0.01%)</title><rect x="378.7" y="741" width="0.1" height="15.0" fill="rgb(251,79,4)" rx="2" ry="2" />
<text x="381.71" y="751.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (5 samples, 0.02%)</title><rect x="242.2" y="725" width="0.3" height="15.0" fill="rgb(247,93,11)" rx="2" ry="2" />
<text x="245.21" y="735.5" ></text>
</g>
<g >
<title>_ZNK2yb3log15LogEntryBatchPB39InternalSerializeWithCachedSizesToArrayEbPh (2 samples, 0.01%)</title><rect x="401.1" y="837" width="0.1" height="15.0" fill="rgb(240,217,53)" rx="2" ry="2" />
<text x="404.07" y="847.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (13 samples, 0.06%)</title><rect x="356.6" y="485" width="0.6" height="15.0" fill="rgb(227,191,4)" rx="2" ry="2" />
<text x="359.56" y="495.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator26SkipEmptyDataBlocksForwardEv.constprop.113 (2 samples, 0.01%)</title><rect x="849.3" y="677" width="0.1" height="15.0" fill="rgb(226,77,20)" rx="2" ry="2" />
<text x="852.28" y="687.5" ></text>
</g>
<g >
<title>__schedule (148 samples, 0.63%)</title><rect x="607.4" y="821" width="7.5" height="15.0" fill="rgb(222,225,24)" rx="2" ry="2" />
<text x="610.40" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken6SubmitESt10shared_ptrINS_8RunnableEE (4 samples, 0.02%)</title><rect x="399.0" y="789" width="0.2" height="15.0" fill="rgb(254,158,17)" rx="2" ry="2" />
<text x="402.00" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13RequestHeaderD1Ev (3 samples, 0.01%)</title><rect x="431.8" y="821" width="0.2" height="15.0" fill="rgb(249,154,21)" rx="2" ry="2" />
<text x="434.83" y="831.5" ></text>
</g>
<g >
<title>__tls_get_addr (48 samples, 0.20%)</title><rect x="1053.2" y="757" width="2.4" height="15.0" fill="rgb(217,132,35)" rx="2" ry="2" />
<text x="1056.20" y="767.5" ></text>
</g>
<g >
<title>update_rq_clock (2 samples, 0.01%)</title><rect x="756.6" y="725" width="0.1" height="15.0" fill="rgb(236,21,50)" rx="2" ry="2" />
<text x="759.59" y="735.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc13RpcController6statusEv (2 samples, 0.01%)</title><rect x="772.5" y="869" width="0.1" height="15.0" fill="rgb(228,178,16)" rx="2" ry="2" />
<text x="775.50" y="879.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="1020.7" y="645" width="0.1" height="15.0" fill="rgb(242,91,22)" rx="2" ry="2" />
<text x="1023.72" y="655.5" ></text>
</g>
<g >
<title>maintenance_sch (44 samples, 0.19%)</title><rect x="483.4" y="981" width="2.2" height="15.0" fill="rgb(207,173,11)" rx="2" ry="2" />
<text x="486.39" y="991.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.02%)</title><rect x="394.9" y="741" width="0.2" height="15.0" fill="rgb(242,114,27)" rx="2" ry="2" />
<text x="397.92" y="751.5" ></text>
</g>
<g >
<title>tcp_packet (6 samples, 0.03%)</title><rect x="340.2" y="469" width="0.3" height="15.0" fill="rgb(221,36,18)" rx="2" ry="2" />
<text x="343.19" y="479.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="437.1" y="709" width="0.2" height="15.0" fill="rgb(236,168,10)" rx="2" ry="2" />
<text x="440.07" y="719.5" ></text>
</g>
<g >
<title>__nf_ct_l4proto_find (2 samples, 0.01%)</title><rect x="384.5" y="549" width="0.1" height="15.0" fill="rgb(252,158,40)" rx="2" ry="2" />
<text x="387.50" y="559.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb14GetSubDocumentEPNS0_19IntentAwareIteratorERKNS0_18GetSubDocumentDataEPKSt6vectorINS0_14PrimitiveValueESaIS7_EENS_17StronglyTypedBoolINS0_19SeekFwdSuffices_TagEEE (2,711 samples, 11.57%)</title><rect x="776.8" y="805" width="136.5" height="15.0" fill="rgb(248,79,15)" rx="2" ry="2" />
<text x="779.83" y="815.5" >_ZN2yb5docdb14Get..</text>
</g>
<g >
<title>sched_clock (2 samples, 0.01%)</title><rect x="357.7" y="581" width="0.1" height="15.0" fill="rgb(208,229,4)" rx="2" ry="2" />
<text x="360.72" y="591.5" ></text>
</g>
<g >
<title>__schedule (68 samples, 0.29%)</title><rect x="1185.3" y="805" width="3.4" height="15.0" fill="rgb(235,78,44)" rx="2" ry="2" />
<text x="1188.27" y="815.5" ></text>
</g>
<g >
<title>start_thread (2,473 samples, 10.55%)</title><rect x="12.7" y="965" width="124.5" height="15.0" fill="rgb(207,9,22)" rx="2" ry="2" />
<text x="15.67" y="975.5" >start_thread</text>
</g>
<g >
<title>_ZN7rocksdb15BlockBasedTable21GetDataBlockFromCacheERKN2yb5SliceES4_PNS_5CacheES6_PNS_10StatisticsERKNS_11ReadOptionsEPNS0_13CachableEntryINS_5BlockEEEjNS_9BlockTypeERKSt10shared_ptrINS1_10MemTrackerEE (2 samples, 0.01%)</title><rect x="869.6" y="613" width="0.1" height="15.0" fill="rgb(247,150,18)" rx="2" ry="2" />
<text x="872.62" y="623.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="963.0" y="549" width="0.1" height="15.0" fill="rgb(205,134,10)" rx="2" ry="2" />
<text x="965.97" y="559.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail11timer_queueINS1_18chrono_time_traitsINSt6chrono3_V212steady_clockENS0_11wait_traitsIS6_EEEEE16get_ready_timersERNS1_8op_queueINS1_19scheduler_operationEEE (4 samples, 0.02%)</title><rect x="427.8" y="901" width="0.2" height="15.0" fill="rgb(205,34,7)" rx="2" ry="2" />
<text x="430.75" y="911.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="399.9" y="645" width="0.2" height="15.0" fill="rgb(237,217,1)" rx="2" ry="2" />
<text x="402.86" y="655.5" ></text>
</g>
<g >
<title>tick_sched_handle (3 samples, 0.01%)</title><rect x="715.4" y="581" width="0.1" height="15.0" fill="rgb(207,24,32)" rx="2" ry="2" />
<text x="718.35" y="591.5" ></text>
</g>
<g >
<title>__schedule (508 samples, 2.17%)</title><rect x="451.3" y="805" width="25.5" height="15.0" fill="rgb(224,200,54)" rx="2" ry="2" />
<text x="454.27" y="815.5" >_..</text>
</g>
<g >
<title>x86_pmu_disable (2 samples, 0.01%)</title><rect x="452.9" y="741" width="0.1" height="15.0" fill="rgb(237,110,26)" rx="2" ry="2" />
<text x="455.93" y="751.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.02%)</title><rect x="399.9" y="677" width="0.2" height="15.0" fill="rgb(241,63,36)" rx="2" ry="2" />
<text x="402.86" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb6ResultIN5boost9container12small_vectorI5iovecLm4ENS2_13new_allocatorIS4_EEEEED2Ev (2 samples, 0.01%)</title><rect x="390.9" y="853" width="0.1" height="15.0" fill="rgb(226,155,17)" rx="2" ry="2" />
<text x="393.95" y="863.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator26SkipEmptyDataBlocksForwardEv.constprop.113 (2 samples, 0.01%)</title><rect x="983.8" y="741" width="0.1" height="15.0" fill="rgb(215,141,4)" rx="2" ry="2" />
<text x="986.77" y="751.5" ></text>
</g>
<g >
<title>x86_pmu_enable (32 samples, 0.14%)</title><rect x="415.6" y="725" width="1.6" height="15.0" fill="rgb(229,134,23)" rx="2" ry="2" />
<text x="418.62" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor12TimerHandlerERN2ev5timerEi (33 samples, 0.14%)</title><rect x="135.3" y="885" width="1.7" height="15.0" fill="rgb(230,13,11)" rx="2" ry="2" />
<text x="138.32" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver4InitEPSt10unique_ptrINS0_9OperationESt14default_deleteIS3_EEl (5 samples, 0.02%)</title><rect x="750.4" y="757" width="0.2" height="15.0" fill="rgb(237,228,54)" rx="2" ry="2" />
<text x="753.40" y="767.5" ></text>
</g>
<g >
<title>perf_pmu_disable (8 samples, 0.03%)</title><rect x="607.7" y="757" width="0.4" height="15.0" fill="rgb(231,190,6)" rx="2" ry="2" />
<text x="610.70" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (17 samples, 0.07%)</title><rect x="430.1" y="789" width="0.8" height="15.0" fill="rgb(220,35,36)" rx="2" ry="2" />
<text x="433.07" y="799.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBImpl11NewIteratorERKNS_11ReadOptionsEPNS_18ColumnFamilyHandleE (6 samples, 0.03%)</title><rect x="776.0" y="709" width="0.3" height="15.0" fill="rgb(218,202,35)" rx="2" ry="2" />
<text x="779.02" y="719.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (5 samples, 0.02%)</title><rect x="1181.6" y="869" width="0.2" height="15.0" fill="rgb(247,186,49)" rx="2" ry="2" />
<text x="1184.59" y="879.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3 samples, 0.01%)</title><rect x="435.0" y="917" width="0.2" height="15.0" fill="rgb(209,112,4)" rx="2" ry="2" />
<text x="438.00" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock12NowWithErrorEPNS_10HybridTimeEPm (2 samples, 0.01%)</title><rect x="737.1" y="789" width="0.1" height="15.0" fill="rgb(226,61,32)" rx="2" ry="2" />
<text x="740.05" y="799.5" ></text>
</g>
<g >
<title>tick_sched_timer (40 samples, 0.17%)</title><rect x="196.7" y="677" width="2.0" height="15.0" fill="rgb(246,204,14)" rx="2" ry="2" />
<text x="199.70" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (45 samples, 0.19%)</title><rect x="436.9" y="901" width="2.2" height="15.0" fill="rgb(218,120,2)" rx="2" ry="2" />
<text x="439.87" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="599.6" y="901" width="0.5" height="15.0" fill="rgb(233,75,39)" rx="2" ry="2" />
<text x="602.65" y="911.5" ></text>
</g>
<g >
<title>__fget_light (5 samples, 0.02%)</title><rect x="392.6" y="805" width="0.3" height="15.0" fill="rgb(239,76,21)" rx="2" ry="2" />
<text x="395.61" y="815.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4SeekERKN2yb5SliceE (3 samples, 0.01%)</title><rect x="642.7" y="661" width="0.1" height="15.0" fill="rgb(207,78,1)" rx="2" ry="2" />
<text x="645.70" y="671.5" ></text>
</g>
<g >
<title>__alloc_skb (11 samples, 0.05%)</title><rect x="347.7" y="629" width="0.6" height="15.0" fill="rgb(237,97,30)" rx="2" ry="2" />
<text x="350.70" y="639.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5valueEv (7 samples, 0.03%)</title><rect x="723.8" y="645" width="0.4" height="15.0" fill="rgb(209,178,43)" rx="2" ry="2" />
<text x="726.81" y="655.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (61 samples, 0.26%)</title><rect x="593.0" y="805" width="3.1" height="15.0" fill="rgb(214,227,52)" rx="2" ry="2" />
<text x="596.00" y="815.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (9 samples, 0.04%)</title><rect x="452.4" y="709" width="0.4" height="15.0" fill="rgb(213,154,12)" rx="2" ry="2" />
<text x="455.37" y="719.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (4 samples, 0.02%)</title><rect x="394.9" y="805" width="0.2" height="15.0" fill="rgb(231,58,31)" rx="2" ry="2" />
<text x="397.92" y="815.5" ></text>
</g>
<g >
<title>tcp_poll (2 samples, 0.01%)</title><rect x="230.9" y="773" width="0.1" height="15.0" fill="rgb(228,13,39)" rx="2" ry="2" />
<text x="233.94" y="783.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="536.7" y="773" width="0.1" height="15.0" fill="rgb(228,201,10)" rx="2" ry="2" />
<text x="539.66" y="783.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb3rpc12OutboundCallESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE10_M_destroyEv (4 samples, 0.02%)</title><rect x="391.5" y="885" width="0.2" height="15.0" fill="rgb(232,35,53)" rx="2" ry="2" />
<text x="394.50" y="895.5" ></text>
</g>
<g >
<title>__fget_light (2 samples, 0.01%)</title><rect x="1184.0" y="869" width="0.1" height="15.0" fill="rgb(250,72,51)" rx="2" ry="2" />
<text x="1186.96" y="879.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (4 samples, 0.02%)</title><rect x="395.1" y="821" width="0.2" height="15.0" fill="rgb(211,64,50)" rx="2" ry="2" />
<text x="398.13" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3log8LogIndex8GetEntryElPNS0_13LogIndexEntryE (5 samples, 0.02%)</title><rect x="549.8" y="821" width="0.2" height="15.0" fill="rgb(239,29,43)" rx="2" ry="2" />
<text x="552.75" y="831.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail14strand_service8dispatchINS1_17rewrapped_handlerINS1_7binder1INS1_15wrapped_handlerINS0_10io_context6strandESt5_BindIFSt7_Mem_fnIMN2yb3rpc9Scheduler4ImplEFvRKNS_6system10error_codeEEEPSE_St12_PlaceholderILi1EEEENS1_26is_continuation_if_runningEEESG_EESQ_EEEEvRPNS2_11strand_implERT_ (72 samples, 0.31%)</title><rect x="423.9" y="901" width="3.7" height="15.0" fill="rgb(240,86,21)" rx="2" ry="2" />
<text x="426.93" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver14StartOperationEv (41 samples, 0.17%)</title><rect x="487.9" y="853" width="2.0" height="15.0" fill="rgb(243,78,2)" rx="2" ry="2" />
<text x="490.87" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb10ThreadPool8DoSubmitESt10shared_ptrINS_8RunnableEEPNS_15ThreadPoolTokenE (2 samples, 0.01%)</title><rect x="765.2" y="805" width="0.1" height="15.0" fill="rgb(207,172,51)" rx="2" ry="2" />
<text x="768.20" y="815.5" ></text>
</g>
<g >
<title>ctx_sched_out (51 samples, 0.22%)</title><rect x="44.3" y="725" width="2.6" height="15.0" fill="rgb(219,3,0)" rx="2" ry="2" />
<text x="47.34" y="735.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (3 samples, 0.01%)</title><rect x="412.3" y="725" width="0.1" height="15.0" fill="rgb(225,72,12)" rx="2" ry="2" />
<text x="415.30" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13serialization16SerializeMessageERKN6google8protobuf11MessageLiteEPNS_12RefCntBufferEibmPm (10 samples, 0.04%)</title><rect x="543.6" y="821" width="0.5" height="15.0" fill="rgb(212,168,28)" rx="2" ry="2" />
<text x="546.56" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="624.2" y="693" width="0.1" height="15.0" fill="rgb(214,221,33)" rx="2" ry="2" />
<text x="627.22" y="703.5" ></text>
</g>
<g >
<title>ipt_do_table (7 samples, 0.03%)</title><rect x="349.4" y="501" width="0.3" height="15.0" fill="rgb(205,144,47)" rx="2" ry="2" />
<text x="352.36" y="511.5" ></text>
</g>
<g >
<title>ip_queue_xmit (5 samples, 0.02%)</title><rect x="341.6" y="181" width="0.3" height="15.0" fill="rgb(212,137,52)" rx="2" ry="2" />
<text x="344.60" y="191.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (2 samples, 0.01%)</title><rect x="434.5" y="709" width="0.1" height="15.0" fill="rgb(225,103,3)" rx="2" ry="2" />
<text x="437.50" y="719.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="963.3" y="565" width="0.1" height="15.0" fill="rgb(236,78,41)" rx="2" ry="2" />
<text x="966.32" y="575.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus12ReplicaState28AdvanceCommittedOpIdUnlockedERKNS_4OpIdENS_17StronglyTypedBoolINS0_13CouldStop_TagEEE (75 samples, 0.32%)</title><rect x="531.9" y="869" width="3.8" height="15.0" fill="rgb(215,43,21)" rx="2" ry="2" />
<text x="534.93" y="879.5" ></text>
</g>
<g >
<title>sys_epoll_wait (2,097 samples, 8.95%)</title><rect x="222.5" y="853" width="105.6" height="15.0" fill="rgb(243,204,27)" rx="2" ry="2" />
<text x="225.48" y="863.5" >sys_epoll_wait</text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4NextEv (4 samples, 0.02%)</title><rect x="976.2" y="757" width="0.2" height="15.0" fill="rgb(218,102,0)" rx="2" ry="2" />
<text x="979.21" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken10SubmitFuncESt8functionIFvvEE (9 samples, 0.04%)</title><rect x="531.3" y="853" width="0.5" height="15.0" fill="rgb(210,176,41)" rx="2" ry="2" />
<text x="534.32" y="863.5" ></text>
</g>
<g >
<title>finish_task_switch (10 samples, 0.04%)</title><rect x="753.5" y="677" width="0.5" height="15.0" fill="rgb(251,123,50)" rx="2" ry="2" />
<text x="756.47" y="687.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (147 samples, 0.63%)</title><rect x="404.9" y="725" width="7.4" height="15.0" fill="rgb(226,28,26)" rx="2" ry="2" />
<text x="407.89" y="735.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf11MessageLite20ParseFromCodedStreamEPNS0_2io16CodedInputStreamE (27 samples, 0.12%)</title><rect x="377.4" y="725" width="1.3" height="15.0" fill="rgb(222,128,31)" rx="2" ry="2" />
<text x="380.35" y="735.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (4 samples, 0.02%)</title><rect x="414.4" y="805" width="0.2" height="15.0" fill="rgb(239,160,49)" rx="2" ry="2" />
<text x="417.41" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9Messenger17QueueOutboundCallESt10shared_ptrINS0_12OutboundCallEE (50 samples, 0.21%)</title><rect x="545.1" y="821" width="2.5" height="15.0" fill="rgb(244,79,50)" rx="2" ry="2" />
<text x="548.12" y="831.5" ></text>
</g>
<g >
<title>__schedule (5 samples, 0.02%)</title><rect x="434.4" y="805" width="0.3" height="15.0" fill="rgb(229,103,26)" rx="2" ry="2" />
<text x="437.45" y="815.5" ></text>
</g>
<g >
<title>update_load_avg (3 samples, 0.01%)</title><rect x="240.3" y="709" width="0.1" height="15.0" fill="rgb(214,5,44)" rx="2" ry="2" />
<text x="243.25" y="719.5" ></text>
</g>
<g >
<title>sock_has_perm (5 samples, 0.02%)</title><rect x="389.6" y="693" width="0.3" height="15.0" fill="rgb(222,70,35)" rx="2" ry="2" />
<text x="392.64" y="703.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb8MemTable13KeyComparatorclEPKcS3_ (4 samples, 0.02%)</title><rect x="532.8" y="565" width="0.2" height="15.0" fill="rgb(236,21,32)" rx="2" ry="2" />
<text x="535.83" y="575.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="963.1" y="517" width="0.2" height="15.0" fill="rgb(239,82,39)" rx="2" ry="2" />
<text x="966.12" y="527.5" ></text>
</g>
<g >
<title>nf_hook_slow (12 samples, 0.05%)</title><rect x="343.2" y="341" width="0.6" height="15.0" fill="rgb(215,102,34)" rx="2" ry="2" />
<text x="346.22" y="351.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus13UpdateReplicaEPNS0_18ConsensusRequestPBEPNS0_19ConsensusResponsePBE (84 samples, 0.36%)</title><rect x="749.1" y="837" width="4.3" height="15.0" fill="rgb(225,53,2)" rx="2" ry="2" />
<text x="752.14" y="847.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (7 samples, 0.03%)</title><rect x="499.8" y="773" width="0.4" height="15.0" fill="rgb(207,82,50)" rx="2" ry="2" />
<text x="502.80" y="783.5" ></text>
</g>
<g >
<title>__tls_get_addr (8 samples, 0.03%)</title><rect x="692.6" y="661" width="0.4" height="15.0" fill="rgb(249,121,28)" rx="2" ry="2" />
<text x="695.64" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb16ScopedAdoptTraceC1EPNS_5TraceE (2 samples, 0.01%)</title><rect x="487.0" y="917" width="0.1" height="15.0" fill="rgb(249,90,22)" rx="2" ry="2" />
<text x="490.01" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock8NowRangeEv (2 samples, 0.01%)</title><rect x="552.0" y="837" width="0.1" height="15.0" fill="rgb(233,211,46)" rx="2" ry="2" />
<text x="555.02" y="847.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (7 samples, 0.03%)</title><rect x="528.7" y="949" width="0.3" height="15.0" fill="rgb(242,93,11)" rx="2" ry="2" />
<text x="531.65" y="959.5" ></text>
</g>
<g >
<title>tick_sched_handle (89 samples, 0.38%)</title><rect x="1174.9" y="693" width="4.5" height="15.0" fill="rgb(211,171,16)" rx="2" ry="2" />
<text x="1177.90" y="703.5" ></text>
</g>
<g >
<title>wake_up_q (8 samples, 0.03%)</title><rect x="372.2" y="661" width="0.4" height="15.0" fill="rgb(253,82,30)" rx="2" ry="2" />
<text x="375.22" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc19ScheduledTaskWithIdIZZNS0_15ServicePoolImpl20ScheduleCheckTimeoutENSt6chrono10time_pointINS_15CoarseMonoClockENS3_8durationIlSt5ratioILl1ELl1000000000EEEEEEENKUlvE_clEvEUllRKNS_6StatusEE_E3RunESE_ (15 samples, 0.06%)</title><rect x="431.3" y="901" width="0.8" height="15.0" fill="rgb(209,224,17)" rx="2" ry="2" />
<text x="434.33" y="911.5" ></text>
</g>
<g >
<title>tcp_in_window (3 samples, 0.01%)</title><rect x="340.3" y="453" width="0.2" height="15.0" fill="rgb(241,128,20)" rx="2" ry="2" />
<text x="343.35" y="463.5" ></text>
</g>
<g >
<title>do_futex (12 samples, 0.05%)</title><rect x="753.5" y="757" width="0.6" height="15.0" fill="rgb(231,135,41)" rx="2" ry="2" />
<text x="756.47" y="767.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="719.1" y="677" width="0.1" height="15.0" fill="rgb(226,90,15)" rx="2" ry="2" />
<text x="722.13" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus12RpcPeerProxy11UpdateAsyncEPKNS0_18ConsensusRequestPBENS0_18RequestTriggerModeEPNS0_19ConsensusResponsePBEPNS_3rpc13RpcControllerERKSt8functionIFvvEE (128 samples, 0.55%)</title><rect x="541.8" y="901" width="6.5" height="15.0" fill="rgb(242,120,6)" rx="2" ry="2" />
<text x="544.85" y="911.5" ></text>
</g>
<g >
<title>mark_wake_futex (2 samples, 0.01%)</title><rect x="372.1" y="661" width="0.1" height="15.0" fill="rgb(243,122,32)" rx="2" ry="2" />
<text x="375.12" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream10PopSendingEv (10 samples, 0.04%)</title><rect x="360.6" y="805" width="0.5" height="15.0" fill="rgb(222,95,28)" rx="2" ry="2" />
<text x="363.59" y="815.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="395.3" y="965" width="0.2" height="15.0" fill="rgb(232,89,50)" rx="2" ry="2" />
<text x="398.33" y="975.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (28 samples, 0.12%)</title><rect x="714.1" y="677" width="1.4" height="15.0" fill="rgb(232,99,46)" rx="2" ry="2" />
<text x="717.09" y="687.5" ></text>
</g>
<g >
<title>ipt_do_table (6 samples, 0.03%)</title><rect x="388.8" y="373" width="0.3" height="15.0" fill="rgb(211,93,37)" rx="2" ry="2" />
<text x="391.78" y="383.5" ></text>
</g>
<g >
<title>try_to_wake_up (2 samples, 0.01%)</title><rect x="400.2" y="757" width="0.1" height="15.0" fill="rgb(252,163,11)" rx="2" ry="2" />
<text x="403.21" y="767.5" ></text>
</g>
<g >
<title>__wake_up_locked (24 samples, 0.10%)</title><rect x="353.7" y="181" width="1.2" height="15.0" fill="rgb(238,200,13)" rx="2" ry="2" />
<text x="356.74" y="191.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="976.1" y="725" width="0.1" height="15.0" fill="rgb(210,196,29)" rx="2" ry="2" />
<text x="979.11" y="735.5" ></text>
</g>
<g >
<title>path_put (15 samples, 0.06%)</title><rect x="329.9" y="821" width="0.7" height="15.0" fill="rgb(243,98,52)" rx="2" ry="2" />
<text x="332.87" y="831.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="432.9" y="917" width="0.1" height="15.0" fill="rgb(214,146,28)" rx="2" ry="2" />
<text x="435.89" y="927.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.02%)</title><rect x="394.7" y="789" width="0.2" height="15.0" fill="rgb(205,195,15)" rx="2" ry="2" />
<text x="397.72" y="799.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (2 samples, 0.01%)</title><rect x="434.8" y="805" width="0.1" height="15.0" fill="rgb(213,101,15)" rx="2" ry="2" />
<text x="437.80" y="815.5" ></text>
</g>
<g >
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="1010.6" y="709" width="0.1" height="15.0" fill="rgb(222,9,2)" rx="2" ry="2" />
<text x="1013.55" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache7ReadOpsElliPSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS5_EEPNS_6OpIdPBEPb (26 samples, 0.11%)</title><rect x="548.9" y="869" width="1.4" height="15.0" fill="rgb(217,167,12)" rx="2" ry="2" />
<text x="551.95" y="879.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.02%)</title><rect x="453.1" y="789" width="0.2" height="15.0" fill="rgb(249,138,24)" rx="2" ry="2" />
<text x="456.08" y="799.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_local_fn (2 samples, 0.01%)</title><rect x="340.6" y="501" width="0.1" height="15.0" fill="rgb(224,70,9)" rx="2" ry="2" />
<text x="343.60" y="511.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv@plt (4 samples, 0.02%)</title><rect x="1047.3" y="757" width="0.2" height="15.0" fill="rgb(215,58,10)" rx="2" ry="2" />
<text x="1050.31" y="767.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (9 samples, 0.04%)</title><rect x="412.4" y="725" width="0.5" height="15.0" fill="rgb(222,176,30)" rx="2" ry="2" />
<text x="415.45" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIteratorC1EPN7rocksdb2DBERKNS2_11ReadOptionsEPKNS0_9KeyBoundsE (6 samples, 0.03%)</title><rect x="776.0" y="725" width="0.3" height="15.0" fill="rgb(218,186,33)" rx="2" ry="2" />
<text x="779.02" y="735.5" ></text>
</g>
<g >
<title>_ZN40protobuf_yb_2frpc_2frpc_5fheader_2eproto26InitDefaultsResponseHeaderEv (2 samples, 0.01%)</title><rect x="374.7" y="741" width="0.1" height="15.0" fill="rgb(249,181,30)" rx="2" ry="2" />
<text x="377.68" y="751.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="497.6" y="901" width="0.1" height="15.0" fill="rgb(252,9,34)" rx="2" ry="2" />
<text x="500.64" y="911.5" ></text>
</g>
<g >
<title>all (23,436 samples, 100%)</title><rect x="10.0" y="997" width="1180.0" height="15.0" fill="rgb(234,55,27)" rx="2" ry="2" />
<text x="13.00" y="1007.5" ></text>
</g>
<g >
<title>iomap_file_buffered_write (5 samples, 0.02%)</title><rect x="402.4" y="677" width="0.3" height="15.0" fill="rgb(207,203,30)" rx="2" ry="2" />
<text x="405.43" y="687.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (4 samples, 0.02%)</title><rect x="202.5" y="773" width="0.2" height="15.0" fill="rgb(223,98,54)" rx="2" ry="2" />
<text x="205.54" y="783.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="550.6" y="837" width="0.1" height="15.0" fill="rgb(243,169,7)" rx="2" ry="2" />
<text x="553.61" y="847.5" ></text>
</g>
<g >
<title>_ZNSt6chrono3_V212steady_clock3nowEv (4 samples, 0.02%)</title><rect x="428.0" y="901" width="0.2" height="15.0" fill="rgb(224,216,35)" rx="2" ry="2" />
<text x="430.95" y="911.5" ></text>
</g>
<g >
<title>nf_hook_slow (6 samples, 0.03%)</title><rect x="357.3" y="533" width="0.3" height="15.0" fill="rgb(231,171,38)" rx="2" ry="2" />
<text x="360.26" y="543.5" ></text>
</g>
<g >
<title>__fdget (9 samples, 0.04%)</title><rect x="1183.5" y="869" width="0.5" height="15.0" fill="rgb(249,195,50)" rx="2" ry="2" />
<text x="1186.50" y="879.5" ></text>
</g>
<g >
<title>vfs_write (19 samples, 0.08%)</title><rect x="746.4" y="677" width="1.0" height="15.0" fill="rgb(248,168,13)" rx="2" ry="2" />
<text x="749.42" y="687.5" ></text>
</g>
<g >
<title>release_sock (2 samples, 0.01%)</title><rect x="338.2" y="661" width="0.1" height="15.0" fill="rgb(246,200,40)" rx="2" ry="2" />
<text x="341.18" y="671.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv (47 samples, 0.20%)</title><rect x="905.4" y="693" width="2.4" height="15.0" fill="rgb(231,107,5)" rx="2" ry="2" />
<text x="908.42" y="703.5" ></text>
</g>
<g >
<title>ep_send_events_proc (4 samples, 0.02%)</title><rect x="420.1" y="821" width="0.2" height="15.0" fill="rgb(237,99,54)" rx="2" ry="2" />
<text x="423.10" y="831.5" ></text>
</g>
<g >
<title>iptable_raw_hook (4 samples, 0.02%)</title><rect x="339.2" y="501" width="0.2" height="15.0" fill="rgb(220,167,8)" rx="2" ry="2" />
<text x="342.24" y="511.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter12ParseNextKeyEv (63 samples, 0.27%)</title><rect x="677.1" y="645" width="3.2" height="15.0" fill="rgb(232,41,13)" rx="2" ry="2" />
<text x="680.14" y="655.5" ></text>
</g>
<g >
<title>do_syscall_64 (13 samples, 0.06%)</title><rect x="434.3" y="901" width="0.7" height="15.0" fill="rgb(223,2,7)" rx="2" ry="2" />
<text x="437.35" y="911.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (2 samples, 0.01%)</title><rect x="742.2" y="805" width="0.1" height="15.0" fill="rgb(206,162,34)" rx="2" ry="2" />
<text x="745.19" y="815.5" ></text>
</g>
<g >
<title>[unknown] (16 samples, 0.07%)</title><rect x="220.5" y="885" width="0.8" height="15.0" fill="rgb(228,117,21)" rx="2" ry="2" />
<text x="223.46" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue16AppendOperationsERKSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS5_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointE (10 samples, 0.04%)</title><rect x="536.4" y="885" width="0.5" height="15.0" fill="rgb(244,217,36)" rx="2" ry="2" />
<text x="539.41" y="895.5" ></text>
</g>
<g >
<title>mntput (3 samples, 0.01%)</title><rect x="329.7" y="821" width="0.2" height="15.0" fill="rgb(245,217,34)" rx="2" ry="2" />
<text x="332.72" y="831.5" ></text>
</g>
<g >
<title>find_busiest_group (3 samples, 0.01%)</title><rect x="115.4" y="725" width="0.1" height="15.0" fill="rgb(234,156,54)" rx="2" ry="2" />
<text x="118.38" y="735.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.02%)</title><rect x="396.1" y="725" width="0.2" height="15.0" fill="rgb(233,154,34)" rx="2" ry="2" />
<text x="399.13" y="735.5" ></text>
</g>
<g >
<title>perf_pmu_enable (20 samples, 0.09%)</title><rect x="484.6" y="741" width="1.0" height="15.0" fill="rgb(216,42,22)" rx="2" ry="2" />
<text x="487.60" y="751.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (3 samples, 0.01%)</title><rect x="231.3" y="805" width="0.1" height="15.0" fill="rgb(227,125,0)" rx="2" ry="2" />
<text x="234.29" y="815.5" ></text>
</g>
<g >
<title>_ZN7rocksdb7Version12AddIteratorsERKNS_11ReadOptionsERKNS_10EnvOptionsEPNS_20MergeIteratorBuilderE (2 samples, 0.01%)</title><rect x="776.2" y="677" width="0.1" height="15.0" fill="rgb(208,123,54)" rx="2" ry="2" />
<text x="779.17" y="687.5" ></text>
</g>
<g >
<title>tcp_rcv_established (23 samples, 0.10%)</title><rect x="387.1" y="325" width="1.1" height="15.0" fill="rgb(224,16,23)" rx="2" ry="2" />
<text x="390.07" y="335.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4SeekERKN2yb5SliceE (4 samples, 0.02%)</title><rect x="913.3" y="725" width="0.2" height="15.0" fill="rgb(227,185,38)" rx="2" ry="2" />
<text x="916.33" y="735.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (2 samples, 0.01%)</title><rect x="877.3" y="661" width="0.1" height="15.0" fill="rgb(219,115,39)" rx="2" ry="2" />
<text x="880.28" y="671.5" ></text>
</g>
<g >
<title>ip_queue_xmit (103 samples, 0.44%)</title><rect x="339.0" y="565" width="5.2" height="15.0" fill="rgb(219,213,52)" rx="2" ry="2" />
<text x="341.99" y="575.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv (12 samples, 0.05%)</title><rect x="833.4" y="677" width="0.6" height="15.0" fill="rgb(222,160,2)" rx="2" ry="2" />
<text x="836.37" y="687.5" ></text>
</g>
<g >
<title>try_to_wake_up (5 samples, 0.02%)</title><rect x="438.7" y="821" width="0.3" height="15.0" fill="rgb(229,168,1)" rx="2" ry="2" />
<text x="441.73" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus18ConsensusRequestPB10SharedDtorEv (2 samples, 0.01%)</title><rect x="745.6" y="837" width="0.1" height="15.0" fill="rgb(238,2,5)" rx="2" ry="2" />
<text x="748.61" y="847.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (2 samples, 0.01%)</title><rect x="390.0" y="789" width="0.1" height="15.0" fill="rgb(253,189,46)" rx="2" ry="2" />
<text x="393.04" y="799.5" ></text>
</g>
<g >
<title>finish_task_switch (1,694 samples, 7.23%)</title><rect x="240.5" y="757" width="85.2" height="15.0" fill="rgb(244,213,49)" rx="2" ry="2" />
<text x="243.45" y="767.5" >finish_tas..</text>
</g>
<g >
<title>_ZNK2yb6tablet11MvccManager13DoGetSafeTimeENS_10HybridTimeENSt6chrono10time_pointINS_15CoarseMonoClockENS3_8durationIlSt5ratioILl1ELl1000000000EEEEEES2_PSt11unique_lockISt5mutexE (3 samples, 0.01%)</title><rect x="774.6" y="853" width="0.2" height="15.0" fill="rgb(210,30,33)" rx="2" ry="2" />
<text x="777.61" y="863.5" ></text>
</g>
<g >
<title>try_to_wake_up (6 samples, 0.03%)</title><rect x="531.4" y="725" width="0.3" height="15.0" fill="rgb(240,52,4)" rx="2" ry="2" />
<text x="534.42" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection18UpdateLastActivityEv (2 samples, 0.01%)</title><rect x="367.9" y="853" width="0.1" height="15.0" fill="rgb(236,140,15)" rx="2" ry="2" />
<text x="370.89" y="863.5" ></text>
</g>
<g >
<title>[libc-2.23.so] (2,237 samples, 9.55%)</title><rect x="220.1" y="901" width="112.6" height="15.0" fill="rgb(209,218,51)" rx="2" ry="2" />
<text x="223.06" y="911.5" >[libc-2.23.so]</text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (3 samples, 0.01%)</title><rect x="1012.0" y="725" width="0.2" height="15.0" fill="rgb(231,111,54)" rx="2" ry="2" />
<text x="1015.01" y="735.5" ></text>
</g>
<g >
<title>call_timer_fn (2 samples, 0.01%)</title><rect x="113.7" y="661" width="0.1" height="15.0" fill="rgb(248,17,45)" rx="2" ry="2" />
<text x="116.72" y="671.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="437.1" y="741" width="0.2" height="15.0" fill="rgb(242,211,27)" rx="2" ry="2" />
<text x="440.07" y="751.5" ></text>
</g>
<g >
<title>__pv_queued_spin_lock_slowpath (2 samples, 0.01%)</title><rect x="434.8" y="789" width="0.1" height="15.0" fill="rgb(214,142,33)" rx="2" ry="2" />
<text x="437.80" y="799.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.14 (4 samples, 0.02%)</title><rect x="242.6" y="677" width="0.2" height="15.0" fill="rgb(227,170,42)" rx="2" ry="2" />
<text x="245.62" y="687.5" ></text>
</g>
<g >
<title>_ZN5boost11multi_index6detail17bucket_array_baseILb1EE8positionEmm (2 samples, 0.01%)</title><rect x="534.2" y="645" width="0.1" height="15.0" fill="rgb(223,11,10)" rx="2" ry="2" />
<text x="537.24" y="655.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (45 samples, 0.19%)</title><rect x="352.9" y="293" width="2.3" height="15.0" fill="rgb(239,191,8)" rx="2" ry="2" />
<text x="355.93" y="303.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (37 samples, 0.16%)</title><rect x="882.4" y="645" width="1.8" height="15.0" fill="rgb(214,65,44)" rx="2" ry="2" />
<text x="885.36" y="655.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (8 samples, 0.03%)</title><rect x="482.5" y="693" width="0.4" height="15.0" fill="rgb(240,154,16)" rx="2" ry="2" />
<text x="485.53" y="703.5" ></text>
</g>
<g >
<title>__clock_gettime (14 samples, 0.06%)</title><rect x="527.9" y="949" width="0.8" height="15.0" fill="rgb(229,101,3)" rx="2" ry="2" />
<text x="530.95" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb4util22FastDecodeSignedVarIntEPKhm (16 samples, 0.07%)</title><rect x="802.3" y="629" width="0.8" height="15.0" fill="rgb(214,33,18)" rx="2" ry="2" />
<text x="805.26" y="639.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEji (2 samples, 0.01%)</title><rect x="496.4" y="885" width="0.1" height="15.0" fill="rgb(233,177,17)" rx="2" ry="2" />
<text x="499.43" y="895.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="490.6" y="629" width="0.1" height="15.0" fill="rgb(211,160,16)" rx="2" ry="2" />
<text x="493.64" y="639.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (4 samples, 0.02%)</title><rect x="963.1" y="645" width="0.2" height="15.0" fill="rgb(223,112,29)" rx="2" ry="2" />
<text x="966.12" y="655.5" ></text>
</g>
<g >
<title>try_to_wake_up (11 samples, 0.05%)</title><rect x="746.6" y="533" width="0.5" height="15.0" fill="rgb(212,207,0)" rx="2" ry="2" />
<text x="749.57" y="543.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (97 samples, 0.41%)</title><rect x="609.0" y="789" width="4.8" height="15.0" fill="rgb(210,176,13)" rx="2" ry="2" />
<text x="611.96" y="799.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (6 samples, 0.03%)</title><rect x="601.8" y="901" width="0.3" height="15.0" fill="rgb(220,85,20)" rx="2" ry="2" />
<text x="604.81" y="911.5" ></text>
</g>
<g >
<title>ip_finish_output2 (110 samples, 0.47%)</title><rect x="351.7" y="517" width="5.5" height="15.0" fill="rgb(248,105,50)" rx="2" ry="2" />
<text x="354.67" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="601.9" y="869" width="0.2" height="15.0" fill="rgb(222,14,9)" rx="2" ry="2" />
<text x="604.86" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3log8LogIndex16GetChunkForIndexElbP13scoped_refptrINS1_10IndexChunkEE (5 samples, 0.02%)</title><rect x="549.8" y="805" width="0.2" height="15.0" fill="rgb(254,164,25)" rx="2" ry="2" />
<text x="552.75" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13SatisfyBoundsERKNS_5SliceE (2 samples, 0.01%)</title><rect x="914.0" y="773" width="0.1" height="15.0" fill="rgb(211,222,25)" rx="2" ry="2" />
<text x="917.03" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer21CreateOperationDriverEv (3 samples, 0.01%)</title><rect x="750.2" y="757" width="0.2" height="15.0" fill="rgb(214,55,44)" rx="2" ry="2" />
<text x="753.24" y="767.5" ></text>
</g>
<g >
<title>select_task_rq_fair (3 samples, 0.01%)</title><rect x="473.9" y="661" width="0.2" height="15.0" fill="rgb(237,94,17)" rx="2" ry="2" />
<text x="476.92" y="671.5" ></text>
</g>
<g >
<title>tick_sched_handle (28 samples, 0.12%)</title><rect x="590.7" y="677" width="1.4" height="15.0" fill="rgb(253,73,38)" rx="2" ry="2" />
<text x="593.69" y="687.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (32 samples, 0.14%)</title><rect x="353.5" y="229" width="1.6" height="15.0" fill="rgb(230,189,8)" rx="2" ry="2" />
<text x="356.54" y="239.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="601.4" y="933" width="0.2" height="15.0" fill="rgb(232,42,22)" rx="2" ry="2" />
<text x="604.41" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10RpcContextD2Ev (3 samples, 0.01%)</title><rect x="745.6" y="869" width="0.2" height="15.0" fill="rgb(236,222,49)" rx="2" ry="2" />
<text x="748.61" y="879.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (6 samples, 0.03%)</title><rect x="492.6" y="773" width="0.3" height="15.0" fill="rgb(253,137,48)" rx="2" ry="2" />
<text x="495.55" y="783.5" ></text>
</g>
<g >
<title>deactivate_task (2 samples, 0.01%)</title><rect x="117.1" y="773" width="0.1" height="15.0" fill="rgb(236,45,6)" rx="2" ry="2" />
<text x="120.14" y="783.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBImpl19NewInternalIteratorERKNS_11ReadOptionsEPNS_16ColumnFamilyDataEPNS_12SuperVersionEPNS_5ArenaE (3 samples, 0.01%)</title><rect x="776.1" y="693" width="0.2" height="15.0" fill="rgb(222,167,28)" rx="2" ry="2" />
<text x="779.12" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver14WriteRequestPB10SharedDtorEv (2 samples, 0.01%)</title><rect x="737.6" y="837" width="0.1" height="15.0" fill="rgb(234,143,30)" rx="2" ry="2" />
<text x="740.56" y="847.5" ></text>
</g>
<g >
<title>do_futex (7 samples, 0.03%)</title><rect x="531.4" y="757" width="0.3" height="15.0" fill="rgb(250,160,44)" rx="2" ry="2" />
<text x="534.37" y="767.5" ></text>
</g>
<g >
<title>drop_futex_key_refs.isra.13 (7 samples, 0.03%)</title><rect x="558.3" y="821" width="0.4" height="15.0" fill="rgb(215,152,53)" rx="2" ry="2" />
<text x="561.31" y="831.5" ></text>
</g>
<g >
<title>__GI___libc_write (22 samples, 0.09%)</title><rect x="746.3" y="741" width="1.1" height="15.0" fill="rgb(243,198,30)" rx="2" ry="2" />
<text x="749.32" y="751.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="342.7" y="85" width="0.1" height="15.0" fill="rgb(225,200,4)" rx="2" ry="2" />
<text x="345.71" y="95.5" ></text>
</g>
<g >
<title>futex_wait (770 samples, 3.29%)</title><rect x="557.4" y="837" width="38.7" height="15.0" fill="rgb(244,183,27)" rx="2" ry="2" />
<text x="560.35" y="847.5" >fut..</text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (822 samples, 3.51%)</title><rect x="486.2" y="949" width="41.3" height="15.0" fill="rgb(240,224,13)" rx="2" ry="2" />
<text x="489.16" y="959.5" >_ZN..</text>
</g>
<g >
<title>futex_wait_queue_me (465 samples, 1.98%)</title><rect x="499.2" y="821" width="23.5" height="15.0" fill="rgb(226,99,19)" rx="2" ry="2" />
<text x="502.25" y="831.5" >f..</text>
</g>
<g >
<title>_ZN2yb6tablet12PreparerImpl3RunEv (179 samples, 0.76%)</title><rect x="487.2" y="917" width="9.0" height="15.0" fill="rgb(236,203,2)" rx="2" ry="2" />
<text x="490.17" y="927.5" ></text>
</g>
<g >
<title>security_file_permission (10 samples, 0.04%)</title><rect x="393.4" y="789" width="0.5" height="15.0" fill="rgb(207,64,45)" rx="2" ry="2" />
<text x="396.36" y="799.5" ></text>
</g>
<g >
<title>acceptor-24031 (4 samples, 0.02%)</title><rect x="394.9" y="981" width="0.2" height="15.0" fill="rgb(225,6,31)" rx="2" ry="2" />
<text x="397.92" y="991.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal20RepeatedPtrFieldBase3AddINS0_16RepeatedPtrFieldIN2yb17PgsqlExpressionPBEE11TypeHandlerEEEPNT_4TypeESB_ (2 samples, 0.01%)</title><rect x="622.7" y="773" width="0.1" height="15.0" fill="rgb(233,150,48)" rx="2" ry="2" />
<text x="625.66" y="783.5" ></text>
</g>
<g >
<title>hrtimer_active (16 samples, 0.07%)</title><rect x="42.1" y="773" width="0.8" height="15.0" fill="rgb(229,52,42)" rx="2" ry="2" />
<text x="45.07" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb17FindLastWriteTimeEPNS0_19IntentAwareIteratorERKNS_5SliceEPNS_13DocHybridTimeEPNS0_10ExpirationEPNS0_5ValueE (2,704 samples, 11.54%)</title><rect x="777.2" y="789" width="136.1" height="15.0" fill="rgb(239,47,21)" rx="2" ry="2" />
<text x="780.18" y="799.5" >_ZN2yb5docdb17Fin..</text>
</g>
<g >
<title>hrtimer_cancel (8 samples, 0.03%)</title><rect x="615.1" y="853" width="0.4" height="15.0" fill="rgb(241,93,41)" rx="2" ry="2" />
<text x="618.10" y="863.5" ></text>
</g>
<g >
<title>x86_pmu_enable (42 samples, 0.18%)</title><rect x="421.2" y="725" width="2.1" height="15.0" fill="rgb(237,210,16)" rx="2" ry="2" />
<text x="424.21" y="735.5" ></text>
</g>
<g >
<title>tick_sched_handle (3 samples, 0.01%)</title><rect x="1038.5" y="645" width="0.2" height="15.0" fill="rgb(233,18,29)" rx="2" ry="2" />
<text x="1041.55" y="655.5" ></text>
</g>
<g >
<title>__vfs_write (24 samples, 0.10%)</title><rect x="545.9" y="677" width="1.2" height="15.0" fill="rgb(229,85,11)" rx="2" ry="2" />
<text x="548.92" y="687.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (184 samples, 0.79%)</title><rect x="380.9" y="821" width="9.3" height="15.0" fill="rgb(250,203,5)" rx="2" ry="2" />
<text x="383.93" y="831.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (20 samples, 0.09%)</title><rect x="401.7" y="725" width="1.0" height="15.0" fill="rgb(215,150,30)" rx="2" ry="2" />
<text x="404.72" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.05%)</title><rect x="414.1" y="837" width="0.5" height="15.0" fill="rgb(206,141,6)" rx="2" ry="2" />
<text x="417.06" y="847.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="1022.9" y="629" width="0.1" height="15.0" fill="rgb(239,59,43)" rx="2" ry="2" />
<text x="1025.89" y="639.5" ></text>
</g>
<g >
<title>ev_feed_event (7 samples, 0.03%)</title><rect x="134.6" y="901" width="0.3" height="15.0" fill="rgb(246,157,6)" rx="2" ry="2" />
<text x="137.57" y="911.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter12ParseNextKeyEv (86 samples, 0.37%)</title><rect x="1005.0" y="709" width="4.3" height="15.0" fill="rgb(206,18,53)" rx="2" ry="2" />
<text x="1007.96" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker17UpdateConsumptionEb (2 samples, 0.01%)</title><rect x="363.1" y="757" width="0.1" height="15.0" fill="rgb(219,227,41)" rx="2" ry="2" />
<text x="366.10" y="767.5" ></text>
</g>
<g >
<title>sched_clock (3 samples, 0.01%)</title><rect x="238.6" y="693" width="0.2" height="15.0" fill="rgb(208,131,48)" rx="2" ry="2" />
<text x="241.64" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim@plt (3 samples, 0.01%)</title><rect x="637.7" y="677" width="0.2" height="15.0" fill="rgb(214,75,33)" rx="2" ry="2" />
<text x="640.71" y="687.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5 samples, 0.02%)</title><rect x="1189.3" y="933" width="0.2" height="15.0" fill="rgb(242,223,43)" rx="2" ry="2" />
<text x="1192.30" y="943.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (5 samples, 0.02%)</title><rect x="414.2" y="693" width="0.2" height="15.0" fill="rgb(254,54,41)" rx="2" ry="2" />
<text x="417.16" y="703.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (2 samples, 0.01%)</title><rect x="341.5" y="181" width="0.1" height="15.0" fill="rgb(230,160,31)" rx="2" ry="2" />
<text x="344.45" y="191.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator26SkipEmptyDataBlocksForwardEv.constprop.113 (20 samples, 0.09%)</title><rect x="868.8" y="661" width="1.0" height="15.0" fill="rgb(206,47,33)" rx="2" ry="2" />
<text x="871.82" y="671.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (38 samples, 0.16%)</title><rect x="478.1" y="885" width="1.9" height="15.0" fill="rgb(245,58,34)" rx="2" ry="2" />
<text x="481.05" y="895.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator13InitDataBlockEv.part.107.constprop.115 (8 samples, 0.03%)</title><rect x="1003.6" y="709" width="0.4" height="15.0" fill="rgb(218,51,53)" rx="2" ry="2" />
<text x="1006.55" y="719.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb3rpc12OutboundCallESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv (2 samples, 0.01%)</title><rect x="774.3" y="901" width="0.1" height="15.0" fill="rgb(222,75,10)" rx="2" ry="2" />
<text x="777.26" y="911.5" ></text>
</g>
<g >
<title>tc_newarray (3 samples, 0.01%)</title><rect x="767.1" y="837" width="0.1" height="15.0" fill="rgb(247,47,38)" rx="2" ry="2" />
<text x="770.06" y="847.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState28GetLeaderLeaseStatusUnlockedEPNS_9MonoDeltaEPNSt6chrono10time_pointINS_15CoarseMonoClockENS4_8durationIlSt5ratioILl1ELl1000000000EEEEEE (2 samples, 0.01%)</title><rect x="536.2" y="837" width="0.1" height="15.0" fill="rgb(205,162,47)" rx="2" ry="2" />
<text x="539.21" y="847.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (158 samples, 0.67%)</title><rect x="606.9" y="853" width="8.0" height="15.0" fill="rgb(205,193,41)" rx="2" ry="2" />
<text x="609.90" y="863.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicateMsg39InternalSerializeWithCachedSizesToArrayEbPh (4 samples, 0.02%)</title><rect x="543.9" y="789" width="0.2" height="15.0" fill="rgb(208,215,34)" rx="2" ry="2" />
<text x="546.86" y="799.5" ></text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase7ReleaseEv (2 samples, 0.01%)</title><rect x="488.7" y="821" width="0.1" height="15.0" fill="rgb(245,155,25)" rx="2" ry="2" />
<text x="491.68" y="831.5" ></text>
</g>
<g >
<title>pthread_cond_wait@plt (2 samples, 0.01%)</title><rect x="481.7" y="933" width="0.1" height="15.0" fill="rgb(246,32,21)" rx="2" ry="2" />
<text x="484.68" y="943.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="862.0" y="661" width="0.1" height="15.0" fill="rgb(254,222,2)" rx="2" ry="2" />
<text x="864.97" y="671.5" ></text>
</g>
<g >
<title>tcp_send_mss (3 samples, 0.01%)</title><rect x="344.3" y="629" width="0.1" height="15.0" fill="rgb(224,16,31)" rx="2" ry="2" />
<text x="347.27" y="639.5" ></text>
</g>
<g >
<title>x86_pmu_disable (10 samples, 0.04%)</title><rect x="452.3" y="725" width="0.5" height="15.0" fill="rgb(228,206,22)" rx="2" ry="2" />
<text x="455.32" y="735.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="970.5" y="693" width="0.2" height="15.0" fill="rgb(227,111,39)" rx="2" ry="2" />
<text x="973.52" y="703.5" ></text>
</g>
<g >
<title>__schedule (8 samples, 0.03%)</title><rect x="396.5" y="645" width="0.4" height="15.0" fill="rgb(227,192,13)" rx="2" ry="2" />
<text x="399.54" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator16FindLatestRecordERKNS_5SliceEPNS_13DocHybridTimeEPS2_ (2,704 samples, 11.54%)</title><rect x="777.2" y="773" width="136.1" height="15.0" fill="rgb(226,61,21)" rx="2" ry="2" />
<text x="780.18" y="783.5" >_ZN2yb5docdb19Int..</text>
</g>
<g >
<title>__fget_light (33 samples, 0.14%)</title><rect x="28.2" y="821" width="1.7" height="15.0" fill="rgb(228,168,38)" rx="2" ry="2" />
<text x="31.23" y="831.5" ></text>
</g>
<g >
<title>ipt_do_table (4 samples, 0.02%)</title><rect x="388.5" y="373" width="0.2" height="15.0" fill="rgb(224,194,37)" rx="2" ry="2" />
<text x="391.53" y="383.5" ></text>
</g>
<g >
<title>ttwu_do_activate (2 samples, 0.01%)</title><rect x="531.6" y="709" width="0.1" height="15.0" fill="rgb(207,92,38)" rx="2" ry="2" />
<text x="534.57" y="719.5" ></text>
</g>
<g >
<title>check_preempt_curr (4 samples, 0.02%)</title><rect x="546.6" y="501" width="0.2" height="15.0" fill="rgb(248,118,35)" rx="2" ry="2" />
<text x="549.58" y="511.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (88 samples, 0.38%)</title><rect x="109.5" y="741" width="4.4" height="15.0" fill="rgb(237,217,54)" rx="2" ry="2" />
<text x="112.49" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime14GetEncodedSizeERKNS_5SliceE (3 samples, 0.01%)</title><rect x="831.5" y="645" width="0.2" height="15.0" fill="rgb(226,13,10)" rx="2" ry="2" />
<text x="834.51" y="655.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (21 samples, 0.09%)</title><rect x="482.1" y="901" width="1.0" height="15.0" fill="rgb(227,211,34)" rx="2" ry="2" />
<text x="485.08" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb10ThreadPool14DispatchThreadEb (366 samples, 1.56%)</title><rect x="395.5" y="933" width="18.4" height="15.0" fill="rgb(235,152,34)" rx="2" ry="2" />
<text x="398.48" y="943.5" ></text>
</g>
<g >
<title>__clock_gettime (42 samples, 0.18%)</title><rect x="10.0" y="949" width="2.1" height="15.0" fill="rgb(227,153,32)" rx="2" ry="2" />
<text x="13.00" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus18ConsensusRequestPB10SharedCtorEv (2 samples, 0.01%)</title><rect x="758.9" y="869" width="0.1" height="15.0" fill="rgb(229,102,50)" rx="2" ry="2" />
<text x="761.90" y="879.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator11IsKeyPinnedEv (6 samples, 0.03%)</title><rect x="897.1" y="661" width="0.3" height="15.0" fill="rgb(224,173,10)" rx="2" ry="2" />
<text x="900.11" y="671.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (4 samples, 0.02%)</title><rect x="437.1" y="853" width="0.2" height="15.0" fill="rgb(236,17,4)" rx="2" ry="2" />
<text x="440.07" y="863.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator3keyEv (16 samples, 0.07%)</title><rect x="1037.7" y="725" width="0.8" height="15.0" fill="rgb(245,212,11)" rx="2" ry="2" />
<text x="1040.74" y="735.5" ></text>
</g>
<g >
<title>finish_task_switch (20 samples, 0.09%)</title><rect x="484.6" y="773" width="1.0" height="15.0" fill="rgb(236,83,38)" rx="2" ry="2" />
<text x="487.60" y="783.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (5 samples, 0.02%)</title><rect x="206.6" y="837" width="0.3" height="15.0" fill="rgb(211,100,36)" rx="2" ry="2" />
<text x="209.62" y="847.5" ></text>
</g>
<g >
<title>ip_rcv_finish (65 samples, 0.28%)</title><rect x="352.3" y="357" width="3.3" height="15.0" fill="rgb(213,143,14)" rx="2" ry="2" />
<text x="355.33" y="367.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (2 samples, 0.01%)</title><rect x="199.8" y="709" width="0.1" height="15.0" fill="rgb(232,51,46)" rx="2" ry="2" />
<text x="202.77" y="719.5" ></text>
</g>
<g >
<title>sys_getrusage (2 samples, 0.01%)</title><rect x="400.9" y="805" width="0.1" height="15.0" fill="rgb(231,156,31)" rx="2" ry="2" />
<text x="403.92" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCall17NotifyTransferredERKNS_6StatusEPNS0_10ConnectionE (3 samples, 0.01%)</title><rect x="344.6" y="773" width="0.1" height="15.0" fill="rgb(247,70,34)" rx="2" ry="2" />
<text x="347.58" y="783.5" ></text>
</g>
<g >
<title>nf_hook_slow (30 samples, 0.13%)</title><rect x="339.2" y="517" width="1.5" height="15.0" fill="rgb(244,76,11)" rx="2" ry="2" />
<text x="342.19" y="527.5" ></text>
</g>
<g >
<title>ipv4_conntrack_defrag (2 samples, 0.01%)</title><rect x="349.1" y="533" width="0.1" height="15.0" fill="rgb(210,216,24)" rx="2" ry="2" />
<text x="352.06" y="543.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCall18RecordCallReceivedEv (8 samples, 0.03%)</title><rect x="369.0" y="773" width="0.4" height="15.0" fill="rgb(217,38,2)" rx="2" ry="2" />
<text x="372.05" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb16EnumerateIntentsENS_5SliceERKS1_RKN5boost8functionIFNS_6StatusENS0_14IntentStrengthES1_PNS0_8KeyBytesEEEES9_NS_17StronglyTypedBoolINS0_26PartialRangeKeyIntents_TagEEE (2,238 samples, 9.55%)</title><rect x="624.4" y="757" width="112.7" height="15.0" fill="rgb(219,167,27)" rx="2" ry="2" />
<text x="627.37" y="767.5" >_ZN2yb5docdb1..</text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="414.2" y="645" width="0.2" height="15.0" fill="rgb(251,97,38)" rx="2" ry="2" />
<text x="417.21" y="655.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (49 samples, 0.21%)</title><rect x="203.9" y="853" width="2.5" height="15.0" fill="rgb(216,128,36)" rx="2" ry="2" />
<text x="206.90" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb18DocRowwiseIterator4InitERKNS_6common13PgsqlScanSpecE (17 samples, 0.07%)</title><rect x="775.8" y="805" width="0.8" height="15.0" fill="rgb(252,150,2)" rx="2" ry="2" />
<text x="778.77" y="815.5" ></text>
</g>
<g >
<title>wake_up_q (2 samples, 0.01%)</title><rect x="751.2" y="629" width="0.1" height="15.0" fill="rgb(213,120,46)" rx="2" ry="2" />
<text x="754.20" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIteratorC1EPN7rocksdb2DBERKNS2_11ReadOptionsEPKNS0_9KeyBoundsE (4 samples, 0.02%)</title><rect x="631.7" y="661" width="0.2" height="15.0" fill="rgb(233,31,38)" rx="2" ry="2" />
<text x="634.67" y="671.5" ></text>
</g>
<g >
<title>__clock_gettime (3 samples, 0.01%)</title><rect x="366.6" y="869" width="0.2" height="15.0" fill="rgb(212,221,38)" rx="2" ry="2" />
<text x="369.63" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPB12InternalSwapEPS0_ (2 samples, 0.01%)</title><rect x="763.7" y="837" width="0.1" height="15.0" fill="rgb(234,46,1)" rx="2" ry="2" />
<text x="766.74" y="847.5" ></text>
</g>
<g >
<title>_ZNSs6resizeEmc@plt (3 samples, 0.01%)</title><rect x="378.1" y="693" width="0.2" height="15.0" fill="rgb(206,126,27)" rx="2" ry="2" />
<text x="381.11" y="703.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf7Message13SpaceUsedLongEv (2 samples, 0.01%)</title><rect x="494.5" y="757" width="0.1" height="15.0" fill="rgb(236,89,29)" rx="2" ry="2" />
<text x="497.47" y="767.5" ></text>
</g>
<g >
<title>__tcp_send_ack.part.32 (10 samples, 0.04%)</title><rect x="341.4" y="213" width="0.5" height="15.0" fill="rgb(253,0,24)" rx="2" ry="2" />
<text x="344.35" y="223.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1020.7" y="693" width="0.1" height="15.0" fill="rgb(205,68,11)" rx="2" ry="2" />
<text x="1023.72" y="703.5" ></text>
</g>
<g >
<title>ip_rcv (87 samples, 0.37%)</title><rect x="352.1" y="373" width="4.4" height="15.0" fill="rgb(226,93,34)" rx="2" ry="2" />
<text x="355.13" y="383.5" ></text>
</g>
<g >
<title>_ZNK2yb7tserver14WriteRequestPB11GetMetadataEv (3 samples, 0.01%)</title><rect x="494.1" y="773" width="0.1" height="15.0" fill="rgb(224,45,40)" rx="2" ry="2" />
<text x="497.06" y="783.5" ></text>
</g>
<g >
<title>tc_newarray (3 samples, 0.01%)</title><rect x="769.3" y="821" width="0.2" height="15.0" fill="rgb(209,127,22)" rx="2" ry="2" />
<text x="772.33" y="831.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (3 samples, 0.01%)</title><rect x="1184.8" y="805" width="0.2" height="15.0" fill="rgb(251,104,3)" rx="2" ry="2" />
<text x="1187.81" y="815.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="369.3" y="757" width="0.1" height="15.0" fill="rgb(244,50,5)" rx="2" ry="2" />
<text x="372.30" y="767.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5valueEv (7 samples, 0.03%)</title><rect x="709.9" y="677" width="0.4" height="15.0" fill="rgb(231,13,15)" rx="2" ry="2" />
<text x="712.91" y="687.5" ></text>
</g>
<g >
<title>schedule (148 samples, 0.63%)</title><rect x="607.4" y="837" width="7.5" height="15.0" fill="rgb(252,183,34)" rx="2" ry="2" />
<text x="610.40" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream12UpdateEventsEv (3 samples, 0.01%)</title><rect x="391.2" y="869" width="0.2" height="15.0" fill="rgb(217,175,16)" rx="2" ry="2" />
<text x="394.20" y="879.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (33 samples, 0.14%)</title><rect x="415.6" y="821" width="1.6" height="15.0" fill="rgb(249,194,18)" rx="2" ry="2" />
<text x="418.57" y="831.5" ></text>
</g>
<g >
<title>enqueue_entity (4 samples, 0.02%)</title><rect x="354.4" y="69" width="0.2" height="15.0" fill="rgb(233,107,52)" rx="2" ry="2" />
<text x="357.39" y="79.5" ></text>
</g>
<g >
<title>__wake_up_locked_key (22 samples, 0.09%)</title><rect x="545.9" y="645" width="1.1" height="15.0" fill="rgb(249,101,20)" rx="2" ry="2" />
<text x="548.92" y="655.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (4 samples, 0.02%)</title><rect x="394.9" y="821" width="0.2" height="15.0" fill="rgb(244,207,50)" rx="2" ry="2" />
<text x="397.92" y="831.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="976.1" y="677" width="0.1" height="15.0" fill="rgb(218,156,34)" rx="2" ry="2" />
<text x="979.11" y="687.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator3keyEv (46 samples, 0.20%)</title><rect x="684.6" y="661" width="2.4" height="15.0" fill="rgb(241,199,38)" rx="2" ry="2" />
<text x="687.64" y="671.5" ></text>
</g>
<g >
<title>__fdget (4 samples, 0.02%)</title><rect x="359.3" y="709" width="0.2" height="15.0" fill="rgb(247,93,4)" rx="2" ry="2" />
<text x="362.28" y="719.5" ></text>
</g>
<g >
<title>security_file_permission (2 samples, 0.01%)</title><rect x="747.3" y="645" width="0.1" height="15.0" fill="rgb(246,146,31)" rx="2" ry="2" />
<text x="750.27" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4NextEv@plt (13 samples, 0.06%)</title><rect x="732.8" y="709" width="0.7" height="15.0" fill="rgb(238,54,35)" rx="2" ry="2" />
<text x="735.82" y="719.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (59 samples, 0.25%)</title><rect x="328.1" y="853" width="2.9" height="15.0" fill="rgb(215,223,11)" rx="2" ry="2" />
<text x="331.06" y="863.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2 samples, 0.01%)</title><rect x="746.7" y="517" width="0.1" height="15.0" fill="rgb(214,218,20)" rx="2" ry="2" />
<text x="749.67" y="527.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue14RequestForPeerERKSsPNS0_18ConsensusRequestPBEPNS0_19ReplicateMsgsHolderEPbPNS0_21RaftPeerPB_MemberTypeES8_ (3 samples, 0.01%)</title><rect x="530.4" y="917" width="0.1" height="15.0" fill="rgb(237,191,31)" rx="2" ry="2" />
<text x="533.37" y="927.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="550.6" y="821" width="0.1" height="15.0" fill="rgb(227,222,27)" rx="2" ry="2" />
<text x="553.61" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (792 samples, 3.38%)</title><rect x="556.8" y="901" width="39.9" height="15.0" fill="rgb(242,133,31)" rx="2" ry="2" />
<text x="559.80" y="911.5" >ent..</text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall9SerializeEPN5boost9container17small_vector_baseINS_12RefCntBufferENS3_13new_allocatorIS5_EEEE (13 samples, 0.06%)</title><rect x="363.1" y="773" width="0.7" height="15.0" fill="rgb(214,214,15)" rx="2" ry="2" />
<text x="366.10" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus4Peer15SendNextRequestENS0_18RequestTriggerModeE (243 samples, 1.04%)</title><rect x="540.9" y="917" width="12.3" height="15.0" fill="rgb(231,52,27)" rx="2" ry="2" />
<text x="543.94" y="927.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (3 samples, 0.01%)</title><rect x="430.7" y="677" width="0.1" height="15.0" fill="rgb(219,11,14)" rx="2" ry="2" />
<text x="433.67" y="687.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4NextEv (7 samples, 0.03%)</title><rect x="840.7" y="693" width="0.3" height="15.0" fill="rgb(241,187,16)" rx="2" ry="2" />
<text x="843.67" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc27YBOutboundConnectionContext12ProcessCallsERKSt10shared_ptrINS0_10ConnectionEERKN5boost9container12small_vectorI5iovecLm4ENS8_13new_allocatorISA_EEEENS_17StronglyTypedBoolINS0_18ReadBufferFull_TagEEE (120 samples, 0.51%)</title><rect x="373.6" y="821" width="6.0" height="15.0" fill="rgb(247,78,37)" rx="2" ry="2" />
<text x="376.58" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor31DrainTaskQueueAndCheckIfClosingEv (2 samples, 0.01%)</title><rect x="366.1" y="869" width="0.1" height="15.0" fill="rgb(252,46,2)" rx="2" ry="2" />
<text x="369.12" y="879.5" ></text>
</g>
<g >
<title>sys_timerfd_settime (14 samples, 0.06%)</title><rect x="433.3" y="869" width="0.7" height="15.0" fill="rgb(252,178,50)" rx="2" ry="2" />
<text x="436.29" y="879.5" ></text>
</g>
<g >
<title>do_syscall_64 (33 samples, 0.14%)</title><rect x="545.7" y="725" width="1.6" height="15.0" fill="rgb(241,2,26)" rx="2" ry="2" />
<text x="548.67" y="735.5" ></text>
</g>
<g >
<title>do_fsync (56 samples, 0.24%)</title><rect x="395.7" y="789" width="2.8" height="15.0" fill="rgb(216,174,46)" rx="2" ry="2" />
<text x="398.68" y="799.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="835.5" y="677" width="0.1" height="15.0" fill="rgb(210,191,23)" rx="2" ry="2" />
<text x="838.49" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver11Heartbeater6Thread12TryHeartbeatEv (33 samples, 0.14%)</title><rect x="413.9" y="901" width="1.7" height="15.0" fill="rgb(215,65,43)" rx="2" ry="2" />
<text x="416.91" y="911.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (7 samples, 0.03%)</title><rect x="358.9" y="693" width="0.3" height="15.0" fill="rgb(241,196,8)" rx="2" ry="2" />
<text x="361.87" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus13WaitForWritesERKNS_4OpIdE (14 samples, 0.06%)</title><rect x="753.4" y="837" width="0.7" height="15.0" fill="rgb(212,221,34)" rx="2" ry="2" />
<text x="756.37" y="847.5" ></text>
</g>
<g >
<title>perf_event_task_tick (3 samples, 0.01%)</title><rect x="321.2" y="613" width="0.2" height="15.0" fill="rgb(214,111,48)" rx="2" ry="2" />
<text x="324.21" y="623.5" ></text>
</g>
<g >
<title>enqueue_to_backlog (2 samples, 0.01%)</title><rect x="356.9" y="405" width="0.1" height="15.0" fill="rgb(233,188,2)" rx="2" ry="2" />
<text x="359.91" y="415.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc5Proxy9QueueCallEPNS0_13RpcControllerERKN5boost4asio2ip14basic_endpointINS6_3tcpEEE (52 samples, 0.22%)</title><rect x="545.0" y="837" width="2.6" height="15.0" fill="rgb(233,118,27)" rx="2" ry="2" />
<text x="548.02" y="847.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15BlockBasedTable20NewDataBlockIteratorERKNS_11ReadOptionsERKN2yb5SliceENS_9BlockTypeEPNS_9BlockIterE (7 samples, 0.03%)</title><rect x="1003.6" y="693" width="0.3" height="15.0" fill="rgb(229,123,43)" rx="2" ry="2" />
<text x="1006.55" y="703.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (6 samples, 0.03%)</title><rect x="354.6" y="101" width="0.3" height="15.0" fill="rgb(249,43,45)" rx="2" ry="2" />
<text x="357.59" y="111.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1181.7" y="853" width="0.1" height="15.0" fill="rgb(223,146,52)" rx="2" ry="2" />
<text x="1184.74" y="863.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="490.6" y="581" width="0.1" height="15.0" fill="rgb(223,2,12)" rx="2" ry="2" />
<text x="493.64" y="591.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet28PrepareTransactionWriteBatchERKNS_5docdb20KeyValueWriteBatchPBENS_10HybridTimeEPN7rocksdb10WriteBatchE (22 samples, 0.09%)</title><rect x="533.5" y="709" width="1.1" height="15.0" fill="rgb(209,60,12)" rx="2" ry="2" />
<text x="536.49" y="719.5" ></text>
</g>
<g >
<title>update_curr (36 samples, 0.15%)</title><rect x="49.2" y="709" width="1.8" height="15.0" fill="rgb(214,161,28)" rx="2" ry="2" />
<text x="52.17" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus12ReplicaState32UpdateMajorityReplicatedUnlockedERKNS_6OpIdPBEPS2_Pb (77 samples, 0.33%)</title><rect x="531.8" y="885" width="3.9" height="15.0" fill="rgb(236,119,8)" rx="2" ry="2" />
<text x="534.83" y="895.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.07%)</title><rect x="430.1" y="773" width="0.8" height="15.0" fill="rgb(235,124,19)" rx="2" ry="2" />
<text x="433.07" y="783.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.01%)</title><rect x="417.3" y="853" width="0.1" height="15.0" fill="rgb(229,139,14)" rx="2" ry="2" />
<text x="420.28" y="863.5" ></text>
</g>
<g >
<title>tc_newarray (16 samples, 0.07%)</title><rect x="617.3" y="933" width="0.8" height="15.0" fill="rgb(216,228,17)" rx="2" ry="2" />
<text x="620.27" y="943.5" ></text>
</g>
<g >
<title>ip_local_out (110 samples, 0.47%)</title><rect x="383.9" y="613" width="5.5" height="15.0" fill="rgb(211,101,21)" rx="2" ry="2" />
<text x="386.90" y="623.5" ></text>
</g>
<g >
<title>dequeue_task_fair (18 samples, 0.08%)</title><rect x="239.5" y="741" width="0.9" height="15.0" fill="rgb(250,102,24)" rx="2" ry="2" />
<text x="242.49" y="751.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="680.5" y="469" width="0.2" height="15.0" fill="rgb(236,172,38)" rx="2" ry="2" />
<text x="683.46" y="479.5" ></text>
</g>
<g >
<title>ev_time (2 samples, 0.01%)</title><rect x="215.7" y="901" width="0.1" height="15.0" fill="rgb(236,19,34)" rx="2" ry="2" />
<text x="218.68" y="911.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (2 samples, 0.01%)</title><rect x="149.1" y="853" width="0.1" height="15.0" fill="rgb(210,67,27)" rx="2" ry="2" />
<text x="152.07" y="863.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="686.9" y="613" width="0.1" height="15.0" fill="rgb(238,202,7)" rx="2" ry="2" />
<text x="689.85" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.03%)</title><rect x="492.6" y="757" width="0.3" height="15.0" fill="rgb(242,210,12)" rx="2" ry="2" />
<text x="495.55" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb12HdrHistogram11IncrementByEll (3 samples, 0.01%)</title><rect x="621.2" y="869" width="0.2" height="15.0" fill="rgb(209,90,12)" rx="2" ry="2" />
<text x="624.25" y="879.5" ></text>
</g>
<g >
<title>sys_futex (9 samples, 0.04%)</title><rect x="1061.7" y="885" width="0.5" height="15.0" fill="rgb(227,179,5)" rx="2" ry="2" />
<text x="1064.71" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (66 samples, 0.28%)</title><rect x="413.9" y="949" width="3.3" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text x="416.91" y="959.5" ></text>
</g>
<g >
<title>rpc_tp_TabletSe (11,526 samples, 49.18%)</title><rect x="602.1" y="981" width="580.3" height="15.0" fill="rgb(223,82,9)" rx="2" ry="2" />
<text x="605.11" y="991.5" >rpc_tp_TabletSe</text>
</g>
<g >
<title>security_socket_recvmsg (5 samples, 0.02%)</title><rect x="389.6" y="725" width="0.3" height="15.0" fill="rgb(206,52,37)" rx="2" ry="2" />
<text x="392.64" y="735.5" ></text>
</g>
<g >
<title>x86_pmu_enable (1,546 samples, 6.60%)</title><rect x="242.5" y="709" width="77.8" height="15.0" fill="rgb(232,53,40)" rx="2" ry="2" />
<text x="245.47" y="719.5" >x86_pmu_..</text>
</g>
<g >
<title>__filemap_fdatawrite_range (2 samples, 0.01%)</title><rect x="398.4" y="725" width="0.1" height="15.0" fill="rgb(232,112,18)" rx="2" ry="2" />
<text x="401.40" y="735.5" ></text>
</g>
<g >
<title>hrtimer_active (8 samples, 0.03%)</title><rect x="159.0" y="773" width="0.4" height="15.0" fill="rgb(236,188,44)" rx="2" ry="2" />
<text x="162.04" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3log8LogIndex10IndexChunk8GetEntryEiPNS0_13PhysicalEntryE (2 samples, 0.01%)</title><rect x="771.1" y="805" width="0.1" height="15.0" fill="rgb(216,58,54)" rx="2" ry="2" />
<text x="774.14" y="815.5" ></text>
</g>
<g >
<title>raft_[worker]-2 (1,475 samples, 6.29%)</title><rect x="527.5" y="981" width="74.3" height="15.0" fill="rgb(236,38,1)" rx="2" ry="2" />
<text x="530.55" y="991.5" >raft_[wo..</text>
</g>
<g >
<title>lock_timer_base (2 samples, 0.01%)</title><rect x="353.3" y="197" width="0.1" height="15.0" fill="rgb(247,37,6)" rx="2" ry="2" />
<text x="356.34" y="207.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (3 samples, 0.01%)</title><rect x="713.5" y="645" width="0.1" height="15.0" fill="rgb(232,210,0)" rx="2" ry="2" />
<text x="716.49" y="655.5" ></text>
</g>
<g >
<title>scheduler_tick (88 samples, 0.38%)</title><rect x="321.0" y="629" width="4.4" height="15.0" fill="rgb(236,25,6)" rx="2" ry="2" />
<text x="323.96" y="639.5" ></text>
</g>
<g >
<title>clear_buddies (2 samples, 0.01%)</title><rect x="48.2" y="725" width="0.1" height="15.0" fill="rgb(222,92,8)" rx="2" ry="2" />
<text x="51.22" y="735.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="715.4" y="613" width="0.1" height="15.0" fill="rgb(254,145,8)" rx="2" ry="2" />
<text x="718.35" y="623.5" ></text>
</g>
<g >
<title>run_posix_cpu_timers (4 samples, 0.02%)</title><rect x="196.9" y="629" width="0.3" height="15.0" fill="rgb(221,62,46)" rx="2" ry="2" />
<text x="199.95" y="639.5" ></text>
</g>
<g >
<title>__kfree_skb (2 samples, 0.01%)</title><rect x="387.1" y="309" width="0.1" height="15.0" fill="rgb(211,169,8)" rx="2" ry="2" />
<text x="390.12" y="319.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4SeekERKNS_5SliceE (4 samples, 0.02%)</title><rect x="913.3" y="757" width="0.2" height="15.0" fill="rgb(249,63,51)" rx="2" ry="2" />
<text x="916.33" y="767.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator5ValidEv (7 samples, 0.03%)</title><rect x="1012.2" y="725" width="0.3" height="15.0" fill="rgb(231,96,37)" rx="2" ry="2" />
<text x="1015.16" y="735.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (5 samples, 0.02%)</title><rect x="426.7" y="709" width="0.3" height="15.0" fill="rgb(227,199,39)" rx="2" ry="2" />
<text x="429.75" y="719.5" ></text>
</g>
<g >
<title>__wake_up_common (31 samples, 0.13%)</title><rect x="353.5" y="213" width="1.6" height="15.0" fill="rgb(206,185,3)" rx="2" ry="2" />
<text x="356.54" y="223.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (5 samples, 0.02%)</title><rect x="236.0" y="757" width="0.3" height="15.0" fill="rgb(235,33,41)" rx="2" ry="2" />
<text x="239.02" y="767.5" ></text>
</g>
<g >
<title>tc_newarray (4 samples, 0.02%)</title><rect x="742.3" y="805" width="0.2" height="15.0" fill="rgb(225,139,16)" rx="2" ry="2" />
<text x="745.34" y="815.5" ></text>
</g>
<g >
<title>load_balance (2 samples, 0.01%)</title><rect x="614.6" y="789" width="0.1" height="15.0" fill="rgb(250,72,47)" rx="2" ry="2" />
<text x="617.55" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall14RespondSuccessERKN6google8protobuf11MessageLiteE (38 samples, 0.16%)</title><rect x="746.1" y="837" width="1.9" height="15.0" fill="rgb(249,142,52)" rx="2" ry="2" />
<text x="749.12" y="847.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="680.5" y="501" width="0.2" height="15.0" fill="rgb(252,191,19)" rx="2" ry="2" />
<text x="683.46" y="511.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator4NextEv (11 samples, 0.05%)</title><rect x="868.3" y="661" width="0.5" height="15.0" fill="rgb(254,49,44)" rx="2" ry="2" />
<text x="871.26" y="671.5" ></text>
</g>
<g >
<title>tick_sched_handle (3 samples, 0.01%)</title><rect x="970.5" y="661" width="0.2" height="15.0" fill="rgb(208,220,34)" rx="2" ry="2" />
<text x="973.52" y="671.5" ></text>
</g>
<g >
<title>ipt_do_table (3 samples, 0.01%)</title><rect x="384.2" y="549" width="0.1" height="15.0" fill="rgb(232,25,30)" rx="2" ry="2" />
<text x="387.15" y="559.5" ></text>
</g>
<g >
<title>_ZN2yb4util32FastDecodeDescendingSignedVarIntEPNS_5SliceE@plt (6 samples, 0.03%)</title><rect x="829.6" y="645" width="0.3" height="15.0" fill="rgb(245,217,37)" rx="2" ry="2" />
<text x="832.65" y="655.5" ></text>
</g>
<g >
<title>do_futex (35 samples, 0.15%)</title><rect x="754.9" y="773" width="1.8" height="15.0" fill="rgb(241,175,7)" rx="2" ry="2" />
<text x="757.93" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream4SendESt10shared_ptrINS0_12OutboundDataEE (31 samples, 0.13%)</title><rect x="362.3" y="805" width="1.6" height="15.0" fill="rgb(249,60,20)" rx="2" ry="2" />
<text x="365.30" y="815.5" ></text>
</g>
<g >
<title>__kfree_skb_flush (3 samples, 0.01%)</title><rect x="351.9" y="421" width="0.1" height="15.0" fill="rgb(241,135,27)" rx="2" ry="2" />
<text x="354.88" y="431.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime10DecodeFromEPNS_5SliceE (4 samples, 0.02%)</title><rect x="794.8" y="661" width="0.2" height="15.0" fill="rgb(245,114,15)" rx="2" ry="2" />
<text x="797.75" y="671.5" ></text>
</g>
<g >
<title>iscsi_queuecommand (3 samples, 0.01%)</title><rect x="395.8" y="549" width="0.1" height="15.0" fill="rgb(215,117,54)" rx="2" ry="2" />
<text x="398.78" y="559.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (8 samples, 0.03%)</title><rect x="599.6" y="773" width="0.5" height="15.0" fill="rgb(238,49,20)" rx="2" ry="2" />
<text x="602.65" y="783.5" ></text>
</g>
<g >
<title>do_futex (598 samples, 2.55%)</title><rect x="447.9" y="869" width="30.1" height="15.0" fill="rgb(240,167,13)" rx="2" ry="2" />
<text x="450.89" y="879.5" >do..</text>
</g>
<g >
<title>sk_stream_alloc_skb (12 samples, 0.05%)</title><rect x="347.6" y="645" width="0.7" height="15.0" fill="rgb(233,61,28)" rx="2" ry="2" />
<text x="350.65" y="655.5" ></text>
</g>
<g >
<title>_ZNSt10_HashtableI13scoped_refptrIN2yb6tablet15OperationDriverEESt4pairIKS4_NS2_16OperationTracker5StateEESaIS9_ENSt8__detail10_Select1stE25ScopedRefPtrEqualsFunctor23ScopedRefPtrHashFunctorNSB_18_Mod_range_hashingENSB_20_Default_ranged_hashENSB_20_Prime_rehash_policyENSB_17_Hashtable_traitsILb1ELb0ELb1EEEE10_M_emplaceIIRPS3_RS8_EEES5_INSB_14_Node_iteratorIS9_Lb0ELb1EEEbESt17integral_constantIbLb1EEDpOT_ (3 samples, 0.01%)</title><rect x="750.5" y="725" width="0.1" height="15.0" fill="rgb(235,107,45)" rx="2" ry="2" />
<text x="753.50" y="735.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.01%)</title><rect x="400.2" y="805" width="0.1" height="15.0" fill="rgb(207,104,11)" rx="2" ry="2" />
<text x="403.21" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="555.0" y="885" width="0.2" height="15.0" fill="rgb(205,79,39)" rx="2" ry="2" />
<text x="558.04" y="895.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc9Messenger11rpc_serviceERKSs (3 samples, 0.01%)</title><rect x="373.0" y="757" width="0.1" height="15.0" fill="rgb(239,229,54)" rx="2" ry="2" />
<text x="375.97" y="767.5" ></text>
</g>
<g >
<title>_ZNKSt10_HashtableIKN2yb3rpc12ConnectionIdESt4pairIS3_St10shared_ptrINS1_10ConnectionEEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS1_16ConnectionIdHashENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS3_m (2 samples, 0.01%)</title><rect x="365.1" y="821" width="0.1" height="15.0" fill="rgb(218,170,24)" rx="2" ry="2" />
<text x="368.07" y="831.5" ></text>
</g>
<g >
<title>__fget (13 samples, 0.06%)</title><rect x="149.7" y="805" width="0.7" height="15.0" fill="rgb(214,27,44)" rx="2" ry="2" />
<text x="152.72" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc18InvokeCallbackTask4DoneERKNS_6StatusE (19 samples, 0.08%)</title><rect x="773.4" y="917" width="1.0" height="15.0" fill="rgb(247,225,39)" rx="2" ry="2" />
<text x="776.41" y="927.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,084 samples, 4.63%)</title><rect x="54.5" y="741" width="54.6" height="15.0" fill="rgb(237,125,43)" rx="2" ry="2" />
<text x="57.51" y="751.5" >__per..</text>
</g>
<g >
<title>trigger_load_balance (22 samples, 0.09%)</title><rect x="197.6" y="613" width="1.1" height="15.0" fill="rgb(232,91,30)" rx="2" ry="2" />
<text x="200.60" y="623.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (4 samples, 0.02%)</title><rect x="473.9" y="709" width="0.2" height="15.0" fill="rgb(208,18,17)" rx="2" ry="2" />
<text x="476.92" y="719.5" ></text>
</g>
<g >
<title>eventfd_poll (3 samples, 0.01%)</title><rect x="230.5" y="789" width="0.2" height="15.0" fill="rgb(248,64,24)" rx="2" ry="2" />
<text x="233.53" y="799.5" ></text>
</g>
<g >
<title>__remove_hrtimer (15 samples, 0.06%)</title><rect x="522.9" y="789" width="0.8" height="15.0" fill="rgb(237,37,36)" rx="2" ry="2" />
<text x="525.91" y="799.5" ></text>
</g>
<g >
<title>___sys_sendmsg (127 samples, 0.54%)</title><rect x="338.1" y="709" width="6.4" height="15.0" fill="rgb(237,100,21)" rx="2" ry="2" />
<text x="341.08" y="719.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf7Message13SpaceUsedLongEv (3 samples, 0.01%)</title><rect x="745.3" y="853" width="0.2" height="15.0" fill="rgb(241,223,10)" rx="2" ry="2" />
<text x="748.31" y="863.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter5valueEv (76 samples, 0.32%)</title><rect x="720.5" y="677" width="3.8" height="15.0" fill="rgb(209,83,22)" rx="2" ry="2" />
<text x="723.49" y="687.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator5ValidEv (5 samples, 0.02%)</title><rect x="683.9" y="661" width="0.2" height="15.0" fill="rgb(241,46,22)" rx="2" ry="2" />
<text x="686.88" y="671.5" ></text>
</g>
<g >
<title>dequeue_entity (3 samples, 0.01%)</title><rect x="420.7" y="741" width="0.2" height="15.0" fill="rgb(206,47,22)" rx="2" ry="2" />
<text x="423.70" y="751.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (3 samples, 0.01%)</title><rect x="490.8" y="597" width="0.1" height="15.0" fill="rgb(207,96,34)" rx="2" ry="2" />
<text x="493.79" y="607.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (345 samples, 1.47%)</title><rect x="456.1" y="725" width="17.4" height="15.0" fill="rgb(254,218,39)" rx="2" ry="2" />
<text x="459.10" y="735.5" ></text>
</g>
<g >
<title>__fget_light (2 samples, 0.01%)</title><rect x="433.8" y="821" width="0.1" height="15.0" fill="rgb(230,107,52)" rx="2" ry="2" />
<text x="436.80" y="831.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5valueEv (6 samples, 0.03%)</title><rect x="901.6" y="661" width="0.3" height="15.0" fill="rgb(227,216,37)" rx="2" ry="2" />
<text x="904.65" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (4 samples, 0.02%)</title><rect x="394.9" y="949" width="0.2" height="15.0" fill="rgb(219,227,53)" rx="2" ry="2" />
<text x="397.92" y="959.5" ></text>
</g>
<g >
<title>perf_pmu_enable (8 samples, 0.03%)</title><rect x="599.6" y="757" width="0.5" height="15.0" fill="rgb(227,131,9)" rx="2" ry="2" />
<text x="602.65" y="767.5" ></text>
</g>
<g >
<title>tick_program_event (2 samples, 0.01%)</title><rect x="113.3" y="693" width="0.1" height="15.0" fill="rgb(243,202,34)" rx="2" ry="2" />
<text x="116.27" y="703.5" ></text>
</g>
<g >
<title>ctx_sched_out (7 samples, 0.03%)</title><rect x="499.8" y="741" width="0.4" height="15.0" fill="rgb(220,108,30)" rx="2" ry="2" />
<text x="502.80" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb6ResultISt10shared_ptrINS_6tablet10TabletPeerEEE7get_ptrEv (2 samples, 0.01%)</title><rect x="745.8" y="869" width="0.1" height="15.0" fill="rgb(223,110,3)" rx="2" ry="2" />
<text x="748.76" y="879.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc16ConnectionIdHashclERKNS0_12ConnectionIdE (4 samples, 0.02%)</title><rect x="365.4" y="837" width="0.2" height="15.0" fill="rgb(238,98,15)" rx="2" ry="2" />
<text x="368.42" y="847.5" ></text>
</g>
<g >
<title>do_futex (2,280 samples, 9.73%)</title><rect x="1065.2" y="869" width="114.8" height="15.0" fill="rgb(248,6,10)" rx="2" ry="2" />
<text x="1068.18" y="879.5" >do_futex</text>
</g>
<g >
<title>__wake_up_locked (12 samples, 0.05%)</title><rect x="546.2" y="597" width="0.6" height="15.0" fill="rgb(227,135,7)" rx="2" ry="2" />
<text x="549.23" y="607.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="719.1" y="661" width="0.1" height="15.0" fill="rgb(215,5,14)" rx="2" ry="2" />
<text x="722.13" y="671.5" ></text>
</g>
<g >
<title>__update_idle_core (3 samples, 0.01%)</title><rect x="326.1" y="741" width="0.1" height="15.0" fill="rgb(249,175,44)" rx="2" ry="2" />
<text x="329.10" y="751.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (6 samples, 0.03%)</title><rect x="1188.3" y="773" width="0.3" height="15.0" fill="rgb(233,122,38)" rx="2" ry="2" />
<text x="1191.34" y="783.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.02%)</title><rect x="394.7" y="757" width="0.2" height="15.0" fill="rgb(241,30,38)" rx="2" ry="2" />
<text x="397.72" y="767.5" ></text>
</g>
<g >
<title>hrtimer_init (8 samples, 0.03%)</title><rect x="37.6" y="789" width="0.4" height="15.0" fill="rgb(223,22,18)" rx="2" ry="2" />
<text x="40.59" y="799.5" ></text>
</g>
<g >
<title>enqueue_task_fair (2 samples, 0.01%)</title><rect x="442.4" y="789" width="0.1" height="15.0" fill="rgb(233,17,18)" rx="2" ry="2" />
<text x="445.35" y="799.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (3 samples, 0.01%)</title><rect x="1185.3" y="773" width="0.2" height="15.0" fill="rgb(250,96,18)" rx="2" ry="2" />
<text x="1188.32" y="783.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5valueEv (7 samples, 0.03%)</title><rect x="713.3" y="661" width="0.3" height="15.0" fill="rgb(233,43,13)" rx="2" ry="2" />
<text x="716.29" y="671.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (19 samples, 0.08%)</title><rect x="596.7" y="901" width="0.9" height="15.0" fill="rgb(222,117,10)" rx="2" ry="2" />
<text x="599.68" y="911.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1063.0" y="917" width="0.1" height="15.0" fill="rgb(250,69,26)" rx="2" ry="2" />
<text x="1065.97" y="927.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet16OperationTracker17IncrementCountersERKNS0_15OperationDriverE (2 samples, 0.01%)</title><rect x="750.4" y="725" width="0.1" height="15.0" fill="rgb(243,223,11)" rx="2" ry="2" />
<text x="753.40" y="735.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.02%)</title><rect x="395.1" y="789" width="0.2" height="15.0" fill="rgb(250,208,15)" rx="2" ry="2" />
<text x="398.13" y="799.5" ></text>
</g>
<g >
<title>___sys_recvmsg (162 samples, 0.69%)</title><rect x="381.7" y="757" width="8.2" height="15.0" fill="rgb(246,108,34)" rx="2" ry="2" />
<text x="384.73" y="767.5" ></text>
</g>
<g >
<title>find_busiest_group (3 samples, 0.01%)</title><rect x="199.9" y="725" width="0.1" height="15.0" fill="rgb(251,224,47)" rx="2" ry="2" />
<text x="202.87" y="735.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1181.7" y="837" width="0.1" height="15.0" fill="rgb(227,185,52)" rx="2" ry="2" />
<text x="1184.74" y="847.5" ></text>
</g>
<g >
<title>activate_task (3 samples, 0.01%)</title><rect x="426.5" y="709" width="0.2" height="15.0" fill="rgb(229,145,12)" rx="2" ry="2" />
<text x="429.54" y="719.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (14 samples, 0.06%)</title><rect x="1073.6" y="789" width="0.7" height="15.0" fill="rgb(226,193,11)" rx="2" ry="2" />
<text x="1076.64" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet16OperationTracker3AddEPNS0_15OperationDriverE (2 samples, 0.01%)</title><rect x="624.1" y="741" width="0.1" height="15.0" fill="rgb(252,38,39)" rx="2" ry="2" />
<text x="627.07" y="751.5" ></text>
</g>
<g >
<title>cpu_load_update_active (3 samples, 0.01%)</title><rect x="197.3" y="613" width="0.1" height="15.0" fill="rgb(241,162,48)" rx="2" ry="2" />
<text x="200.25" y="623.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter5ValidEv (6 samples, 0.03%)</title><rect x="1052.9" y="757" width="0.3" height="15.0" fill="rgb(236,174,1)" rx="2" ry="2" />
<text x="1055.90" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="399.9" y="805" width="0.2" height="15.0" fill="rgb(207,60,44)" rx="2" ry="2" />
<text x="402.86" y="815.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.02%)</title><rect x="395.1" y="773" width="0.2" height="15.0" fill="rgb(219,175,6)" rx="2" ry="2" />
<text x="398.13" y="783.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (34 samples, 0.15%)</title><rect x="1060.8" y="933" width="1.7" height="15.0" fill="rgb(226,2,4)" rx="2" ry="2" />
<text x="1063.80" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="482.3" y="805" width="0.1" height="15.0" fill="rgb(254,119,49)" rx="2" ry="2" />
<text x="485.33" y="815.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="395.1" y="725" width="0.2" height="15.0" fill="rgb(217,46,21)" rx="2" ry="2" />
<text x="398.13" y="735.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (92 samples, 0.39%)</title><rect x="1174.9" y="757" width="4.6" height="15.0" fill="rgb(239,116,37)" rx="2" ry="2" />
<text x="1177.90" y="767.5" ></text>
</g>
<g >
<title>__dta_xfs_vm_writepages_3187 (2 samples, 0.01%)</title><rect x="398.4" y="693" width="0.1" height="15.0" fill="rgb(213,99,33)" rx="2" ry="2" />
<text x="401.40" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache17EvictSomeUnlockedEll (6 samples, 0.03%)</title><rect x="769.5" y="837" width="0.3" height="15.0" fill="rgb(229,99,0)" rx="2" ry="2" />
<text x="772.48" y="847.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv (15 samples, 0.06%)</title><rect x="1046.6" y="757" width="0.7" height="15.0" fill="rgb(230,122,44)" rx="2" ry="2" />
<text x="1049.55" y="767.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc13RpcController7timeoutEv (3 samples, 0.01%)</title><rect x="365.3" y="837" width="0.1" height="15.0" fill="rgb(239,30,43)" rx="2" ry="2" />
<text x="368.27" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb23InitRocksDBWriteOptionsEPN7rocksdb12WriteOptionsE (2 samples, 0.01%)</title><rect x="532.3" y="709" width="0.1" height="15.0" fill="rgb(240,202,11)" rx="2" ry="2" />
<text x="535.33" y="719.5" ></text>
</g>
<g >
<title>enqueue_task_fair (4 samples, 0.02%)</title><rect x="746.8" y="485" width="0.2" height="15.0" fill="rgb(229,209,49)" rx="2" ry="2" />
<text x="749.77" y="495.5" ></text>
</g>
<g >
<title>getrusage (2 samples, 0.01%)</title><rect x="400.7" y="773" width="0.1" height="15.0" fill="rgb(243,162,29)" rx="2" ry="2" />
<text x="403.72" y="783.5" ></text>
</g>
<g >
<title>schedule (455 samples, 1.94%)</title><rect x="499.8" y="805" width="22.9" height="15.0" fill="rgb(254,0,13)" rx="2" ry="2" />
<text x="502.75" y="815.5" >s..</text>
</g>
<g >
<title>pick_next_task_fair (7 samples, 0.03%)</title><rect x="325.7" y="757" width="0.4" height="15.0" fill="rgb(217,116,20)" rx="2" ry="2" />
<text x="328.74" y="767.5" ></text>
</g>
<g >
<title>__schedule (8 samples, 0.03%)</title><rect x="599.6" y="805" width="0.5" height="15.0" fill="rgb(223,216,16)" rx="2" ry="2" />
<text x="602.65" y="815.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5valueEv (7 samples, 0.03%)</title><rect x="901.9" y="661" width="0.4" height="15.0" fill="rgb(251,30,44)" rx="2" ry="2" />
<text x="904.95" y="671.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5valueEv (11 samples, 0.05%)</title><rect x="1042.5" y="725" width="0.6" height="15.0" fill="rgb(213,200,22)" rx="2" ry="2" />
<text x="1045.53" y="735.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (5 samples, 0.02%)</title><rect x="440.0" y="933" width="0.2" height="15.0" fill="rgb(226,39,18)" rx="2" ry="2" />
<text x="442.99" y="943.5" ></text>
</g>
<g >
<title>__schedule (28 samples, 0.12%)</title><rect x="397.0" y="661" width="1.4" height="15.0" fill="rgb(235,227,45)" rx="2" ry="2" />
<text x="399.99" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb12HdrHistogram11IncrementByEll (8 samples, 0.03%)</title><rect x="364.1" y="805" width="0.4" height="15.0" fill="rgb(247,166,45)" rx="2" ry="2" />
<text x="367.06" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet22HandlePgsqlReadRequestENSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEERKNS_14ReadHybridTimeERKNS_18PgsqlReadRequestPBERKNS_21TransactionMetadataPBEPNS0_22PgsqlReadRequestResultE (5,643 samples, 24.08%)</title><rect x="775.2" y="869" width="284.1" height="15.0" fill="rgb(254,156,52)" rx="2" ry="2" />
<text x="778.22" y="879.5" >_ZN2yb6tablet6Tablet22HandlePgsqlReadR..</text>
</g>
<g >
<title>trigger_load_balance (3 samples, 0.01%)</title><rect x="996.7" y="597" width="0.2" height="15.0" fill="rgb(254,3,2)" rx="2" ry="2" />
<text x="999.71" y="607.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (18 samples, 0.08%)</title><rect x="526.2" y="933" width="0.9" height="15.0" fill="rgb(240,71,30)" rx="2" ry="2" />
<text x="529.24" y="943.5" ></text>
</g>
<g >
<title>x86_pmu_enable (8 samples, 0.03%)</title><rect x="753.5" y="629" width="0.4" height="15.0" fill="rgb(241,123,24)" rx="2" ry="2" />
<text x="756.52" y="639.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb20KeyValueWriteBatchPB11GetMetadataEv (3 samples, 0.01%)</title><rect x="494.3" y="757" width="0.2" height="15.0" fill="rgb(229,131,36)" rx="2" ry="2" />
<text x="497.32" y="767.5" ></text>
</g>
<g >
<title>_ZNK2yb7tserver15TSTabletManager12LookupTabletERKSsPSt10shared_ptrINS_6tablet10TabletPeerEE (7 samples, 0.03%)</title><rect x="748.3" y="821" width="0.3" height="15.0" fill="rgb(249,147,15)" rx="2" ry="2" />
<text x="751.28" y="831.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="686.9" y="549" width="0.1" height="15.0" fill="rgb(235,223,29)" rx="2" ry="2" />
<text x="689.85" y="559.5" ></text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="976.1" y="613" width="0.1" height="15.0" fill="rgb(233,44,42)" rx="2" ry="2" />
<text x="979.11" y="623.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor19ScheduleReactorTaskESt10shared_ptrINS0_11ReactorTaskEEb (24 samples, 0.10%)</title><rect x="746.3" y="757" width="1.2" height="15.0" fill="rgb(223,224,10)" rx="2" ry="2" />
<text x="749.27" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken13SubmitClosureENS_8CallbackIFvvEEE (32 samples, 0.14%)</title><rect x="765.1" y="837" width="1.7" height="15.0" fill="rgb(227,126,51)" rx="2" ry="2" />
<text x="768.15" y="847.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.02%)</title><rect x="396.1" y="693" width="0.2" height="15.0" fill="rgb(211,39,53)" rx="2" ry="2" />
<text x="399.13" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime15FullyDecodeFromERKNS_5SliceE (679 samples, 2.90%)</title><rect x="795.8" y="661" width="34.1" height="15.0" fill="rgb(252,121,21)" rx="2" ry="2" />
<text x="798.76" y="671.5" >_Z..</text>
</g>
<g >
<title>futex_wait_setup (2 samples, 0.01%)</title><rect x="522.7" y="821" width="0.1" height="15.0" fill="rgb(234,175,50)" rx="2" ry="2" />
<text x="525.66" y="831.5" ></text>
</g>
<g >
<title>wake_up_q (5 samples, 0.02%)</title><rect x="438.7" y="837" width="0.3" height="15.0" fill="rgb(224,116,31)" rx="2" ry="2" />
<text x="441.73" y="847.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3 samples, 0.01%)</title><rect x="1015.3" y="677" width="0.2" height="15.0" fill="rgb(221,168,42)" rx="2" ry="2" />
<text x="1018.34" y="687.5" ></text>
</g>
<g >
<title>skb_release_all (4 samples, 0.02%)</title><rect x="382.5" y="677" width="0.2" height="15.0" fill="rgb(230,26,19)" rx="2" ry="2" />
<text x="385.54" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi@plt (4 samples, 0.02%)</title><rect x="631.5" y="693" width="0.2" height="15.0" fill="rgb(237,217,38)" rx="2" ry="2" />
<text x="634.47" y="703.5" ></text>
</g>
<g >
<title>schedule (2,117 samples, 9.03%)</title><rect x="1073.0" y="821" width="106.6" height="15.0" fill="rgb(241,218,5)" rx="2" ry="2" />
<text x="1075.99" y="831.5" >schedule</text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (8 samples, 0.03%)</title><rect x="55.2" y="709" width="0.4" height="15.0" fill="rgb(233,167,35)" rx="2" ry="2" />
<text x="58.16" y="719.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (18 samples, 0.08%)</title><rect x="238.0" y="741" width="0.9" height="15.0" fill="rgb(242,188,0)" rx="2" ry="2" />
<text x="241.03" y="751.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (41 samples, 0.17%)</title><rect x="196.6" y="709" width="2.1" height="15.0" fill="rgb(234,134,14)" rx="2" ry="2" />
<text x="199.65" y="719.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv (54 samples, 0.23%)</title><rect x="1047.5" y="757" width="2.7" height="15.0" fill="rgb(226,128,22)" rx="2" ry="2" />
<text x="1050.51" y="767.5" ></text>
</g>
<g >
<title>path_put (5 samples, 0.02%)</title><rect x="123.8" y="821" width="0.3" height="15.0" fill="rgb(214,154,25)" rx="2" ry="2" />
<text x="126.84" y="831.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (5 samples, 0.02%)</title><rect x="1077.7" y="741" width="0.3" height="15.0" fill="rgb(250,76,3)" rx="2" ry="2" />
<text x="1080.72" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5ValidEv (16 samples, 0.07%)</title><rect x="724.4" y="693" width="0.8" height="15.0" fill="rgb(226,70,52)" rx="2" ry="2" />
<text x="727.36" y="703.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="342.7" y="133" width="0.1" height="15.0" fill="rgb(218,85,52)" rx="2" ry="2" />
<text x="345.71" y="143.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection15UpdateLastWriteEv (2 samples, 0.01%)</title><rect x="345.8" y="821" width="0.1" height="15.0" fill="rgb(209,54,4)" rx="2" ry="2" />
<text x="348.83" y="831.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="423.3" y="741" width="0.1" height="15.0" fill="rgb(231,58,4)" rx="2" ry="2" />
<text x="426.32" y="751.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc12ConnectionId8HashCodeEv (4 samples, 0.02%)</title><rect x="364.9" y="821" width="0.2" height="15.0" fill="rgb(221,88,43)" rx="2" ry="2" />
<text x="367.87" y="831.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus16PeerMessageQueue9IsOpInLogERKNS_6OpIdPBE (25 samples, 0.11%)</title><rect x="770.3" y="853" width="1.3" height="15.0" fill="rgb(232,130,16)" rx="2" ry="2" />
<text x="773.33" y="863.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (402 samples, 1.72%)</title><rect x="501.2" y="757" width="20.3" height="15.0" fill="rgb(240,182,1)" rx="2" ry="2" />
<text x="504.21" y="767.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (32 samples, 0.14%)</title><rect x="415.6" y="757" width="1.6" height="15.0" fill="rgb(213,83,47)" rx="2" ry="2" />
<text x="418.62" y="767.5" ></text>
</g>
<g >
<title>schedule (62 samples, 0.26%)</title><rect x="420.4" y="805" width="3.1" height="15.0" fill="rgb(215,78,49)" rx="2" ry="2" />
<text x="423.35" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc26YBInboundConnectionContext12ProcessCallsERKSt10shared_ptrINS0_10ConnectionEERKN5boost9container12small_vectorI5iovecLm4ENS8_13new_allocatorISA_EEEENS_17StronglyTypedBoolINS0_18ReadBufferFull_TagEEE (93 samples, 0.40%)</title><rect x="368.9" y="821" width="4.7" height="15.0" fill="rgb(238,185,31)" rx="2" ry="2" />
<text x="371.89" y="831.5" ></text>
</g>
<g >
<title>eventfd_write (24 samples, 0.10%)</title><rect x="545.9" y="661" width="1.2" height="15.0" fill="rgb(240,141,5)" rx="2" ry="2" />
<text x="548.92" y="671.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="1022.9" y="677" width="0.1" height="15.0" fill="rgb(210,13,29)" rx="2" ry="2" />
<text x="1025.89" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv (10 samples, 0.04%)</title><rect x="904.8" y="693" width="0.5" height="15.0" fill="rgb(206,18,3)" rx="2" ry="2" />
<text x="907.77" y="703.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="342.7" y="69" width="0.1" height="15.0" fill="rgb(234,49,35)" rx="2" ry="2" />
<text x="345.71" y="79.5" ></text>
</g>
<g >
<title>dequeue_task_fair (5 samples, 0.02%)</title><rect x="1074.3" y="773" width="0.3" height="15.0" fill="rgb(248,130,54)" rx="2" ry="2" />
<text x="1077.35" y="783.5" ></text>
</g>
<g >
<title>schedule (1,773 samples, 7.57%)</title><rect x="237.4" y="789" width="89.3" height="15.0" fill="rgb(218,58,32)" rx="2" ry="2" />
<text x="240.38" y="799.5" >schedule</text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (2,378 samples, 10.15%)</title><rect x="1062.6" y="933" width="119.7" height="15.0" fill="rgb(247,54,53)" rx="2" ry="2" />
<text x="1065.56" y="943.5" >pthread_cond_w..</text>
</g>
<g >
<title>futex_wait (5 samples, 0.02%)</title><rect x="601.9" y="821" width="0.2" height="15.0" fill="rgb(212,22,24)" rx="2" ry="2" />
<text x="604.86" y="831.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="601.9" y="677" width="0.2" height="15.0" fill="rgb(237,173,0)" rx="2" ry="2" />
<text x="604.86" y="687.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.02%)</title><rect x="601.9" y="741" width="0.2" height="15.0" fill="rgb(218,101,45)" rx="2" ry="2" />
<text x="604.86" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (2 samples, 0.01%)</title><rect x="1015.2" y="709" width="0.1" height="15.0" fill="rgb(224,100,27)" rx="2" ry="2" />
<text x="1018.24" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb12_GLOBAL__N_126LongOperationTrackerHelper7ExecuteEv (18 samples, 0.08%)</title><rect x="602.1" y="949" width="0.9" height="15.0" fill="rgb(205,203,23)" rx="2" ry="2" />
<text x="605.11" y="959.5" ></text>
</g>
<g >
<title>ipt_do_table (2 samples, 0.01%)</title><rect x="355.4" y="293" width="0.1" height="15.0" fill="rgb(222,3,14)" rx="2" ry="2" />
<text x="358.40" y="303.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (2 samples, 0.01%)</title><rect x="233.6" y="773" width="0.1" height="15.0" fill="rgb(231,19,42)" rx="2" ry="2" />
<text x="236.60" y="783.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc13RpcController7timeoutEv (2 samples, 0.01%)</title><rect x="544.1" y="821" width="0.1" height="15.0" fill="rgb(219,164,44)" rx="2" ry="2" />
<text x="547.06" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus21ConsensusServiceProxy20UpdateConsensusAsyncERKNS0_18ConsensusRequestPBEPNS0_19ConsensusResponsePBEPNS_3rpc13RpcControllerESt8functionIFvvEE (124 samples, 0.53%)</title><rect x="542.0" y="885" width="6.2" height="15.0" fill="rgb(237,213,41)" rx="2" ry="2" />
<text x="545.00" y="895.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="372.3" y="613" width="0.1" height="15.0" fill="rgb(238,17,12)" rx="2" ry="2" />
<text x="375.32" y="623.5" ></text>
</g>
<g >
<title>select_task_rq_fair (8 samples, 0.03%)</title><rect x="755.6" y="725" width="0.4" height="15.0" fill="rgb(205,188,51)" rx="2" ry="2" />
<text x="758.63" y="735.5" ></text>
</g>
<g >
<title>native_write_msr (3 samples, 0.01%)</title><rect x="499.9" y="677" width="0.1" height="15.0" fill="rgb(230,126,35)" rx="2" ry="2" />
<text x="502.85" y="687.5" ></text>
</g>
<g >
<title>perf_pmu_enable (32 samples, 0.14%)</title><rect x="415.6" y="741" width="1.6" height="15.0" fill="rgb(228,4,33)" rx="2" ry="2" />
<text x="418.62" y="751.5" ></text>
</g>
<g >
<title>__wake_up_locked_key (13 samples, 0.06%)</title><rect x="746.5" y="629" width="0.6" height="15.0" fill="rgb(218,101,30)" rx="2" ry="2" />
<text x="749.47" y="639.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter4NextEv (3 samples, 0.01%)</title><rect x="874.5" y="645" width="0.1" height="15.0" fill="rgb(242,56,49)" rx="2" ry="2" />
<text x="877.46" y="655.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (6 samples, 0.03%)</title><rect x="347.8" y="613" width="0.3" height="15.0" fill="rgb(246,89,21)" rx="2" ry="2" />
<text x="350.85" y="623.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (11 samples, 0.05%)</title><rect x="342.3" y="213" width="0.5" height="15.0" fill="rgb(212,164,27)" rx="2" ry="2" />
<text x="345.26" y="223.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="526.3" y="917" width="0.1" height="15.0" fill="rgb(245,73,39)" rx="2" ry="2" />
<text x="529.29" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb20LongOperationTrackerC2EPKcNS_9MonoDeltaE (5 samples, 0.02%)</title><rect x="748.9" y="837" width="0.2" height="15.0" fill="rgb(222,205,10)" rx="2" ry="2" />
<text x="751.88" y="847.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb21InternalKeyComparator7CompareERKN2yb5SliceES4_ (101 samples, 0.43%)</title><rect x="687.0" y="661" width="5.1" height="15.0" fill="rgb(253,64,16)" rx="2" ry="2" />
<text x="690.00" y="671.5" ></text>
</g>
<g >
<title>native_write_msr (7 samples, 0.03%)</title><rect x="607.8" y="709" width="0.3" height="15.0" fill="rgb(241,109,14)" rx="2" ry="2" />
<text x="610.75" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter3keyEv (24 samples, 0.10%)</title><rect x="908.3" y="693" width="1.3" height="15.0" fill="rgb(235,128,38)" rx="2" ry="2" />
<text x="911.34" y="703.5" ></text>
</g>
<g >
<title>sk_reset_timer (6 samples, 0.03%)</title><rect x="357.9" y="565" width="0.3" height="15.0" fill="rgb(222,114,18)" rx="2" ry="2" />
<text x="360.87" y="575.5" ></text>
</g>
<g >
<title>try_to_wake_up (13 samples, 0.06%)</title><rect x="430.2" y="709" width="0.7" height="15.0" fill="rgb(241,93,15)" rx="2" ry="2" />
<text x="433.22" y="719.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="828.5" y="597" width="0.1" height="15.0" fill="rgb(242,158,10)" rx="2" ry="2" />
<text x="831.49" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver17TabletServiceImpl12CompleteReadEPNS0_11ReadContextE (5,652 samples, 24.12%)</title><rect x="775.0" y="901" width="284.5" height="15.0" fill="rgb(221,177,36)" rx="2" ry="2" />
<text x="777.97" y="911.5" >_ZN2yb7tserver17TabletServiceImpl12Com..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13 samples, 0.06%)</title><rect x="490.4" y="773" width="0.6" height="15.0" fill="rgb(219,13,44)" rx="2" ry="2" />
<text x="493.39" y="783.5" ></text>
</g>
<g >
<title>plist_add (6 samples, 0.03%)</title><rect x="450.8" y="821" width="0.3" height="15.0" fill="rgb(215,97,51)" rx="2" ry="2" />
<text x="453.81" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus30AppendNewRoundsToQueueUnlockedERKSt6vectorI13scoped_refptrINS0_14ConsensusRoundEESaIS5_EE (96 samples, 0.41%)</title><rect x="491.1" y="853" width="4.8" height="15.0" fill="rgb(250,65,42)" rx="2" ry="2" />
<text x="494.09" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.07%)</title><rect x="433.1" y="885" width="0.9" height="15.0" fill="rgb(240,57,48)" rx="2" ry="2" />
<text x="436.14" y="895.5" ></text>
</g>
<g >
<title>tcp_ack (2 samples, 0.01%)</title><rect x="338.4" y="581" width="0.1" height="15.0" fill="rgb(214,99,1)" rx="2" ry="2" />
<text x="341.38" y="591.5" ></text>
</g>
<g >
<title>__wake_up_locked_key (4 samples, 0.02%)</title><rect x="393.1" y="757" width="0.2" height="15.0" fill="rgb(219,129,42)" rx="2" ry="2" />
<text x="396.06" y="767.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (4 samples, 0.02%)</title><rect x="763.1" y="773" width="0.2" height="15.0" fill="rgb(219,94,28)" rx="2" ry="2" />
<text x="766.13" y="783.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5valueEv (2 samples, 0.01%)</title><rect x="901.8" y="645" width="0.1" height="15.0" fill="rgb(220,65,38)" rx="2" ry="2" />
<text x="904.85" y="655.5" ></text>
</g>
<g >
<title>nf_conntrack_in (13 samples, 0.06%)</title><rect x="350.8" y="501" width="0.6" height="15.0" fill="rgb(238,180,42)" rx="2" ry="2" />
<text x="353.77" y="511.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="394.9" y="693" width="0.2" height="15.0" fill="rgb(230,152,10)" rx="2" ry="2" />
<text x="397.92" y="703.5" ></text>
</g>
<g >
<title>account_entity_dequeue (2 samples, 0.01%)</title><rect x="163.7" y="725" width="0.1" height="15.0" fill="rgb(210,184,51)" rx="2" ry="2" />
<text x="166.67" y="735.5" ></text>
</g>
<g >
<title>sys_gettid (2 samples, 0.01%)</title><rect x="757.4" y="805" width="0.1" height="15.0" fill="rgb(235,195,7)" rx="2" ry="2" />
<text x="760.44" y="815.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter3keyEv (2 samples, 0.01%)</title><rect x="1009.4" y="709" width="0.1" height="15.0" fill="rgb(230,228,14)" rx="2" ry="2" />
<text x="1012.45" y="719.5" ></text>
</g>
<g >
<title>do_futex (527 samples, 2.25%)</title><rect x="498.0" y="853" width="26.6" height="15.0" fill="rgb(254,221,11)" rx="2" ry="2" />
<text x="501.04" y="863.5" >d..</text>
</g>
<g >
<title>__wake_up_locked (11 samples, 0.05%)</title><rect x="746.6" y="581" width="0.5" height="15.0" fill="rgb(250,16,14)" rx="2" ry="2" />
<text x="749.57" y="591.5" ></text>
</g>
<g >
<title>__put_user_8 (3 samples, 0.01%)</title><rect x="392.9" y="789" width="0.1" height="15.0" fill="rgb(224,203,30)" rx="2" ry="2" />
<text x="395.86" y="799.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (14 samples, 0.06%)</title><rect x="112.5" y="597" width="0.7" height="15.0" fill="rgb(210,204,34)" rx="2" ry="2" />
<text x="115.46" y="607.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (10 samples, 0.04%)</title><rect x="753.5" y="725" width="0.5" height="15.0" fill="rgb(214,118,19)" rx="2" ry="2" />
<text x="756.47" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus10RaftPeerPB9MergeFromERKS1_ (38 samples, 0.16%)</title><rect x="767.6" y="837" width="1.9" height="15.0" fill="rgb(217,187,24)" rx="2" ry="2" />
<text x="770.56" y="847.5" ></text>
</g>
<g >
<title>pick_next_task_fair (5 samples, 0.02%)</title><rect x="475.8" y="789" width="0.3" height="15.0" fill="rgb(221,197,29)" rx="2" ry="2" />
<text x="478.84" y="799.5" ></text>
</g>
<g >
<title>dput (5 samples, 0.02%)</title><rect x="329.4" y="821" width="0.2" height="15.0" fill="rgb(234,148,50)" rx="2" ry="2" />
<text x="332.37" y="831.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBImpl5WriteERKNS_12WriteOptionsEPNS_10WriteBatchE (20 samples, 0.09%)</title><rect x="532.5" y="693" width="1.0" height="15.0" fill="rgb(214,11,6)" rx="2" ry="2" />
<text x="535.48" y="703.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="399.9" y="597" width="0.2" height="15.0" fill="rgb(236,138,28)" rx="2" ry="2" />
<text x="402.86" y="607.5" ></text>
</g>
<g >
<title>_ZNSsC2ERKSs (3 samples, 0.01%)</title><rect x="370.0" y="693" width="0.1" height="15.0" fill="rgb(214,92,45)" rx="2" ry="2" />
<text x="372.95" y="703.5" ></text>
</g>
<g >
<title>resched_curr (2 samples, 0.01%)</title><rect x="747.0" y="469" width="0.1" height="15.0" fill="rgb(224,42,14)" rx="2" ry="2" />
<text x="750.02" y="479.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (2 samples, 0.01%)</title><rect x="434.5" y="773" width="0.1" height="15.0" fill="rgb(213,128,49)" rx="2" ry="2" />
<text x="437.50" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10RpcContextC2ESt10shared_ptrINS0_13YBInboundCallEES2_IN6google8protobuf7MessageEES8_NS0_16RpcMethodMetricsE (38 samples, 0.16%)</title><rect x="621.9" y="869" width="1.9" height="15.0" fill="rgb(208,79,31)" rx="2" ry="2" />
<text x="624.90" y="879.5" ></text>
</g>
<g >
<title>perf_pmu_enable (95 samples, 0.41%)</title><rect x="609.1" y="773" width="4.7" height="15.0" fill="rgb(232,8,48)" rx="2" ry="2" />
<text x="612.06" y="783.5" ></text>
</g>
<g >
<title>timerfd_fget (3 samples, 0.01%)</title><rect x="433.7" y="837" width="0.2" height="15.0" fill="rgb(254,211,50)" rx="2" ry="2" />
<text x="436.74" y="847.5" ></text>
</g>
<g >
<title>dequeue_task_fair (2 samples, 0.01%)</title><rect x="1185.5" y="773" width="0.1" height="15.0" fill="rgb(209,128,54)" rx="2" ry="2" />
<text x="1188.47" y="783.5" ></text>
</g>
<g >
<title>futex_wait_setup (6 samples, 0.03%)</title><rect x="434.7" y="837" width="0.3" height="15.0" fill="rgb(206,81,43)" rx="2" ry="2" />
<text x="437.70" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream12UpdateEventsEv (3 samples, 0.01%)</title><rect x="346.1" y="821" width="0.1" height="15.0" fill="rgb(235,126,46)" rx="2" ry="2" />
<text x="349.09" y="831.5" ></text>
</g>
<g >
<title>loopback_xmit (7 samples, 0.03%)</title><rect x="356.7" y="453" width="0.3" height="15.0" fill="rgb(209,68,47)" rx="2" ry="2" />
<text x="359.66" y="463.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="455.9" y="741" width="0.1" height="15.0" fill="rgb(210,83,11)" rx="2" ry="2" />
<text x="458.90" y="751.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (2 samples, 0.01%)</title><rect x="55.7" y="709" width="0.1" height="15.0" fill="rgb(245,80,47)" rx="2" ry="2" />
<text x="58.67" y="719.5" ></text>
</g>
<g >
<title>do_futex (6 samples, 0.03%)</title><rect x="414.1" y="789" width="0.3" height="15.0" fill="rgb(216,65,15)" rx="2" ry="2" />
<text x="417.11" y="799.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="394.9" y="725" width="0.2" height="15.0" fill="rgb(234,26,50)" rx="2" ry="2" />
<text x="397.92" y="735.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="342.7" y="149" width="0.1" height="15.0" fill="rgb(237,137,33)" rx="2" ry="2" />
<text x="345.71" y="159.5" ></text>
</g>
<g >
<title>wake_up_q (2 samples, 0.01%)</title><rect x="535.5" y="629" width="0.1" height="15.0" fill="rgb(240,119,10)" rx="2" ry="2" />
<text x="538.45" y="639.5" ></text>
</g>
<g >
<title>iptable_mangle_hook (3 samples, 0.01%)</title><rect x="349.7" y="517" width="0.2" height="15.0" fill="rgb(212,181,39)" rx="2" ry="2" />
<text x="352.71" y="527.5" ></text>
</g>
<g >
<title>schedule (5 samples, 0.02%)</title><rect x="434.4" y="821" width="0.3" height="15.0" fill="rgb(232,54,11)" rx="2" ry="2" />
<text x="437.45" y="831.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5valueEv (2 samples, 0.01%)</title><rect x="724.2" y="661" width="0.1" height="15.0" fill="rgb(243,135,45)" rx="2" ry="2" />
<text x="727.21" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver20ConsensusServiceImpl15UpdateConsensusEPKNS_9consensus18ConsensusRequestPBEPNS2_19ConsensusResponsePBENS_3rpc10RpcContextE (253 samples, 1.08%)</title><rect x="746.0" y="869" width="12.7" height="15.0" fill="rgb(251,57,31)" rx="2" ry="2" />
<text x="748.96" y="879.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (2 samples, 0.01%)</title><rect x="37.1" y="805" width="0.1" height="15.0" fill="rgb(250,55,26)" rx="2" ry="2" />
<text x="40.09" y="815.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="607.2" y="821" width="0.1" height="15.0" fill="rgb(252,104,9)" rx="2" ry="2" />
<text x="610.20" y="831.5" ></text>
</g>
<g >
<title>hrtimer_active (19 samples, 0.08%)</title><rect x="236.3" y="773" width="0.9" height="15.0" fill="rgb(252,203,48)" rx="2" ry="2" />
<text x="239.27" y="783.5" ></text>
</g>
<g >
<title>_ZN5boost6detail8function21function_obj_invoker3ISt5_BindIFSt7_Mem_fnIMN2yb5docdb12_GLOBAL__N_134TransactionConflictResolverContextEFNS5_6StatusEPNS7_16ConflictResolverENS5_10EnumBitSetINS6_10IntentTypeEEENS6_14IntentStrengthEPNS6_8KeyBytesEEEPS8_SB_SE_St12_PlaceholderILi1EESM_ILi3EEEES9_SF_NS5_5SliceESH_E6invokeERNS1_15function_bufferESF_SR_SH_ (2,237 samples, 9.55%)</title><rect x="624.4" y="741" width="112.7" height="15.0" fill="rgb(211,201,0)" rx="2" ry="2" />
<text x="627.42" y="751.5" >_ZN5boost6det..</text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv@plt (5 samples, 0.02%)</title><rect x="736.2" y="709" width="0.2" height="15.0" fill="rgb(230,194,2)" rx="2" ry="2" />
<text x="739.20" y="719.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5valueEv@plt (8 samples, 0.03%)</title><rect x="736.6" y="709" width="0.5" height="15.0" fill="rgb(243,187,8)" rx="2" ry="2" />
<text x="739.65" y="719.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (9 samples, 0.04%)</title><rect x="607.7" y="789" width="0.5" height="15.0" fill="rgb(213,162,50)" rx="2" ry="2" />
<text x="610.70" y="799.5" ></text>
</g>
<g >
<title>__clock_gettime (24 samples, 0.10%)</title><rect x="137.2" y="949" width="1.2" height="15.0" fill="rgb(234,81,43)" rx="2" ry="2" />
<text x="140.18" y="959.5" ></text>
</g>
<g >
<title>resched_curr (2 samples, 0.01%)</title><rect x="376.7" y="565" width="0.1" height="15.0" fill="rgb(205,78,6)" rx="2" ry="2" />
<text x="379.70" y="575.5" ></text>
</g>
<g >
<title>_ZN2yb6master15TSInformationPB5ClearEv (2 samples, 0.01%)</title><rect x="415.0" y="837" width="0.1" height="15.0" fill="rgb(245,4,47)" rx="2" ry="2" />
<text x="417.96" y="847.5" ></text>
</g>
<g >
<title>tcp_send_ack (119 samples, 0.51%)</title><rect x="383.5" y="677" width="6.0" height="15.0" fill="rgb(243,120,36)" rx="2" ry="2" />
<text x="386.55" y="687.5" ></text>
</g>
<g >
<title>RedisServer_rea (1,564 samples, 6.67%)</title><rect x="137.2" y="981" width="78.7" height="15.0" fill="rgb(254,113,29)" rx="2" ry="2" />
<text x="140.18" y="991.5" >RedisServ..</text>
</g>
<g >
<title>wait_for_completion (8 samples, 0.03%)</title><rect x="396.5" y="693" width="0.4" height="15.0" fill="rgb(244,11,22)" rx="2" ry="2" />
<text x="399.54" y="703.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (5 samples, 0.02%)</title><rect x="489.1" y="821" width="0.3" height="15.0" fill="rgb(246,9,21)" rx="2" ry="2" />
<text x="492.13" y="831.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (3 samples, 0.01%)</title><rect x="395.8" y="565" width="0.1" height="15.0" fill="rgb(254,203,11)" rx="2" ry="2" />
<text x="398.78" y="575.5" ></text>
</g>
<g >
<title>ip_rcv_finish (39 samples, 0.17%)</title><rect x="341.2" y="341" width="1.9" height="15.0" fill="rgb(209,177,45)" rx="2" ry="2" />
<text x="344.15" y="351.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2 samples, 0.01%)</title><rect x="357.7" y="565" width="0.1" height="15.0" fill="rgb(254,35,52)" rx="2" ry="2" />
<text x="360.72" y="575.5" ></text>
</g>
<g >
<title>do_futex (22 samples, 0.09%)</title><rect x="425.9" y="773" width="1.1" height="15.0" fill="rgb(247,148,17)" rx="2" ry="2" />
<text x="428.94" y="783.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.06%)</title><rect x="753.4" y="805" width="0.7" height="15.0" fill="rgb(243,155,46)" rx="2" ry="2" />
<text x="756.37" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="749.9" y="725" width="0.1" height="15.0" fill="rgb(252,45,14)" rx="2" ry="2" />
<text x="752.94" y="735.5" ></text>
</g>
<g >
<title>hrtimer_active (3 samples, 0.01%)</title><rect x="615.4" y="821" width="0.1" height="15.0" fill="rgb(225,168,42)" rx="2" ry="2" />
<text x="618.36" y="831.5" ></text>
</g>
<g >
<title>perf_pmu_enable (8 samples, 0.03%)</title><rect x="753.5" y="645" width="0.4" height="15.0" fill="rgb(234,42,46)" rx="2" ry="2" />
<text x="756.52" y="655.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb (309 samples, 1.32%)</title><rect x="1023.2" y="741" width="15.5" height="15.0" fill="rgb(233,100,53)" rx="2" ry="2" />
<text x="1026.19" y="751.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (355 samples, 1.51%)</title><rect x="455.6" y="773" width="17.9" height="15.0" fill="rgb(222,18,36)" rx="2" ry="2" />
<text x="458.60" y="783.5" ></text>
</g>
<g >
<title>sys_futex (5 samples, 0.02%)</title><rect x="600.4" y="885" width="0.3" height="15.0" fill="rgb(245,209,45)" rx="2" ry="2" />
<text x="603.40" y="895.5" ></text>
</g>
<g >
<title>pick_next_task_idle (15 samples, 0.06%)</title><rect x="200.0" y="757" width="0.8" height="15.0" fill="rgb(226,26,7)" rx="2" ry="2" />
<text x="203.02" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver11Heartbeater6Thread11DoHeartbeatEv (33 samples, 0.14%)</title><rect x="413.9" y="917" width="1.7" height="15.0" fill="rgb(251,160,16)" rx="2" ry="2" />
<text x="416.91" y="927.5" ></text>
</g>
<g >
<title>fput (2 samples, 0.01%)</title><rect x="389.9" y="757" width="0.1" height="15.0" fill="rgb(238,78,25)" rx="2" ry="2" />
<text x="392.89" y="767.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (6 samples, 0.03%)</title><rect x="320.3" y="741" width="0.3" height="15.0" fill="rgb(226,105,26)" rx="2" ry="2" />
<text x="323.31" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13SatisfyBoundsERKNS_5SliceE@plt (3 samples, 0.01%)</title><rect x="777.9" y="709" width="0.1" height="15.0" fill="rgb(233,117,40)" rx="2" ry="2" />
<text x="780.89" y="719.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (34 samples, 0.15%)</title><rect x="386.5" y="357" width="1.7" height="15.0" fill="rgb(242,69,15)" rx="2" ry="2" />
<text x="389.52" y="367.5" ></text>
</g>
<g >
<title>finish_task_switch (8 samples, 0.03%)</title><rect x="396.5" y="629" width="0.4" height="15.0" fill="rgb(242,98,43)" rx="2" ry="2" />
<text x="399.54" y="639.5" ></text>
</g>
<g >
<title>finish_task_switch (28 samples, 0.12%)</title><rect x="397.0" y="645" width="1.4" height="15.0" fill="rgb(205,192,48)" rx="2" ry="2" />
<text x="399.99" y="655.5" ></text>
</g>
<g >
<title>sys_futex (178 samples, 0.76%)</title><rect x="404.3" y="837" width="9.0" height="15.0" fill="rgb(242,0,8)" rx="2" ry="2" />
<text x="407.29" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb10hash_valueERKN5boost4asio2ip7addressE (2 samples, 0.01%)</title><rect x="365.0" y="805" width="0.1" height="15.0" fill="rgb(206,33,49)" rx="2" ry="2" />
<text x="367.97" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log8Appender12ProcessBatchEPNS0_13LogEntryBatchE (173 samples, 0.74%)</title><rect x="395.5" y="901" width="8.7" height="15.0" fill="rgb(231,31,23)" rx="2" ry="2" />
<text x="398.53" y="911.5" ></text>
</g>
<g >
<title>tcp_clean_rtx_queue (11 samples, 0.05%)</title><rect x="387.6" y="293" width="0.6" height="15.0" fill="rgb(252,133,46)" rx="2" ry="2" />
<text x="390.62" y="303.5" ></text>
</g>
<g >
<title>_ZNK2yb3log3Log17GetGCableDataSizeElPl (5 samples, 0.02%)</title><rect x="483.6" y="869" width="0.2" height="15.0" fill="rgb(237,119,34)" rx="2" ry="2" />
<text x="486.59" y="879.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2 samples, 0.01%)</title><rect x="752.4" y="805" width="0.1" height="15.0" fill="rgb(251,167,42)" rx="2" ry="2" />
<text x="755.36" y="815.5" ></text>
</g>
<g >
<title>futex_wake (3 samples, 0.01%)</title><rect x="555.0" y="837" width="0.2" height="15.0" fill="rgb(229,202,13)" rx="2" ry="2" />
<text x="558.04" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb12_GLOBAL__N_134TransactionConflictResolverContext13ReadConflictsEPNS1_16ConflictResolverE (2,238 samples, 9.55%)</title><rect x="624.4" y="789" width="112.7" height="15.0" fill="rgb(212,59,26)" rx="2" ry="2" />
<text x="627.37" y="799.5" >_ZN2yb5docdb1..</text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator11IsKeyPinnedEv (12 samples, 0.05%)</title><rect x="1039.9" y="741" width="0.6" height="15.0" fill="rgb(226,215,3)" rx="2" ry="2" />
<text x="1042.86" y="751.5" ></text>
</g>
<g >
<title>ctx_sched_out (4 samples, 0.02%)</title><rect x="559.5" y="741" width="0.2" height="15.0" fill="rgb(212,82,54)" rx="2" ry="2" />
<text x="562.47" y="751.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEj (7 samples, 0.03%)</title><rect x="488.3" y="821" width="0.4" height="15.0" fill="rgb(254,112,20)" rx="2" ry="2" />
<text x="491.32" y="831.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (6 samples, 0.03%)</title><rect x="158.7" y="757" width="0.3" height="15.0" fill="rgb(225,114,50)" rx="2" ry="2" />
<text x="161.68" y="767.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="400.7" y="821" width="0.2" height="15.0" fill="rgb(248,176,50)" rx="2" ry="2" />
<text x="403.66" y="831.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus13RaftConsensus35MajorityReplicatedHtLeaseExpirationEmNSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEE (2 samples, 0.01%)</title><rect x="537.2" y="885" width="0.1" height="15.0" fill="rgb(241,99,25)" rx="2" ry="2" />
<text x="540.16" y="895.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (3 samples, 0.01%)</title><rect x="500.0" y="677" width="0.2" height="15.0" fill="rgb(211,19,31)" rx="2" ry="2" />
<text x="503.01" y="687.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (25 samples, 0.11%)</title><rect x="161.3" y="677" width="1.2" height="15.0" fill="rgb(227,164,23)" rx="2" ry="2" />
<text x="164.25" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb16FunctionRunnableD1Ev (4 samples, 0.02%)</title><rect x="525.2" y="933" width="0.2" height="15.0" fill="rgb(245,46,42)" rx="2" ry="2" />
<text x="528.18" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPB8CopyFromERKS0_ (2 samples, 0.01%)</title><rect x="761.5" y="869" width="0.1" height="15.0" fill="rgb(254,220,27)" rx="2" ry="2" />
<text x="764.47" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13ProcessIntentEv (1,053 samples, 4.49%)</title><rect x="917.7" y="757" width="53.0" height="15.0" fill="rgb(212,95,45)" rx="2" ry="2" />
<text x="920.71" y="767.5" >_ZN2y..</text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (23 samples, 0.10%)</title><rect x="375.7" y="725" width="1.2" height="15.0" fill="rgb(250,22,52)" rx="2" ry="2" />
<text x="378.74" y="735.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (8 samples, 0.03%)</title><rect x="615.1" y="837" width="0.4" height="15.0" fill="rgb(253,149,38)" rx="2" ry="2" />
<text x="618.10" y="847.5" ></text>
</g>
<g >
<title>ctx_sched_out (16 samples, 0.07%)</title><rect x="452.2" y="757" width="0.8" height="15.0" fill="rgb(238,46,27)" rx="2" ry="2" />
<text x="455.22" y="767.5" ></text>
</g>
<g >
<title>__clock_gettime (17 samples, 0.07%)</title><rect x="217.0" y="949" width="0.8" height="15.0" fill="rgb(206,36,9)" rx="2" ry="2" />
<text x="219.99" y="959.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="897.0" y="629" width="0.1" height="15.0" fill="rgb(249,13,18)" rx="2" ry="2" />
<text x="900.01" y="639.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2 samples, 0.01%)</title><rect x="614.8" y="757" width="0.1" height="15.0" fill="rgb(251,54,2)" rx="2" ry="2" />
<text x="617.75" y="767.5" ></text>
</g>
<g >
<title>__clock_gettime (3 samples, 0.01%)</title><rect x="616.4" y="917" width="0.2" height="15.0" fill="rgb(254,215,12)" rx="2" ry="2" />
<text x="619.41" y="927.5" ></text>
</g>
<g >
<title>ip_output (119 samples, 0.51%)</title><rect x="351.6" y="549" width="6.0" height="15.0" fill="rgb(251,154,45)" rx="2" ry="2" />
<text x="354.62" y="559.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="897.0" y="645" width="0.1" height="15.0" fill="rgb(245,60,15)" rx="2" ry="2" />
<text x="900.01" y="655.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (38 samples, 0.16%)</title><rect x="473.9" y="757" width="1.9" height="15.0" fill="rgb(213,192,6)" rx="2" ry="2" />
<text x="476.87" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13PeriodicTimer14SnoozeUnlockedENS_9MonoDeltaE (2 samples, 0.01%)</title><rect x="428.3" y="885" width="0.1" height="15.0" fill="rgb(234,169,23)" rx="2" ry="2" />
<text x="431.31" y="895.5" ></text>
</g>
<g >
<title>get_futex_key (3 samples, 0.01%)</title><rect x="1062.0" y="853" width="0.1" height="15.0" fill="rgb(235,99,30)" rx="2" ry="2" />
<text x="1064.96" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall15SetRequestParamERKN6google8protobuf7MessageERKSt10shared_ptrINS_10MemTrackerEE (41 samples, 0.17%)</title><rect x="542.2" y="837" width="2.1" height="15.0" fill="rgb(229,33,12)" rx="2" ry="2" />
<text x="545.25" y="847.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_117GetEntryFromCacheEPNS_5CacheERKN2yb5SliceENS_7TickersES7_PNS_10StatisticsEl.constprop.252 (4 samples, 0.02%)</title><rect x="1003.6" y="661" width="0.2" height="15.0" fill="rgb(216,188,34)" rx="2" ry="2" />
<text x="1006.55" y="671.5" ></text>
</g>
<g >
<title>do_syscall_64 (787 samples, 3.36%)</title><rect x="557.1" y="885" width="39.6" height="15.0" fill="rgb(213,126,11)" rx="2" ry="2" />
<text x="560.05" y="895.5" >do_..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="490.6" y="677" width="0.1" height="15.0" fill="rgb(228,227,7)" rx="2" ry="2" />
<text x="493.64" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet10TabletPeer25GetEarliestNeededLogIndexEPl (8 samples, 0.03%)</title><rect x="483.9" y="869" width="0.4" height="15.0" fill="rgb(230,195,49)" rx="2" ry="2" />
<text x="486.89" y="879.5" ></text>
</g>
<g >
<title>rb_insert_color (14 samples, 0.06%)</title><rect x="40.8" y="741" width="0.7" height="15.0" fill="rgb(210,104,45)" rx="2" ry="2" />
<text x="43.81" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection13HandleTimeoutERN2ev5timerEi (15 samples, 0.06%)</title><rect x="336.3" y="885" width="0.8" height="15.0" fill="rgb(249,76,50)" rx="2" ry="2" />
<text x="339.32" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (1,275 samples, 5.44%)</title><rect x="417.8" y="949" width="64.2" height="15.0" fill="rgb(237,124,2)" rx="2" ry="2" />
<text x="420.83" y="959.5" >_ZN2yb6..</text>
</g>
<g >
<title>_ZN2yb7Counter11IncrementByEl (2 samples, 0.01%)</title><rect x="547.6" y="837" width="0.1" height="15.0" fill="rgb(242,23,47)" rx="2" ry="2" />
<text x="550.64" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim@plt (7 samples, 0.03%)</title><rect x="830.3" y="661" width="0.3" height="15.0" fill="rgb(209,173,38)" rx="2" ry="2" />
<text x="833.25" y="671.5" ></text>
</g>
<g >
<title>sq_acceptor (150 samples, 0.64%)</title><rect x="1182.4" y="981" width="7.6" height="15.0" fill="rgb(239,98,45)" rx="2" ry="2" />
<text x="1185.45" y="991.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator5validEv (2,704 samples, 11.54%)</title><rect x="777.2" y="757" width="136.1" height="15.0" fill="rgb(239,103,44)" rx="2" ry="2" />
<text x="780.18" y="767.5" >_ZN2yb5docdb19Int..</text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi@plt (3 samples, 0.01%)</title><rect x="927.2" y="741" width="0.1" height="15.0" fill="rgb(209,93,53)" rx="2" ry="2" />
<text x="930.17" y="751.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter4NextEv (14 samples, 0.06%)</title><rect x="1011.3" y="725" width="0.7" height="15.0" fill="rgb(235,170,21)" rx="2" ry="2" />
<text x="1014.31" y="735.5" ></text>
</g>
<g >
<title>blk_queue_bio (2 samples, 0.01%)</title><rect x="398.4" y="629" width="0.1" height="15.0" fill="rgb(222,176,32)" rx="2" ry="2" />
<text x="401.40" y="639.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream8PopLimitEi@plt (2 samples, 0.01%)</title><rect x="370.2" y="709" width="0.1" height="15.0" fill="rgb(208,114,19)" rx="2" ry="2" />
<text x="373.15" y="719.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter4NextEv (3 samples, 0.01%)</title><rect x="1009.3" y="709" width="0.1" height="15.0" fill="rgb(254,5,48)" rx="2" ry="2" />
<text x="1012.29" y="719.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator4NextEv (3 samples, 0.01%)</title><rect x="652.5" y="677" width="0.2" height="15.0" fill="rgb(219,30,16)" rx="2" ry="2" />
<text x="655.51" y="687.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (9 samples, 0.04%)</title><rect x="159.0" y="789" width="0.4" height="15.0" fill="rgb(243,219,33)" rx="2" ry="2" />
<text x="161.99" y="799.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="862.0" y="629" width="0.1" height="15.0" fill="rgb(231,63,36)" rx="2" ry="2" />
<text x="864.97" y="639.5" ></text>
</g>
<g >
<title>_ZN7rocksdb17InstrumentedMutex4LockEv (2 samples, 0.01%)</title><rect x="484.1" y="821" width="0.1" height="15.0" fill="rgb(238,162,2)" rx="2" ry="2" />
<text x="487.09" y="831.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (8 samples, 0.03%)</title><rect x="46.4" y="677" width="0.4" height="15.0" fill="rgb(227,110,34)" rx="2" ry="2" />
<text x="49.35" y="687.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="766.1" y="693" width="0.1" height="15.0" fill="rgb(226,96,40)" rx="2" ry="2" />
<text x="769.05" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb21CreateRocksDBIteratorEPN7rocksdb2DBEPKNS0_9KeyBoundsENS0_15BloomFilterModeERKN5boost8optionalIKNS_5SliceEEElSt10shared_ptrINS1_14ReadFileFilterEEPSB_ (4 samples, 0.02%)</title><rect x="631.7" y="677" width="0.2" height="15.0" fill="rgb(248,2,36)" rx="2" ry="2" />
<text x="634.67" y="687.5" ></text>
</g>
<g >
<title>sched_clock (3 samples, 0.01%)</title><rect x="500.0" y="709" width="0.2" height="15.0" fill="rgb(212,191,54)" rx="2" ry="2" />
<text x="503.01" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc27ConnectionContextWithCallId13QueueResponseERKSt10shared_ptrINS0_10ConnectionEES2_INS0_11InboundCallEE (26 samples, 0.11%)</title><rect x="746.2" y="789" width="1.3" height="15.0" fill="rgb(215,101,32)" rx="2" ry="2" />
<text x="749.22" y="799.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter3keyEv (2 samples, 0.01%)</title><rect x="874.6" y="645" width="0.1" height="15.0" fill="rgb(244,218,29)" rx="2" ry="2" />
<text x="877.61" y="655.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter5ValidEv (9 samples, 0.04%)</title><rect x="718.7" y="677" width="0.4" height="15.0" fill="rgb(240,179,54)" rx="2" ry="2" />
<text x="721.67" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus14ConsensusRound25NotifyReplicationFinishedERKNS_6StatusEl (73 samples, 0.31%)</title><rect x="532.0" y="821" width="3.7" height="15.0" fill="rgb(210,168,42)" rx="2" ry="2" />
<text x="534.98" y="831.5" ></text>
</g>
<g >
<title>sys_futex (187 samples, 0.80%)</title><rect x="606.1" y="901" width="9.4" height="15.0" fill="rgb(210,51,4)" rx="2" ry="2" />
<text x="609.09" y="911.5" ></text>
</g>
<g >
<title>trigger_load_balance (4 samples, 0.02%)</title><rect x="1046.4" y="613" width="0.2" height="15.0" fill="rgb(245,84,47)" rx="2" ry="2" />
<text x="1049.35" y="623.5" ></text>
</g>
<g >
<title>sys_futex (16 samples, 0.07%)</title><rect x="430.1" y="757" width="0.8" height="15.0" fill="rgb(214,50,44)" rx="2" ry="2" />
<text x="433.07" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus17IsRaftConfigVoterERKSsRKNS0_12RaftConfigPBE (6 samples, 0.03%)</title><rect x="764.1" y="821" width="0.3" height="15.0" fill="rgb(245,85,7)" rx="2" ry="2" />
<text x="767.09" y="831.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10 samples, 0.04%)</title><rect x="596.2" y="869" width="0.5" height="15.0" fill="rgb(224,95,32)" rx="2" ry="2" />
<text x="599.17" y="879.5" ></text>
</g>
<g >
<title>__remove_hrtimer (39 samples, 0.17%)</title><rect x="233.8" y="773" width="2.0" height="15.0" fill="rgb(213,82,29)" rx="2" ry="2" />
<text x="236.81" y="783.5" ></text>
</g>
<g >
<title>do_softirq (66 samples, 0.28%)</title><rect x="385.8" y="533" width="3.3" height="15.0" fill="rgb(220,192,51)" rx="2" ry="2" />
<text x="388.81" y="543.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5ValidEv (9 samples, 0.04%)</title><rect x="692.2" y="661" width="0.4" height="15.0" fill="rgb(207,186,34)" rx="2" ry="2" />
<text x="695.19" y="671.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="550.2" y="853" width="0.1" height="15.0" fill="rgb(254,45,19)" rx="2" ry="2" />
<text x="553.15" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="394.7" y="885" width="0.2" height="15.0" fill="rgb(223,200,40)" rx="2" ry="2" />
<text x="397.72" y="895.5" ></text>
</g>
<g >
<title>ev_run (2,457 samples, 10.48%)</title><rect x="13.4" y="917" width="123.7" height="15.0" fill="rgb(225,43,49)" rx="2" ry="2" />
<text x="16.37" y="927.5" >ev_run</text>
</g>
<g >
<title>resched_curr (2 samples, 0.01%)</title><rect x="426.9" y="677" width="0.1" height="15.0" fill="rgb(225,34,35)" rx="2" ry="2" />
<text x="429.90" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus4Peer13SignalRequestENS0_18RequestTriggerModeE (27 samples, 0.12%)</title><rect x="429.8" y="853" width="1.4" height="15.0" fill="rgb(247,157,27)" rx="2" ry="2" />
<text x="432.82" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus32DeduplicateLeaderRequestUnlockedEPNS0_18ConsensusRequestPBEPNS1_13LeaderRequestE (2 samples, 0.01%)</title><rect x="752.7" y="821" width="0.1" height="15.0" fill="rgb(221,114,20)" rx="2" ry="2" />
<text x="755.71" y="831.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (4 samples, 0.02%)</title><rect x="546.6" y="469" width="0.2" height="15.0" fill="rgb(245,103,13)" rx="2" ry="2" />
<text x="549.58" y="479.5" ></text>
</g>
<g >
<title>do_softirq (61 samples, 0.26%)</title><rect x="340.7" y="469" width="3.1" height="15.0" fill="rgb(226,128,45)" rx="2" ry="2" />
<text x="343.75" y="479.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5ValidEv (3 samples, 0.01%)</title><rect x="1038.9" y="741" width="0.2" height="15.0" fill="rgb(218,155,47)" rx="2" ry="2" />
<text x="1041.90" y="751.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (4 samples, 0.02%)</title><rect x="553.7" y="901" width="0.2" height="15.0" fill="rgb(224,51,8)" rx="2" ry="2" />
<text x="556.73" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (169 samples, 0.72%)</title><rect x="381.6" y="805" width="8.5" height="15.0" fill="rgb(234,55,35)" rx="2" ry="2" />
<text x="384.63" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc18InvokeCallbackTask3RunEv (248 samples, 1.06%)</title><rect x="760.9" y="917" width="12.5" height="15.0" fill="rgb(250,185,21)" rx="2" ry="2" />
<text x="763.92" y="927.5" ></text>
</g>
<g >
<title>put_prev_entity (3 samples, 0.01%)</title><rect x="116.2" y="725" width="0.1" height="15.0" fill="rgb(249,60,6)" rx="2" ry="2" />
<text x="119.19" y="735.5" ></text>
</g>
<g >
<title>[libc-2.23.so] (105 samples, 0.45%)</title><rect x="418.5" y="917" width="5.3" height="15.0" fill="rgb(212,22,42)" rx="2" ry="2" />
<text x="421.49" y="927.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (4 samples, 0.02%)</title><rect x="559.5" y="757" width="0.2" height="15.0" fill="rgb(254,41,17)" rx="2" ry="2" />
<text x="562.47" y="767.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (4 samples, 0.02%)</title><rect x="1073.4" y="789" width="0.2" height="15.0" fill="rgb(236,0,43)" rx="2" ry="2" />
<text x="1076.39" y="799.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (3 samples, 0.01%)</title><rect x="522.2" y="613" width="0.2" height="15.0" fill="rgb(217,126,14)" rx="2" ry="2" />
<text x="525.21" y="623.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13PeriodicTimer8CallbackEl (56 samples, 0.24%)</title><rect x="428.5" y="885" width="2.8" height="15.0" fill="rgb(242,143,52)" rx="2" ry="2" />
<text x="431.46" y="895.5" ></text>
</g>
<g >
<title>do_futex (176 samples, 0.75%)</title><rect x="404.4" y="821" width="8.9" height="15.0" fill="rgb(236,227,10)" rx="2" ry="2" />
<text x="407.39" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb6Socket5RecvvEPN5boost9container12small_vectorI5iovecLm4ENS2_13new_allocatorIS4_EEEE (2 samples, 0.01%)</title><rect x="391.1" y="853" width="0.1" height="15.0" fill="rgb(240,50,25)" rx="2" ry="2" />
<text x="394.10" y="863.5" ></text>
</g>
<g >
<title>native_write_msr (31 samples, 0.13%)</title><rect x="44.7" y="661" width="1.6" height="15.0" fill="rgb(231,47,21)" rx="2" ry="2" />
<text x="47.74" y="671.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="216.5" y="885" width="0.1" height="15.0" fill="rgb(228,25,47)" rx="2" ry="2" />
<text x="219.48" y="895.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3 samples, 0.01%)</title><rect x="756.1" y="693" width="0.2" height="15.0" fill="rgb(249,22,11)" rx="2" ry="2" />
<text x="759.14" y="703.5" ></text>
</g>
<g >
<title>x86_pmu_enable (1,906 samples, 8.13%)</title><rect x="1078.0" y="741" width="95.9" height="15.0" fill="rgb(253,100,50)" rx="2" ry="2" />
<text x="1080.97" y="751.5" >x86_pmu_ena..</text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (4 samples, 0.02%)</title><rect x="686.7" y="645" width="0.2" height="15.0" fill="rgb(253,16,20)" rx="2" ry="2" />
<text x="689.65" y="655.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5valueEv (4 samples, 0.02%)</title><rect x="723.2" y="629" width="0.2" height="15.0" fill="rgb(218,45,2)" rx="2" ry="2" />
<text x="726.16" y="639.5" ></text>
</g>
<g >
<title>sock_def_readable (34 samples, 0.15%)</title><rect x="353.4" y="261" width="1.7" height="15.0" fill="rgb(253,79,39)" rx="2" ry="2" />
<text x="356.44" y="271.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken10SubmitFuncESt8functionIFvvEE (15 samples, 0.06%)</title><rect x="750.7" y="741" width="0.8" height="15.0" fill="rgb(223,82,43)" rx="2" ry="2" />
<text x="753.70" y="751.5" ></text>
</g>
<g >
<title>kmem_cache_free (3 samples, 0.01%)</title><rect x="387.6" y="245" width="0.2" height="15.0" fill="rgb(224,197,26)" rx="2" ry="2" />
<text x="390.62" y="255.5" ></text>
</g>
<g >
<title>_ZN4base8SpinLock8SlowLockEv (4 samples, 0.02%)</title><rect x="399.9" y="837" width="0.2" height="15.0" fill="rgb(210,197,49)" rx="2" ry="2" />
<text x="402.86" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="604.1" y="917" width="0.1" height="15.0" fill="rgb(239,194,21)" rx="2" ry="2" />
<text x="607.08" y="927.5" ></text>
</g>
<g >
<title>hash_futex (3 samples, 0.01%)</title><rect x="477.9" y="837" width="0.1" height="15.0" fill="rgb(222,180,35)" rx="2" ry="2" />
<text x="480.85" y="847.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (3 samples, 0.01%)</title><rect x="559.0" y="805" width="0.1" height="15.0" fill="rgb(253,175,26)" rx="2" ry="2" />
<text x="561.96" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall18InvokeCallbackSyncEv (2 samples, 0.01%)</title><rect x="760.8" y="917" width="0.1" height="15.0" fill="rgb(233,201,34)" rx="2" ry="2" />
<text x="763.77" y="927.5" ></text>
</g>
<g >
<title>__lll_lock_wait (5 samples, 0.02%)</title><rect x="554.7" y="917" width="0.2" height="15.0" fill="rgb(228,67,19)" rx="2" ry="2" />
<text x="557.69" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="395.1" y="885" width="0.2" height="15.0" fill="rgb(215,26,51)" rx="2" ry="2" />
<text x="398.13" y="895.5" ></text>
</g>
<g >
<title>schedule (10 samples, 0.04%)</title><rect x="753.5" y="709" width="0.5" height="15.0" fill="rgb(207,167,10)" rx="2" ry="2" />
<text x="756.47" y="719.5" ></text>
</g>
<g >
<title>[libstdc++.so.6.0.21] (281 samples, 1.20%)</title><rect x="602.1" y="965" width="14.2" height="15.0" fill="rgb(250,201,6)" rx="2" ry="2" />
<text x="605.11" y="975.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet22StartDocWriteOperationEPNS0_14WriteOperationE (2,242 samples, 9.57%)</title><rect x="624.3" y="821" width="112.9" height="15.0" fill="rgb(214,17,35)" rx="2" ry="2" />
<text x="627.32" y="831.5" >_ZN2yb6tablet..</text>
</g>
<g >
<title>update_process_times (66 samples, 0.28%)</title><rect x="109.9" y="645" width="3.3" height="15.0" fill="rgb(227,220,18)" rx="2" ry="2" />
<text x="112.89" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator27SeekForwardToSuitableIntentERKNS0_8KeyBytesE (2,704 samples, 11.54%)</title><rect x="777.2" y="725" width="136.1" height="15.0" fill="rgb(234,213,38)" rx="2" ry="2" />
<text x="780.18" y="735.5" >_ZN2yb5docdb19Int..</text>
</g>
<g >
<title>_ZN2yb6tablet14AbstractTablet22HandlePgsqlReadRequestENSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEERKNS_14ReadHybridTimeERKNS_18PgsqlReadRequestPBERKN5boost8optionalINS_27TransactionOperationContextEEEPNS0_22PgsqlReadRequestResultE (5,639 samples, 24.06%)</title><rect x="775.2" y="853" width="283.9" height="15.0" fill="rgb(205,75,6)" rx="2" ry="2" />
<text x="778.22" y="863.5" >_ZN2yb6tablet14AbstractTablet22HandleP..</text>
</g>
<g >
<title>do_syscall_64 (22 samples, 0.09%)</title><rect x="765.6" y="773" width="1.1" height="15.0" fill="rgb(239,68,6)" rx="2" ry="2" />
<text x="768.55" y="783.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb18DocRowwiseIterator7HasNextEv (5,606 samples, 23.92%)</title><rect x="776.8" y="821" width="282.2" height="15.0" fill="rgb(206,10,9)" rx="2" ry="2" />
<text x="779.78" y="831.5" >_ZNK2yb5docdb18DocRowwiseIterator7Has..</text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall9ParseFromERKSt10shared_ptrINS_10MemTrackerEEPNS0_8CallDataE (18 samples, 0.08%)</title><rect x="369.5" y="773" width="1.0" height="15.0" fill="rgb(243,56,37)" rx="2" ry="2" />
<text x="372.55" y="783.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (10 samples, 0.04%)</title><rect x="167.4" y="725" width="0.5" height="15.0" fill="rgb(245,40,52)" rx="2" ry="2" />
<text x="170.44" y="735.5" ></text>
</g>
<g >
<title>update_curr (2 samples, 0.01%)</title><rect x="560.0" y="725" width="0.1" height="15.0" fill="rgb(245,204,12)" rx="2" ry="2" />
<text x="563.02" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb12RefCntBufferC2EOS0_ (3 samples, 0.01%)</title><rect x="363.0" y="773" width="0.1" height="15.0" fill="rgb(247,42,43)" rx="2" ry="2" />
<text x="365.95" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_sendmsg (2 samples, 0.01%)</title><rect x="361.3" y="805" width="0.1" height="15.0" fill="rgb(249,121,41)" rx="2" ry="2" />
<text x="364.34" y="815.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (6 samples, 0.03%)</title><rect x="489.6" y="837" width="0.3" height="15.0" fill="rgb(219,134,37)" rx="2" ry="2" />
<text x="492.63" y="847.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf11MessageLite20ParseFromCodedStreamEPNS0_2io16CodedInputStreamE (13 samples, 0.06%)</title><rect x="369.6" y="741" width="0.7" height="15.0" fill="rgb(221,98,35)" rx="2" ry="2" />
<text x="372.65" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_recvmsg (197 samples, 0.84%)</title><rect x="380.8" y="837" width="9.9" height="15.0" fill="rgb(252,131,28)" rx="2" ry="2" />
<text x="383.78" y="847.5" ></text>
</g>
<g >
<title>_ZN7rocksdb5Block11NewIteratorEPKNS_10ComparatorEPNS_9BlockIterEb (2 samples, 0.01%)</title><rect x="1003.8" y="677" width="0.1" height="15.0" fill="rgb(226,102,24)" rx="2" ry="2" />
<text x="1006.76" y="687.5" ></text>
</g>
<g >
<title>iptable_raw_hook (8 samples, 0.03%)</title><rect x="356.1" y="341" width="0.4" height="15.0" fill="rgb(242,123,25)" rx="2" ry="2" />
<text x="359.05" y="351.5" ></text>
</g>
<g >
<title>_ZN2yb19KernelStackWatchdog9RunThreadEv (27 samples, 0.12%)</title><rect x="482.0" y="933" width="1.4" height="15.0" fill="rgb(205,114,45)" rx="2" ry="2" />
<text x="485.03" y="943.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (38 samples, 0.16%)</title><rect x="156.5" y="773" width="1.9" height="15.0" fill="rgb(254,136,12)" rx="2" ry="2" />
<text x="159.52" y="783.5" ></text>
</g>
<g >
<title>__next_timer_interrupt (3 samples, 0.01%)</title><rect x="113.6" y="661" width="0.1" height="15.0" fill="rgb(227,136,51)" rx="2" ry="2" />
<text x="116.57" y="671.5" ></text>
</g>
<g >
<title>native_write_msr (9 samples, 0.04%)</title><rect x="452.4" y="693" width="0.4" height="15.0" fill="rgb(206,104,19)" rx="2" ry="2" />
<text x="455.37" y="703.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2 samples, 0.01%)</title><rect x="357.7" y="597" width="0.1" height="15.0" fill="rgb(227,229,39)" rx="2" ry="2" />
<text x="360.72" y="607.5" ></text>
</g>
<g >
<title>__vfs_write (17 samples, 0.07%)</title><rect x="746.4" y="661" width="0.9" height="15.0" fill="rgb(250,35,38)" rx="2" ry="2" />
<text x="749.42" y="671.5" ></text>
</g>
<g >
<title>_xfs_log_force_lsn (25 samples, 0.11%)</title><rect x="395.7" y="741" width="1.2" height="15.0" fill="rgb(209,228,21)" rx="2" ry="2" />
<text x="398.68" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10RpcContext14RespondSuccessEv (40 samples, 0.17%)</title><rect x="746.1" y="853" width="2.0" height="15.0" fill="rgb(208,144,6)" rx="2" ry="2" />
<text x="749.12" y="863.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (2 samples, 0.01%)</title><rect x="601.6" y="933" width="0.1" height="15.0" fill="rgb(207,80,25)" rx="2" ry="2" />
<text x="604.61" y="943.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="490.6" y="549" width="0.1" height="15.0" fill="rgb(231,35,50)" rx="2" ry="2" />
<text x="493.64" y="559.5" ></text>
</g>
<g >
<title>update_load_avg (4 samples, 0.02%)</title><rect x="500.7" y="725" width="0.2" height="15.0" fill="rgb(209,10,33)" rx="2" ry="2" />
<text x="503.71" y="735.5" ></text>
</g>
<g >
<title>__schedule (658 samples, 2.81%)</title><rect x="559.2" y="789" width="33.1" height="15.0" fill="rgb(218,61,45)" rx="2" ry="2" />
<text x="562.22" y="799.5" >__..</text>
</g>
<g >
<title>sched_clock_cpu (5 samples, 0.02%)</title><rect x="201.2" y="741" width="0.2" height="15.0" fill="rgb(244,121,1)" rx="2" ry="2" />
<text x="204.18" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream7HandlerERN2ev2ioEi (2 samples, 0.01%)</title><rect x="216.5" y="949" width="0.1" height="15.0" fill="rgb(211,61,27)" rx="2" ry="2" />
<text x="219.48" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator4SeekERKNS_5SliceE (2 samples, 0.01%)</title><rect x="775.8" y="773" width="0.1" height="15.0" fill="rgb(215,4,12)" rx="2" ry="2" />
<text x="778.82" y="783.5" ></text>
</g>
<g >
<title>sys_futex (6 samples, 0.03%)</title><rect x="414.1" y="805" width="0.3" height="15.0" fill="rgb(231,147,49)" rx="2" ry="2" />
<text x="417.11" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime15FullyDecodeFromERKNS_5SliceE (4 samples, 0.02%)</title><rect x="926.7" y="741" width="0.2" height="15.0" fill="rgb(233,17,25)" rx="2" ry="2" />
<text x="929.67" y="751.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet11MvccManager8SafeTimeENS_10HybridTimeENSt6chrono10time_pointINS_15CoarseMonoClockENS3_8durationIlSt5ratioILl1ELl1000000000EEEEEES2_ (5 samples, 0.02%)</title><rect x="551.9" y="869" width="0.2" height="15.0" fill="rgb(249,201,42)" rx="2" ry="2" />
<text x="554.87" y="879.5" ></text>
</g>
<g >
<title>sock_poll (2 samples, 0.01%)</title><rect x="231.1" y="805" width="0.1" height="15.0" fill="rgb(225,92,52)" rx="2" ry="2" />
<text x="234.09" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10ThreadPool7EnqueueEPNS0_14ThreadPoolTaskE (10 samples, 0.04%)</title><rect x="371.3" y="741" width="0.5" height="15.0" fill="rgb(227,166,22)" rx="2" ry="2" />
<text x="374.26" y="751.5" ></text>
</g>
<g >
<title>ipt_do_table (7 samples, 0.03%)</title><rect x="343.2" y="309" width="0.4" height="15.0" fill="rgb(252,28,31)" rx="2" ry="2" />
<text x="346.22" y="319.5" ></text>
</g>
<g >
<title>__remove_hrtimer (2 samples, 0.01%)</title><rect x="754.0" y="693" width="0.1" height="15.0" fill="rgb(209,36,42)" rx="2" ry="2" />
<text x="756.97" y="703.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (18 samples, 0.08%)</title><rect x="452.1" y="789" width="0.9" height="15.0" fill="rgb(207,190,1)" rx="2" ry="2" />
<text x="455.12" y="799.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKSs (2 samples, 0.01%)</title><rect x="768.2" y="821" width="0.1" height="15.0" fill="rgb(239,55,27)" rx="2" ry="2" />
<text x="771.17" y="831.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb20LongOperationTracker16TrackedOperationESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv (2 samples, 0.01%)</title><rect x="603.1" y="949" width="0.1" height="15.0" fill="rgb(237,113,16)" rx="2" ry="2" />
<text x="606.07" y="959.5" ></text>
</g>
<g >
<title>_ZNSs12_M_leak_hardEv (2 samples, 0.01%)</title><rect x="741.6" y="805" width="0.1" height="15.0" fill="rgb(220,93,31)" rx="2" ry="2" />
<text x="744.63" y="815.5" ></text>
</g>
<g >
<title>_ZN2ev4baseI8ev_asyncNS_5asyncEE12method_thunkIN2yb3rpc7ReactorEXadL_ZNS7_12AsyncHandlerERS2_iEEEEvP7ev_loopPS1_i (3 samples, 0.01%)</title><rect x="332.8" y="901" width="0.1" height="15.0" fill="rgb(214,117,35)" rx="2" ry="2" />
<text x="335.79" y="911.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.02%)</title><rect x="970.5" y="741" width="0.2" height="15.0" fill="rgb(252,35,44)" rx="2" ry="2" />
<text x="973.52" y="751.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="667.5" y="597" width="0.1" height="15.0" fill="rgb(207,28,7)" rx="2" ry="2" />
<text x="670.47" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log21AsyncAppendReplicatesERKSt6vectorISt10shared_ptrINS_9consensus12ReplicateMsgEESaIS6_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointERKNS_8CallbackIFvRKNS_6StatusEEEE (5 samples, 0.02%)</title><rect x="536.6" y="853" width="0.3" height="15.0" fill="rgb(215,59,31)" rx="2" ry="2" />
<text x="539.61" y="863.5" ></text>
</g>
<g >
<title>activate_task (6 samples, 0.03%)</title><rect x="354.3" y="101" width="0.3" height="15.0" fill="rgb(231,137,45)" rx="2" ry="2" />
<text x="357.29" y="111.5" ></text>
</g>
<g >
<title>timerqueue_add (17 samples, 0.07%)</title><rect x="232.7" y="757" width="0.9" height="15.0" fill="rgb(220,98,39)" rx="2" ry="2" />
<text x="235.70" y="767.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEji (3 samples, 0.01%)</title><rect x="553.5" y="885" width="0.2" height="15.0" fill="rgb(220,161,25)" rx="2" ry="2" />
<text x="556.53" y="895.5" ></text>
</g>
<g >
<title>io_schedule (28 samples, 0.12%)</title><rect x="397.0" y="693" width="1.4" height="15.0" fill="rgb(241,90,36)" rx="2" ry="2" />
<text x="399.99" y="703.5" ></text>
</g>
<g >
<title>remove_entity_load_avg (2 samples, 0.01%)</title><rect x="442.3" y="789" width="0.1" height="15.0" fill="rgb(205,119,30)" rx="2" ry="2" />
<text x="445.25" y="799.5" ></text>
</g>
<g >
<title>get_futex_key_refs.isra.12 (2 samples, 0.01%)</title><rect x="477.6" y="821" width="0.1" height="15.0" fill="rgb(225,141,28)" rx="2" ry="2" />
<text x="480.60" y="831.5" ></text>
</g>
<g >
<title>try_to_wake_up (22 samples, 0.09%)</title><rect x="353.8" y="133" width="1.1" height="15.0" fill="rgb(242,186,25)" rx="2" ry="2" />
<text x="356.79" y="143.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (3 samples, 0.01%)</title><rect x="501.8" y="741" width="0.1" height="15.0" fill="rgb(250,158,39)" rx="2" ry="2" />
<text x="504.77" y="751.5" ></text>
</g>
<g >
<title>__schedule (2,116 samples, 9.03%)</title><rect x="1073.0" y="805" width="106.6" height="15.0" fill="rgb(242,32,10)" rx="2" ry="2" />
<text x="1076.04" y="815.5" >__schedule</text>
</g>
<g >
<title>hrtimer_cancel (2 samples, 0.01%)</title><rect x="754.0" y="725" width="0.1" height="15.0" fill="rgb(231,229,45)" rx="2" ry="2" />
<text x="756.97" y="735.5" ></text>
</g>
<g >
<title>futex_wait (177 samples, 0.76%)</title><rect x="606.6" y="869" width="8.9" height="15.0" fill="rgb(239,169,30)" rx="2" ry="2" />
<text x="609.60" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus6UpdateEPNS0_18ConsensusRequestPBEPNS0_19ConsensusResponsePBENSt6chrono10time_pointINS_15CoarseMonoClockENS6_8durationIlSt5ratioILl1ELl1000000000EEEEEE (181 samples, 0.77%)</title><rect x="748.7" y="853" width="9.1" height="15.0" fill="rgb(206,168,6)" rx="2" ry="2" />
<text x="751.73" y="863.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (3 samples, 0.01%)</title><rect x="878.6" y="661" width="0.2" height="15.0" fill="rgb(244,5,13)" rx="2" ry="2" />
<text x="881.64" y="671.5" ></text>
</g>
<g >
<title>_ZNK2yb6server13RpcServerBase11instance_pbEv (3 samples, 0.01%)</title><rect x="758.1" y="853" width="0.1" height="15.0" fill="rgb(241,164,5)" rx="2" ry="2" />
<text x="761.10" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPBC1Ev (2 samples, 0.01%)</title><rect x="739.6" y="821" width="0.1" height="15.0" fill="rgb(234,118,18)" rx="2" ry="2" />
<text x="742.62" y="831.5" ></text>
</g>
<g >
<title>cpuacct_charge (2 samples, 0.01%)</title><rect x="608.6" y="741" width="0.1" height="15.0" fill="rgb(213,133,22)" rx="2" ry="2" />
<text x="611.61" y="751.5" ></text>
</g>
<g >
<title>trigger_load_balance (10 samples, 0.04%)</title><rect x="521.9" y="629" width="0.5" height="15.0" fill="rgb(210,6,18)" rx="2" ry="2" />
<text x="524.86" y="639.5" ></text>
</g>
<g >
<title>__lll_lock_wait (8 samples, 0.03%)</title><rect x="599.6" y="933" width="0.5" height="15.0" fill="rgb(237,224,2)" rx="2" ry="2" />
<text x="602.65" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc5Proxy21GetCallbackThreadPoolEbNS0_18InvokeCallbackModeE (2 samples, 0.01%)</title><rect x="547.9" y="853" width="0.1" height="15.0" fill="rgb(234,197,51)" rx="2" ry="2" />
<text x="550.94" y="863.5" ></text>
</g>
<g >
<title>fput (5 samples, 0.02%)</title><rect x="222.2" y="853" width="0.3" height="15.0" fill="rgb(251,72,4)" rx="2" ry="2" />
<text x="225.22" y="863.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (4 samples, 0.02%)</title><rect x="1184.4" y="837" width="0.2" height="15.0" fill="rgb(233,108,7)" rx="2" ry="2" />
<text x="1187.41" y="847.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="398.2" y="581" width="0.1" height="15.0" fill="rgb(236,26,34)" rx="2" ry="2" />
<text x="401.20" y="591.5" ></text>
</g>
<g >
<title>futex_wait (2 samples, 0.01%)</title><rect x="550.6" y="789" width="0.1" height="15.0" fill="rgb(246,211,27)" rx="2" ry="2" />
<text x="553.61" y="799.5" ></text>
</g>
<g >
<title>finish_task_switch (5 samples, 0.02%)</title><rect x="601.9" y="757" width="0.2" height="15.0" fill="rgb(247,8,15)" rx="2" ry="2" />
<text x="604.86" y="767.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="963.3" y="629" width="0.1" height="15.0" fill="rgb(253,90,30)" rx="2" ry="2" />
<text x="966.32" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb16EnumerateIntentsERKN6google8protobuf16RepeatedPtrFieldINS0_14KeyValuePairPBEEERKN5boost8functionIFNS_6StatusENS0_14IntentStrengthENS_5SliceEPNS0_8KeyBytesEEEENS_17StronglyTypedBoolINS0_26PartialRangeKeyIntents_TagEEE (2,238 samples, 9.55%)</title><rect x="624.4" y="773" width="112.7" height="15.0" fill="rgb(213,118,32)" rx="2" ry="2" />
<text x="627.37" y="783.5" >_ZN2yb5docdb1..</text>
</g>
<g >
<title>pick_next_task_fair (18 samples, 0.08%)</title><rect x="199.1" y="757" width="0.9" height="15.0" fill="rgb(210,145,23)" rx="2" ry="2" />
<text x="202.11" y="767.5" ></text>
</g>
<g >
<title>sys_epoll_wait (84 samples, 0.36%)</title><rect x="419.2" y="869" width="4.3" height="15.0" fill="rgb(213,60,25)" rx="2" ry="2" />
<text x="422.24" y="879.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb16QLRocksDBStorage11GetIteratorERKNS_18PgsqlReadRequestPBERKNS_6SchemaES7_RKN5boost8optionalINS_27TransactionOperationContextEEENSt6chrono10time_pointINS_15CoarseMonoClockENSE_8durationIlSt5ratioILl1ELl1000000000EEEEEERKNS_14ReadHybridTimeEPSt10unique_ptrINS_6common20YQLRowwiseIteratorIfESt14default_deleteISR_EE (20 samples, 0.09%)</title><rect x="775.8" y="821" width="1.0" height="15.0" fill="rgb(242,20,40)" rx="2" ry="2" />
<text x="778.77" y="831.5" ></text>
</g>
<g >
<title>sk_filter_trim_cap (3 samples, 0.01%)</title><rect x="386.9" y="325" width="0.1" height="15.0" fill="rgb(251,8,10)" rx="2" ry="2" />
<text x="389.87" y="335.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (9 samples, 0.04%)</title><rect x="591.6" y="613" width="0.4" height="15.0" fill="rgb(220,169,48)" rx="2" ry="2" />
<text x="594.59" y="623.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (5 samples, 0.02%)</title><rect x="223.1" y="837" width="0.3" height="15.0" fill="rgb(209,30,40)" rx="2" ry="2" />
<text x="226.13" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken6SubmitESt10shared_ptrINS_8RunnableEE (2 samples, 0.01%)</title><rect x="624.2" y="725" width="0.1" height="15.0" fill="rgb(219,78,51)" rx="2" ry="2" />
<text x="627.22" y="735.5" ></text>
</g>
<g >
<title>eventfd_write (16 samples, 0.07%)</title><rect x="746.5" y="645" width="0.8" height="15.0" fill="rgb(221,56,10)" rx="2" ry="2" />
<text x="749.47" y="655.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="622.7" y="757" width="0.1" height="15.0" fill="rgb(249,58,10)" rx="2" ry="2" />
<text x="625.66" y="767.5" ></text>
</g>
<g >
<title>futex_wake (2 samples, 0.01%)</title><rect x="526.7" y="853" width="0.1" height="15.0" fill="rgb(224,114,31)" rx="2" ry="2" />
<text x="529.69" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet10WriteBatchEPKN7rocksdb13UserFrontiersENS_10HybridTimeEPNS2_10WriteBatchEPNS2_2DBE (20 samples, 0.09%)</title><rect x="532.5" y="709" width="1.0" height="15.0" fill="rgb(209,155,21)" rx="2" ry="2" />
<text x="535.48" y="719.5" ></text>
</g>
<g >
<title>__libc_enable_asynccancel (2 samples, 0.01%)</title><rect x="132.3" y="901" width="0.1" height="15.0" fill="rgb(205,41,48)" rx="2" ry="2" />
<text x="135.30" y="911.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="667.5" y="581" width="0.1" height="15.0" fill="rgb(215,226,32)" rx="2" ry="2" />
<text x="670.52" y="591.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver31ReadOperationCompletionCallback18OperationCompletedEv (10 samples, 0.04%)</title><rect x="535.0" y="741" width="0.6" height="15.0" fill="rgb(214,11,50)" rx="2" ry="2" />
<text x="538.05" y="751.5" ></text>
</g>
<g >
<title>perf_pmu_disable (12 samples, 0.05%)</title><rect x="238.0" y="709" width="0.6" height="15.0" fill="rgb(207,197,9)" rx="2" ry="2" />
<text x="241.03" y="719.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail13epoll_reactor12cancel_timerINS1_18chrono_time_traitsINSt6chrono3_V212steady_clockENS0_11wait_traitsIS7_EEEEEEmRNS1_11timer_queueIT_EERNSD_14per_timer_dataEm (2 samples, 0.01%)</title><rect x="425.6" y="837" width="0.1" height="15.0" fill="rgb(210,53,43)" rx="2" ry="2" />
<text x="428.59" y="847.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (9 samples, 0.04%)</title><rect x="412.4" y="693" width="0.5" height="15.0" fill="rgb(211,77,35)" rx="2" ry="2" />
<text x="415.45" y="703.5" ></text>
</g>
<g >
<title>nf_hook_slow (12 samples, 0.05%)</title><rect x="388.5" y="405" width="0.6" height="15.0" fill="rgb(214,52,17)" rx="2" ry="2" />
<text x="391.48" y="415.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="686.9" y="565" width="0.1" height="15.0" fill="rgb(213,20,42)" rx="2" ry="2" />
<text x="689.85" y="575.5" ></text>
</g>
<g >
<title>_ZNSt17_Function_handlerIFvPN2yb3log13LogEntryBatchEESt5_BindIFSt7_Mem_fnIMNS1_3Log8AppenderEFvS3_EEPS8_St12_PlaceholderILi1EEEEE9_M_invokeERKSt9_Any_dataOS3_ (2 samples, 0.01%)</title><rect x="413.4" y="901" width="0.1" height="15.0" fill="rgb(211,155,28)" rx="2" ry="2" />
<text x="416.40" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="770.1" y="805" width="0.1" height="15.0" fill="rgb(223,55,11)" rx="2" ry="2" />
<text x="773.08" y="815.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5ValidEv (9 samples, 0.04%)</title><rect x="711.9" y="677" width="0.4" height="15.0" fill="rgb(233,75,43)" rx="2" ry="2" />
<text x="714.88" y="687.5" ></text>
</g>
<g >
<title>_ZN2ev4baseI8ev_timerNS_5timerEE12method_thunkIN2yb3rpc10ConnectionEXadL_ZNS7_13HandleTimeoutERS2_iEEEEvP7ev_loopPS1_i (2 samples, 0.01%)</title><rect x="332.9" y="901" width="0.1" height="15.0" fill="rgb(233,29,25)" rx="2" ry="2" />
<text x="335.94" y="911.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="963.0" y="565" width="0.1" height="15.0" fill="rgb(218,15,50)" rx="2" ry="2" />
<text x="965.97" y="575.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="394.7" y="677" width="0.2" height="15.0" fill="rgb(208,78,14)" rx="2" ry="2" />
<text x="397.72" y="687.5" ></text>
</g>
<g >
<title>memcpy@plt (2 samples, 0.01%)</title><rect x="681.5" y="645" width="0.1" height="15.0" fill="rgb(224,87,2)" rx="2" ry="2" />
<text x="684.52" y="655.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator3keyEv (2 samples, 0.01%)</title><rect x="902.4" y="677" width="0.1" height="15.0" fill="rgb(252,123,29)" rx="2" ry="2" />
<text x="905.35" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb16ScopedAdoptTraceC1EPNS_5TraceE (4 samples, 0.02%)</title><rect x="525.4" y="933" width="0.2" height="15.0" fill="rgb(223,169,19)" rx="2" ry="2" />
<text x="528.38" y="943.5" ></text>
</g>
<g >
<title>irq_exit (2 samples, 0.01%)</title><rect x="475.7" y="741" width="0.1" height="15.0" fill="rgb(250,216,8)" rx="2" ry="2" />
<text x="478.69" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue37NotifyObserversOfMajorityReplOpChangeERKNS0_22MajorityReplicatedDataE (4 samples, 0.02%)</title><rect x="399.0" y="821" width="0.2" height="15.0" fill="rgb(223,102,18)" rx="2" ry="2" />
<text x="402.00" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime14GetEncodedSizeERKNS_5SliceE (5 samples, 0.02%)</title><rect x="639.5" y="661" width="0.2" height="15.0" fill="rgb(215,56,14)" rx="2" ry="2" />
<text x="642.47" y="671.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="707.9" y="645" width="0.1" height="15.0" fill="rgb(209,166,33)" rx="2" ry="2" />
<text x="710.90" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb3log18WritableLogSegment15WriteEntryBatchERKNS_5SliceE (36 samples, 0.15%)</title><rect x="401.4" y="869" width="1.8" height="15.0" fill="rgb(210,87,3)" rx="2" ry="2" />
<text x="404.42" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver12ExecuteAsyncEv (22 samples, 0.09%)</title><rect x="750.6" y="789" width="1.2" height="15.0" fill="rgb(216,21,35)" rx="2" ry="2" />
<text x="753.65" y="799.5" ></text>
</g>
<g >
<title>_ZNSt6chrono3_V212steady_clock3nowEv (2 samples, 0.01%)</title><rect x="496.6" y="917" width="0.1" height="15.0" fill="rgb(219,92,34)" rx="2" ry="2" />
<text x="499.63" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb12_GLOBAL__N_113WallClockImpl3NowEv (4 samples, 0.02%)</title><rect x="538.0" y="821" width="0.2" height="15.0" fill="rgb(237,209,6)" rx="2" ry="2" />
<text x="541.02" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb15IntentValueTypeEc (9 samples, 0.04%)</title><rect x="641.6" y="693" width="0.4" height="15.0" fill="rgb(220,131,35)" rx="2" ry="2" />
<text x="644.59" y="703.5" ></text>
</g>
<g >
<title>schedule (1,487 samples, 6.34%)</title><rect x="42.9" y="789" width="74.8" height="15.0" fill="rgb(243,40,46)" rx="2" ry="2" />
<text x="45.88" y="799.5" >schedule</text>
</g>
<g >
<title>__release_sock (4 samples, 0.02%)</title><rect x="338.3" y="629" width="0.2" height="15.0" fill="rgb(222,94,48)" rx="2" ry="2" />
<text x="341.28" y="639.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (118 samples, 0.50%)</title><rect x="338.5" y="645" width="5.9" height="15.0" fill="rgb(211,47,4)" rx="2" ry="2" />
<text x="341.48" y="655.5" ></text>
</g>
<g >
<title>x86_pmu_enable (24 samples, 0.10%)</title><rect x="397.0" y="597" width="1.2" height="15.0" fill="rgb(243,136,34)" rx="2" ry="2" />
<text x="399.99" y="607.5" ></text>
</g>
<g >
<title>dequeue_task_fair (65 samples, 0.28%)</title><rect x="48.1" y="741" width="3.2" height="15.0" fill="rgb(214,42,23)" rx="2" ry="2" />
<text x="51.06" y="751.5" ></text>
</g>
<g >
<title>timerqueue_add (38 samples, 0.16%)</title><rect x="156.5" y="757" width="1.9" height="15.0" fill="rgb(234,192,11)" rx="2" ry="2" />
<text x="159.52" y="767.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (2 samples, 0.01%)</title><rect x="597.6" y="917" width="0.1" height="15.0" fill="rgb(247,160,4)" rx="2" ry="2" />
<text x="600.63" y="927.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (6 samples, 0.03%)</title><rect x="158.7" y="773" width="0.3" height="15.0" fill="rgb(219,33,12)" rx="2" ry="2" />
<text x="161.68" y="783.5" ></text>
</g>
<g >
<title>_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPN2yb3rpc10Connection15ExpirationEntryESt6vectorIS5_SaIS5_EEEElS5_NS0_5__ops15_Iter_comp_iterINS4_17CompareExpirationEEEEvT_T0_SG_T1_T2_ (3 samples, 0.01%)</title><rect x="336.8" y="869" width="0.1" height="15.0" fill="rgb(237,204,50)" rx="2" ry="2" />
<text x="339.77" y="879.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (35 samples, 0.15%)</title><rect x="341.2" y="293" width="1.7" height="15.0" fill="rgb(254,28,26)" rx="2" ry="2" />
<text x="344.15" y="303.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCallD1Ev (6 samples, 0.03%)</title><rect x="431.5" y="821" width="0.3" height="15.0" fill="rgb(253,210,27)" rx="2" ry="2" />
<text x="434.53" y="831.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="1038.5" y="677" width="0.2" height="15.0" fill="rgb(252,169,54)" rx="2" ry="2" />
<text x="1041.55" y="687.5" ></text>
</g>
<g >
<title>[unknown] (44 samples, 0.19%)</title><rect x="616.3" y="965" width="2.2" height="15.0" fill="rgb(224,58,48)" rx="2" ry="2" />
<text x="619.26" y="975.5" ></text>
</g>
<g >
<title>tick_sched_handle (3 samples, 0.01%)</title><rect x="398.2" y="549" width="0.1" height="15.0" fill="rgb(239,29,30)" rx="2" ry="2" />
<text x="401.20" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="601.9" y="885" width="0.2" height="15.0" fill="rgb(227,119,7)" rx="2" ry="2" />
<text x="604.86" y="895.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (29 samples, 0.12%)</title><rect x="425.7" y="837" width="1.5" height="15.0" fill="rgb(254,143,13)" rx="2" ry="2" />
<text x="428.74" y="847.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (13 samples, 0.06%)</title><rect x="521.8" y="709" width="0.6" height="15.0" fill="rgb(210,159,29)" rx="2" ry="2" />
<text x="524.76" y="719.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="413.5" y="901" width="0.1" height="15.0" fill="rgb(240,19,19)" rx="2" ry="2" />
<text x="416.50" y="911.5" ></text>
</g>
<g >
<title>default_wake_function (7 samples, 0.03%)</title><rect x="342.3" y="117" width="0.4" height="15.0" fill="rgb(235,14,21)" rx="2" ry="2" />
<text x="345.31" y="127.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3 samples, 0.01%)</title><rect x="500.0" y="725" width="0.2" height="15.0" fill="rgb(230,149,6)" rx="2" ry="2" />
<text x="503.01" y="735.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (201 samples, 0.86%)</title><rect x="348.3" y="629" width="10.1" height="15.0" fill="rgb(226,29,47)" rx="2" ry="2" />
<text x="351.25" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim (8 samples, 0.03%)</title><rect x="965.1" y="725" width="0.4" height="15.0" fill="rgb(241,131,54)" rx="2" ry="2" />
<text x="968.09" y="735.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5ValidEv (3 samples, 0.01%)</title><rect x="874.7" y="645" width="0.2" height="15.0" fill="rgb(226,196,25)" rx="2" ry="2" />
<text x="877.71" y="655.5" ></text>
</g>
<g >
<title>timerqueue_del (36 samples, 0.15%)</title><rect x="234.0" y="757" width="1.8" height="15.0" fill="rgb(206,77,11)" rx="2" ry="2" />
<text x="236.96" y="767.5" ></text>
</g>
<g >
<title>ep_poll_callback (17 samples, 0.07%)</title><rect x="546.2" y="613" width="0.8" height="15.0" fill="rgb(241,72,52)" rx="2" ry="2" />
<text x="549.18" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="539.6" y="869" width="0.1" height="15.0" fill="rgb(246,35,25)" rx="2" ry="2" />
<text x="542.58" y="879.5" ></text>
</g>
<g >
<title>finish_task_switch (32 samples, 0.14%)</title><rect x="415.6" y="773" width="1.6" height="15.0" fill="rgb(226,90,30)" rx="2" ry="2" />
<text x="418.62" y="783.5" ></text>
</g>
<g >
<title>rw_verify_area (2 samples, 0.01%)</title><rect x="547.2" y="677" width="0.1" height="15.0" fill="rgb(236,94,47)" rx="2" ry="2" />
<text x="550.23" y="687.5" ></text>
</g>
<g >
<title>[libpthread-2.23.so] (56 samples, 0.24%)</title><rect x="395.7" y="853" width="2.8" height="15.0" fill="rgb(254,128,4)" rx="2" ry="2" />
<text x="398.68" y="863.5" ></text>
</g>
<g >
<title>_ZNK2yb7tserver15TSTabletManager14GetLeaderCountEv (7 samples, 0.03%)</title><rect x="415.2" y="885" width="0.4" height="15.0" fill="rgb(218,126,21)" rx="2" ry="2" />
<text x="418.22" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream11SendingDataC2ESt10shared_ptrINS0_12OutboundDataEERKS3_INS_10MemTrackerEE (24 samples, 0.10%)</title><rect x="362.5" y="789" width="1.3" height="15.0" fill="rgb(216,112,24)" rx="2" ry="2" />
<text x="365.55" y="799.5" ></text>
</g>
<g >
<title>x86_pmu_enable (347 samples, 1.48%)</title><rect x="456.0" y="741" width="17.5" height="15.0" fill="rgb(253,71,24)" rx="2" ry="2" />
<text x="459.00" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb25ColumnFamilyMemTablesImpl11GetMemTableEv (2 samples, 0.01%)</title><rect x="533.3" y="629" width="0.1" height="15.0" fill="rgb(249,210,52)" rx="2" ry="2" />
<text x="536.29" y="639.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter3keyEv (2 samples, 0.01%)</title><rect x="884.2" y="661" width="0.1" height="15.0" fill="rgb(245,20,16)" rx="2" ry="2" />
<text x="887.23" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb18PerformRocksDBSeekEPN7rocksdb8IteratorERKNS_5SliceEPKci (2 samples, 0.01%)</title><rect x="775.8" y="757" width="0.1" height="15.0" fill="rgb(206,142,4)" rx="2" ry="2" />
<text x="778.82" y="767.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.02%)</title><rect x="680.5" y="581" width="0.2" height="15.0" fill="rgb(249,174,49)" rx="2" ry="2" />
<text x="683.46" y="591.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (2 samples, 0.01%)</title><rect x="439.0" y="885" width="0.1" height="15.0" fill="rgb(220,162,34)" rx="2" ry="2" />
<text x="442.03" y="895.5" ></text>
</g>
<g >
<title>tc_newarray (4 samples, 0.02%)</title><rect x="527.7" y="933" width="0.2" height="15.0" fill="rgb(208,90,20)" rx="2" ry="2" />
<text x="530.70" y="943.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="536.7" y="821" width="0.2" height="15.0" fill="rgb(228,134,33)" rx="2" ry="2" />
<text x="539.66" y="831.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4 samples, 0.02%)</title><rect x="1062.3" y="917" width="0.2" height="15.0" fill="rgb(237,123,28)" rx="2" ry="2" />
<text x="1065.31" y="927.5" ></text>
</g>
<g >
<title>tick_sched_timer (89 samples, 0.38%)</title><rect x="1174.9" y="709" width="4.5" height="15.0" fill="rgb(210,101,45)" rx="2" ry="2" />
<text x="1177.90" y="719.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet11MvccManager8SafeTimeENS_10HybridTimeENSt6chrono10time_pointINS_15CoarseMonoClockENS3_8durationIlSt5ratioILl1ELl1000000000EEEEEES2_ (3 samples, 0.01%)</title><rect x="774.6" y="869" width="0.2" height="15.0" fill="rgb(220,138,5)" rx="2" ry="2" />
<text x="777.61" y="879.5" ></text>
</g>
<g >
<title>__clock_gettime (4 samples, 0.02%)</title><rect x="365.8" y="837" width="0.2" height="15.0" fill="rgb(225,6,1)" rx="2" ry="2" />
<text x="368.82" y="847.5" ></text>
</g>
<g >
<title>__update_idle_core (3 samples, 0.01%)</title><rect x="46.9" y="757" width="0.2" height="15.0" fill="rgb(240,28,42)" rx="2" ry="2" />
<text x="49.91" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor9RunThreadEv (1,533 samples, 6.54%)</title><rect x="138.7" y="933" width="77.2" height="15.0" fill="rgb(243,87,45)" rx="2" ry="2" />
<text x="141.74" y="943.5" >_ZN2yb3r..</text>
</g>
<g >
<title>_ZN2yb7pb_util21AppendPartialToStringERKN6google8protobuf11MessageLiteEPNS_10faststringE (3 samples, 0.01%)</title><rect x="401.0" y="853" width="0.2" height="15.0" fill="rgb(211,171,2)" rx="2" ry="2" />
<text x="404.02" y="863.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (35 samples, 0.15%)</title><rect x="1044.5" y="741" width="1.8" height="15.0" fill="rgb(241,78,50)" rx="2" ry="2" />
<text x="1047.54" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus12ReplicaState19AddPendingOperationERK13scoped_refptrINS0_14ConsensusRoundEE (3 samples, 0.01%)</title><rect x="491.8" y="837" width="0.2" height="15.0" fill="rgb(248,168,43)" rx="2" ry="2" />
<text x="494.85" y="847.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="483.4" y="965" width="0.1" height="15.0" fill="rgb(225,194,50)" rx="2" ry="2" />
<text x="486.39" y="975.5" ></text>
</g>
<g >
<title>schedule (513 samples, 2.19%)</title><rect x="451.1" y="821" width="25.8" height="15.0" fill="rgb(244,201,28)" rx="2" ry="2" />
<text x="454.12" y="831.5" >s..</text>
</g>
<g >
<title>_ZN2yb3rpc5Proxy11SyncRequestEPKNS0_12RemoteMethodERKN6google8protobuf7MessageEPS7_PNS0_13RpcControllerE (13 samples, 0.06%)</title><rect x="414.0" y="869" width="0.7" height="15.0" fill="rgb(210,155,40)" rx="2" ry="2" />
<text x="417.01" y="879.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (16 samples, 0.07%)</title><rect x="228.0" y="821" width="0.8" height="15.0" fill="rgb(250,31,11)" rx="2" ry="2" />
<text x="231.02" y="831.5" ></text>
</g>
<g >
<title>do_syscall_64 (20 samples, 0.09%)</title><rect x="375.8" y="693" width="1.0" height="15.0" fill="rgb(236,59,37)" rx="2" ry="2" />
<text x="378.84" y="703.5" ></text>
</g>
<g >
<title>do_syscall_64 (192 samples, 0.82%)</title><rect x="606.0" y="917" width="9.7" height="15.0" fill="rgb(254,70,11)" rx="2" ry="2" />
<text x="609.04" y="927.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (3 samples, 0.01%)</title><rect x="338.3" y="613" width="0.2" height="15.0" fill="rgb(225,173,17)" rx="2" ry="2" />
<text x="341.33" y="623.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc5Proxy12AsyncRequestEPKNS0_12RemoteMethodERKN6google8protobuf7MessageEPS7_PNS0_13RpcControllerESt8functionIFvvEE (121 samples, 0.52%)</title><rect x="542.1" y="869" width="6.1" height="15.0" fill="rgb(222,7,7)" rx="2" ry="2" />
<text x="545.15" y="879.5" ></text>
</g>
<g >
<title>native_write_msr (144 samples, 0.61%)</title><rect x="405.0" y="661" width="7.3" height="15.0" fill="rgb(218,80,14)" rx="2" ry="2" />
<text x="408.05" y="671.5" ></text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase6AddRefEv (2 samples, 0.01%)</title><rect x="1059.4" y="885" width="0.1" height="15.0" fill="rgb(223,149,43)" rx="2" ry="2" />
<text x="1062.44" y="895.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3 samples, 0.01%)</title><rect x="1038.5" y="693" width="0.2" height="15.0" fill="rgb(247,140,31)" rx="2" ry="2" />
<text x="1041.55" y="703.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator3keyEv (39 samples, 0.17%)</title><rect x="1013.5" y="725" width="2.0" height="15.0" fill="rgb(222,191,12)" rx="2" ry="2" />
<text x="1016.52" y="735.5" ></text>
</g>
<g >
<title>[unknown] (31 samples, 0.13%)</title><rect x="137.2" y="965" width="1.5" height="15.0" fill="rgb(237,9,43)" rx="2" ry="2" />
<text x="140.18" y="975.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (7 samples, 0.03%)</title><rect x="615.7" y="933" width="0.4" height="15.0" fill="rgb(221,9,43)" rx="2" ry="2" />
<text x="618.71" y="943.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5ValidEv (15 samples, 0.06%)</title><rect x="1040.7" y="741" width="0.8" height="15.0" fill="rgb(232,215,33)" rx="2" ry="2" />
<text x="1043.71" y="751.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (16 samples, 0.07%)</title><rect x="47.1" y="757" width="0.8" height="15.0" fill="rgb(251,27,50)" rx="2" ry="2" />
<text x="50.11" y="767.5" ></text>
</g>
<g >
<title>xlog_bdstrat (5 samples, 0.02%)</title><rect x="395.7" y="693" width="0.2" height="15.0" fill="rgb(220,17,40)" rx="2" ry="2" />
<text x="398.68" y="703.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="601.9" y="693" width="0.2" height="15.0" fill="rgb(218,180,16)" rx="2" ry="2" />
<text x="604.86" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb12HdrHistogram9IncrementEl (3 samples, 0.01%)</title><rect x="362.0" y="821" width="0.2" height="15.0" fill="rgb(207,128,37)" rx="2" ry="2" />
<text x="365.05" y="831.5" ></text>
</g>
<g >
<title>_ZN37protobuf_yb_2fcommon_2fcommon_2eproto22InitDefaultsHostPortPBEv (2 samples, 0.01%)</title><rect x="768.9" y="805" width="0.1" height="15.0" fill="rgb(221,29,22)" rx="2" ry="2" />
<text x="771.92" y="815.5" ></text>
</g>
<g >
<title>tcp_filter (2 samples, 0.01%)</title><rect x="341.2" y="277" width="0.1" height="15.0" fill="rgb(250,65,4)" rx="2" ry="2" />
<text x="344.20" y="287.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb12_GLOBAL__N_116CreateProjectionERKNS_6SchemaERKNS_17PgsqlColumnRefsPBEPS2_.constprop.423 (4 samples, 0.02%)</title><rect x="775.4" y="821" width="0.2" height="15.0" fill="rgb(216,84,25)" rx="2" ry="2" />
<text x="778.37" y="831.5" ></text>
</g>
<g >
<title>scheduler_tick (3 samples, 0.01%)</title><rect x="398.2" y="517" width="0.1" height="15.0" fill="rgb(213,48,39)" rx="2" ry="2" />
<text x="401.20" y="527.5" ></text>
</g>
<g >
<title>_ZN7rocksdb14StatisticsImpl10recordTickEjm (37 samples, 0.16%)</title><rect x="838.8" y="693" width="1.9" height="15.0" fill="rgb(225,221,40)" rx="2" ry="2" />
<text x="841.81" y="703.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (1,055 samples, 4.50%)</title><rect x="56.0" y="693" width="53.1" height="15.0" fill="rgb(225,148,45)" rx="2" ry="2" />
<text x="58.97" y="703.5" >intel..</text>
</g>
<g >
<title>inet_recvmsg (148 samples, 0.63%)</title><rect x="382.2" y="725" width="7.4" height="15.0" fill="rgb(237,86,38)" rx="2" ry="2" />
<text x="385.19" y="735.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (2,138 samples, 9.12%)</title><rect x="1071.9" y="837" width="107.7" height="15.0" fill="rgb(221,59,22)" rx="2" ry="2" />
<text x="1074.93" y="847.5" >futex_wait_qu..</text>
</g>
<g >
<title>ev_invoke_pending (42 samples, 0.18%)</title><rect x="134.9" y="901" width="2.1" height="15.0" fill="rgb(240,11,12)" rx="2" ry="2" />
<text x="137.92" y="911.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (9 samples, 0.04%)</title><rect x="36.1" y="805" width="0.4" height="15.0" fill="rgb(236,170,11)" rx="2" ry="2" />
<text x="39.08" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime15FullyDecodeFromERKNS_5SliceE (654 samples, 2.79%)</title><rect x="932.2" y="725" width="32.9" height="15.0" fill="rgb(254,49,4)" rx="2" ry="2" />
<text x="935.16" y="735.5" >_Z..</text>
</g>
<g >
<title>tc_deletearray_nothrow (3 samples, 0.01%)</title><rect x="527.4" y="933" width="0.1" height="15.0" fill="rgb(242,211,14)" rx="2" ry="2" />
<text x="530.40" y="943.5" ></text>
</g>
<g >
<title>trigger_load_balance (6 samples, 0.03%)</title><rect x="614.2" y="661" width="0.3" height="15.0" fill="rgb(210,41,27)" rx="2" ry="2" />
<text x="617.20" y="671.5" ></text>
</g>
<g >
<title>skb_release_all (3 samples, 0.01%)</title><rect x="387.8" y="261" width="0.1" height="15.0" fill="rgb(211,6,16)" rx="2" ry="2" />
<text x="390.78" y="271.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (6 samples, 0.03%)</title><rect x="154.6" y="805" width="0.3" height="15.0" fill="rgb(227,98,1)" rx="2" ry="2" />
<text x="157.60" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus18ConsensusRequestPB5ClearEv (3 samples, 0.01%)</title><rect x="739.4" y="837" width="0.1" height="15.0" fill="rgb(247,180,31)" rx="2" ry="2" />
<text x="742.37" y="847.5" ></text>
</g>
<g >
<title>do_futex (16 samples, 0.07%)</title><rect x="430.1" y="741" width="0.8" height="15.0" fill="rgb(239,67,5)" rx="2" ry="2" />
<text x="433.07" y="751.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="996.7" y="661" width="0.2" height="15.0" fill="rgb(235,74,21)" rx="2" ry="2" />
<text x="999.71" y="671.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (3 samples, 0.01%)</title><rect x="372.8" y="741" width="0.2" height="15.0" fill="rgb(221,98,22)" rx="2" ry="2" />
<text x="375.82" y="751.5" ></text>
</g>
<g >
<title>do_syscall_64 (127 samples, 0.54%)</title><rect x="1182.9" y="917" width="6.4" height="15.0" fill="rgb(226,181,44)" rx="2" ry="2" />
<text x="1185.90" y="927.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (49 samples, 0.21%)</title><rect x="196.6" y="725" width="2.5" height="15.0" fill="rgb(229,31,47)" rx="2" ry="2" />
<text x="199.60" y="735.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (4 samples, 0.02%)</title><rect x="121.6" y="837" width="0.2" height="15.0" fill="rgb(206,124,1)" rx="2" ry="2" />
<text x="124.58" y="847.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="546.8" y="597" width="0.2" height="15.0" fill="rgb(236,131,41)" rx="2" ry="2" />
<text x="549.83" y="607.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="539.6" y="853" width="0.1" height="15.0" fill="rgb(242,170,32)" rx="2" ry="2" />
<text x="542.58" y="863.5" ></text>
</g>
<g >
<title>ip_finish_output (66 samples, 0.28%)</title><rect x="340.7" y="517" width="3.3" height="15.0" fill="rgb(237,70,2)" rx="2" ry="2" />
<text x="343.70" y="527.5" ></text>
</g>
<g >
<title>futex_wait (4 samples, 0.02%)</title><rect x="399.9" y="741" width="0.2" height="15.0" fill="rgb(248,79,38)" rx="2" ry="2" />
<text x="402.86" y="751.5" ></text>
</g>
<g >
<title>[unknown] (9 samples, 0.04%)</title><rect x="216.0" y="949" width="0.5" height="15.0" fill="rgb(216,140,37)" rx="2" ry="2" />
<text x="219.03" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb6ResultISt10shared_ptrINS_6tablet10TabletPeerEEED1Ev (2 samples, 0.01%)</title><rect x="745.9" y="869" width="0.1" height="15.0" fill="rgb(220,50,13)" rx="2" ry="2" />
<text x="748.86" y="879.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (2 samples, 0.01%)</title><rect x="326.4" y="693" width="0.1" height="15.0" fill="rgb(207,154,50)" rx="2" ry="2" />
<text x="329.45" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb12RefCntBufferC1Em (2 samples, 0.01%)</title><rect x="543.0" y="805" width="0.1" height="15.0" fill="rgb(230,218,29)" rx="2" ry="2" />
<text x="546.00" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet14WriteOperation6FinishENS0_9Operation15OperationResultE (4 samples, 0.02%)</title><rect x="534.6" y="741" width="0.2" height="15.0" fill="rgb(234,57,49)" rx="2" ry="2" />
<text x="537.60" y="751.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="686.9" y="533" width="0.1" height="15.0" fill="rgb(209,82,4)" rx="2" ry="2" />
<text x="689.85" y="543.5" ></text>
</g>
<g >
<title>futex_wait (2,229 samples, 9.51%)</title><rect x="1067.8" y="853" width="112.2" height="15.0" fill="rgb(219,191,40)" rx="2" ry="2" />
<text x="1070.75" y="863.5" >futex_wait</text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="624.2" y="677" width="0.1" height="15.0" fill="rgb(224,73,42)" rx="2" ry="2" />
<text x="627.22" y="687.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (52 samples, 0.22%)</title><rect x="689.5" y="645" width="2.6" height="15.0" fill="rgb(209,52,46)" rx="2" ry="2" />
<text x="692.47" y="655.5" ></text>
</g>
<g >
<title>update_curr (8 samples, 0.03%)</title><rect x="239.8" y="709" width="0.5" height="15.0" fill="rgb(216,168,12)" rx="2" ry="2" />
<text x="242.85" y="719.5" ></text>
</g>
<g >
<title>__tls_get_addr@plt (3 samples, 0.01%)</title><rect x="1022.7" y="725" width="0.2" height="15.0" fill="rgb(232,13,24)" rx="2" ry="2" />
<text x="1025.74" y="735.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.02%)</title><rect x="667.5" y="645" width="0.2" height="15.0" fill="rgb(230,204,22)" rx="2" ry="2" />
<text x="670.47" y="655.5" ></text>
</g>
<g >
<title>do_syscall_64 (16 samples, 0.07%)</title><rect x="482.3" y="869" width="0.8" height="15.0" fill="rgb(220,151,48)" rx="2" ry="2" />
<text x="485.33" y="879.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (24 samples, 0.10%)</title><rect x="397.0" y="581" width="1.2" height="15.0" fill="rgb(245,2,1)" rx="2" ry="2" />
<text x="399.99" y="591.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKSs (2 samples, 0.01%)</title><rect x="742.7" y="821" width="0.1" height="15.0" fill="rgb(240,45,51)" rx="2" ry="2" />
<text x="745.74" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet8Preparer6SubmitEPNS0_15OperationDriverE (2 samples, 0.01%)</title><rect x="751.8" y="789" width="0.1" height="15.0" fill="rgb(216,156,3)" rx="2" ry="2" />
<text x="754.75" y="799.5" ></text>
</g>
<g >
<title>ttwu_do_activate (6 samples, 0.03%)</title><rect x="766.3" y="693" width="0.3" height="15.0" fill="rgb(209,137,7)" rx="2" ry="2" />
<text x="769.26" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken6SubmitESt10shared_ptrINS_8RunnableEE (23 samples, 0.10%)</title><rect x="429.9" y="821" width="1.1" height="15.0" fill="rgb(214,62,51)" rx="2" ry="2" />
<text x="432.87" y="831.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb5Block11NumRestartsEv (2 samples, 0.01%)</title><rect x="676.1" y="613" width="0.1" height="15.0" fill="rgb(252,41,47)" rx="2" ry="2" />
<text x="679.08" y="623.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (5 samples, 0.02%)</title><rect x="442.8" y="741" width="0.3" height="15.0" fill="rgb(224,30,35)" rx="2" ry="2" />
<text x="445.81" y="751.5" ></text>
</g>
<g >
<title>ipt_do_table (8 samples, 0.03%)</title><rect x="356.1" y="325" width="0.4" height="15.0" fill="rgb(244,165,28)" rx="2" ry="2" />
<text x="359.05" y="335.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver21HandleConsensusAppendEv (10 samples, 0.04%)</title><rect x="491.3" y="837" width="0.5" height="15.0" fill="rgb(214,162,2)" rx="2" ry="2" />
<text x="494.34" y="847.5" ></text>
</g>
<g >
<title>kvm_steal_clock (2 samples, 0.01%)</title><rect x="201.1" y="741" width="0.1" height="15.0" fill="rgb(213,224,51)" rx="2" ry="2" />
<text x="204.08" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus10RaftPeerPB10SharedDtorEv (13 samples, 0.06%)</title><rect x="762.9" y="837" width="0.7" height="15.0" fill="rgb(252,183,26)" rx="2" ry="2" />
<text x="765.93" y="847.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEji (2 samples, 0.01%)</title><rect x="431.6" y="789" width="0.1" height="15.0" fill="rgb(250,84,41)" rx="2" ry="2" />
<text x="434.58" y="799.5" ></text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase6AddRefEv (3 samples, 0.01%)</title><rect x="759.6" y="885" width="0.2" height="15.0" fill="rgb(230,208,14)" rx="2" ry="2" />
<text x="762.61" y="895.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (3 samples, 0.01%)</title><rect x="389.1" y="533" width="0.2" height="15.0" fill="rgb(223,90,23)" rx="2" ry="2" />
<text x="392.13" y="543.5" ></text>
</g>
<g >
<title>tcp_packet (3 samples, 0.01%)</title><rect x="385.2" y="533" width="0.2" height="15.0" fill="rgb(239,3,2)" rx="2" ry="2" />
<text x="388.21" y="543.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf11MessageLite20ParseFromCodedStreamEPNS0_2io16CodedInputStreamE (5 samples, 0.02%)</title><rect x="374.3" y="725" width="0.2" height="15.0" fill="rgb(236,87,34)" rx="2" ry="2" />
<text x="377.28" y="735.5" ></text>
</g>
<g >
<title>tick_sched_handle (40 samples, 0.17%)</title><rect x="196.7" y="661" width="2.0" height="15.0" fill="rgb(223,135,47)" rx="2" ry="2" />
<text x="199.70" y="671.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (9 samples, 0.04%)</title><rect x="531.3" y="821" width="0.5" height="15.0" fill="rgb(229,189,11)" rx="2" ry="2" />
<text x="534.32" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet16OperationTracker7ReleaseEPNS0_15OperationDriverE (29 samples, 0.12%)</title><rect x="487.9" y="837" width="1.5" height="15.0" fill="rgb(229,40,2)" rx="2" ry="2" />
<text x="490.92" y="847.5" ></text>
</g>
<g >
<title>nf_hook_slow (3 samples, 0.01%)</title><rect x="344.0" y="517" width="0.2" height="15.0" fill="rgb(224,2,52)" rx="2" ry="2" />
<text x="347.02" y="527.5" ></text>
</g>
<g >
<title>xfs_trans_commit (5 samples, 0.02%)</title><rect x="402.0" y="629" width="0.3" height="15.0" fill="rgb(221,186,42)" rx="2" ry="2" />
<text x="405.02" y="639.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.02%)</title><rect x="680.5" y="565" width="0.2" height="15.0" fill="rgb(212,139,50)" rx="2" ry="2" />
<text x="683.46" y="575.5" ></text>
</g>
<g >
<title>kfree_skbmem (3 samples, 0.01%)</title><rect x="387.6" y="261" width="0.2" height="15.0" fill="rgb(205,7,8)" rx="2" ry="2" />
<text x="390.62" y="271.5" ></text>
</g>
<g >
<title>kfree (2 samples, 0.01%)</title><rect x="387.8" y="213" width="0.1" height="15.0" fill="rgb(227,219,33)" rx="2" ry="2" />
<text x="390.78" y="223.5" ></text>
</g>
<g >
<title>_ZN7rocksdb18ArenaWrappedDBIter4NextEv (3 samples, 0.01%)</title><rect x="912.1" y="709" width="0.1" height="15.0" fill="rgb(251,102,9)" rx="2" ry="2" />
<text x="915.07" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb18PerformRocksDBSeekEPN7rocksdb8IteratorERKNS_5SliceEPKci (3 samples, 0.01%)</title><rect x="776.9" y="725" width="0.2" height="15.0" fill="rgb(219,47,8)" rx="2" ry="2" />
<text x="779.93" y="735.5" ></text>
</g>
<g >
<title>ep_poll_callback (9 samples, 0.04%)</title><rect x="342.3" y="165" width="0.4" height="15.0" fill="rgb(243,57,5)" rx="2" ry="2" />
<text x="345.26" y="175.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (3 samples, 0.01%)</title><rect x="604.4" y="949" width="0.1" height="15.0" fill="rgb(217,228,39)" rx="2" ry="2" />
<text x="607.38" y="959.5" ></text>
</g>
<g >
<title>nf_hook_slow (3 samples, 0.01%)</title><rect x="343.0" y="309" width="0.1" height="15.0" fill="rgb(219,53,41)" rx="2" ry="2" />
<text x="345.96" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="394.7" y="869" width="0.2" height="15.0" fill="rgb(236,63,22)" rx="2" ry="2" />
<text x="397.72" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream20GetPendingWriteBytesEv (2 samples, 0.01%)</title><rect x="364.6" y="821" width="0.1" height="15.0" fill="rgb(247,196,53)" rx="2" ry="2" />
<text x="367.56" y="831.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter4NextEv (15 samples, 0.06%)</title><rect x="682.8" y="661" width="0.8" height="15.0" fill="rgb(243,18,23)" rx="2" ry="2" />
<text x="685.83" y="671.5" ></text>
</g>
<g >
<title>sys_futex (22 samples, 0.09%)</title><rect x="425.9" y="789" width="1.1" height="15.0" fill="rgb(231,136,32)" rx="2" ry="2" />
<text x="428.94" y="799.5" ></text>
</g>
<g >
<title>futex_wait (3 samples, 0.01%)</title><rect x="554.7" y="837" width="0.2" height="15.0" fill="rgb(219,139,27)" rx="2" ry="2" />
<text x="557.74" y="847.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc12OutboundCall6statusEv (2 samples, 0.01%)</title><rect x="772.5" y="853" width="0.1" height="15.0" fill="rgb(223,226,20)" rx="2" ry="2" />
<text x="775.50" y="863.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (19 samples, 0.08%)</title><rect x="494.3" y="773" width="1.0" height="15.0" fill="rgb(244,126,52)" rx="2" ry="2" />
<text x="497.32" y="783.5" ></text>
</g>
<g >
<title>do_futex (13 samples, 0.06%)</title><rect x="434.3" y="869" width="0.7" height="15.0" fill="rgb(209,97,42)" rx="2" ry="2" />
<text x="437.35" y="879.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (9 samples, 0.04%)</title><rect x="238.2" y="677" width="0.4" height="15.0" fill="rgb(254,169,11)" rx="2" ry="2" />
<text x="241.19" y="687.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="395.1" y="693" width="0.2" height="15.0" fill="rgb(254,52,9)" rx="2" ry="2" />
<text x="398.13" y="703.5" ></text>
</g>
<g >
<title>epoll_modify (2 samples, 0.01%)</title><rect x="218.0" y="949" width="0.1" height="15.0" fill="rgb(231,167,7)" rx="2" ry="2" />
<text x="221.00" y="959.5" ></text>
</g>
<g >
<title>event_function (4 samples, 0.02%)</title><rect x="437.1" y="805" width="0.2" height="15.0" fill="rgb(253,106,11)" rx="2" ry="2" />
<text x="440.07" y="815.5" ></text>
</g>
<g >
<title>_ZNSs4_Rep10_M_disposeERKSaIcE.part.73 (2 samples, 0.01%)</title><rect x="403.7" y="869" width="0.1" height="15.0" fill="rgb(249,112,38)" rx="2" ry="2" />
<text x="406.74" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13RpcController5ResetEv@plt (2 samples, 0.01%)</title><rect x="761.0" y="885" width="0.1" height="15.0" fill="rgb(248,137,16)" rx="2" ry="2" />
<text x="763.97" y="895.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (55 samples, 0.23%)</title><rect x="341.1" y="373" width="2.7" height="15.0" fill="rgb(235,35,49)" rx="2" ry="2" />
<text x="344.05" y="383.5" ></text>
</g>
<g >
<title>process_backlog (59 samples, 0.25%)</title><rect x="386.1" y="469" width="3.0" height="15.0" fill="rgb(251,52,21)" rx="2" ry="2" />
<text x="389.11" y="479.5" ></text>
</g>
<g >
<title>_ZN2yb10HostPortPB9MergeFromERKS0_ (4 samples, 0.02%)</title><rect x="768.7" y="805" width="0.2" height="15.0" fill="rgb(219,37,42)" rx="2" ry="2" />
<text x="771.72" y="815.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb3rpc13YBInboundCallESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv (9 samples, 0.04%)</title><rect x="431.5" y="837" width="0.5" height="15.0" fill="rgb(252,176,26)" rx="2" ry="2" />
<text x="434.53" y="847.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (114 samples, 0.49%)</title><rect x="383.7" y="645" width="5.8" height="15.0" fill="rgb(212,163,48)" rx="2" ry="2" />
<text x="386.75" y="655.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.01%)</title><rect x="604.1" y="885" width="0.1" height="15.0" fill="rgb(220,121,43)" rx="2" ry="2" />
<text x="607.08" y="895.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="539.6" y="837" width="0.1" height="15.0" fill="rgb(244,173,21)" rx="2" ry="2" />
<text x="542.58" y="847.5" ></text>
</g>
<g >
<title>schedule (162 samples, 0.69%)</title><rect x="404.7" y="773" width="8.2" height="15.0" fill="rgb(246,220,17)" rx="2" ry="2" />
<text x="407.74" y="783.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="417.3" y="837" width="0.1" height="15.0" fill="rgb(208,54,36)" rx="2" ry="2" />
<text x="420.28" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver12TabletServer20PopulateLiveTServersERKNS_6master21TSHeartbeatResponsePBE (2 samples, 0.01%)</title><rect x="415.0" y="885" width="0.1" height="15.0" fill="rgb(251,70,21)" rx="2" ry="2" />
<text x="417.96" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus26CheckLeaderRequestUnlockedEPNS0_18ConsensusRequestPBEPNS0_19ConsensusResponsePBEPNS1_13LeaderRequestE (9 samples, 0.04%)</title><rect x="752.0" y="821" width="0.5" height="15.0" fill="rgb(212,201,22)" rx="2" ry="2" />
<text x="755.01" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10ThreadPool7EnqueueEPNS0_14ThreadPoolTaskE (14 samples, 0.06%)</title><rect x="375.0" y="725" width="0.7" height="15.0" fill="rgb(216,85,16)" rx="2" ry="2" />
<text x="378.04" y="735.5" ></text>
</g>
<g >
<title>file_write_and_wait_range (31 samples, 0.13%)</title><rect x="396.9" y="741" width="1.6" height="15.0" fill="rgb(244,10,26)" rx="2" ry="2" />
<text x="399.94" y="751.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="396.0" y="709" width="0.1" height="15.0" fill="rgb(227,0,23)" rx="2" ry="2" />
<text x="399.03" y="719.5" ></text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="490.6" y="533" width="0.1" height="15.0" fill="rgb(212,197,13)" rx="2" ry="2" />
<text x="493.64" y="543.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPB27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (2 samples, 0.01%)</title><rect x="739.5" y="821" width="0.1" height="15.0" fill="rgb(227,136,22)" rx="2" ry="2" />
<text x="742.52" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb4util22FastDecodeSignedVarIntEPKhm (332 samples, 1.42%)</title><rect x="946.6" y="677" width="16.7" height="15.0" fill="rgb(211,49,11)" rx="2" ry="2" />
<text x="949.61" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb28InitKeyColumnPrimitiveValuesERKN6google8protobuf16RepeatedPtrFieldINS_17PgsqlExpressionPBEEERKNS_6SchemaEmPSt6vectorINS0_14PrimitiveValueESaISC_EE (2 samples, 0.01%)</title><rect x="776.6" y="805" width="0.1" height="15.0" fill="rgb(231,135,39)" rx="2" ry="2" />
<text x="779.63" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,154 samples, 4.92%)</title><rect x="148.8" y="869" width="58.1" height="15.0" fill="rgb(232,53,16)" rx="2" ry="2" />
<text x="151.81" y="879.5" >do_sys..</text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="963.1" y="485" width="0.2" height="15.0" fill="rgb(243,229,20)" rx="2" ry="2" />
<text x="966.12" y="495.5" ></text>
</g>
<g >
<title>__clock_gettime (5 samples, 0.02%)</title><rect x="417.4" y="949" width="0.3" height="15.0" fill="rgb(238,206,51)" rx="2" ry="2" />
<text x="420.43" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet14StartOperationEPNS0_19WriteOperationStateE (3 samples, 0.01%)</title><rect x="491.7" y="821" width="0.1" height="15.0" fill="rgb(219,36,17)" rx="2" ry="2" />
<text x="494.70" y="831.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (37 samples, 0.16%)</title><rect x="1180.0" y="885" width="1.8" height="15.0" fill="rgb(226,204,17)" rx="2" ry="2" />
<text x="1182.98" y="895.5" ></text>
</g>
<g >
<title>perf_pmu_enable (144 samples, 0.61%)</title><rect x="405.0" y="709" width="7.3" height="15.0" fill="rgb(222,24,32)" rx="2" ry="2" />
<text x="408.05" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5valueEv (16 samples, 0.07%)</title><rect x="898.9" y="677" width="0.8" height="15.0" fill="rgb(213,84,52)" rx="2" ry="2" />
<text x="901.88" y="687.5" ></text>
</g>
<g >
<title>_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPSt10shared_ptrIN2yb20LongOperationTracker16TrackedOperationEESt6vectorIS6_SaIS6_EEEElS6_NS0_5__ops15_Iter_comp_iterINS3_12_GLOBAL__N_124TrackedOperationComparerEEEEvT_T0_SI_T1_T2_.isra.72 (5 samples, 0.02%)</title><rect x="602.7" y="933" width="0.3" height="15.0" fill="rgb(206,174,26)" rx="2" ry="2" />
<text x="605.72" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="375.9" y="645" width="0.1" height="15.0" fill="rgb(238,120,32)" rx="2" ry="2" />
<text x="378.94" y="655.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="600.1" y="917" width="0.2" height="15.0" fill="rgb(249,143,50)" rx="2" ry="2" />
<text x="603.05" y="927.5" ></text>
</g>
<g >
<title>native_write_msr (20 samples, 0.09%)</title><rect x="484.6" y="693" width="1.0" height="15.0" fill="rgb(215,191,34)" rx="2" ry="2" />
<text x="487.60" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection20ProcessResponseQueueEv (157 samples, 0.67%)</title><rect x="337.6" y="853" width="7.9" height="15.0" fill="rgb(249,165,32)" rx="2" ry="2" />
<text x="340.63" y="863.5" ></text>
</g>
<g >
<title>hrtick_update (2 samples, 0.01%)</title><rect x="51.3" y="741" width="0.1" height="15.0" fill="rgb(232,4,6)" rx="2" ry="2" />
<text x="54.34" y="751.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.01%)</title><rect x="539.6" y="821" width="0.1" height="15.0" fill="rgb(253,121,3)" rx="2" ry="2" />
<text x="542.58" y="831.5" ></text>
</g>
<g >
<title>native_write_msr (342 samples, 1.46%)</title><rect x="456.3" y="709" width="17.2" height="15.0" fill="rgb(226,189,22)" rx="2" ry="2" />
<text x="459.25" y="719.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4NextEv (12 samples, 0.05%)</title><rect x="1056.5" y="773" width="0.6" height="15.0" fill="rgb(217,30,40)" rx="2" ry="2" />
<text x="1059.52" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb15DecodeIntentKeyERKNS_5SliceE (815 samples, 3.48%)</title><rect x="927.3" y="741" width="41.1" height="15.0" fill="rgb(238,101,27)" rx="2" ry="2" />
<text x="930.32" y="751.5" >_ZN..</text>
</g>
<g >
<title>xfs_file_write_iter (20 samples, 0.09%)</title><rect x="401.7" y="709" width="1.0" height="15.0" fill="rgb(214,169,42)" rx="2" ry="2" />
<text x="404.72" y="719.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (2 samples, 0.01%)</title><rect x="433.5" y="821" width="0.1" height="15.0" fill="rgb(231,155,47)" rx="2" ry="2" />
<text x="436.49" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb6master18MasterServiceProxy11TSHeartbeatERKNS0_20TSHeartbeatRequestPBEPNS0_21TSHeartbeatResponsePBEPNS_3rpc13RpcControllerE (13 samples, 0.06%)</title><rect x="414.0" y="885" width="0.7" height="15.0" fill="rgb(210,20,33)" rx="2" ry="2" />
<text x="417.01" y="895.5" ></text>
</g>
<g >
<title>start_thread (42 samples, 0.18%)</title><rect x="483.5" y="965" width="2.1" height="15.0" fill="rgb(225,136,38)" rx="2" ry="2" />
<text x="486.49" y="975.5" ></text>
</g>
<g >
<title>_ZNSt17_Function_handlerIFvvEZN2yb9consensus4Peer4InitEvEUlvE_E9_M_invokeERKSt9_Any_data (32 samples, 0.14%)</title><rect x="429.6" y="869" width="1.6" height="15.0" fill="rgb(214,92,34)" rx="2" ry="2" />
<text x="432.62" y="879.5" ></text>
</g>
<g >
<title>wake_up_q (4 samples, 0.02%)</title><rect x="492.7" y="693" width="0.2" height="15.0" fill="rgb(214,160,41)" rx="2" ry="2" />
<text x="495.65" y="703.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4 samples, 0.02%)</title><rect x="962.9" y="613" width="0.2" height="15.0" fill="rgb(238,106,14)" rx="2" ry="2" />
<text x="965.87" y="623.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (3 samples, 0.01%)</title><rect x="327.9" y="837" width="0.1" height="15.0" fill="rgb(221,112,7)" rx="2" ry="2" />
<text x="330.86" y="847.5" ></text>
</g>
<g >
<title>_cond_resched (9 samples, 0.04%)</title><rect x="1070.5" y="837" width="0.5" height="15.0" fill="rgb(227,41,51)" rx="2" ry="2" />
<text x="1073.52" y="847.5" ></text>
</g>
<g >
<title>do_futex (8 samples, 0.03%)</title><rect x="599.6" y="869" width="0.5" height="15.0" fill="rgb(248,106,12)" rx="2" ry="2" />
<text x="602.65" y="879.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (5 samples, 0.02%)</title><rect x="1046.3" y="741" width="0.3" height="15.0" fill="rgb(205,221,44)" rx="2" ry="2" />
<text x="1049.30" y="751.5" ></text>
</g>
<g >
<title>futex_wait_setup (6 samples, 0.03%)</title><rect x="1179.6" y="837" width="0.3" height="15.0" fill="rgb(217,195,12)" rx="2" ry="2" />
<text x="1182.58" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet22TransactionCoordinator4Impl12SchedulePollEv (3 samples, 0.01%)</title><rect x="432.2" y="885" width="0.1" height="15.0" fill="rgb(252,152,7)" rx="2" ry="2" />
<text x="435.18" y="895.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4NextEv (1,251 samples, 5.34%)</title><rect x="841.7" y="693" width="63.0" height="15.0" fill="rgb(217,49,45)" rx="2" ry="2" />
<text x="844.73" y="703.5" >_ZN7ro..</text>
</g>
<g >
<title>ipt_do_table (3 samples, 0.01%)</title><rect x="357.3" y="501" width="0.1" height="15.0" fill="rgb(221,149,45)" rx="2" ry="2" />
<text x="360.26" y="511.5" ></text>
</g>
<g >
<title>native_write_msr (2 samples, 0.01%)</title><rect x="110.6" y="549" width="0.1" height="15.0" fill="rgb(235,181,12)" rx="2" ry="2" />
<text x="113.60" y="559.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver11Heartbeater6Thread9RunThreadEv (66 samples, 0.28%)</title><rect x="413.9" y="933" width="3.3" height="15.0" fill="rgb(211,27,37)" rx="2" ry="2" />
<text x="416.91" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb11CloudInfoPB9MergeFromERKS0_ (8 samples, 0.03%)</title><rect x="767.8" y="821" width="0.4" height="15.0" fill="rgb(243,176,19)" rx="2" ry="2" />
<text x="770.77" y="831.5" ></text>
</g>
<g >
<title>futex_wait (12 samples, 0.05%)</title><rect x="434.4" y="853" width="0.6" height="15.0" fill="rgb(227,190,20)" rx="2" ry="2" />
<text x="437.40" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection17QueueOutboundDataESt10shared_ptrINS0_12OutboundDataEE (2 samples, 0.01%)</title><rect x="1059.3" y="789" width="0.1" height="15.0" fill="rgb(235,205,44)" rx="2" ry="2" />
<text x="1062.34" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver14StartOperationEv (7 samples, 0.03%)</title><rect x="491.3" y="821" width="0.4" height="15.0" fill="rgb(242,2,9)" rx="2" ry="2" />
<text x="494.34" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb8internal7InvokerILi2ENS0_9BindStateINS0_15RunnableAdapterIMNS_9consensus16PeerMessageQueueEFvRKNS4_22MajorityReplicatedDataEEEEFvPS5_S8_EFvNS0_17UnretainedWrapperIS5_EES6_EEESD_E3RunEPNS0_13BindStateBaseE (6 samples, 0.03%)</title><rect x="598.9" y="933" width="0.3" height="15.0" fill="rgb(253,149,8)" rx="2" ry="2" />
<text x="601.94" y="943.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3 samples, 0.01%)</title><rect x="476.7" y="773" width="0.1" height="15.0" fill="rgb(216,129,18)" rx="2" ry="2" />
<text x="479.69" y="783.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.01%)</title><rect x="624.2" y="645" width="0.1" height="15.0" fill="rgb(243,212,9)" rx="2" ry="2" />
<text x="627.22" y="655.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (35 samples, 0.15%)</title><rect x="341.2" y="309" width="1.7" height="15.0" fill="rgb(229,205,9)" rx="2" ry="2" />
<text x="344.15" y="319.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (3 samples, 0.01%)</title><rect x="360.9" y="789" width="0.2" height="15.0" fill="rgb(228,6,18)" rx="2" ry="2" />
<text x="363.94" y="799.5" ></text>
</g>
<g >
<title>ep_poll_callback (13 samples, 0.06%)</title><rect x="746.5" y="597" width="0.6" height="15.0" fill="rgb(225,163,50)" rx="2" ry="2" />
<text x="749.47" y="607.5" ></text>
</g>
<g >
<title>account_entity_dequeue (2 samples, 0.01%)</title><rect x="608.4" y="757" width="0.1" height="15.0" fill="rgb(251,211,12)" rx="2" ry="2" />
<text x="611.41" y="767.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus17ConsensusStatusPB39InternalSerializeWithCachedSizesToArrayEbPh (3 samples, 0.01%)</title><rect x="747.7" y="757" width="0.2" height="15.0" fill="rgb(243,34,28)" rx="2" ry="2" />
<text x="750.73" y="767.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState35MajorityReplicatedHtLeaseExpirationEmNSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEE (6 samples, 0.03%)</title><rect x="550.9" y="885" width="0.3" height="15.0" fill="rgb(210,211,14)" rx="2" ry="2" />
<text x="553.91" y="895.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (78 samples, 0.33%)</title><rect x="1184.8" y="853" width="3.9" height="15.0" fill="rgb(214,84,28)" rx="2" ry="2" />
<text x="1187.76" y="863.5" ></text>
</g>
<g >
<title>trigger_load_balance (26 samples, 0.11%)</title><rect x="590.8" y="629" width="1.3" height="15.0" fill="rgb(252,92,53)" rx="2" ry="2" />
<text x="593.79" y="639.5" ></text>
</g>
<g >
<title>wake_up_q (2 samples, 0.01%)</title><rect x="400.2" y="773" width="0.1" height="15.0" fill="rgb(236,175,42)" rx="2" ry="2" />
<text x="403.21" y="783.5" ></text>
</g>
<g >
<title>epoll_poll (40 samples, 0.17%)</title><rect x="132.5" y="901" width="2.0" height="15.0" fill="rgb(211,104,7)" rx="2" ry="2" />
<text x="135.45" y="911.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.14 (3 samples, 0.01%)</title><rect x="456.1" y="709" width="0.2" height="15.0" fill="rgb(217,116,20)" rx="2" ry="2" />
<text x="459.10" y="719.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (6 samples, 0.03%)</title><rect x="442.8" y="757" width="0.3" height="15.0" fill="rgb(246,214,24)" rx="2" ry="2" />
<text x="445.76" y="767.5" ></text>
</g>
<g >
<title>_ZNK2yb7tserver15TSTabletManager12NodeInstanceEv (3 samples, 0.01%)</title><rect x="758.3" y="853" width="0.2" height="15.0" fill="rgb(242,98,48)" rx="2" ry="2" />
<text x="761.30" y="863.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc15CentralFreeList14ReleaseToSpansEPv (6 samples, 0.03%)</title><rect x="602.4" y="901" width="0.3" height="15.0" fill="rgb(231,190,45)" rx="2" ry="2" />
<text x="605.42" y="911.5" ></text>
</g>
<g >
<title>prefetch_freepointer.isra.60 (2 samples, 0.01%)</title><rect x="347.7" y="581" width="0.1" height="15.0" fill="rgb(207,16,2)" rx="2" ry="2" />
<text x="350.75" y="591.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="423.3" y="757" width="0.1" height="15.0" fill="rgb(216,48,33)" rx="2" ry="2" />
<text x="426.32" y="767.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5valueEv (6 samples, 0.03%)</title><rect x="721.2" y="661" width="0.3" height="15.0" fill="rgb(215,34,2)" rx="2" ry="2" />
<text x="724.19" y="671.5" ></text>
</g>
<g >
<title>account_system_index_time (3 samples, 0.01%)</title><rect x="196.7" y="597" width="0.1" height="15.0" fill="rgb(223,158,48)" rx="2" ry="2" />
<text x="199.70" y="607.5" ></text>
</g>
<g >
<title>[libc-2.23.so] (4 samples, 0.02%)</title><rect x="394.7" y="901" width="0.2" height="15.0" fill="rgb(248,194,25)" rx="2" ry="2" />
<text x="397.72" y="911.5" ></text>
</g>
<g >
<title>dequeue_entity (17 samples, 0.07%)</title><rect x="239.5" y="725" width="0.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="242.55" y="735.5" ></text>
</g>
<g >
<title>dequeue_entity (2 samples, 0.01%)</title><rect x="1185.5" y="757" width="0.1" height="15.0" fill="rgb(209,108,0)" rx="2" ry="2" />
<text x="1188.47" y="767.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (5 samples, 0.02%)</title><rect x="242.2" y="709" width="0.3" height="15.0" fill="rgb(215,38,0)" rx="2" ry="2" />
<text x="245.21" y="719.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (203 samples, 0.87%)</title><rect x="605.5" y="933" width="10.2" height="15.0" fill="rgb(228,34,20)" rx="2" ry="2" />
<text x="608.49" y="943.5" ></text>
</g>
<g >
<title>avc_has_perm (2 samples, 0.01%)</title><rect x="389.8" y="677" width="0.1" height="15.0" fill="rgb(240,101,15)" rx="2" ry="2" />
<text x="392.79" y="687.5" ></text>
</g>
<g >
<title>tcp_wfree (2 samples, 0.01%)</title><rect x="357.0" y="453" width="0.1" height="15.0" fill="rgb(209,129,50)" rx="2" ry="2" />
<text x="360.01" y="463.5" ></text>
</g>
<g >
<title>__fget (33 samples, 0.14%)</title><rect x="28.2" y="805" width="1.7" height="15.0" fill="rgb(214,113,54)" rx="2" ry="2" />
<text x="31.23" y="815.5" ></text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="715.4" y="565" width="0.1" height="15.0" fill="rgb(229,117,40)" rx="2" ry="2" />
<text x="718.35" y="575.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus13RaftConsensus14GetLeaderStateEv (2 samples, 0.01%)</title><rect x="737.8" y="821" width="0.1" height="15.0" fill="rgb(212,83,40)" rx="2" ry="2" />
<text x="740.76" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus10RaftPeerPBD2Ev (19 samples, 0.08%)</title><rect x="762.7" y="853" width="0.9" height="15.0" fill="rgb(229,2,32)" rx="2" ry="2" />
<text x="765.68" y="863.5" ></text>
</g>
<g >
<title>dequeue_entity (8 samples, 0.03%)</title><rect x="608.3" y="773" width="0.4" height="15.0" fill="rgb(231,47,40)" rx="2" ry="2" />
<text x="611.31" y="783.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator3keyEv (6 samples, 0.03%)</title><rect x="898.5" y="677" width="0.3" height="15.0" fill="rgb(240,38,2)" rx="2" ry="2" />
<text x="901.47" y="687.5" ></text>
</g>
<g >
<title>__clock_gettime (6 samples, 0.03%)</title><rect x="215.3" y="869" width="0.3" height="15.0" fill="rgb(205,159,35)" rx="2" ry="2" />
<text x="218.33" y="879.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream15ReadTagFallbackEj (2 samples, 0.01%)</title><rect x="369.7" y="693" width="0.1" height="15.0" fill="rgb(209,90,5)" rx="2" ry="2" />
<text x="372.70" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet7LogGCOp11UpdateStatsEPNS_18MaintenanceOpStatsE (16 samples, 0.07%)</title><rect x="483.5" y="901" width="0.8" height="15.0" fill="rgb(215,121,23)" rx="2" ry="2" />
<text x="486.54" y="911.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (30 samples, 0.13%)</title><rect x="590.6" y="725" width="1.5" height="15.0" fill="rgb(248,192,8)" rx="2" ry="2" />
<text x="593.58" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue30LeaderLeaseExpirationWatermarkEv (4 samples, 0.02%)</title><rect x="764.8" y="853" width="0.2" height="15.0" fill="rgb(223,72,35)" rx="2" ry="2" />
<text x="767.80" y="863.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (6 samples, 0.03%)</title><rect x="414.1" y="757" width="0.3" height="15.0" fill="rgb(231,133,16)" rx="2" ry="2" />
<text x="417.11" y="767.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.02%)</title><rect x="996.7" y="725" width="0.2" height="15.0" fill="rgb(205,119,15)" rx="2" ry="2" />
<text x="999.71" y="735.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="769.2" y="805" width="0.1" height="15.0" fill="rgb(218,148,46)" rx="2" ry="2" />
<text x="772.18" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (26 samples, 0.11%)</title><rect x="765.4" y="789" width="1.3" height="15.0" fill="rgb(216,1,3)" rx="2" ry="2" />
<text x="768.40" y="799.5" ></text>
</g>
<g >
<title>ip_finish_output2 (66 samples, 0.28%)</title><rect x="340.7" y="501" width="3.3" height="15.0" fill="rgb(242,207,22)" rx="2" ry="2" />
<text x="343.70" y="511.5" ></text>
</g>
<g >
<title>_ZN2yb15CoarseMonoClock3nowEv (3 samples, 0.01%)</title><rect x="336.2" y="885" width="0.1" height="15.0" fill="rgb(242,134,53)" rx="2" ry="2" />
<text x="339.17" y="895.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv (2 samples, 0.01%)</title><rect x="736.1" y="709" width="0.1" height="15.0" fill="rgb(209,160,37)" rx="2" ry="2" />
<text x="739.10" y="719.5" ></text>
</g>
<g >
<title>do_syscall_64 (47 samples, 0.20%)</title><rect x="441.0" y="901" width="2.4" height="15.0" fill="rgb(227,39,39)" rx="2" ry="2" />
<text x="444.00" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10ThreadPool7EnqueueEPNS0_14ThreadPoolTaskE (5 samples, 0.02%)</title><rect x="535.0" y="709" width="0.3" height="15.0" fill="rgb(242,197,4)" rx="2" ry="2" />
<text x="538.05" y="719.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (61 samples, 0.26%)</title><rect x="440.5" y="933" width="3.1" height="15.0" fill="rgb(246,146,32)" rx="2" ry="2" />
<text x="443.54" y="943.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf15UnknownFieldSet16default_instanceEv (2 samples, 0.01%)</title><rect x="743.1" y="837" width="0.1" height="15.0" fill="rgb(232,67,27)" rx="2" ry="2" />
<text x="746.09" y="847.5" ></text>
</g>
<g >
<title>start_thread (1,443 samples, 6.16%)</title><rect x="529.2" y="965" width="72.6" height="15.0" fill="rgb(230,141,11)" rx="2" ry="2" />
<text x="532.16" y="975.5" >start_th..</text>
</g>
<g >
<title>futex_wait_queue_me (8 samples, 0.03%)</title><rect x="599.6" y="837" width="0.5" height="15.0" fill="rgb(246,12,30)" rx="2" ry="2" />
<text x="602.65" y="847.5" ></text>
</g>
<g >
<title>flush_work (10 samples, 0.04%)</title><rect x="396.4" y="709" width="0.5" height="15.0" fill="rgb(250,139,30)" rx="2" ry="2" />
<text x="399.44" y="719.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2 samples, 0.01%)</title><rect x="354.9" y="181" width="0.1" height="15.0" fill="rgb(241,208,30)" rx="2" ry="2" />
<text x="357.95" y="191.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver12ExecuteAsyncEv (2 samples, 0.01%)</title><rect x="624.2" y="789" width="0.1" height="15.0" fill="rgb(225,229,24)" rx="2" ry="2" />
<text x="627.22" y="799.5" ></text>
</g>
<g >
<title>do_syscall_64 (19 samples, 0.08%)</title><rect x="746.4" y="709" width="1.0" height="15.0" fill="rgb(212,68,6)" rx="2" ry="2" />
<text x="749.42" y="719.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (263 samples, 1.12%)</title><rect x="346.5" y="789" width="13.2" height="15.0" fill="rgb(211,117,11)" rx="2" ry="2" />
<text x="349.49" y="799.5" ></text>
</g>
<g >
<title>__GI___getrusage (7 samples, 0.03%)</title><rect x="400.5" y="853" width="0.4" height="15.0" fill="rgb(246,210,52)" rx="2" ry="2" />
<text x="403.51" y="863.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 0.03%)</title><rect x="396.5" y="549" width="0.4" height="15.0" fill="rgb(245,113,32)" rx="2" ry="2" />
<text x="399.54" y="559.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus18ConsensusServiceIf6HandleESt10shared_ptrINS_3rpc11InboundCallEE (420 samples, 1.79%)</title><rect x="738.4" y="885" width="21.2" height="15.0" fill="rgb(250,117,2)" rx="2" ry="2" />
<text x="741.41" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock8NowRangeEv (2 samples, 0.01%)</title><rect x="537.6" y="853" width="0.1" height="15.0" fill="rgb(238,67,21)" rx="2" ry="2" />
<text x="540.62" y="863.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="163.0" y="757" width="0.1" height="15.0" fill="rgb(218,218,21)" rx="2" ry="2" />
<text x="165.96" y="767.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb16FunctionRunnableESaIS1_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info (2 samples, 0.01%)</title><rect x="431.0" y="837" width="0.1" height="15.0" fill="rgb(208,10,1)" rx="2" ry="2" />
<text x="434.03" y="847.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (2 samples, 0.01%)</title><rect x="601.7" y="933" width="0.1" height="15.0" fill="rgb(247,41,33)" rx="2" ry="2" />
<text x="604.71" y="943.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_115ShardedLRUCache6LookupERKN2yb5SliceElPNS_10StatisticsE (3 samples, 0.01%)</title><rect x="675.9" y="581" width="0.2" height="15.0" fill="rgb(222,149,14)" rx="2" ry="2" />
<text x="678.93" y="591.5" ></text>
</g>
<g >
<title>deactivate_task (10 samples, 0.04%)</title><rect x="608.2" y="805" width="0.5" height="15.0" fill="rgb(216,65,27)" rx="2" ry="2" />
<text x="611.21" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi (55 samples, 0.23%)</title><rect x="830.6" y="661" width="2.8" height="15.0" fill="rgb(229,191,51)" rx="2" ry="2" />
<text x="833.60" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4NextEv (13 samples, 0.06%)</title><rect x="642.0" y="693" width="0.7" height="15.0" fill="rgb(215,176,4)" rx="2" ry="2" />
<text x="645.04" y="703.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (17 samples, 0.07%)</title><rect x="232.7" y="773" width="0.9" height="15.0" fill="rgb(207,66,2)" rx="2" ry="2" />
<text x="235.70" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus17ConsensusStatusPB27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (9 samples, 0.04%)</title><rect x="377.5" y="693" width="0.5" height="15.0" fill="rgb(212,63,23)" rx="2" ry="2" />
<text x="380.50" y="703.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter5ValidEv (4 samples, 0.02%)</title><rect x="909.6" y="693" width="0.2" height="15.0" fill="rgb(211,139,17)" rx="2" ry="2" />
<text x="912.55" y="703.5" ></text>
</g>
<g >
<title>iptable_security_hook (3 samples, 0.01%)</title><rect x="384.4" y="565" width="0.1" height="15.0" fill="rgb(231,159,45)" rx="2" ry="2" />
<text x="387.35" y="575.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.02%)</title><rect x="1038.5" y="725" width="0.2" height="15.0" fill="rgb(209,86,33)" rx="2" ry="2" />
<text x="1041.55" y="735.5" ></text>
</g>
<g >
<title>ttwu_do_activate (14 samples, 0.06%)</title><rect x="442.4" y="821" width="0.7" height="15.0" fill="rgb(223,76,13)" rx="2" ry="2" />
<text x="445.35" y="831.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (19 samples, 0.08%)</title><rect x="41.9" y="789" width="1.0" height="15.0" fill="rgb(210,24,30)" rx="2" ry="2" />
<text x="44.92" y="799.5" ></text>
</g>
<g >
<title>sys_futex (43 samples, 0.18%)</title><rect x="441.0" y="885" width="2.2" height="15.0" fill="rgb(222,135,21)" rx="2" ry="2" />
<text x="444.05" y="895.5" ></text>
</g>
<g >
<title>try_to_wake_up (4 samples, 0.02%)</title><rect x="492.7" y="677" width="0.2" height="15.0" fill="rgb(208,128,31)" rx="2" ry="2" />
<text x="495.65" y="687.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (12 samples, 0.05%)</title><rect x="118.2" y="805" width="0.6" height="15.0" fill="rgb(232,55,46)" rx="2" ry="2" />
<text x="121.20" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.09%)</title><rect x="1061.2" y="917" width="1.1" height="15.0" fill="rgb(227,96,21)" rx="2" ry="2" />
<text x="1064.20" y="927.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet11MvccManager13DoGetSafeTimeENS_10HybridTimeENSt6chrono10time_pointINS_15CoarseMonoClockENS3_8durationIlSt5ratioILl1ELl1000000000EEEEEES2_PSt11unique_lockISt5mutexE (5 samples, 0.02%)</title><rect x="551.9" y="853" width="0.2" height="15.0" fill="rgb(210,93,36)" rx="2" ry="2" />
<text x="554.87" y="863.5" ></text>
</g>
<g >
<title>syscall_trace_enter (17 samples, 0.07%)</title><rect x="124.4" y="853" width="0.9" height="15.0" fill="rgb(216,158,26)" rx="2" ry="2" />
<text x="127.39" y="863.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="427.1" y="821" width="0.1" height="15.0" fill="rgb(241,189,32)" rx="2" ry="2" />
<text x="430.10" y="831.5" ></text>
</g>
<g >
<title>_ZN42protobuf_yb_2fconsensus_2fmetadata_2eproto22InitDefaultsRaftPeerPBEv (3 samples, 0.01%)</title><rect x="769.8" y="853" width="0.2" height="15.0" fill="rgb(227,23,25)" rx="2" ry="2" />
<text x="772.83" y="863.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (2 samples, 0.01%)</title><rect x="763.5" y="821" width="0.1" height="15.0" fill="rgb(224,11,23)" rx="2" ry="2" />
<text x="766.49" y="831.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb21InternalKeyComparator7CompareERKN2yb5SliceES4_ (106 samples, 0.45%)</title><rect x="1015.5" y="725" width="5.3" height="15.0" fill="rgb(241,227,39)" rx="2" ry="2" />
<text x="1018.49" y="735.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3 samples, 0.01%)</title><rect x="604.2" y="933" width="0.2" height="15.0" fill="rgb(227,28,43)" rx="2" ry="2" />
<text x="607.23" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet22TransactionParticipant19MetadataWithWriteIdERKN5boost5uuids4uuidE (6 samples, 0.03%)</title><rect x="534.1" y="693" width="0.3" height="15.0" fill="rgb(231,86,10)" rx="2" ry="2" />
<text x="537.09" y="703.5" ></text>
</g>
<g >
<title>__GI___libc_read (45 samples, 0.19%)</title><rect x="391.8" y="885" width="2.2" height="15.0" fill="rgb(229,96,0)" rx="2" ry="2" />
<text x="394.75" y="895.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (40 samples, 0.17%)</title><rect x="204.2" y="837" width="2.0" height="15.0" fill="rgb(225,30,43)" rx="2" ry="2" />
<text x="207.20" y="847.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (103 samples, 0.44%)</title><rect x="339.0" y="581" width="5.2" height="15.0" fill="rgb(247,188,4)" rx="2" ry="2" />
<text x="341.99" y="591.5" ></text>
</g>
<g >
<title>inet_sendmsg (124 samples, 0.53%)</title><rect x="338.2" y="677" width="6.2" height="15.0" fill="rgb(226,112,31)" rx="2" ry="2" />
<text x="341.18" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator20SeekToSuitableIntentILNS0_9DirectionE0EEEvv (2,655 samples, 11.33%)</title><rect x="778.0" y="709" width="133.7" height="15.0" fill="rgb(210,213,48)" rx="2" ry="2" />
<text x="781.04" y="719.5" >_ZN2yb5docdb19In..</text>
</g>
<g >
<title>_ZN2yb6tablet12PreparerImpl11ProcessItemEPNS0_15OperationDriverE (52 samples, 0.22%)</title><rect x="487.4" y="901" width="2.6" height="15.0" fill="rgb(215,12,39)" rx="2" ry="2" />
<text x="490.37" y="911.5" ></text>
</g>
<g >
<title>_copy_from_iter_full (3 samples, 0.01%)</title><rect x="338.6" y="629" width="0.1" height="15.0" fill="rgb(237,109,33)" rx="2" ry="2" />
<text x="341.58" y="639.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="1182.3" y="933" width="0.1" height="15.0" fill="rgb(213,185,28)" rx="2" ry="2" />
<text x="1185.35" y="943.5" ></text>
</g>
<g >
<title>sys_futex (35 samples, 0.15%)</title><rect x="437.3" y="885" width="1.7" height="15.0" fill="rgb(237,189,39)" rx="2" ry="2" />
<text x="440.27" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb4util32FastDecodeDescendingSignedVarIntEPNS_5SliceE (23 samples, 0.10%)</title><rect x="963.5" y="709" width="1.1" height="15.0" fill="rgb(242,36,22)" rx="2" ry="2" />
<text x="966.48" y="719.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (184 samples, 0.79%)</title><rect x="348.4" y="597" width="9.3" height="15.0" fill="rgb(216,219,29)" rx="2" ry="2" />
<text x="351.40" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi (14 samples, 0.06%)</title><rect x="630.8" y="693" width="0.7" height="15.0" fill="rgb(240,18,2)" rx="2" ry="2" />
<text x="633.76" y="703.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (9 samples, 0.04%)</title><rect x="412.4" y="677" width="0.5" height="15.0" fill="rgb(210,217,16)" rx="2" ry="2" />
<text x="415.45" y="687.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.14 (13 samples, 0.06%)</title><rect x="56.1" y="677" width="0.7" height="15.0" fill="rgb(229,198,31)" rx="2" ry="2" />
<text x="59.12" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet8Preparer6SubmitEPNS0_15OperationDriverE (2 samples, 0.01%)</title><rect x="624.2" y="773" width="0.1" height="15.0" fill="rgb(226,51,36)" rx="2" ry="2" />
<text x="627.22" y="783.5" ></text>
</g>
<g >
<title>__schedule (10 samples, 0.04%)</title><rect x="753.5" y="693" width="0.5" height="15.0" fill="rgb(221,62,8)" rx="2" ry="2" />
<text x="756.47" y="703.5" ></text>
</g>
<g >
<title>ev_io_stop (2 samples, 0.01%)</title><rect x="391.2" y="853" width="0.2" height="15.0" fill="rgb(250,67,2)" rx="2" ry="2" />
<text x="394.25" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="554.7" y="885" width="0.2" height="15.0" fill="rgb(222,132,6)" rx="2" ry="2" />
<text x="557.69" y="895.5" ></text>
</g>
<g >
<title>ipt_do_table (2 samples, 0.01%)</title><rect x="388.3" y="341" width="0.1" height="15.0" fill="rgb(248,133,36)" rx="2" ry="2" />
<text x="391.28" y="351.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCallC1ESt10shared_ptrINS0_10ConnectionEEPNS0_10RpcMetricsESt8functionIFvPS1_EE (8 samples, 0.03%)</title><rect x="370.5" y="757" width="0.4" height="15.0" fill="rgb(213,142,53)" rx="2" ry="2" />
<text x="373.45" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker20AnySoftLimitExceededEPd (3 samples, 0.01%)</title><rect x="748.7" y="837" width="0.2" height="15.0" fill="rgb(235,44,34)" rx="2" ry="2" />
<text x="751.73" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb11CloudInfoPBD0Ev (8 samples, 0.03%)</title><rect x="763.0" y="821" width="0.4" height="15.0" fill="rgb(247,31,20)" rx="2" ry="2" />
<text x="765.98" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor12TimerHandlerERN2ev5timerEi (22 samples, 0.09%)</title><rect x="130.3" y="901" width="1.1" height="15.0" fill="rgb(227,178,43)" rx="2" ry="2" />
<text x="133.29" y="911.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (4 samples, 0.02%)</title><rect x="353.9" y="117" width="0.2" height="15.0" fill="rgb(227,34,32)" rx="2" ry="2" />
<text x="356.89" y="127.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (1,906 samples, 8.13%)</title><rect x="1078.0" y="725" width="95.9" height="15.0" fill="rgb(213,109,43)" rx="2" ry="2" />
<text x="1080.97" y="735.5" >intel_pmu_e..</text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken10SubmitFuncESt8functionIFvvEE (24 samples, 0.10%)</title><rect x="429.8" y="837" width="1.2" height="15.0" fill="rgb(231,12,38)" rx="2" ry="2" />
<text x="432.82" y="847.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (33 samples, 0.14%)</title><rect x="415.6" y="917" width="1.6" height="15.0" fill="rgb(237,117,29)" rx="2" ry="2" />
<text x="418.57" y="927.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (2 samples, 0.01%)</title><rect x="320.6" y="741" width="0.1" height="15.0" fill="rgb(228,63,8)" rx="2" ry="2" />
<text x="323.61" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5valueEv (2 samples, 0.01%)</title><rect x="713.6" y="661" width="0.1" height="15.0" fill="rgb(237,50,4)" rx="2" ry="2" />
<text x="716.64" y="671.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (2 samples, 0.01%)</title><rect x="527.2" y="933" width="0.1" height="15.0" fill="rgb(247,33,27)" rx="2" ry="2" />
<text x="530.24" y="943.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="413.3" y="869" width="0.1" height="15.0" fill="rgb(243,124,13)" rx="2" ry="2" />
<text x="416.30" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCallC1ESt10shared_ptrINS0_10ConnectionEEPNS0_10RpcMetricsESt8functionIFvPS1_EE (2 samples, 0.01%)</title><rect x="369.4" y="773" width="0.1" height="15.0" fill="rgb(212,129,52)" rx="2" ry="2" />
<text x="372.45" y="783.5" ></text>
</g>
<g >
<title>update_curr (16 samples, 0.07%)</title><rect x="164.3" y="709" width="0.8" height="15.0" fill="rgb(211,128,24)" rx="2" ry="2" />
<text x="167.27" y="719.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="490.6" y="645" width="0.1" height="15.0" fill="rgb(215,214,30)" rx="2" ry="2" />
<text x="493.64" y="655.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="1022.9" y="645" width="0.1" height="15.0" fill="rgb(211,7,1)" rx="2" ry="2" />
<text x="1025.89" y="655.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2 samples, 0.01%)</title><rect x="326.4" y="709" width="0.1" height="15.0" fill="rgb(229,110,34)" rx="2" ry="2" />
<text x="329.45" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream7ReceiveEv (223 samples, 0.95%)</title><rect x="379.7" y="853" width="11.2" height="15.0" fill="rgb(231,131,12)" rx="2" ry="2" />
<text x="382.72" y="863.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="766.1" y="581" width="0.1" height="15.0" fill="rgb(231,22,1)" rx="2" ry="2" />
<text x="769.10" y="591.5" ></text>
</g>
<g >
<title>finish_task_switch (114 samples, 0.49%)</title><rect x="608.8" y="805" width="5.8" height="15.0" fill="rgb(245,218,50)" rx="2" ry="2" />
<text x="611.81" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3log13LogEntryBatch9SerializeEv (8 samples, 0.03%)</title><rect x="401.0" y="869" width="0.4" height="15.0" fill="rgb(236,41,21)" rx="2" ry="2" />
<text x="404.02" y="879.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="1050.1" y="709" width="0.1" height="15.0" fill="rgb(224,114,0)" rx="2" ry="2" />
<text x="1053.13" y="719.5" ></text>
</g>
<g >
<title>tcp_filter (3 samples, 0.01%)</title><rect x="352.8" y="293" width="0.1" height="15.0" fill="rgb(211,219,20)" rx="2" ry="2" />
<text x="355.78" y="303.5" ></text>
</g>
<g >
<title>_ZN3cds2gc3dhp3smr3tlsEv (2 samples, 0.01%)</title><rect x="1060.6" y="933" width="0.1" height="15.0" fill="rgb(243,146,39)" rx="2" ry="2" />
<text x="1063.60" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="41.8" y="757" width="0.1" height="15.0" fill="rgb(252,136,11)" rx="2" ry="2" />
<text x="44.77" y="767.5" ></text>
</g>
<g >
<title>vfs_read (20 samples, 0.09%)</title><rect x="392.9" y="821" width="1.0" height="15.0" fill="rgb(215,29,1)" rx="2" ry="2" />
<text x="395.86" y="831.5" ></text>
</g>
<g >
<title>scheduler_tick (4 samples, 0.02%)</title><rect x="1046.4" y="629" width="0.2" height="15.0" fill="rgb(229,36,46)" rx="2" ry="2" />
<text x="1049.35" y="639.5" ></text>
</g>
<g >
<title>submit_bio (2 samples, 0.01%)</title><rect x="398.4" y="661" width="0.1" height="15.0" fill="rgb(234,39,45)" rx="2" ry="2" />
<text x="401.40" y="671.5" ></text>
</g>
<g >
<title>put_prev_task_fair (4 samples, 0.02%)</title><rect x="200.8" y="757" width="0.2" height="15.0" fill="rgb(249,125,1)" rx="2" ry="2" />
<text x="203.78" y="767.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (135 samples, 0.58%)</title><rect x="1030.6" y="725" width="6.8" height="15.0" fill="rgb(249,153,33)" rx="2" ry="2" />
<text x="1033.59" y="735.5" ></text>
</g>
<g >
<title>try_to_wake_up (11 samples, 0.05%)</title><rect x="546.3" y="549" width="0.5" height="15.0" fill="rgb(214,70,46)" rx="2" ry="2" />
<text x="549.28" y="559.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb@plt (5 samples, 0.02%)</title><rect x="976.6" y="757" width="0.3" height="15.0" fill="rgb(247,120,43)" rx="2" ry="2" />
<text x="979.62" y="767.5" ></text>
</g>
<g >
<title>select_task_rq_fair (6 samples, 0.03%)</title><rect x="426.2" y="725" width="0.3" height="15.0" fill="rgb(236,45,9)" rx="2" ry="2" />
<text x="429.24" y="735.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (14 samples, 0.06%)</title><rect x="521.8" y="757" width="0.7" height="15.0" fill="rgb(209,94,35)" rx="2" ry="2" />
<text x="524.76" y="767.5" ></text>
</g>
<g >
<title>__filemap_fdatawait_range (29 samples, 0.12%)</title><rect x="396.9" y="725" width="1.5" height="15.0" fill="rgb(212,215,9)" rx="2" ry="2" />
<text x="399.94" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (17 samples, 0.07%)</title><rect x="371.8" y="725" width="0.9" height="15.0" fill="rgb(229,85,16)" rx="2" ry="2" />
<text x="374.81" y="735.5" ></text>
</g>
<g >
<title>_ZNSsC1EPKcRKSaIcE (3 samples, 0.01%)</title><rect x="395.3" y="949" width="0.2" height="15.0" fill="rgb(230,17,44)" rx="2" ry="2" />
<text x="398.33" y="959.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="897.0" y="613" width="0.1" height="15.0" fill="rgb(207,63,43)" rx="2" ry="2" />
<text x="900.01" y="623.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus18ConsensusRequestPB39InternalSerializeWithCachedSizesToArrayEbPh (5 samples, 0.02%)</title><rect x="543.8" y="805" width="0.3" height="15.0" fill="rgb(244,157,33)" rx="2" ry="2" />
<text x="546.81" y="815.5" ></text>
</g>
<g >
<title>_ZN3cds2gc3dhp3smr4scanEPNS1_11thread_dataE (2 samples, 0.01%)</title><rect x="375.4" y="693" width="0.1" height="15.0" fill="rgb(217,186,28)" rx="2" ry="2" />
<text x="378.39" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb12HdrHistogram11IncrementByEll (2 samples, 0.01%)</title><rect x="374.9" y="741" width="0.1" height="15.0" fill="rgb(215,63,34)" rx="2" ry="2" />
<text x="377.89" y="751.5" ></text>
</g>
<g >
<title>ipt_do_table (2 samples, 0.01%)</title><rect x="355.2" y="293" width="0.1" height="15.0" fill="rgb(239,202,0)" rx="2" ry="2" />
<text x="358.25" y="303.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (4 samples, 0.02%)</title><rect x="766.4" y="677" width="0.2" height="15.0" fill="rgb(220,35,32)" rx="2" ry="2" />
<text x="769.36" y="687.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (8 samples, 0.03%)</title><rect x="239.0" y="757" width="0.4" height="15.0" fill="rgb(219,93,36)" rx="2" ry="2" />
<text x="241.99" y="767.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (8 samples, 0.03%)</title><rect x="326.7" y="821" width="0.4" height="15.0" fill="rgb(240,178,20)" rx="2" ry="2" />
<text x="329.65" y="831.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus8LogCache10LookupOpIdElPNS_6OpIdPBE (17 samples, 0.07%)</title><rect x="770.7" y="837" width="0.9" height="15.0" fill="rgb(240,104,18)" rx="2" ry="2" />
<text x="773.74" y="847.5" ></text>
</g>
<g >
<title>irq_exit (4 samples, 0.02%)</title><rect x="325.5" y="709" width="0.2" height="15.0" fill="rgb(211,29,14)" rx="2" ry="2" />
<text x="328.54" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc19YBConnectionContext10ReadBufferEv (2 samples, 0.01%)</title><rect x="368.1" y="853" width="0.1" height="15.0" fill="rgb(213,4,44)" rx="2" ry="2" />
<text x="371.09" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc14ResponseHeader27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (4 samples, 0.02%)</title><rect x="374.3" y="709" width="0.2" height="15.0" fill="rgb(221,121,5)" rx="2" ry="2" />
<text x="377.28" y="719.5" ></text>
</g>
<g >
<title>futex_wait (8 samples, 0.03%)</title><rect x="599.6" y="853" width="0.5" height="15.0" fill="rgb(243,148,4)" rx="2" ry="2" />
<text x="602.65" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (27 samples, 0.12%)</title><rect x="482.0" y="949" width="1.4" height="15.0" fill="rgb(210,220,46)" rx="2" ry="2" />
<text x="485.03" y="959.5" ></text>
</g>
<g >
<title>do_futex (43 samples, 0.18%)</title><rect x="441.0" y="869" width="2.2" height="15.0" fill="rgb(239,99,2)" rx="2" ry="2" />
<text x="444.05" y="879.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3 samples, 0.01%)</title><rect x="372.7" y="725" width="0.1" height="15.0" fill="rgb(251,211,25)" rx="2" ry="2" />
<text x="375.67" y="735.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (5 samples, 0.02%)</title><rect x="198.5" y="597" width="0.2" height="15.0" fill="rgb(241,9,13)" rx="2" ry="2" />
<text x="201.46" y="607.5" ></text>
</g>
<g >
<title>tc_newarray (6 samples, 0.03%)</title><rect x="540.2" y="885" width="0.3" height="15.0" fill="rgb(220,218,1)" rx="2" ry="2" />
<text x="543.23" y="895.5" ></text>
</g>
<g >
<title>sys_futex (19 samples, 0.08%)</title><rect x="765.7" y="757" width="0.9" height="15.0" fill="rgb(210,222,13)" rx="2" ry="2" />
<text x="768.65" y="767.5" ></text>
</g>
<g >
<title>__next_timer_interrupt (2 samples, 0.01%)</title><rect x="325.6" y="661" width="0.1" height="15.0" fill="rgb(226,63,6)" rx="2" ry="2" />
<text x="328.59" y="671.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="441.6" y="821" width="0.2" height="15.0" fill="rgb(233,59,5)" rx="2" ry="2" />
<text x="444.65" y="831.5" ></text>
</g>
<g >
<title>master_thread (5 samples, 0.02%)</title><rect x="1189.7" y="949" width="0.3" height="15.0" fill="rgb(239,129,36)" rx="2" ry="2" />
<text x="1192.75" y="959.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="493.2" y="789" width="0.1" height="15.0" fill="rgb(246,188,42)" rx="2" ry="2" />
<text x="496.16" y="799.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState31RefreshLeaderStateCacheUnlockedEPNSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEE (11 samples, 0.05%)</title><rect x="535.9" y="869" width="0.5" height="15.0" fill="rgb(254,99,37)" rx="2" ry="2" />
<text x="538.85" y="879.5" ></text>
</g>
<g >
<title>sys_futex (3 samples, 0.01%)</title><rect x="555.0" y="869" width="0.2" height="15.0" fill="rgb(222,20,54)" rx="2" ry="2" />
<text x="558.04" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache11LogCallbackElbRKNS_8CallbackIFvRKNS_6StatusEEEES5_ (30 samples, 0.13%)</title><rect x="398.7" y="869" width="1.5" height="15.0" fill="rgb(220,38,17)" rx="2" ry="2" />
<text x="401.70" y="879.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator4SeekERKN2yb5SliceE (3 samples, 0.01%)</title><rect x="913.3" y="709" width="0.2" height="15.0" fill="rgb(245,222,43)" rx="2" ry="2" />
<text x="916.33" y="719.5" ></text>
</g>
<g >
<title>enqueue_task_fair (2 samples, 0.01%)</title><rect x="766.3" y="661" width="0.1" height="15.0" fill="rgb(246,228,21)" rx="2" ry="2" />
<text x="769.26" y="671.5" ></text>
</g>
<g >
<title>account_process_tick (3 samples, 0.01%)</title><rect x="196.7" y="629" width="0.1" height="15.0" fill="rgb(228,7,36)" rx="2" ry="2" />
<text x="199.70" y="639.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="976.1" y="709" width="0.1" height="15.0" fill="rgb(227,178,12)" rx="2" ry="2" />
<text x="979.11" y="719.5" ></text>
</g>
<g >
<title>ep_send_events_proc (33 samples, 0.14%)</title><rect x="229.4" y="805" width="1.7" height="15.0" fill="rgb(223,82,3)" rx="2" ry="2" />
<text x="232.42" y="815.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail14strand_service8dispatchIZZZN2yb3rpc15ServicePoolImpl20ScheduleCheckTimeoutENSt6chrono10time_pointINS4_15CoarseMonoClockENS7_8durationIlSt5ratioILl1ELl1000000000EEEEEEENKUlvE_clEvENKUllRKNS4_6StatusEE_clElSI_EUlvE_EEvRPNS2_11strand_implERT_ (15 samples, 0.06%)</title><rect x="431.3" y="885" width="0.8" height="15.0" fill="rgb(209,165,21)" rx="2" ry="2" />
<text x="434.33" y="895.5" ></text>
</g>
<g >
<title>x86_pmu_enable (144 samples, 0.61%)</title><rect x="405.0" y="693" width="7.3" height="15.0" fill="rgb(206,163,33)" rx="2" ry="2" />
<text x="408.05" y="703.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet16OperationTracker17DecrementCountersERKNS0_15OperationDriverE (7 samples, 0.03%)</title><rect x="488.8" y="821" width="0.3" height="15.0" fill="rgb(246,162,29)" rx="2" ry="2" />
<text x="491.78" y="831.5" ></text>
</g>
<g >
<title>__do_softirq (64 samples, 0.27%)</title><rect x="385.9" y="501" width="3.2" height="15.0" fill="rgb(213,161,8)" rx="2" ry="2" />
<text x="388.86" y="511.5" ></text>
</g>
<g >
<title>_ZN2yb18PgsqlReadRequestPB27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (9 samples, 0.04%)</title><rect x="622.4" y="789" width="0.5" height="15.0" fill="rgb(242,111,35)" rx="2" ry="2" />
<text x="625.41" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (366 samples, 1.56%)</title><rect x="395.5" y="949" width="18.4" height="15.0" fill="rgb(223,21,25)" rx="2" ry="2" />
<text x="398.48" y="959.5" ></text>
</g>
<g >
<title>__tls_get_addr (23 samples, 0.10%)</title><rect x="1021.6" y="725" width="1.1" height="15.0" fill="rgb(246,60,8)" rx="2" ry="2" />
<text x="1024.58" y="735.5" ></text>
</g>
<g >
<title>tick_sched_timer (5 samples, 0.02%)</title><rect x="1188.3" y="709" width="0.3" height="15.0" fill="rgb(223,153,9)" rx="2" ry="2" />
<text x="1191.34" y="719.5" ></text>
</g>
<g >
<title>__fget (9 samples, 0.04%)</title><rect x="1183.5" y="837" width="0.5" height="15.0" fill="rgb(244,171,7)" rx="2" ry="2" />
<text x="1186.50" y="847.5" ></text>
</g>
<g >
<title>__sys_sendmsg (127 samples, 0.54%)</title><rect x="338.1" y="725" width="6.4" height="15.0" fill="rgb(230,36,22)" rx="2" ry="2" />
<text x="341.08" y="735.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (2 samples, 0.01%)</title><rect x="555.5" y="917" width="0.1" height="15.0" fill="rgb(235,217,27)" rx="2" ry="2" />
<text x="558.49" y="927.5" ></text>
</g>
<g >
<title>nf_hook_slow (2 samples, 0.01%)</title><rect x="389.3" y="581" width="0.1" height="15.0" fill="rgb(254,188,17)" rx="2" ry="2" />
<text x="392.34" y="591.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb28PrepareTransactionWriteBatchERKNS0_20KeyValueWriteBatchPBENS_10HybridTimeEPN7rocksdb10WriteBatchERKN5boost5uuids4uuidENS_14IsolationLevelENS_17StronglyTypedBoolINS0_26PartialRangeKeyIntents_TagEEEPj (11 samples, 0.05%)</title><rect x="533.5" y="693" width="0.6" height="15.0" fill="rgb(247,5,34)" rx="2" ry="2" />
<text x="536.54" y="703.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (22 samples, 0.09%)</title><rect x="237.8" y="757" width="1.1" height="15.0" fill="rgb(230,129,50)" rx="2" ry="2" />
<text x="240.83" y="767.5" ></text>
</g>
<g >
<title>ttwu_do_activate (10 samples, 0.04%)</title><rect x="756.1" y="725" width="0.5" height="15.0" fill="rgb(205,150,52)" rx="2" ry="2" />
<text x="759.08" y="735.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,168 samples, 9.25%)</title><rect x="221.9" y="869" width="109.1" height="15.0" fill="rgb(223,9,22)" rx="2" ry="2" />
<text x="224.87" y="879.5" >do_syscall_64</text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator3keyEv (3 samples, 0.01%)</title><rect x="1043.4" y="741" width="0.2" height="15.0" fill="rgb(211,0,7)" rx="2" ry="2" />
<text x="1046.43" y="751.5" ></text>
</g>
<g >
<title>tick_sched_timer (68 samples, 0.29%)</title><rect x="109.8" y="677" width="3.4" height="15.0" fill="rgb(237,50,11)" rx="2" ry="2" />
<text x="112.79" y="687.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (33 samples, 0.14%)</title><rect x="415.6" y="901" width="1.6" height="15.0" fill="rgb(230,23,18)" rx="2" ry="2" />
<text x="418.57" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime14GetEncodedSizeERKNS_5SliceE (10 samples, 0.04%)</title><rect x="636.9" y="677" width="0.5" height="15.0" fill="rgb(240,148,29)" rx="2" ry="2" />
<text x="639.86" y="687.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.03%)</title><rect x="435.3" y="917" width="0.4" height="15.0" fill="rgb(252,59,28)" rx="2" ry="2" />
<text x="438.26" y="927.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (24 samples, 0.10%)</title><rect x="397.0" y="629" width="1.2" height="15.0" fill="rgb(220,109,12)" rx="2" ry="2" />
<text x="399.99" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb15DecodeIntentKeyERKNS_5SliceE (844 samples, 3.60%)</title><rect x="790.9" y="677" width="42.5" height="15.0" fill="rgb(252,223,53)" rx="2" ry="2" />
<text x="793.88" y="687.5" >_ZN2..</text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="686.9" y="517" width="0.1" height="15.0" fill="rgb(237,3,7)" rx="2" ry="2" />
<text x="689.85" y="527.5" ></text>
</g>
<g >
<title>account_system_time (2 samples, 0.01%)</title><rect x="474.1" y="645" width="0.1" height="15.0" fill="rgb(229,132,6)" rx="2" ry="2" />
<text x="477.13" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (11,196 samples, 47.77%)</title><rect x="618.7" y="949" width="563.7" height="15.0" fill="rgb(212,172,50)" rx="2" ry="2" />
<text x="621.73" y="959.5" >_ZN2yb6Thread15SuperviseThreadEPv</text>
</g>
<g >
<title>tick_sched_timer (29 samples, 0.12%)</title><rect x="590.6" y="693" width="1.5" height="15.0" fill="rgb(229,124,5)" rx="2" ry="2" />
<text x="593.63" y="703.5" ></text>
</g>
<g >
<title>wake_up_q (19 samples, 0.08%)</title><rect x="426.1" y="757" width="0.9" height="15.0" fill="rgb(231,29,17)" rx="2" ry="2" />
<text x="429.09" y="767.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5ValidEv (2 samples, 0.01%)</title><rect x="898.8" y="677" width="0.1" height="15.0" fill="rgb(241,203,48)" rx="2" ry="2" />
<text x="901.78" y="687.5" ></text>
</g>
<g >
<title>update_curr (6 samples, 0.03%)</title><rect x="500.4" y="725" width="0.3" height="15.0" fill="rgb(221,131,39)" rx="2" ry="2" />
<text x="503.41" y="735.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (100 samples, 0.43%)</title><rect x="320.7" y="741" width="5.0" height="15.0" fill="rgb(232,54,15)" rx="2" ry="2" />
<text x="323.71" y="751.5" ></text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="398.2" y="533" width="0.1" height="15.0" fill="rgb(206,27,1)" rx="2" ry="2" />
<text x="401.20" y="543.5" ></text>
</g>
<g >
<title>schedule (6 samples, 0.03%)</title><rect x="414.1" y="741" width="0.3" height="15.0" fill="rgb(220,53,37)" rx="2" ry="2" />
<text x="417.11" y="751.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (7 samples, 0.03%)</title><rect x="116.8" y="693" width="0.3" height="15.0" fill="rgb(232,133,7)" rx="2" ry="2" />
<text x="119.79" y="703.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="963.3" y="581" width="0.1" height="15.0" fill="rgb(206,48,45)" rx="2" ry="2" />
<text x="966.32" y="591.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail12wait_handlerINS1_15wrapped_handlerINS0_10io_context6strandESt5_BindIFSt7_Mem_fnIMN2yb3rpc9Scheduler4ImplEFvRKNS_6system10error_codeEEEPSB_St12_PlaceholderILi1EEEENS1_26is_continuation_if_runningEEEE11do_completeEPvPNS1_19scheduler_operationESF_m (74 samples, 0.32%)</title><rect x="423.9" y="917" width="3.7" height="15.0" fill="rgb(228,100,40)" rx="2" ry="2" />
<text x="426.88" y="927.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator26SkipEmptyDataBlocksForwardEv.constprop.113 (19 samples, 0.08%)</title><rect x="675.4" y="661" width="0.9" height="15.0" fill="rgb(222,40,34)" rx="2" ry="2" />
<text x="678.37" y="671.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEj (2 samples, 0.01%)</title><rect x="496.4" y="901" width="0.1" height="15.0" fill="rgb(228,217,35)" rx="2" ry="2" />
<text x="499.43" y="911.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (4 samples, 0.02%)</title><rect x="437.1" y="869" width="0.2" height="15.0" fill="rgb(238,204,18)" rx="2" ry="2" />
<text x="440.07" y="879.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="1181.7" y="757" width="0.1" height="15.0" fill="rgb(225,67,30)" rx="2" ry="2" />
<text x="1184.74" y="767.5" ></text>
</g>
<g >
<title>[libc-2.23.so] (2,235 samples, 9.54%)</title><rect x="17.1" y="901" width="112.6" height="15.0" fill="rgb(218,128,41)" rx="2" ry="2" />
<text x="20.15" y="911.5" >[libc-2.23.so]</text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.01%)</title><rect x="217.8" y="949" width="0.2" height="15.0" fill="rgb(251,105,49)" rx="2" ry="2" />
<text x="220.84" y="959.5" ></text>
</g>
<g >
<title>pick_next_task_idle (4 samples, 0.02%)</title><rect x="201.6" y="773" width="0.2" height="15.0" fill="rgb(236,21,40)" rx="2" ry="2" />
<text x="204.63" y="783.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="749.9" y="741" width="0.1" height="15.0" fill="rgb(250,19,24)" rx="2" ry="2" />
<text x="752.94" y="751.5" ></text>
</g>
<g >
<title>__update_idle_core (7 samples, 0.03%)</title><rect x="476.1" y="773" width="0.4" height="15.0" fill="rgb(244,62,39)" rx="2" ry="2" />
<text x="479.14" y="783.5" ></text>
</g>
<g >
<title>sys_epoll_wait (1,085 samples, 4.63%)</title><rect x="149.3" y="853" width="54.6" height="15.0" fill="rgb(222,75,1)" rx="2" ry="2" />
<text x="152.27" y="863.5" >sys_e..</text>
</g>
<g >
<title>schedule (8 samples, 0.03%)</title><rect x="396.5" y="661" width="0.4" height="15.0" fill="rgb(211,225,14)" rx="2" ry="2" />
<text x="399.54" y="671.5" ></text>
</g>
<g >
<title>_ZNSsC2ERKSs (4 samples, 0.02%)</title><rect x="741.9" y="805" width="0.2" height="15.0" fill="rgb(230,124,39)" rx="2" ry="2" />
<text x="744.94" y="815.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9StopWatchC1EPNS_3EnvEPNS_10StatisticsEjPm (2 samples, 0.01%)</title><rect x="533.4" y="661" width="0.1" height="15.0" fill="rgb(232,140,12)" rx="2" ry="2" />
<text x="536.39" y="671.5" ></text>
</g>
<g >
<title>selinux_ipv4_postroute (3 samples, 0.01%)</title><rect x="357.4" y="517" width="0.2" height="15.0" fill="rgb(212,89,24)" rx="2" ry="2" />
<text x="360.41" y="527.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="417.2" y="885" width="0.2" height="15.0" fill="rgb(225,221,42)" rx="2" ry="2" />
<text x="420.23" y="895.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator11IsKeyPinnedEv (6 samples, 0.03%)</title><rect x="899.9" y="677" width="0.3" height="15.0" fill="rgb(231,221,13)" rx="2" ry="2" />
<text x="902.93" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb6Socket5RecvvEPN5boost9container12small_vectorI5iovecLm4ENS2_13new_allocatorIS4_EEEE (10 samples, 0.04%)</title><rect x="380.2" y="837" width="0.5" height="15.0" fill="rgb(207,12,43)" rx="2" ry="2" />
<text x="383.22" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue16ResponseFromPeerERKSsRKNS0_19ConsensusResponsePBEPb (196 samples, 0.84%)</title><rect x="762.1" y="869" width="9.8" height="15.0" fill="rgb(217,15,21)" rx="2" ry="2" />
<text x="765.08" y="879.5" ></text>
</g>
<g >
<title>_ZNSs6appendEmc (2 samples, 0.01%)</title><rect x="741.7" y="805" width="0.1" height="15.0" fill="rgb(248,35,25)" rx="2" ry="2" />
<text x="744.73" y="815.5" ></text>
</g>
<g >
<title>net_rx_action (95 samples, 0.41%)</title><rect x="351.8" y="437" width="4.8" height="15.0" fill="rgb(215,73,22)" rx="2" ry="2" />
<text x="354.78" y="447.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState22GetLeaderStateUnlockedENS0_20LeaderLeaseCheckModeEPNSt6chrono10time_pointINS_15CoarseMonoClockENS3_8durationIlSt5ratioILl1ELl1000000000EEEEEE (5 samples, 0.02%)</title><rect x="536.1" y="853" width="0.2" height="15.0" fill="rgb(251,106,38)" rx="2" ry="2" />
<text x="539.06" y="863.5" ></text>
</g>
<g >
<title>dequeue_task_fair (26 samples, 0.11%)</title><rect x="453.4" y="773" width="1.3" height="15.0" fill="rgb(235,135,47)" rx="2" ry="2" />
<text x="456.38" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCallC2ESt10shared_ptrINS0_10ConnectionEESt8functionIFvPNS0_11InboundCallEEE (13 samples, 0.06%)</title><rect x="370.5" y="773" width="0.6" height="15.0" fill="rgb(253,129,2)" rx="2" ry="2" />
<text x="373.45" y="783.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="420.0" y="805" width="0.1" height="15.0" fill="rgb(222,202,7)" rx="2" ry="2" />
<text x="423.00" y="815.5" ></text>
</g>
<g >
<title>do_futex (20 samples, 0.09%)</title><rect x="375.8" y="661" width="1.0" height="15.0" fill="rgb(216,185,13)" rx="2" ry="2" />
<text x="378.84" y="671.5" ></text>
</g>
<g >
<title>scheduler_tick (3 samples, 0.01%)</title><rect x="970.5" y="629" width="0.2" height="15.0" fill="rgb(245,59,26)" rx="2" ry="2" />
<text x="973.52" y="639.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (131 samples, 0.56%)</title><rect x="1182.7" y="933" width="6.6" height="15.0" fill="rgb(233,7,27)" rx="2" ry="2" />
<text x="1185.70" y="943.5" ></text>
</g>
<g >
<title>do_futex (5 samples, 0.02%)</title><rect x="601.9" y="837" width="0.2" height="15.0" fill="rgb(220,70,36)" rx="2" ry="2" />
<text x="604.86" y="847.5" ></text>
</g>
<g >
<title>__schedule (62 samples, 0.26%)</title><rect x="420.4" y="789" width="3.1" height="15.0" fill="rgb(217,214,31)" rx="2" ry="2" />
<text x="423.35" y="799.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.01%)</title><rect x="526.7" y="869" width="0.1" height="15.0" fill="rgb(221,136,47)" rx="2" ry="2" />
<text x="529.69" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker10TryConsumeElPPS0_ (7 samples, 0.03%)</title><rect x="493.3" y="789" width="0.4" height="15.0" fill="rgb(253,213,24)" rx="2" ry="2" />
<text x="496.31" y="799.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (2 samples, 0.01%)</title><rect x="121.8" y="837" width="0.1" height="15.0" fill="rgb(243,163,12)" rx="2" ry="2" />
<text x="124.78" y="847.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal20RepeatedPtrFieldBase14InternalExtendEi (6 samples, 0.03%)</title><rect x="768.3" y="821" width="0.3" height="15.0" fill="rgb(215,123,29)" rx="2" ry="2" />
<text x="771.27" y="831.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io17CodedOutputStream26WriteStringWithSizeToArrayERKSsPh (2 samples, 0.01%)</title><rect x="543.5" y="789" width="0.1" height="15.0" fill="rgb(237,12,47)" rx="2" ry="2" />
<text x="546.46" y="799.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (2 samples, 0.01%)</title><rect x="525.0" y="917" width="0.1" height="15.0" fill="rgb(250,176,42)" rx="2" ry="2" />
<text x="528.03" y="927.5" ></text>
</g>
<g >
<title>futex_wait (15 samples, 0.06%)</title><rect x="482.3" y="821" width="0.8" height="15.0" fill="rgb(251,210,42)" rx="2" ry="2" />
<text x="485.33" y="831.5" ></text>
</g>
<g >
<title>deactivate_task (4 samples, 0.02%)</title><rect x="559.9" y="773" width="0.2" height="15.0" fill="rgb(234,137,1)" rx="2" ry="2" />
<text x="562.92" y="783.5" ></text>
</g>
<g >
<title>net_rx_action (59 samples, 0.25%)</title><rect x="340.8" y="421" width="3.0" height="15.0" fill="rgb(243,7,1)" rx="2" ry="2" />
<text x="343.85" y="431.5" ></text>
</g>
<g >
<title>tcp_recvmsg (148 samples, 0.63%)</title><rect x="382.2" y="709" width="7.4" height="15.0" fill="rgb(251,123,38)" rx="2" ry="2" />
<text x="385.19" y="719.5" ></text>
</g>
<g >
<title>sock_poll (8 samples, 0.03%)</title><rect x="230.7" y="789" width="0.4" height="15.0" fill="rgb(227,91,27)" rx="2" ry="2" />
<text x="233.68" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection15ProcessReceivedERKN5boost9container12small_vectorI5iovecLm4ENS3_13new_allocatorIS5_EEEENS_17StronglyTypedBoolINS0_18ReadBufferFull_TagEEE (3 samples, 0.01%)</title><rect x="380.0" y="837" width="0.1" height="15.0" fill="rgb(228,203,45)" rx="2" ry="2" />
<text x="382.97" y="847.5" ></text>
</g>
<g >
<title>_ZNSt6vectorIN2yb6master15TSInformationPBESaIS2_EE13_M_assign_auxIN6google8protobuf8internal19RepeatedPtrIteratorIKS2_EEEEvT_SC_St20forward_iterator_tag (2 samples, 0.01%)</title><rect x="415.0" y="869" width="0.1" height="15.0" fill="rgb(219,0,5)" rx="2" ry="2" />
<text x="417.96" y="879.5" ></text>
</g>
<g >
<title>x86_pmu_enable (95 samples, 0.41%)</title><rect x="609.1" y="757" width="4.7" height="15.0" fill="rgb(224,59,51)" rx="2" ry="2" />
<text x="612.06" y="767.5" ></text>
</g>
<g >
<title>ep_poll (1,754 samples, 7.48%)</title><rect x="30.8" y="837" width="88.3" height="15.0" fill="rgb(237,24,10)" rx="2" ry="2" />
<text x="33.79" y="847.5" >ep_poll</text>
</g>
<g >
<title>prepare_exit_to_usermode (4 samples, 0.02%)</title><rect x="680.5" y="613" width="0.2" height="15.0" fill="rgb(247,141,25)" rx="2" ry="2" />
<text x="683.46" y="623.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb18DocRowwiseIterator6DoInitINS0_16DocPgsqlScanSpecEEENS_6StatusERKT_ (15 samples, 0.06%)</title><rect x="775.8" y="789" width="0.7" height="15.0" fill="rgb(235,157,5)" rx="2" ry="2" />
<text x="778.77" y="799.5" ></text>
</g>
<g >
<title>fput (14 samples, 0.06%)</title><rect x="327.2" y="837" width="0.7" height="15.0" fill="rgb(243,204,4)" rx="2" ry="2" />
<text x="330.15" y="847.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (2 samples, 0.01%)</title><rect x="358.8" y="645" width="0.1" height="15.0" fill="rgb(249,111,50)" rx="2" ry="2" />
<text x="361.77" y="655.5" ></text>
</g>
<g >
<title>_xfs_buf_ioapply (5 samples, 0.02%)</title><rect x="395.7" y="661" width="0.2" height="15.0" fill="rgb(247,200,2)" rx="2" ry="2" />
<text x="398.68" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12CallResponseC1Ev (2 samples, 0.01%)</title><rect x="374.7" y="757" width="0.1" height="15.0" fill="rgb(221,95,2)" rx="2" ry="2" />
<text x="377.68" y="767.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb (12 samples, 0.05%)</title><rect x="645.4" y="693" width="0.6" height="15.0" fill="rgb(214,8,54)" rx="2" ry="2" />
<text x="648.37" y="703.5" ></text>
</g>
<g >
<title>tcp_sendmsg (122 samples, 0.52%)</title><rect x="338.3" y="661" width="6.1" height="15.0" fill="rgb(211,146,10)" rx="2" ry="2" />
<text x="341.28" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13RequestHeader27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (12 samples, 0.05%)</title><rect x="369.6" y="725" width="0.7" height="15.0" fill="rgb(223,112,43)" rx="2" ry="2" />
<text x="372.65" y="735.5" ></text>
</g>
<g >
<title>CQLServer_react (2,526 samples, 10.78%)</title><rect x="10.0" y="981" width="127.2" height="15.0" fill="rgb(235,136,42)" rx="2" ry="2" />
<text x="13.00" y="991.5" >CQLServer_react</text>
</g>
<g >
<title>_ZN2yb3rpc10Connection8CallSentESt10shared_ptrINS0_12OutboundCallEE (7 samples, 0.03%)</title><rect x="360.1" y="773" width="0.3" height="15.0" fill="rgb(238,25,40)" rx="2" ry="2" />
<text x="363.08" y="783.5" ></text>
</g>
<g >
<title>do_syscall_64 (39 samples, 0.17%)</title><rect x="754.8" y="805" width="1.9" height="15.0" fill="rgb(238,227,45)" rx="2" ry="2" />
<text x="757.78" y="815.5" ></text>
</g>
<g >
<title>__clock_gettime (4 samples, 0.02%)</title><rect x="496.7" y="917" width="0.2" height="15.0" fill="rgb(234,129,7)" rx="2" ry="2" />
<text x="499.73" y="927.5" ></text>
</g>
<g >
<title>__remove_hrtimer (3 samples, 0.01%)</title><rect x="615.2" y="821" width="0.1" height="15.0" fill="rgb(207,208,1)" rx="2" ry="2" />
<text x="618.16" y="831.5" ></text>
</g>
<g >
<title>poll_freewait (6 samples, 0.03%)</title><rect x="1184.3" y="869" width="0.3" height="15.0" fill="rgb(242,139,16)" rx="2" ry="2" />
<text x="1187.31" y="879.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.01%)</title><rect x="215.7" y="885" width="0.1" height="15.0" fill="rgb(239,13,21)" rx="2" ry="2" />
<text x="218.68" y="895.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicateMsg12ByteSizeLongEv (6 samples, 0.03%)</title><rect x="549.1" y="853" width="0.3" height="15.0" fill="rgb(221,13,33)" rx="2" ry="2" />
<text x="552.15" y="863.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (3 samples, 0.01%)</title><rect x="443.2" y="869" width="0.2" height="15.0" fill="rgb(251,150,16)" rx="2" ry="2" />
<text x="446.21" y="879.5" ></text>
</g>
<g >
<title>__dcigettext (3 samples, 0.01%)</title><rect x="218.3" y="949" width="0.1" height="15.0" fill="rgb(227,85,37)" rx="2" ry="2" />
<text x="221.30" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIteratorC2ERKNS0_5DocDBERKN7rocksdb11ReadOptionsENSt6chrono10time_pointINS_15CoarseMonoClockENS9_8durationIlSt5ratioILl1ELl1000000000EEEEEERKNS_14ReadHybridTimeERKN5boost8optionalINS_27TransactionOperationContextEEE (8 samples, 0.03%)</title><rect x="776.0" y="757" width="0.4" height="15.0" fill="rgb(224,170,54)" rx="2" ry="2" />
<text x="779.02" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="483.2" y="901" width="0.1" height="15.0" fill="rgb(245,147,51)" rx="2" ry="2" />
<text x="486.19" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken6SubmitESt10shared_ptrINS_8RunnableEE (16 samples, 0.07%)</title><rect x="490.2" y="805" width="0.8" height="15.0" fill="rgb(213,182,3)" rx="2" ry="2" />
<text x="493.24" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (86 samples, 0.37%)</title><rect x="419.2" y="885" width="4.4" height="15.0" fill="rgb(244,165,37)" rx="2" ry="2" />
<text x="422.24" y="895.5" ></text>
</g>
<g >
<title>kfree_skbmem (2 samples, 0.01%)</title><rect x="342.0" y="197" width="0.1" height="15.0" fill="rgb(205,73,7)" rx="2" ry="2" />
<text x="345.01" y="207.5" ></text>
</g>
<g >
<title>tick_sched_handle (29 samples, 0.12%)</title><rect x="474.1" y="693" width="1.5" height="15.0" fill="rgb(238,23,39)" rx="2" ry="2" />
<text x="477.13" y="703.5" ></text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase7ReleaseEv (2 samples, 0.01%)</title><rect x="773.9" y="869" width="0.1" height="15.0" fill="rgb(213,168,28)" rx="2" ry="2" />
<text x="776.86" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (25 samples, 0.11%)</title><rect x="484.3" y="901" width="1.3" height="15.0" fill="rgb(244,31,44)" rx="2" ry="2" />
<text x="487.35" y="911.5" ></text>
</g>
<g >
<title>__schedule (162 samples, 0.69%)</title><rect x="404.7" y="757" width="8.2" height="15.0" fill="rgb(206,83,38)" rx="2" ry="2" />
<text x="407.74" y="767.5" ></text>
</g>
<g >
<title>iomap_apply (4 samples, 0.02%)</title><rect x="402.5" y="661" width="0.2" height="15.0" fill="rgb(221,99,29)" rx="2" ry="2" />
<text x="405.48" y="671.5" ></text>
</g>
<g >
<title>finish_task_switch (1,242 samples, 5.30%)</title><rect x="51.6" y="757" width="62.5" height="15.0" fill="rgb(249,186,37)" rx="2" ry="2" />
<text x="54.59" y="767.5" >finish..</text>
</g>
<g >
<title>syscall_return_via_sysret (6 samples, 0.03%)</title><rect x="526.8" y="917" width="0.3" height="15.0" fill="rgb(223,36,35)" rx="2" ry="2" />
<text x="529.84" y="927.5" ></text>
</g>
<g >
<title>schedule (659 samples, 2.81%)</title><rect x="559.2" y="805" width="33.2" height="15.0" fill="rgb(237,189,38)" rx="2" ry="2" />
<text x="562.22" y="815.5" >sc..</text>
</g>
<g >
<title>xlog_cil_force_lsn (12 samples, 0.05%)</title><rect x="396.3" y="725" width="0.6" height="15.0" fill="rgb(228,222,47)" rx="2" ry="2" />
<text x="399.33" y="735.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream15ReadTagFallbackEj (2 samples, 0.01%)</title><rect x="377.7" y="677" width="0.1" height="15.0" fill="rgb(234,74,15)" rx="2" ry="2" />
<text x="380.65" y="687.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (21 samples, 0.09%)</title><rect x="746.3" y="725" width="1.1" height="15.0" fill="rgb(211,115,47)" rx="2" ry="2" />
<text x="749.32" y="735.5" ></text>
</g>
<g >
<title>fput (3 samples, 0.01%)</title><rect x="26.4" y="853" width="0.2" height="15.0" fill="rgb(242,86,48)" rx="2" ry="2" />
<text x="29.41" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus19ConsensusResponsePB5ClearEv (2 samples, 0.01%)</title><rect x="377.3" y="725" width="0.1" height="15.0" fill="rgb(220,134,4)" rx="2" ry="2" />
<text x="380.25" y="735.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="395.1" y="709" width="0.2" height="15.0" fill="rgb(217,93,30)" rx="2" ry="2" />
<text x="398.13" y="719.5" ></text>
</g>
<g >
<title>tc_newarray (8 samples, 0.03%)</title><rect x="759.2" y="869" width="0.4" height="15.0" fill="rgb(226,80,10)" rx="2" ry="2" />
<text x="762.16" y="879.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (95 samples, 0.41%)</title><rect x="351.8" y="501" width="4.8" height="15.0" fill="rgb(229,95,42)" rx="2" ry="2" />
<text x="354.78" y="511.5" ></text>
</g>
<g >
<title>_ZNK2yb14CountDownLatch7WaitForERKNS_9MonoDeltaE (22 samples, 0.09%)</title><rect x="482.0" y="917" width="1.1" height="15.0" fill="rgb(252,85,15)" rx="2" ry="2" />
<text x="485.03" y="927.5" ></text>
</g>
<g >
<title>_ZNSt17_Function_handlerIFvvESt5_BindIFSt7_Mem_fnIMN2yb9consensus4PeerEFvvEESt10shared_ptrIS5_EEEE9_M_invokeERKSt9_Any_data (3 samples, 0.01%)</title><rect x="773.3" y="901" width="0.1" height="15.0" fill="rgb(208,225,45)" rx="2" ry="2" />
<text x="776.25" y="911.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="526.7" y="885" width="0.1" height="15.0" fill="rgb(254,93,44)" rx="2" ry="2" />
<text x="529.69" y="895.5" ></text>
</g>
<g >
<title>account_entity_dequeue (6 samples, 0.03%)</title><rect x="453.5" y="741" width="0.3" height="15.0" fill="rgb(241,210,5)" rx="2" ry="2" />
<text x="456.53" y="751.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="414.2" y="677" width="0.2" height="15.0" fill="rgb(236,162,46)" rx="2" ry="2" />
<text x="417.21" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver17TabletServiceImpl6DoReadEPNS0_11ReadContextE (5,647 samples, 24.10%)</title><rect x="775.0" y="885" width="284.3" height="15.0" fill="rgb(239,23,17)" rx="2" ry="2" />
<text x="778.02" y="895.5" >_ZN2yb7tserver17TabletServiceImpl6DoRe..</text>
</g>
<g >
<title>wake_q_add (3 samples, 0.01%)</title><rect x="755.3" y="741" width="0.1" height="15.0" fill="rgb(215,105,12)" rx="2" ry="2" />
<text x="758.28" y="751.5" ></text>
</g>
<g >
<title>perf_pmu_enable (347 samples, 1.48%)</title><rect x="456.0" y="757" width="17.5" height="15.0" fill="rgb(222,152,48)" rx="2" ry="2" />
<text x="459.00" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet11MvccManager32UpdatePropagatedSafeTimeOnLeaderENS_10HybridTimeE (19 samples, 0.08%)</title><rect x="537.6" y="869" width="0.9" height="15.0" fill="rgb(251,56,41)" rx="2" ry="2" />
<text x="540.57" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet17CreateReadIntentsERKNS_21TransactionMetadataPBERKN6google8protobuf16RepeatedPtrFieldINS_15QLReadRequestPBEEERKNS7_INS_18PgsqlReadRequestPBEEEPNS_5docdb20KeyValueWriteBatchPBE (3 samples, 0.01%)</title><rect x="737.3" y="853" width="0.2" height="15.0" fill="rgb(234,226,31)" rx="2" ry="2" />
<text x="740.30" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb11CloudInfoPBD2Ev (2 samples, 0.01%)</title><rect x="763.4" y="821" width="0.1" height="15.0" fill="rgb(225,216,29)" rx="2" ry="2" />
<text x="766.39" y="831.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3 samples, 0.01%)</title><rect x="400.3" y="853" width="0.2" height="15.0" fill="rgb(246,162,18)" rx="2" ry="2" />
<text x="403.31" y="863.5" ></text>
</g>
<g >
<title>kvm_steal_clock (5 samples, 0.02%)</title><rect x="116.4" y="741" width="0.3" height="15.0" fill="rgb(229,182,42)" rx="2" ry="2" />
<text x="119.44" y="751.5" ></text>
</g>
<g >
<title>do_syscall_64 (56 samples, 0.24%)</title><rect x="395.7" y="821" width="2.8" height="15.0" fill="rgb(229,183,26)" rx="2" ry="2" />
<text x="398.68" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi (10 samples, 0.04%)</title><rect x="790.1" y="677" width="0.5" height="15.0" fill="rgb(234,125,54)" rx="2" ry="2" />
<text x="793.07" y="687.5" ></text>
</g>
<g >
<title>do_futex (11 samples, 0.05%)</title><rect x="490.5" y="725" width="0.5" height="15.0" fill="rgb(243,62,36)" rx="2" ry="2" />
<text x="493.49" y="735.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (557 samples, 2.38%)</title><rect x="168.2" y="693" width="28.0" height="15.0" fill="rgb(215,185,41)" rx="2" ry="2" />
<text x="171.20" y="703.5" >i..</text>
</g>
<g >
<title>selinux_socket_sendmsg (4 samples, 0.02%)</title><rect x="359.0" y="677" width="0.2" height="15.0" fill="rgb(226,126,50)" rx="2" ry="2" />
<text x="361.98" y="687.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="766.1" y="661" width="0.1" height="15.0" fill="rgb(211,126,7)" rx="2" ry="2" />
<text x="769.10" y="671.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5valueEv (9 samples, 0.04%)</title><rect x="1042.1" y="725" width="0.4" height="15.0" fill="rgb(209,218,40)" rx="2" ry="2" />
<text x="1045.07" y="735.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (6 samples, 0.03%)</title><rect x="1188.3" y="757" width="0.3" height="15.0" fill="rgb(207,208,19)" rx="2" ry="2" />
<text x="1191.34" y="767.5" ></text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="1038.5" y="629" width="0.2" height="15.0" fill="rgb(210,86,0)" rx="2" ry="2" />
<text x="1041.55" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi@plt (6 samples, 0.03%)</title><rect x="790.6" y="677" width="0.3" height="15.0" fill="rgb(239,222,52)" rx="2" ry="2" />
<text x="793.57" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer18NewOperationDriverEPSt10unique_ptrINS0_9OperationESt14default_deleteIS3_EEl (8 samples, 0.03%)</title><rect x="750.2" y="773" width="0.4" height="15.0" fill="rgb(252,88,34)" rx="2" ry="2" />
<text x="753.24" y="783.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (13 samples, 0.06%)</title><rect x="334.9" y="885" width="0.6" height="15.0" fill="rgb(225,145,40)" rx="2" ry="2" />
<text x="337.86" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue34HybridTimeLeaseExpirationWatermarkEv (3 samples, 0.01%)</title><rect x="772.0" y="869" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="775.00" y="879.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (12 samples, 0.05%)</title><rect x="710.3" y="677" width="0.6" height="15.0" fill="rgb(218,174,26)" rx="2" ry="2" />
<text x="713.27" y="687.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (2 samples, 0.01%)</title><rect x="492.4" y="757" width="0.1" height="15.0" fill="rgb(216,201,0)" rx="2" ry="2" />
<text x="495.35" y="767.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1182.6" y="933" width="0.1" height="15.0" fill="rgb(215,196,46)" rx="2" ry="2" />
<text x="1185.60" y="943.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (580 samples, 2.47%)</title><rect x="167.0" y="741" width="29.2" height="15.0" fill="rgb(248,195,12)" rx="2" ry="2" />
<text x="170.04" y="751.5" >__..</text>
</g>
<g >
<title>futex_wait (33 samples, 0.14%)</title><rect x="415.6" y="837" width="1.6" height="15.0" fill="rgb(229,34,52)" rx="2" ry="2" />
<text x="418.57" y="847.5" ></text>
</g>
<g >
<title>ep_poll (4 samples, 0.02%)</title><rect x="394.7" y="837" width="0.2" height="15.0" fill="rgb(225,218,36)" rx="2" ry="2" />
<text x="397.72" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb10ThreadPool8DoSubmitESt10shared_ptrINS_8RunnableEEPNS_15ThreadPoolTokenE (2 samples, 0.01%)</title><rect x="750.7" y="709" width="0.1" height="15.0" fill="rgb(219,92,21)" rx="2" ry="2" />
<text x="753.70" y="719.5" ></text>
</g>
<g >
<title>ev_invoke_pending (2 samples, 0.01%)</title><rect x="138.8" y="917" width="0.1" height="15.0" fill="rgb(205,189,35)" rx="2" ry="2" />
<text x="141.80" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4NextEv (3 samples, 0.01%)</title><rect x="838.2" y="693" width="0.1" height="15.0" fill="rgb(228,150,19)" rx="2" ry="2" />
<text x="841.15" y="703.5" ></text>
</g>
<g >
<title>__inet_lookup_established (2 samples, 0.01%)</title><rect x="352.7" y="293" width="0.1" height="15.0" fill="rgb(243,141,21)" rx="2" ry="2" />
<text x="355.68" y="303.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5valueEv (28 samples, 0.12%)</title><rect x="712.3" y="677" width="1.4" height="15.0" fill="rgb(207,216,7)" rx="2" ry="2" />
<text x="715.33" y="687.5" ></text>
</g>
<g >
<title>get_futex_key_refs.isra.12 (16 samples, 0.07%)</title><rect x="437.9" y="837" width="0.8" height="15.0" fill="rgb(207,73,39)" rx="2" ry="2" />
<text x="440.92" y="847.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (3 samples, 0.01%)</title><rect x="524.6" y="853" width="0.2" height="15.0" fill="rgb(228,178,32)" rx="2" ry="2" />
<text x="527.63" y="863.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="616.3" y="885" width="0.1" height="15.0" fill="rgb(231,31,45)" rx="2" ry="2" />
<text x="619.31" y="895.5" ></text>
</g>
<g >
<title>__acct_update_integrals (2 samples, 0.01%)</title><rect x="196.7" y="565" width="0.1" height="15.0" fill="rgb(209,52,19)" rx="2" ry="2" />
<text x="199.75" y="575.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log11AsyncAppendEPNS0_13LogEntryBatchERKNS_8CallbackIFvRKNS_6StatusEEEE (9 samples, 0.04%)</title><rect x="492.5" y="789" width="0.5" height="15.0" fill="rgb(231,119,54)" rx="2" ry="2" />
<text x="495.50" y="799.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (2 samples, 0.01%)</title><rect x="455.9" y="757" width="0.1" height="15.0" fill="rgb(205,95,6)" rx="2" ry="2" />
<text x="458.90" y="767.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (48 samples, 0.20%)</title><rect x="754.4" y="837" width="2.4" height="15.0" fill="rgb(212,24,37)" rx="2" ry="2" />
<text x="757.42" y="847.5" ></text>
</g>
<g >
<title>__nf_ct_l4proto_find (2 samples, 0.01%)</title><rect x="339.7" y="485" width="0.1" height="15.0" fill="rgb(220,186,25)" rx="2" ry="2" />
<text x="342.69" y="495.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator11IsKeyPinnedEv (7 samples, 0.03%)</title><rect x="708.0" y="661" width="0.4" height="15.0" fill="rgb(221,39,36)" rx="2" ry="2" />
<text x="711.00" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream8TryWriteEv (314 samples, 1.34%)</title><rect x="345.8" y="837" width="15.8" height="15.0" fill="rgb(231,131,2)" rx="2" ry="2" />
<text x="348.83" y="847.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter5ValidEv (13 samples, 0.06%)</title><rect x="907.1" y="677" width="0.6" height="15.0" fill="rgb(249,32,14)" rx="2" ry="2" />
<text x="910.08" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim (34 samples, 0.15%)</title><rect x="831.7" y="645" width="1.7" height="15.0" fill="rgb(245,42,31)" rx="2" ry="2" />
<text x="834.66" y="655.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (144 samples, 0.61%)</title><rect x="405.0" y="677" width="7.3" height="15.0" fill="rgb(215,181,51)" rx="2" ry="2" />
<text x="408.05" y="687.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="555.6" y="917" width="0.1" height="15.0" fill="rgb(215,227,13)" rx="2" ry="2" />
<text x="558.59" y="927.5" ></text>
</g>
<g >
<title>__sys_recvmsg (165 samples, 0.70%)</title><rect x="381.7" y="773" width="8.3" height="15.0" fill="rgb(244,140,26)" rx="2" ry="2" />
<text x="384.68" y="783.5" ></text>
</g>
<g >
<title>tc_newarray (4 samples, 0.02%)</title><rect x="748.9" y="821" width="0.2" height="15.0" fill="rgb(229,100,27)" rx="2" ry="2" />
<text x="751.93" y="831.5" ></text>
</g>
<g >
<title>ipt_do_table (8 samples, 0.03%)</title><rect x="350.0" y="501" width="0.4" height="15.0" fill="rgb(240,118,34)" rx="2" ry="2" />
<text x="353.01" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (179 samples, 0.76%)</title><rect x="404.3" y="853" width="9.0" height="15.0" fill="rgb(209,205,3)" rx="2" ry="2" />
<text x="407.29" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="400.2" y="837" width="0.1" height="15.0" fill="rgb(208,113,35)" rx="2" ry="2" />
<text x="403.21" y="847.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail14strand_service8dispatchIZN2yb3rpc9Scheduler4Impl10DoScheduleESt10shared_ptrINS5_17ScheduledTaskBaseEEEUlvE_EEvRPNS2_11strand_implERT_ (2 samples, 0.01%)</title><rect x="432.2" y="853" width="0.1" height="15.0" fill="rgb(227,106,34)" rx="2" ry="2" />
<text x="435.23" y="863.5" ></text>
</g>
<g >
<title>_ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag (2 samples, 0.01%)</title><rect x="395.3" y="933" width="0.1" height="15.0" fill="rgb(206,166,9)" rx="2" ry="2" />
<text x="398.33" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb20ServerRegistrationPBD0Ev (4 samples, 0.02%)</title><rect x="414.7" y="821" width="0.2" height="15.0" fill="rgb(232,68,52)" rx="2" ry="2" />
<text x="417.71" y="831.5" ></text>
</g>
<g >
<title>[libyrpc.so] (2 samples, 0.01%)</title><rect x="215.9" y="949" width="0.1" height="15.0" fill="rgb(247,88,31)" rx="2" ry="2" />
<text x="218.93" y="959.5" ></text>
</g>
<g >
<title>_ZNK2yb12HdrHistogram11BucketIndexEm (2 samples, 0.01%)</title><rect x="364.5" y="805" width="0.1" height="15.0" fill="rgb(233,214,48)" rx="2" ry="2" />
<text x="367.46" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver18ReadCompletionTask3RunEv (2 samples, 0.01%)</title><rect x="1060.3" y="933" width="0.1" height="15.0" fill="rgb(207,89,45)" rx="2" ry="2" />
<text x="1063.30" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream7HandlerERN2ev2ioEi (479 samples, 2.04%)</title><rect x="367.4" y="885" width="24.1" height="15.0" fill="rgb(212,165,13)" rx="2" ry="2" />
<text x="370.38" y="895.5" >_..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.06%)</title><rect x="603.5" y="933" width="0.7" height="15.0" fill="rgb(241,61,30)" rx="2" ry="2" />
<text x="606.52" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (52 samples, 0.22%)</title><rect x="32.6" y="821" width="2.6" height="15.0" fill="rgb(229,10,30)" rx="2" ry="2" />
<text x="35.61" y="831.5" ></text>
</g>
<g >
<title>[unknown] (19 samples, 0.08%)</title><rect x="445.7" y="917" width="1.0" height="15.0" fill="rgb(247,142,9)" rx="2" ry="2" />
<text x="448.73" y="927.5" ></text>
</g>
<g >
<title>finish_task_switch (8 samples, 0.03%)</title><rect x="599.6" y="789" width="0.5" height="15.0" fill="rgb(209,59,9)" rx="2" ry="2" />
<text x="602.65" y="799.5" ></text>
</g>
<g >
<title>tcp_error (3 samples, 0.01%)</title><rect x="385.4" y="549" width="0.1" height="15.0" fill="rgb(232,195,45)" rx="2" ry="2" />
<text x="388.36" y="559.5" ></text>
</g>
<g >
<title>remove_wait_queue (4 samples, 0.02%)</title><rect x="395.9" y="725" width="0.2" height="15.0" fill="rgb(228,130,49)" rx="2" ry="2" />
<text x="398.93" y="735.5" ></text>
</g>
<g >
<title>native_write_msr (32 samples, 0.14%)</title><rect x="415.6" y="693" width="1.6" height="15.0" fill="rgb(230,78,10)" rx="2" ry="2" />
<text x="418.62" y="703.5" ></text>
</g>
<g >
<title>[unknown] (10 samples, 0.04%)</title><rect x="485.6" y="965" width="0.5" height="15.0" fill="rgb(215,178,8)" rx="2" ry="2" />
<text x="488.61" y="975.5" ></text>
</g>
<g >
<title>get_futex_value_locked (3 samples, 0.01%)</title><rect x="614.9" y="837" width="0.2" height="15.0" fill="rgb(250,76,14)" rx="2" ry="2" />
<text x="617.90" y="847.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2 samples, 0.01%)</title><rect x="1073.5" y="709" width="0.1" height="15.0" fill="rgb(216,63,0)" rx="2" ry="2" />
<text x="1076.49" y="719.5" ></text>
</g>
<g >
<title>set_task_cpu (2 samples, 0.01%)</title><rect x="442.3" y="821" width="0.1" height="15.0" fill="rgb(218,26,43)" rx="2" ry="2" />
<text x="445.25" y="831.5" ></text>
</g>
<g >
<title>_ZNK2yb9MonoDelta13ToNanosecondsEv (2 samples, 0.01%)</title><rect x="496.3" y="917" width="0.1" height="15.0" fill="rgb(246,101,42)" rx="2" ry="2" />
<text x="499.28" y="927.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="394.7" y="709" width="0.2" height="15.0" fill="rgb(251,119,36)" rx="2" ry="2" />
<text x="397.72" y="719.5" ></text>
</g>
<g >
<title>sys_futex (13 samples, 0.06%)</title><rect x="434.3" y="885" width="0.7" height="15.0" fill="rgb(211,163,24)" rx="2" ry="2" />
<text x="437.35" y="895.5" ></text>
</g>
<g >
<title>__kfree_skb (4 samples, 0.02%)</title><rect x="342.0" y="213" width="0.2" height="15.0" fill="rgb(250,216,26)" rx="2" ry="2" />
<text x="345.01" y="223.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBImpl19GetTotalSSTFileSizeEv (2 samples, 0.01%)</title><rect x="415.1" y="869" width="0.1" height="15.0" fill="rgb(218,64,14)" rx="2" ry="2" />
<text x="418.12" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb8MonoTime3NowEv (4 samples, 0.02%)</title><rect x="598.7" y="933" width="0.2" height="15.0" fill="rgb(219,208,48)" rx="2" ry="2" />
<text x="601.74" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCallD1Ev (11 samples, 0.05%)</title><rect x="773.5" y="885" width="0.5" height="15.0" fill="rgb(210,179,17)" rx="2" ry="2" />
<text x="776.46" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb16ScopedAdoptTraceC1EPNS_5TraceE (2 samples, 0.01%)</title><rect x="598.2" y="933" width="0.1" height="15.0" fill="rgb(241,205,32)" rx="2" ry="2" />
<text x="601.19" y="943.5" ></text>
</g>
<g >
<title>dev_queue_xmit (4 samples, 0.02%)</title><rect x="343.8" y="485" width="0.2" height="15.0" fill="rgb(240,65,34)" rx="2" ry="2" />
<text x="346.82" y="495.5" ></text>
</g>
<g >
<title>_ZNK2yb9MonoDelta14ToMicrosecondsEv@plt (2 samples, 0.01%)</title><rect x="599.4" y="933" width="0.1" height="15.0" fill="rgb(221,160,1)" rx="2" ry="2" />
<text x="602.45" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (8 samples, 0.03%)</title><rect x="229.0" y="805" width="0.4" height="15.0" fill="rgb(218,190,24)" rx="2" ry="2" />
<text x="232.02" y="815.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator3keyEv (13 samples, 0.06%)</title><rect x="1012.5" y="725" width="0.7" height="15.0" fill="rgb(222,44,23)" rx="2" ry="2" />
<text x="1015.52" y="735.5" ></text>
</g>
<g >
<title>_ZNK2yb3log9LogReader10LookupOpIdElPNS_6OpIdPBE (11 samples, 0.05%)</title><rect x="771.0" y="821" width="0.6" height="15.0" fill="rgb(210,199,26)" rx="2" ry="2" />
<text x="774.04" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb12_GLOBAL__N_134TransactionConflictResolverContext13ProcessIntentEPNS1_16ConflictResolverENS_10EnumBitSetINS0_10IntentTypeEEENS0_14IntentStrengthEPNS0_8KeyBytesE (2,237 samples, 9.55%)</title><rect x="624.4" y="725" width="112.7" height="15.0" fill="rgb(241,105,15)" rx="2" ry="2" />
<text x="627.42" y="735.5" >_ZN2yb5docdb1..</text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="535.4" y="677" width="0.2" height="15.0" fill="rgb(243,119,47)" rx="2" ry="2" />
<text x="538.35" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb21TransactionMetadataPB12ByteSizeLongEv (2 samples, 0.01%)</title><rect x="549.3" y="805" width="0.1" height="15.0" fill="rgb(251,75,31)" rx="2" ry="2" />
<text x="552.30" y="815.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (83 samples, 0.35%)</title><rect x="125.5" y="885" width="4.2" height="15.0" fill="rgb(206,94,7)" rx="2" ry="2" />
<text x="128.50" y="895.5" ></text>
</g>
<g >
<title>__dta_xfs_file_aio_write_checks_3292 (13 samples, 0.06%)</title><rect x="401.8" y="677" width="0.6" height="15.0" fill="rgb(251,172,0)" rx="2" ry="2" />
<text x="404.77" y="687.5" ></text>
</g>
<g >
<title>tc_newarray (5 samples, 0.02%)</title><rect x="768.3" y="805" width="0.3" height="15.0" fill="rgb(242,136,10)" rx="2" ry="2" />
<text x="771.32" y="815.5" ></text>
</g>
<g >
<title>__fdget (14 samples, 0.06%)</title><rect x="149.7" y="837" width="0.7" height="15.0" fill="rgb(205,86,25)" rx="2" ry="2" />
<text x="152.67" y="847.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState35MajorityReplicatedHtLeaseExpirationEmNSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEE (2 samples, 0.01%)</title><rect x="537.0" y="885" width="0.1" height="15.0" fill="rgb(249,81,34)" rx="2" ry="2" />
<text x="540.01" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet22TransactionParticipant4Impl17LockAndFindOrLoadERKN5boost5uuids4uuidERKSsNS_17StronglyTypedBoolINS_13MustExist_TagEEE (5 samples, 0.02%)</title><rect x="534.1" y="677" width="0.2" height="15.0" fill="rgb(221,13,18)" rx="2" ry="2" />
<text x="537.09" y="687.5" ></text>
</g>
<g >
<title>update_load_avg (6 samples, 0.03%)</title><rect x="454.3" y="741" width="0.3" height="15.0" fill="rgb(209,90,29)" rx="2" ry="2" />
<text x="457.34" y="751.5" ></text>
</g>
<g >
<title>drop_futex_key_refs.isra.13 (2 samples, 0.01%)</title><rect x="606.5" y="869" width="0.1" height="15.0" fill="rgb(225,59,18)" rx="2" ry="2" />
<text x="609.50" y="879.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (75 samples, 0.32%)</title><rect x="109.6" y="709" width="3.8" height="15.0" fill="rgb(224,21,9)" rx="2" ry="2" />
<text x="112.59" y="719.5" ></text>
</g>
<g >
<title>__clock_gettime (3 samples, 0.01%)</title><rect x="616.8" y="933" width="0.1" height="15.0" fill="rgb(248,121,33)" rx="2" ry="2" />
<text x="619.77" y="943.5" ></text>
</g>
<g >
<title>loopback_xmit (2 samples, 0.01%)</title><rect x="343.9" y="437" width="0.1" height="15.0" fill="rgb(236,101,17)" rx="2" ry="2" />
<text x="346.87" y="447.5" ></text>
</g>
<g >
<title>enqueue_entity (3 samples, 0.01%)</title><rect x="746.8" y="469" width="0.2" height="15.0" fill="rgb(226,136,26)" rx="2" ry="2" />
<text x="749.82" y="479.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb34PrepareTransactionWriteBatchHelper6FinishEv (4 samples, 0.02%)</title><rect x="533.9" y="677" width="0.2" height="15.0" fill="rgb(231,76,37)" rx="2" ry="2" />
<text x="536.89" y="687.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (4 samples, 0.02%)</title><rect x="480.0" y="869" width="0.2" height="15.0" fill="rgb(231,213,20)" rx="2" ry="2" />
<text x="483.02" y="879.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter12ParseNextKeyEv (6 samples, 0.03%)</title><rect x="682.5" y="661" width="0.3" height="15.0" fill="rgb(218,188,31)" rx="2" ry="2" />
<text x="685.52" y="671.5" ></text>
</g>
<g >
<title>tcp_sendmsg (237 samples, 1.01%)</title><rect x="346.9" y="677" width="12.0" height="15.0" fill="rgb(243,10,33)" rx="2" ry="2" />
<text x="349.94" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv (20 samples, 0.09%)</title><rect x="968.4" y="741" width="1.0" height="15.0" fill="rgb(210,99,12)" rx="2" ry="2" />
<text x="971.36" y="751.5" ></text>
</g>
<g >
<title>tick_sched_handle (3 samples, 0.01%)</title><rect x="962.9" y="581" width="0.2" height="15.0" fill="rgb(254,52,42)" rx="2" ry="2" />
<text x="965.92" y="591.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (95 samples, 0.41%)</title><rect x="351.8" y="469" width="4.8" height="15.0" fill="rgb(224,68,14)" rx="2" ry="2" />
<text x="354.78" y="479.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail14strand_service8dispatchINS1_7binder1ISt5_BindIFSt7_Mem_fnIMN2yb3rpc9Scheduler4ImplEFvRKNS_6system10error_codeEEEPSA_St12_PlaceholderILi1EEEESC_EEEEvRPNS2_11strand_implERT_ (67 samples, 0.29%)</title><rect x="424.0" y="869" width="3.4" height="15.0" fill="rgb(236,61,36)" rx="2" ry="2" />
<text x="426.98" y="879.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="446.7" y="917" width="0.1" height="15.0" fill="rgb(223,141,31)" rx="2" ry="2" />
<text x="449.68" y="927.5" ></text>
</g>
<g >
<title>sys_poll (124 samples, 0.53%)</title><rect x="1183.0" y="901" width="6.2" height="15.0" fill="rgb(207,216,29)" rx="2" ry="2" />
<text x="1186.00" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (42 samples, 0.18%)</title><rect x="483.5" y="949" width="2.1" height="15.0" fill="rgb(249,36,46)" rx="2" ry="2" />
<text x="486.49" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (27 samples, 0.12%)</title><rect x="392.6" y="853" width="1.3" height="15.0" fill="rgb(234,99,18)" rx="2" ry="2" />
<text x="395.56" y="863.5" ></text>
</g>
<g >
<title>sys_read (25 samples, 0.11%)</title><rect x="392.6" y="837" width="1.3" height="15.0" fill="rgb(223,169,4)" rx="2" ry="2" />
<text x="395.61" y="847.5" ></text>
</g>
<g >
<title>poll_schedule_timeout (82 samples, 0.35%)</title><rect x="1184.6" y="869" width="4.1" height="15.0" fill="rgb(241,138,21)" rx="2" ry="2" />
<text x="1187.61" y="879.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (5 samples, 0.02%)</title><rect x="1184.8" y="821" width="0.2" height="15.0" fill="rgb(252,80,17)" rx="2" ry="2" />
<text x="1187.76" y="831.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="680.5" y="517" width="0.2" height="15.0" fill="rgb(219,17,24)" rx="2" ry="2" />
<text x="683.46" y="527.5" ></text>
</g>
<g >
<title>do_futex (180 samples, 0.77%)</title><rect x="606.4" y="885" width="9.1" height="15.0" fill="rgb(221,74,4)" rx="2" ry="2" />
<text x="609.44" y="895.5" ></text>
</g>
<g >
<title>start_thread (4 samples, 0.02%)</title><rect x="394.9" y="965" width="0.2" height="15.0" fill="rgb(222,122,12)" rx="2" ry="2" />
<text x="397.92" y="975.5" ></text>
</g>
<g >
<title>schedule (11 samples, 0.05%)</title><rect x="482.5" y="789" width="0.5" height="15.0" fill="rgb(243,99,2)" rx="2" ry="2" />
<text x="485.48" y="799.5" ></text>
</g>
<g >
<title>x86_pmu_disable (26 samples, 0.11%)</title><rect x="161.2" y="693" width="1.3" height="15.0" fill="rgb(207,195,14)" rx="2" ry="2" />
<text x="164.20" y="703.5" ></text>
</g>
<g >
<title>[unknown] (41 samples, 0.17%)</title><rect x="144.2" y="885" width="2.0" height="15.0" fill="rgb(230,58,40)" rx="2" ry="2" />
<text x="147.18" y="895.5" ></text>
</g>
<g >
<title>default_wake_function (23 samples, 0.10%)</title><rect x="353.7" y="149" width="1.2" height="15.0" fill="rgb(235,33,47)" rx="2" ry="2" />
<text x="356.74" y="159.5" ></text>
</g>
<g >
<title>__check_object_size (6 samples, 0.03%)</title><rect x="383.0" y="677" width="0.3" height="15.0" fill="rgb(254,177,1)" rx="2" ry="2" />
<text x="385.99" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb10ThreadPool14DispatchThreadEb (774 samples, 3.30%)</title><rect x="486.2" y="933" width="38.9" height="15.0" fill="rgb(212,59,2)" rx="2" ry="2" />
<text x="489.16" y="943.5" >_ZN..</text>
</g>
<g >
<title>wake_up_q (6 samples, 0.03%)</title><rect x="531.4" y="741" width="0.3" height="15.0" fill="rgb(228,124,6)" rx="2" ry="2" />
<text x="534.42" y="751.5" ></text>
</g>
<g >
<title>set_normalized_timespec (3 samples, 0.01%)</title><rect x="118.9" y="821" width="0.2" height="15.0" fill="rgb(231,58,18)" rx="2" ry="2" />
<text x="121.91" y="831.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4 samples, 0.02%)</title><rect x="667.5" y="629" width="0.2" height="15.0" fill="rgb(228,222,28)" rx="2" ry="2" />
<text x="670.47" y="639.5" ></text>
</g>
<g >
<title>deactivate_task (5 samples, 0.02%)</title><rect x="1074.3" y="789" width="0.3" height="15.0" fill="rgb(216,211,11)" rx="2" ry="2" />
<text x="1077.35" y="799.5" ></text>
</g>
<g >
<title>queue_work_on (3 samples, 0.01%)</title><rect x="395.8" y="533" width="0.1" height="15.0" fill="rgb(208,83,35)" rx="2" ry="2" />
<text x="398.78" y="543.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus11PeerManager13SignalRequestENS0_18RequestTriggerModeE (12 samples, 0.05%)</title><rect x="531.2" y="885" width="0.6" height="15.0" fill="rgb(245,132,42)" rx="2" ry="2" />
<text x="534.22" y="895.5" ></text>
</g>
<g >
<title>wake_up_worker (3 samples, 0.01%)</title><rect x="395.8" y="485" width="0.1" height="15.0" fill="rgb(224,0,31)" rx="2" ry="2" />
<text x="398.78" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="400.9" y="821" width="0.1" height="15.0" fill="rgb(219,181,53)" rx="2" ry="2" />
<text x="403.92" y="831.5" ></text>
</g>
<g >
<title>dput (3 samples, 0.01%)</title><rect x="123.4" y="821" width="0.2" height="15.0" fill="rgb(226,76,24)" rx="2" ry="2" />
<text x="126.44" y="831.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_117GetEntryFromCacheEPNS_5CacheERKN2yb5SliceENS_7TickersES7_PNS_10StatisticsEl.constprop.252 (2 samples, 0.01%)</title><rect x="869.6" y="597" width="0.1" height="15.0" fill="rgb(235,216,5)" rx="2" ry="2" />
<text x="872.62" y="607.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (13 samples, 0.06%)</title><rect x="494.6" y="757" width="0.6" height="15.0" fill="rgb(232,194,3)" rx="2" ry="2" />
<text x="497.57" y="767.5" ></text>
</g>
<g >
<title>__ip_local_out (33 samples, 0.14%)</title><rect x="383.9" y="597" width="1.7" height="15.0" fill="rgb(221,77,22)" rx="2" ry="2" />
<text x="386.90" y="607.5" ></text>
</g>
<g >
<title>ev_run (4 samples, 0.02%)</title><rect x="394.7" y="917" width="0.2" height="15.0" fill="rgb(212,93,21)" rx="2" ry="2" />
<text x="397.72" y="927.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="404.1" y="885" width="0.1" height="15.0" fill="rgb(235,61,1)" rx="2" ry="2" />
<text x="407.09" y="895.5" ></text>
</g>
<g >
<title>tcp_packet (2 samples, 0.01%)</title><rect x="351.3" y="485" width="0.1" height="15.0" fill="rgb(234,37,4)" rx="2" ry="2" />
<text x="354.32" y="495.5" ></text>
</g>
<g >
<title>tcp_current_mss (3 samples, 0.01%)</title><rect x="344.3" y="613" width="0.1" height="15.0" fill="rgb(240,198,11)" rx="2" ry="2" />
<text x="347.27" y="623.5" ></text>
</g>
<g >
<title>scsi_request_fn (4 samples, 0.02%)</title><rect x="395.7" y="581" width="0.2" height="15.0" fill="rgb(220,90,32)" rx="2" ry="2" />
<text x="398.73" y="591.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (42 samples, 0.18%)</title><rect x="421.2" y="709" width="2.1" height="15.0" fill="rgb(214,43,22)" rx="2" ry="2" />
<text x="424.21" y="719.5" ></text>
</g>
<g >
<title>native_write_msr (53 samples, 0.23%)</title><rect x="1185.7" y="709" width="2.6" height="15.0" fill="rgb(223,214,37)" rx="2" ry="2" />
<text x="1188.67" y="719.5" ></text>
</g>
<g >
<title>scheduler_tick (3 samples, 0.01%)</title><rect x="996.7" y="613" width="0.2" height="15.0" fill="rgb(217,182,52)" rx="2" ry="2" />
<text x="999.71" y="623.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="963.3" y="677" width="0.1" height="15.0" fill="rgb(206,79,34)" rx="2" ry="2" />
<text x="966.32" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker7ReleaseEl (3 samples, 0.01%)</title><rect x="534.8" y="725" width="0.1" height="15.0" fill="rgb(212,42,52)" rx="2" ry="2" />
<text x="537.80" y="735.5" ></text>
</g>
<g >
<title>start_thread (11,196 samples, 47.77%)</title><rect x="618.7" y="965" width="563.7" height="15.0" fill="rgb(207,80,1)" rx="2" ry="2" />
<text x="621.73" y="975.5" >start_thread</text>
</g>
<g >
<title>futex_wait (2 samples, 0.01%)</title><rect x="539.6" y="805" width="0.1" height="15.0" fill="rgb(247,46,7)" rx="2" ry="2" />
<text x="542.58" y="815.5" ></text>
</g>
<g >
<title>native_write_msr (3 samples, 0.01%)</title><rect x="110.4" y="549" width="0.1" height="15.0" fill="rgb(236,125,11)" rx="2" ry="2" />
<text x="113.40" y="559.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEj (2 samples, 0.01%)</title><rect x="773.8" y="869" width="0.1" height="15.0" fill="rgb(216,96,29)" rx="2" ry="2" />
<text x="776.76" y="879.5" ></text>
</g>
<g >
<title>__schedule (22 samples, 0.09%)</title><rect x="484.5" y="789" width="1.1" height="15.0" fill="rgb(233,36,4)" rx="2" ry="2" />
<text x="487.50" y="799.5" ></text>
</g>
<g >
<title>rb_erase (3 samples, 0.01%)</title><rect x="523.0" y="773" width="0.1" height="15.0" fill="rgb(248,134,12)" rx="2" ry="2" />
<text x="525.96" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue41NotifyObserversOfMajorityReplOpChangeTaskERKNS0_22MajorityReplicatedDataE (206 samples, 0.88%)</title><rect x="530.5" y="917" width="10.4" height="15.0" fill="rgb(222,163,39)" rx="2" ry="2" />
<text x="533.52" y="927.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicateMsg12ByteSizeLongEv (5 samples, 0.02%)</title><rect x="401.2" y="821" width="0.2" height="15.0" fill="rgb(210,32,23)" rx="2" ry="2" />
<text x="404.17" y="831.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb16FunctionRunnableESaIS1_ELN9__gnu_cxx12_Lock_policyE2EE10_M_disposeEv (2 samples, 0.01%)</title><rect x="526.1" y="933" width="0.1" height="15.0" fill="rgb(238,69,11)" rx="2" ry="2" />
<text x="529.14" y="943.5" ></text>
</g>
<g >
<title>iptable_raw_hook (3 samples, 0.01%)</title><rect x="343.6" y="325" width="0.2" height="15.0" fill="rgb(233,218,8)" rx="2" ry="2" />
<text x="346.62" y="335.5" ></text>
</g>
<g >
<title>_ZN2ev4baseI8ev_timerNS_5timerEE12method_thunkIN2yb3rpc7ReactorEXadL_ZNS7_12TimerHandlerERS2_iEEEEvP7ev_loopPS1_i (12 samples, 0.05%)</title><rect x="129.7" y="901" width="0.6" height="15.0" fill="rgb(239,223,51)" rx="2" ry="2" />
<text x="132.68" y="911.5" ></text>
</g>
<g >
<title>ip_rcv (54 samples, 0.23%)</title><rect x="386.4" y="421" width="2.7" height="15.0" fill="rgb(215,139,40)" rx="2" ry="2" />
<text x="389.37" y="431.5" ></text>
</g>
<g >
<title>clockevents_program_event (2 samples, 0.01%)</title><rect x="113.3" y="677" width="0.1" height="15.0" fill="rgb(228,80,29)" rx="2" ry="2" />
<text x="116.27" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection14UpdateLastReadEv (3 samples, 0.01%)</title><rect x="367.4" y="869" width="0.1" height="15.0" fill="rgb(221,96,52)" rx="2" ry="2" />
<text x="370.38" y="879.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="976.1" y="741" width="0.1" height="15.0" fill="rgb(240,118,33)" rx="2" ry="2" />
<text x="979.11" y="751.5" ></text>
</g>
<g >
<title>hrtimer_active (13 samples, 0.06%)</title><rect x="523.7" y="789" width="0.6" height="15.0" fill="rgb(248,185,16)" rx="2" ry="2" />
<text x="526.67" y="799.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb9consensus19ConsensusResponsePBESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info (2 samples, 0.01%)</title><rect x="760.2" y="885" width="0.1" height="15.0" fill="rgb(242,186,10)" rx="2" ry="2" />
<text x="763.21" y="895.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (5 samples, 0.02%)</title><rect x="962.9" y="661" width="0.2" height="15.0" fill="rgb(225,109,35)" rx="2" ry="2" />
<text x="965.87" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver14ApplyOperationEl (69 samples, 0.29%)</title><rect x="532.2" y="789" width="3.5" height="15.0" fill="rgb(207,67,36)" rx="2" ry="2" />
<text x="535.18" y="799.5" ></text>
</g>
<g >
<title>timerqueue_del (19 samples, 0.08%)</title><rect x="593.4" y="773" width="1.0" height="15.0" fill="rgb(254,33,2)" rx="2" ry="2" />
<text x="596.40" y="783.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (2 samples, 0.01%)</title><rect x="756.5" y="661" width="0.1" height="15.0" fill="rgb(212,106,41)" rx="2" ry="2" />
<text x="759.49" y="671.5" ></text>
</g>
<g >
<title>__fget_light (18 samples, 0.08%)</title><rect x="29.9" y="837" width="0.9" height="15.0" fill="rgb(223,78,1)" rx="2" ry="2" />
<text x="32.89" y="847.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (4 samples, 0.02%)</title><rect x="615.5" y="901" width="0.2" height="15.0" fill="rgb(245,67,16)" rx="2" ry="2" />
<text x="618.51" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="531.4" y="805" width="0.3" height="15.0" fill="rgb(240,78,3)" rx="2" ry="2" />
<text x="534.37" y="815.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5valueEv (39 samples, 0.17%)</title><rect x="1041.5" y="741" width="1.9" height="15.0" fill="rgb(243,138,28)" rx="2" ry="2" />
<text x="1044.47" y="751.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (23 samples, 0.10%)</title><rect x="387.1" y="341" width="1.1" height="15.0" fill="rgb(229,39,20)" rx="2" ry="2" />
<text x="390.07" y="351.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb20KeyValueWriteBatchPB39InternalSerializeWithCachedSizesToArrayEbPh (2 samples, 0.01%)</title><rect x="544.0" y="757" width="0.1" height="15.0" fill="rgb(230,77,32)" rx="2" ry="2" />
<text x="546.96" y="767.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="624.2" y="661" width="0.1" height="15.0" fill="rgb(245,24,40)" rx="2" ry="2" />
<text x="627.22" y="671.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="962.9" y="597" width="0.2" height="15.0" fill="rgb(216,90,52)" rx="2" ry="2" />
<text x="965.92" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCallC2EPKNS0_12RemoteMethodERKSt10shared_ptrINS0_19OutboundCallMetricsEEPN6google8protobuf7MessageEPNS0_13RpcControllerEPNS0_10RpcMetricsESt8functionIFvvEEPNS0_10ThreadPoolE (12 samples, 0.05%)</title><rect x="544.3" y="837" width="0.6" height="15.0" fill="rgb(214,7,39)" rx="2" ry="2" />
<text x="547.31" y="847.5" ></text>
</g>
<g >
<title>iptable_security_hook (2 samples, 0.01%)</title><rect x="350.4" y="517" width="0.1" height="15.0" fill="rgb(216,180,11)" rx="2" ry="2" />
<text x="353.42" y="527.5" ></text>
</g>
<g >
<title>_ZN2yb5Mutex7ReleaseEv (9 samples, 0.04%)</title><rect x="598.3" y="933" width="0.4" height="15.0" fill="rgb(251,0,24)" rx="2" ry="2" />
<text x="601.29" y="943.5" ></text>
</g>
<g >
<title>ip_finish_output (112 samples, 0.48%)</title><rect x="351.6" y="533" width="5.7" height="15.0" fill="rgb(242,22,26)" rx="2" ry="2" />
<text x="354.62" y="543.5" ></text>
</g>
<g >
<title>tcp_rcv_established (32 samples, 0.14%)</title><rect x="341.3" y="261" width="1.6" height="15.0" fill="rgb(222,56,18)" rx="2" ry="2" />
<text x="344.30" y="271.5" ></text>
</g>
<g >
<title>perf_pmu_enable (3 samples, 0.01%)</title><rect x="110.5" y="597" width="0.2" height="15.0" fill="rgb(235,213,53)" rx="2" ry="2" />
<text x="113.55" y="607.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="1022.9" y="693" width="0.1" height="15.0" fill="rgb(252,118,39)" rx="2" ry="2" />
<text x="1025.89" y="703.5" ></text>
</g>
<g >
<title>__skb_clone (2 samples, 0.01%)</title><rect x="348.5" y="581" width="0.1" height="15.0" fill="rgb(236,178,14)" rx="2" ry="2" />
<text x="351.50" y="591.5" ></text>
</g>
<g >
<title>mntput (4 samples, 0.02%)</title><rect x="205.8" y="821" width="0.2" height="15.0" fill="rgb(228,129,40)" rx="2" ry="2" />
<text x="208.76" y="831.5" ></text>
</g>
<g >
<title>do_futex (19 samples, 0.08%)</title><rect x="765.7" y="741" width="0.9" height="15.0" fill="rgb(217,106,34)" rx="2" ry="2" />
<text x="768.65" y="751.5" ></text>
</g>
<g >
<title>iotp_TabletServ (1,287 samples, 5.49%)</title><rect x="417.2" y="981" width="64.8" height="15.0" fill="rgb(238,84,42)" rx="2" ry="2" />
<text x="420.23" y="991.5" >iotp_Ta..</text>
</g>
<g >
<title>smp_apic_timer_interrupt (87 samples, 0.37%)</title><rect x="109.5" y="725" width="4.4" height="15.0" fill="rgb(248,86,21)" rx="2" ry="2" />
<text x="112.54" y="735.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="417.5" y="933" width="0.2" height="15.0" fill="rgb(244,154,23)" rx="2" ry="2" />
<text x="420.48" y="943.5" ></text>
</g>
<g >
<title>timerfd_get_remaining (2 samples, 0.01%)</title><rect x="425.0" y="741" width="0.1" height="15.0" fill="rgb(210,226,23)" rx="2" ry="2" />
<text x="427.98" y="751.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="743.0" y="821" width="0.1" height="15.0" fill="rgb(247,215,14)" rx="2" ry="2" />
<text x="745.99" y="831.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (2 samples, 0.01%)</title><rect x="753.3" y="821" width="0.1" height="15.0" fill="rgb(214,47,48)" rx="2" ry="2" />
<text x="756.27" y="831.5" ></text>
</g>
<g >
<title>path_put (3 samples, 0.01%)</title><rect x="206.0" y="821" width="0.1" height="15.0" fill="rgb(227,103,23)" rx="2" ry="2" />
<text x="208.96" y="831.5" ></text>
</g>
<g >
<title>check_preempt_curr (2 samples, 0.01%)</title><rect x="747.0" y="485" width="0.1" height="15.0" fill="rgb(243,162,1)" rx="2" ry="2" />
<text x="750.02" y="495.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="732.3" y="661" width="0.1" height="15.0" fill="rgb(246,71,34)" rx="2" ry="2" />
<text x="735.32" y="671.5" ></text>
</g>
<g >
<title>activate_task (2 samples, 0.01%)</title><rect x="442.4" y="805" width="0.1" height="15.0" fill="rgb(241,28,53)" rx="2" ry="2" />
<text x="445.35" y="815.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2 samples, 0.01%)</title><rect x="614.6" y="805" width="0.1" height="15.0" fill="rgb(252,217,29)" rx="2" ry="2" />
<text x="617.55" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriverC2EPNS0_16OperationTrackerEPNS_9consensus9ConsensusEPNS_3log3LogEPNS0_8PreparerEPNS0_22OperationOrderVerifierENS_9TableTypeE (2 samples, 0.01%)</title><rect x="750.2" y="741" width="0.1" height="15.0" fill="rgb(251,172,44)" rx="2" ry="2" />
<text x="753.24" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter3keyEv (50 samples, 0.21%)</title><rect x="725.6" y="693" width="2.5" height="15.0" fill="rgb(227,227,9)" rx="2" ry="2" />
<text x="728.62" y="703.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (3 samples, 0.01%)</title><rect x="376.9" y="725" width="0.2" height="15.0" fill="rgb(213,57,1)" rx="2" ry="2" />
<text x="379.90" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb4util22FastDecodeSignedVarIntEPKhm@plt (12 samples, 0.05%)</title><rect x="940.2" y="693" width="0.6" height="15.0" fill="rgb(208,39,4)" rx="2" ry="2" />
<text x="943.16" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue34HybridTimeLeaseExpirationWatermarkEv (3 samples, 0.01%)</title><rect x="765.0" y="853" width="0.1" height="15.0" fill="rgb(254,34,31)" rx="2" ry="2" />
<text x="768.00" y="863.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv (18 samples, 0.08%)</title><rect x="715.6" y="693" width="0.9" height="15.0" fill="rgb(223,37,18)" rx="2" ry="2" />
<text x="718.55" y="703.5" ></text>
</g>
<g >
<title>check_preempt_curr (12 samples, 0.05%)</title><rect x="442.5" y="789" width="0.6" height="15.0" fill="rgb(239,217,13)" rx="2" ry="2" />
<text x="445.46" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb12RefCntBuffer7DoResetEPc (6 samples, 0.03%)</title><rect x="360.6" y="789" width="0.3" height="15.0" fill="rgb(233,183,32)" rx="2" ry="2" />
<text x="363.64" y="799.5" ></text>
</g>
<g >
<title>ttwu_do_activate (6 samples, 0.03%)</title><rect x="546.5" y="533" width="0.3" height="15.0" fill="rgb(205,58,24)" rx="2" ry="2" />
<text x="549.48" y="543.5" ></text>
</g>
<g >
<title>unroll_tree_refs (2 samples, 0.01%)</title><rect x="124.3" y="837" width="0.1" height="15.0" fill="rgb(211,0,46)" rx="2" ry="2" />
<text x="127.29" y="847.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (4 samples, 0.02%)</title><rect x="384.8" y="533" width="0.2" height="15.0" fill="rgb(247,58,1)" rx="2" ry="2" />
<text x="387.80" y="543.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (3 samples, 0.01%)</title><rect x="500.0" y="693" width="0.2" height="15.0" fill="rgb(252,94,52)" rx="2" ry="2" />
<text x="503.01" y="703.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (8 samples, 0.03%)</title><rect x="599.6" y="725" width="0.5" height="15.0" fill="rgb(210,171,14)" rx="2" ry="2" />
<text x="602.65" y="735.5" ></text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="715.4" y="533" width="0.1" height="15.0" fill="rgb(249,172,28)" rx="2" ry="2" />
<text x="718.40" y="543.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver20ConsensusServiceImpl15UpdateConsensusEPKNS_9consensus18ConsensusRequestPBEPNS2_19ConsensusResponsePBENS_3rpc10RpcContextE (3 samples, 0.01%)</title><rect x="621.7" y="885" width="0.2" height="15.0" fill="rgb(205,108,17)" rx="2" ry="2" />
<text x="624.70" y="895.5" ></text>
</g>
<g >
<title>deactivate_task (19 samples, 0.08%)</title><rect x="239.4" y="757" width="1.0" height="15.0" fill="rgb(245,212,38)" rx="2" ry="2" />
<text x="242.44" y="767.5" ></text>
</g>
<g >
<title>event_function (4 samples, 0.02%)</title><rect x="963.1" y="581" width="0.2" height="15.0" fill="rgb(208,192,45)" rx="2" ry="2" />
<text x="966.12" y="591.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState22GetLeaderStateUnlockedENS0_20LeaderLeaseCheckModeEPNSt6chrono10time_pointINS_15CoarseMonoClockENS3_8durationIlSt5ratioILl1ELl1000000000EEEEEE (2 samples, 0.01%)</title><rect x="536.9" y="885" width="0.1" height="15.0" fill="rgb(231,79,19)" rx="2" ry="2" />
<text x="539.91" y="895.5" ></text>
</g>
<g >
<title>__schedule (11 samples, 0.05%)</title><rect x="482.5" y="773" width="0.5" height="15.0" fill="rgb(245,162,43)" rx="2" ry="2" />
<text x="485.48" y="783.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2 samples, 0.01%)</title><rect x="228.9" y="805" width="0.1" height="15.0" fill="rgb(244,36,29)" rx="2" ry="2" />
<text x="231.92" y="815.5" ></text>
</g>
<g >
<title>sched_clock_cpu (9 samples, 0.04%)</title><rect x="116.7" y="741" width="0.4" height="15.0" fill="rgb(240,179,13)" rx="2" ry="2" />
<text x="119.69" y="751.5" ></text>
</g>
<g >
<title>select_idle_sibling (3 samples, 0.01%)</title><rect x="473.9" y="645" width="0.2" height="15.0" fill="rgb(234,82,22)" rx="2" ry="2" />
<text x="476.92" y="655.5" ></text>
</g>
<g >
<title>resched_curr (9 samples, 0.04%)</title><rect x="442.6" y="773" width="0.5" height="15.0" fill="rgb(253,26,41)" rx="2" ry="2" />
<text x="445.61" y="783.5" ></text>
</g>
<g >
<title>enqueue_entity (2 samples, 0.01%)</title><rect x="442.4" y="773" width="0.1" height="15.0" fill="rgb(224,184,22)" rx="2" ry="2" />
<text x="445.35" y="783.5" ></text>
</g>
<g >
<title>hrtimer_cancel (7 samples, 0.03%)</title><rect x="412.9" y="789" width="0.4" height="15.0" fill="rgb(254,197,47)" rx="2" ry="2" />
<text x="415.90" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc8Acceptor9RunThreadEv (4 samples, 0.02%)</title><rect x="394.9" y="933" width="0.2" height="15.0" fill="rgb(223,89,50)" rx="2" ry="2" />
<text x="397.92" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker17UpdateConsumptionEb (2 samples, 0.01%)</title><rect x="621.9" y="837" width="0.1" height="15.0" fill="rgb(212,23,47)" rx="2" ry="2" />
<text x="624.90" y="847.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (32 samples, 0.14%)</title><rect x="10.5" y="933" width="1.6" height="15.0" fill="rgb(251,62,14)" rx="2" ry="2" />
<text x="13.50" y="943.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (8 samples, 0.03%)</title><rect x="482.5" y="741" width="0.4" height="15.0" fill="rgb(239,82,10)" rx="2" ry="2" />
<text x="485.53" y="751.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.02%)</title><rect x="399.9" y="661" width="0.2" height="15.0" fill="rgb(224,206,27)" rx="2" ry="2" />
<text x="402.86" y="671.5" ></text>
</g>
<g >
<title>__kfree_skb (5 samples, 0.02%)</title><rect x="382.5" y="693" width="0.3" height="15.0" fill="rgb(220,6,21)" rx="2" ry="2" />
<text x="385.54" y="703.5" ></text>
</g>
<g >
<title>syscall_trace_enter (2 samples, 0.01%)</title><rect x="600.7" y="885" width="0.1" height="15.0" fill="rgb(221,224,25)" rx="2" ry="2" />
<text x="603.70" y="895.5" ></text>
</g>
<g >
<title>sys_futex (15 samples, 0.06%)</title><rect x="371.9" y="693" width="0.7" height="15.0" fill="rgb(206,201,48)" rx="2" ry="2" />
<text x="374.86" y="703.5" ></text>
</g>
<g >
<title>__wake_up_common (23 samples, 0.10%)</title><rect x="353.7" y="165" width="1.2" height="15.0" fill="rgb(229,97,47)" rx="2" ry="2" />
<text x="356.74" y="175.5" ></text>
</g>
<g >
<title>_ZNK2yb12HdrHistogram11BucketIndexEm (6 samples, 0.03%)</title><rect x="364.2" y="789" width="0.3" height="15.0" fill="rgb(216,172,31)" rx="2" ry="2" />
<text x="367.16" y="799.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (922 samples, 3.93%)</title><rect x="155.4" y="821" width="46.4" height="15.0" fill="rgb(243,90,37)" rx="2" ry="2" />
<text x="158.41" y="831.5" >sche..</text>
</g>
<g >
<title>_ZNK7rocksdb21InternalKeyComparator7CompareERKN2yb5SliceES4_ (11 samples, 0.05%)</title><rect x="902.9" y="677" width="0.5" height="15.0" fill="rgb(224,193,4)" rx="2" ry="2" />
<text x="905.85" y="687.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEj (2 samples, 0.01%)</title><rect x="431.6" y="805" width="0.1" height="15.0" fill="rgb(220,153,39)" rx="2" ry="2" />
<text x="434.58" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus24UpdateMajorityReplicatedERKNS0_22MajorityReplicatedDataEPNS_6OpIdPBE (171 samples, 0.73%)</title><rect x="530.9" y="901" width="8.6" height="15.0" fill="rgb(245,180,35)" rx="2" ry="2" />
<text x="533.87" y="911.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="555.2" y="901" width="0.1" height="15.0" fill="rgb(236,142,46)" rx="2" ry="2" />
<text x="558.24" y="911.5" ></text>
</g>
<g >
<title>hash_conntrack_raw (3 samples, 0.01%)</title><rect x="351.0" y="485" width="0.1" height="15.0" fill="rgb(205,196,4)" rx="2" ry="2" />
<text x="353.97" y="495.5" ></text>
</g>
<g >
<title>schedule (70 samples, 0.30%)</title><rect x="1185.2" y="821" width="3.5" height="15.0" fill="rgb(248,35,47)" rx="2" ry="2" />
<text x="1188.17" y="831.5" ></text>
</g>
<g >
<title>_ZN3cds2gc3DHP5Guard6unlinkEv (4 samples, 0.02%)</title><rect x="1060.4" y="933" width="0.2" height="15.0" fill="rgb(227,220,10)" rx="2" ry="2" />
<text x="1063.40" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb14ParseIntentKeyENS_5SliceES1_ (10 samples, 0.04%)</title><rect x="731.4" y="709" width="0.5" height="15.0" fill="rgb(239,21,54)" rx="2" ry="2" />
<text x="734.36" y="719.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.02%)</title><rect x="394.9" y="773" width="0.2" height="15.0" fill="rgb(205,17,46)" rx="2" ry="2" />
<text x="397.92" y="783.5" ></text>
</g>
<g >
<title>account_entity_dequeue (6 samples, 0.03%)</title><rect x="163.9" y="709" width="0.3" height="15.0" fill="rgb(233,117,6)" rx="2" ry="2" />
<text x="166.92" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb12HdrHistogram11IncrementByEll (2 samples, 0.01%)</title><rect x="620.7" y="885" width="0.1" height="15.0" fill="rgb(250,204,39)" rx="2" ry="2" />
<text x="623.74" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue23UpdateAllReplicatedOpIdEPNS_6OpIdPBE (3 samples, 0.01%)</title><rect x="764.6" y="853" width="0.2" height="15.0" fill="rgb(215,0,52)" rx="2" ry="2" />
<text x="767.64" y="863.5" ></text>
</g>
<g >
<title>hrtimer_init (2 samples, 0.01%)</title><rect x="232.4" y="789" width="0.1" height="15.0" fill="rgb(252,89,9)" rx="2" ry="2" />
<text x="235.40" y="799.5" ></text>
</g>
<g >
<title>schedule (32 samples, 0.14%)</title><rect x="415.6" y="805" width="1.6" height="15.0" fill="rgb(247,159,54)" rx="2" ry="2" />
<text x="418.62" y="815.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (33 samples, 0.14%)</title><rect x="44.6" y="677" width="1.7" height="15.0" fill="rgb(251,214,26)" rx="2" ry="2" />
<text x="47.64" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (33 samples, 0.14%)</title><rect x="415.6" y="885" width="1.6" height="15.0" fill="rgb(252,177,23)" rx="2" ry="2" />
<text x="418.57" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken6SubmitESt10shared_ptrINS_8RunnableEE (31 samples, 0.13%)</title><rect x="765.1" y="821" width="1.6" height="15.0" fill="rgb(233,102,54)" rx="2" ry="2" />
<text x="768.15" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor31DrainTaskQueueAndCheckIfClosingEv (7 samples, 0.03%)</title><rect x="366.9" y="885" width="0.4" height="15.0" fill="rgb(206,12,14)" rx="2" ry="2" />
<text x="369.93" y="895.5" ></text>
</g>
<g >
<title>native_write_msr (3 samples, 0.01%)</title><rect x="442.9" y="725" width="0.2" height="15.0" fill="rgb(215,192,34)" rx="2" ry="2" />
<text x="445.91" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="400.5" y="837" width="0.4" height="15.0" fill="rgb(247,50,44)" rx="2" ry="2" />
<text x="403.51" y="847.5" ></text>
</g>
<g >
<title>[unknown] (48 samples, 0.20%)</title><rect x="19.4" y="885" width="2.4" height="15.0" fill="rgb(250,112,26)" rx="2" ry="2" />
<text x="22.37" y="895.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.02%)</title><rect x="396.1" y="677" width="0.2" height="15.0" fill="rgb(254,72,4)" rx="2" ry="2" />
<text x="399.13" y="687.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.03%)</title><rect x="605.1" y="933" width="0.4" height="15.0" fill="rgb(235,159,21)" rx="2" ry="2" />
<text x="608.09" y="943.5" ></text>
</g>
<g >
<title>_ZNK2yb17ConditionVariable9WaitUntilERKNS_8MonoTimeE (182 samples, 0.78%)</title><rect x="404.2" y="901" width="9.2" height="15.0" fill="rgb(236,71,51)" rx="2" ry="2" />
<text x="407.24" y="911.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2 samples, 0.01%)</title><rect x="452.8" y="741" width="0.1" height="15.0" fill="rgb(226,62,45)" rx="2" ry="2" />
<text x="455.83" y="751.5" ></text>
</g>
<g >
<title>_ZNK2yb9MonoDelta13ToNanosecondsEv (2 samples, 0.01%)</title><rect x="553.2" y="917" width="0.1" height="15.0" fill="rgb(239,1,15)" rx="2" ry="2" />
<text x="556.17" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb18MaintenanceManager10FindBestOpEv (16 samples, 0.07%)</title><rect x="483.5" y="917" width="0.8" height="15.0" fill="rgb(210,129,43)" rx="2" ry="2" />
<text x="486.54" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet17GetIsolationLevelERKNS_21TransactionMetadataPBE (2 samples, 0.01%)</title><rect x="737.5" y="853" width="0.1" height="15.0" fill="rgb(207,223,8)" rx="2" ry="2" />
<text x="740.46" y="863.5" ></text>
</g>
<g >
<title>__fget (4 samples, 0.02%)</title><rect x="419.3" y="821" width="0.2" height="15.0" fill="rgb(245,200,38)" rx="2" ry="2" />
<text x="422.29" y="831.5" ></text>
</g>
<g >
<title>rw_verify_area (2 samples, 0.01%)</title><rect x="747.3" y="661" width="0.1" height="15.0" fill="rgb(217,54,40)" rx="2" ry="2" />
<text x="750.27" y="671.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="996.7" y="677" width="0.2" height="15.0" fill="rgb(206,179,14)" rx="2" ry="2" />
<text x="999.71" y="687.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator3keyEv (5 samples, 0.02%)</title><rect x="1040.5" y="741" width="0.2" height="15.0" fill="rgb(220,127,20)" rx="2" ry="2" />
<text x="1043.46" y="751.5" ></text>
</g>
<g >
<title>_ZN7rocksdb18WriteBatchInternal10InsertIntoERKNS_10autovectorIPNS_11WriteThread6WriterELm8EEEmPNS_21ColumnFamilyMemTablesEPNS_14FlushSchedulerEbmPNS_2DBEbb (13 samples, 0.06%)</title><rect x="532.7" y="661" width="0.7" height="15.0" fill="rgb(213,149,11)" rx="2" ry="2" />
<text x="535.73" y="671.5" ></text>
</g>
<g >
<title>tc_malloc (5 samples, 0.02%)</title><rect x="379.3" y="789" width="0.2" height="15.0" fill="rgb(248,144,9)" rx="2" ry="2" />
<text x="382.27" y="799.5" ></text>
</g>
<g >
<title>ip_finish_output2 (72 samples, 0.31%)</title><rect x="385.7" y="565" width="3.6" height="15.0" fill="rgb(218,139,19)" rx="2" ry="2" />
<text x="388.66" y="575.5" ></text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase6AddRefEv (4 samples, 0.02%)</title><rect x="549.8" y="789" width="0.2" height="15.0" fill="rgb(217,48,0)" rx="2" ry="2" />
<text x="552.80" y="799.5" ></text>
</g>
<g >
<title>mod_timer (4 samples, 0.02%)</title><rect x="358.0" y="549" width="0.2" height="15.0" fill="rgb(210,149,1)" rx="2" ry="2" />
<text x="360.97" y="559.5" ></text>
</g>
<g >
<title>mntput (3 samples, 0.01%)</title><rect x="123.7" y="821" width="0.1" height="15.0" fill="rgb(228,66,31)" rx="2" ry="2" />
<text x="126.69" y="831.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (5 samples, 0.02%)</title><rect x="490.8" y="661" width="0.2" height="15.0" fill="rgb(221,27,11)" rx="2" ry="2" />
<text x="493.79" y="671.5" ></text>
</g>
<g >
<title>TabletServer_re (3,551 samples, 15.15%)</title><rect x="215.9" y="981" width="178.8" height="15.0" fill="rgb(231,124,35)" rx="2" ry="2" />
<text x="218.93" y="991.5" >TabletServer_re</text>
</g>
<g >
<title>ttwu_do_activate (2 samples, 0.01%)</title><rect x="399.1" y="661" width="0.1" height="15.0" fill="rgb(223,55,34)" rx="2" ry="2" />
<text x="402.05" y="671.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (32 samples, 0.14%)</title><rect x="415.6" y="709" width="1.6" height="15.0" fill="rgb(231,64,14)" rx="2" ry="2" />
<text x="418.62" y="719.5" ></text>
</g>
<g >
<title>update_curr (2 samples, 0.01%)</title><rect x="1185.5" y="741" width="0.1" height="15.0" fill="rgb(207,12,48)" rx="2" ry="2" />
<text x="1188.47" y="751.5" ></text>
</g>
<g >
<title>check_preempt_curr (4 samples, 0.02%)</title><rect x="376.6" y="581" width="0.2" height="15.0" fill="rgb(233,91,24)" rx="2" ry="2" />
<text x="379.60" y="591.5" ></text>
</g>
<g >
<title>_ZN4base8SpinLock8SpinLoopElPi (4 samples, 0.02%)</title><rect x="550.7" y="869" width="0.2" height="15.0" fill="rgb(208,185,11)" rx="2" ry="2" />
<text x="553.71" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb10hash_valueERKN5boost4asio2ip14basic_endpointINS2_3tcpEEE (3 samples, 0.01%)</title><rect x="364.7" y="821" width="0.2" height="15.0" fill="rgb(242,226,16)" rx="2" ry="2" />
<text x="367.71" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="400.2" y="853" width="0.1" height="15.0" fill="rgb(233,157,43)" rx="2" ry="2" />
<text x="403.21" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet19WriteOperationState6CommitEv (3 samples, 0.01%)</title><rect x="534.6" y="725" width="0.2" height="15.0" fill="rgb(233,11,0)" rx="2" ry="2" />
<text x="537.65" y="735.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (57 samples, 0.24%)</title><rect x="328.1" y="837" width="2.9" height="15.0" fill="rgb(207,94,50)" rx="2" ry="2" />
<text x="331.11" y="847.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (2 samples, 0.01%)</title><rect x="757.3" y="789" width="0.1" height="15.0" fill="rgb(251,87,23)" rx="2" ry="2" />
<text x="760.34" y="799.5" ></text>
</g>
<g >
<title>ip_output (2 samples, 0.01%)</title><rect x="341.8" y="149" width="0.1" height="15.0" fill="rgb(222,105,34)" rx="2" ry="2" />
<text x="344.76" y="159.5" ></text>
</g>
<g >
<title>wake_up_q (14 samples, 0.06%)</title><rect x="376.1" y="645" width="0.7" height="15.0" fill="rgb(208,138,20)" rx="2" ry="2" />
<text x="379.14" y="655.5" ></text>
</g>
<g >
<title>ep_poll (1,034 samples, 4.41%)</title><rect x="150.8" y="837" width="52.0" height="15.0" fill="rgb(246,216,20)" rx="2" ry="2" />
<text x="153.78" y="847.5" >ep_poll</text>
</g>
<g >
<title>pick_next_task_idle (8 samples, 0.03%)</title><rect x="476.1" y="789" width="0.4" height="15.0" fill="rgb(240,49,31)" rx="2" ry="2" />
<text x="479.09" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue13OpIdWatermarkEv (14 samples, 0.06%)</title><rect x="763.7" y="853" width="0.7" height="15.0" fill="rgb(214,180,4)" rx="2" ry="2" />
<text x="766.74" y="863.5" ></text>
</g>
<g >
<title>native_write_msr (2 samples, 0.01%)</title><rect x="559.5" y="677" width="0.1" height="15.0" fill="rgb(242,47,7)" rx="2" ry="2" />
<text x="562.52" y="687.5" ></text>
</g>
<g >
<title>update_rq_clock (5 samples, 0.02%)</title><rect x="476.6" y="789" width="0.2" height="15.0" fill="rgb(252,184,29)" rx="2" ry="2" />
<text x="479.59" y="799.5" ></text>
</g>
<g >
<title>__libc_disable_asynccancel (2 samples, 0.01%)</title><rect x="432.6" y="917" width="0.1" height="15.0" fill="rgb(236,158,32)" rx="2" ry="2" />
<text x="435.64" y="927.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (62 samples, 0.26%)</title><rect x="420.4" y="821" width="3.1" height="15.0" fill="rgb(222,99,50)" rx="2" ry="2" />
<text x="423.35" y="831.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (16 samples, 0.07%)</title><rect x="1173.9" y="773" width="0.8" height="15.0" fill="rgb(253,217,36)" rx="2" ry="2" />
<text x="1176.94" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPB5ClearEv (3 samples, 0.01%)</title><rect x="378.5" y="693" width="0.1" height="15.0" fill="rgb(207,133,49)" rx="2" ry="2" />
<text x="381.46" y="703.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="218.9" y="917" width="0.1" height="15.0" fill="rgb(243,72,46)" rx="2" ry="2" />
<text x="221.90" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb6ResultINS_5docdb12_GLOBAL__N_129DecodeStrongWriteIntentResultEE7get_ptrEv (10 samples, 0.04%)</title><rect x="973.2" y="757" width="0.5" height="15.0" fill="rgb(210,201,18)" rx="2" ry="2" />
<text x="976.24" y="767.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="392.0" y="869" width="0.1" height="15.0" fill="rgb(252,224,49)" rx="2" ry="2" />
<text x="394.95" y="879.5" ></text>
</g>
<g >
<title>try_to_wake_up (24 samples, 0.10%)</title><rect x="755.5" y="741" width="1.2" height="15.0" fill="rgb(253,75,10)" rx="2" ry="2" />
<text x="758.48" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5valueEv (2 samples, 0.01%)</title><rect x="713.2" y="645" width="0.1" height="15.0" fill="rgb(243,36,50)" rx="2" ry="2" />
<text x="716.19" y="655.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (60 samples, 0.26%)</title><rect x="340.8" y="453" width="3.0" height="15.0" fill="rgb(223,85,46)" rx="2" ry="2" />
<text x="343.80" y="463.5" ></text>
</g>
<g >
<title>__tcp_send_ack.part.32 (119 samples, 0.51%)</title><rect x="383.5" y="661" width="6.0" height="15.0" fill="rgb(210,217,37)" rx="2" ry="2" />
<text x="386.55" y="671.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5valueEv (4 samples, 0.02%)</title><rect x="736.4" y="709" width="0.2" height="15.0" fill="rgb(226,123,30)" rx="2" ry="2" />
<text x="739.45" y="719.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (5 samples, 0.02%)</title><rect x="595.8" y="773" width="0.3" height="15.0" fill="rgb(242,204,8)" rx="2" ry="2" />
<text x="598.82" y="783.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (230 samples, 0.98%)</title><rect x="347.3" y="661" width="11.6" height="15.0" fill="rgb(252,125,42)" rx="2" ry="2" />
<text x="350.29" y="671.5" ></text>
</g>
<g >
<title>epoll_poll (32 samples, 0.14%)</title><rect x="212.0" y="901" width="1.6" height="15.0" fill="rgb(234,12,49)" rx="2" ry="2" />
<text x="215.00" y="911.5" ></text>
</g>
<g >
<title>hrtimer_cancel (34 samples, 0.15%)</title><rect x="522.8" y="821" width="1.7" height="15.0" fill="rgb(214,133,31)" rx="2" ry="2" />
<text x="525.81" y="831.5" ></text>
</g>
<g >
<title>acceptor-24054 (4 samples, 0.02%)</title><rect x="395.1" y="981" width="0.2" height="15.0" fill="rgb(240,50,35)" rx="2" ry="2" />
<text x="398.13" y="991.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (574 samples, 2.45%)</title><rect x="561.3" y="709" width="28.9" height="15.0" fill="rgb(217,217,28)" rx="2" ry="2" />
<text x="564.33" y="719.5" >in..</text>
</g>
<g >
<title>futex_wait (175 samples, 0.75%)</title><rect x="404.4" y="805" width="8.9" height="15.0" fill="rgb(224,216,32)" rx="2" ry="2" />
<text x="407.44" y="815.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc10Connection4IdleEPSs (2 samples, 0.01%)</title><rect x="366.5" y="853" width="0.1" height="15.0" fill="rgb(220,163,1)" rx="2" ry="2" />
<text x="369.53" y="863.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5valueEv (8 samples, 0.03%)</title><rect x="1050.7" y="757" width="0.4" height="15.0" fill="rgb(225,72,33)" rx="2" ry="2" />
<text x="1053.68" y="767.5" ></text>
</g>
<g >
<title>schedule (8 samples, 0.03%)</title><rect x="599.6" y="821" width="0.5" height="15.0" fill="rgb(216,19,53)" rx="2" ry="2" />
<text x="602.65" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb6master21TSHeartbeatResponsePBD2Ev (6 samples, 0.03%)</title><rect x="414.7" y="885" width="0.3" height="15.0" fill="rgb(217,35,44)" rx="2" ry="2" />
<text x="417.66" y="895.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (4 samples, 0.02%)</title><rect x="437.1" y="885" width="0.2" height="15.0" fill="rgb(209,148,20)" rx="2" ry="2" />
<text x="440.07" y="895.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator11IsKeyPinnedEv (7 samples, 0.03%)</title><rect x="1037.4" y="725" width="0.3" height="15.0" fill="rgb(238,128,4)" rx="2" ry="2" />
<text x="1040.39" y="735.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.07%)</title><rect x="371.8" y="709" width="0.9" height="15.0" fill="rgb(232,128,41)" rx="2" ry="2" />
<text x="374.81" y="719.5" ></text>
</g>
<g >
<title>_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN2yb6tablet12PreparerImplEFvvEEPS5_EEE10_M_managerERSt9_Any_dataRKSD_St18_Manager_operation (2 samples, 0.01%)</title><rect x="496.4" y="917" width="0.1" height="15.0" fill="rgb(218,57,0)" rx="2" ry="2" />
<text x="499.43" y="927.5" ></text>
</g>
<g >
<title>iptable_nat_ipv4_local_fn (2 samples, 0.01%)</title><rect x="349.9" y="517" width="0.1" height="15.0" fill="rgb(247,90,40)" rx="2" ry="2" />
<text x="352.86" y="527.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator13InitDataBlockEv.part.107.constprop.115 (7 samples, 0.03%)</title><rect x="675.9" y="645" width="0.4" height="15.0" fill="rgb(248,64,10)" rx="2" ry="2" />
<text x="678.93" y="655.5" ></text>
</g>
<g >
<title>sys_epoll_wait (1,894 samples, 8.08%)</title><rect x="26.6" y="853" width="95.3" height="15.0" fill="rgb(246,157,10)" rx="2" ry="2" />
<text x="29.57" y="863.5" >sys_epoll_w..</text>
</g>
<g >
<title>__memcpy_avx_unaligned (2 samples, 0.01%)</title><rect x="543.5" y="773" width="0.1" height="15.0" fill="rgb(248,172,7)" rx="2" ry="2" />
<text x="546.46" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log8Appender9GroupWorkEv (95 samples, 0.41%)</title><rect x="395.7" y="885" width="4.8" height="15.0" fill="rgb(218,138,51)" rx="2" ry="2" />
<text x="398.68" y="895.5" ></text>
</g>
<g >
<title>mark_wake_futex (3 samples, 0.01%)</title><rect x="441.2" y="853" width="0.2" height="15.0" fill="rgb(245,14,15)" rx="2" ry="2" />
<text x="444.25" y="863.5" ></text>
</g>
<g >
<title>ip_finish_output (2 samples, 0.01%)</title><rect x="341.8" y="133" width="0.1" height="15.0" fill="rgb(219,164,14)" rx="2" ry="2" />
<text x="344.76" y="143.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (5 samples, 0.02%)</title><rect x="899.7" y="677" width="0.2" height="15.0" fill="rgb(241,200,12)" rx="2" ry="2" />
<text x="902.68" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb7tserver14WriteRequestPB39InternalSerializeWithCachedSizesToArrayEbPh (3 samples, 0.01%)</title><rect x="543.9" y="773" width="0.2" height="15.0" fill="rgb(247,210,2)" rx="2" ry="2" />
<text x="546.91" y="783.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet6Tablet20GetTotalSSTFileSizesEv (2 samples, 0.01%)</title><rect x="415.1" y="885" width="0.1" height="15.0" fill="rgb(218,81,36)" rx="2" ry="2" />
<text x="418.12" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken13SubmitClosureENS_8CallbackIFvvEEE (4 samples, 0.02%)</title><rect x="399.0" y="805" width="0.2" height="15.0" fill="rgb(239,118,23)" rx="2" ry="2" />
<text x="402.00" y="815.5" ></text>
</g>
<g >
<title>kfree (2 samples, 0.01%)</title><rect x="206.2" y="837" width="0.1" height="15.0" fill="rgb(236,86,14)" rx="2" ry="2" />
<text x="209.21" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPB8CopyFromERKS0_ (2 samples, 0.01%)</title><rect x="762.4" y="853" width="0.1" height="15.0" fill="rgb(240,24,7)" rx="2" ry="2" />
<text x="765.43" y="863.5" ></text>
</g>
<g >
<title>_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv (16 samples, 0.07%)</title><rect x="773.5" y="901" width="0.8" height="15.0" fill="rgb(227,143,31)" rx="2" ry="2" />
<text x="776.46" y="911.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="963.3" y="597" width="0.1" height="15.0" fill="rgb(213,104,44)" rx="2" ry="2" />
<text x="966.32" y="607.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator3keyEv (22 samples, 0.09%)</title><rect x="708.4" y="661" width="1.1" height="15.0" fill="rgb(222,87,3)" rx="2" ry="2" />
<text x="711.35" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall9SerializeEPN5boost9container17small_vector_baseINS_12RefCntBufferENS3_13new_allocatorIS5_EEEE (2 samples, 0.01%)</title><rect x="362.4" y="789" width="0.1" height="15.0" fill="rgb(224,107,39)" rx="2" ry="2" />
<text x="365.45" y="799.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5ValidEv (6 samples, 0.03%)</title><rect x="878.3" y="661" width="0.3" height="15.0" fill="rgb(223,190,45)" rx="2" ry="2" />
<text x="881.33" y="671.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (30 samples, 0.13%)</title><rect x="331.2" y="885" width="1.5" height="15.0" fill="rgb(214,78,38)" rx="2" ry="2" />
<text x="334.18" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock8NowRangeEv (4 samples, 0.02%)</title><rect x="548.7" y="885" width="0.2" height="15.0" fill="rgb(245,7,17)" rx="2" ry="2" />
<text x="551.74" y="895.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="976.1" y="661" width="0.1" height="15.0" fill="rgb(250,213,18)" rx="2" ry="2" />
<text x="979.11" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13ScheduledTaskIZNS0_13PeriodicTimer8CallbackElEUlRKNS_6StatusEE_E3RunES5_ (62 samples, 0.26%)</title><rect x="428.2" y="901" width="3.1" height="15.0" fill="rgb(251,50,39)" rx="2" ry="2" />
<text x="431.21" y="911.5" ></text>
</g>
<g >
<title>_ZN3cds9intrusive11BasketQueueINS_2gc3DHPENS_9container7details17make_basket_queueIS3_PN2yb3rpc12_GLOBAL__N_16WorkerENS4_12basket_queue6traitsEE9node_typeENSE_16intrusive_traitsEE10do_dequeueERNSH_14dequeue_resultEb.constprop.156 (5 samples, 0.02%)</title><rect x="375.2" y="709" width="0.3" height="15.0" fill="rgb(224,148,48)" rx="2" ry="2" />
<text x="378.24" y="719.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="767.9" y="789" width="0.1" height="15.0" fill="rgb(254,43,36)" rx="2" ry="2" />
<text x="770.87" y="799.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="732.3" y="645" width="0.1" height="15.0" fill="rgb(239,226,39)" rx="2" ry="2" />
<text x="735.32" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_poll (4 samples, 0.02%)</title><rect x="1189.5" y="949" width="0.2" height="15.0" fill="rgb(230,168,44)" rx="2" ry="2" />
<text x="1192.55" y="959.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal14WireFormatLite11ReadMessageEPNS0_2io16CodedInputStreamEPNS0_11MessageLiteE (11 samples, 0.05%)</title><rect x="622.4" y="805" width="0.6" height="15.0" fill="rgb(209,68,39)" rx="2" ry="2" />
<text x="625.41" y="815.5" ></text>
</g>
<g >
<title>__wake_up_common (21 samples, 0.09%)</title><rect x="546.0" y="629" width="1.0" height="15.0" fill="rgb(209,137,30)" rx="2" ry="2" />
<text x="548.97" y="639.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,182 samples, 9.31%)</title><rect x="221.3" y="885" width="109.9" height="15.0" fill="rgb(209,151,2)" rx="2" ry="2" />
<text x="224.32" y="895.5" >entry_SYSCALL..</text>
</g>
<g >
<title>__netif_receive_skb (56 samples, 0.24%)</title><rect x="341.0" y="389" width="2.8" height="15.0" fill="rgb(243,114,15)" rx="2" ry="2" />
<text x="344.00" y="399.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc12OutboundData10IsFinishedEv (2 samples, 0.01%)</title><rect x="344.9" y="789" width="0.1" height="15.0" fill="rgb(205,146,47)" rx="2" ry="2" />
<text x="347.88" y="799.5" ></text>
</g>
<g >
<title>futex_requeue (2 samples, 0.01%)</title><rect x="400.2" y="789" width="0.1" height="15.0" fill="rgb(238,200,38)" rx="2" ry="2" />
<text x="403.21" y="799.5" ></text>
</g>
<g >
<title>__do_softirq (2 samples, 0.01%)</title><rect x="198.9" y="693" width="0.1" height="15.0" fill="rgb(217,220,41)" rx="2" ry="2" />
<text x="201.86" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall23SerializeResponseBufferERKN6google8protobuf11MessageLiteEb (7 samples, 0.03%)</title><rect x="747.5" y="805" width="0.4" height="15.0" fill="rgb(230,1,12)" rx="2" ry="2" />
<text x="750.53" y="815.5" ></text>
</g>
<g >
<title>kfree (2 samples, 0.01%)</title><rect x="329.6" y="821" width="0.1" height="15.0" fill="rgb(239,107,50)" rx="2" ry="2" />
<text x="332.62" y="831.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (7 samples, 0.03%)</title><rect x="116.8" y="709" width="0.3" height="15.0" fill="rgb(228,65,25)" rx="2" ry="2" />
<text x="119.79" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall9SetQueuedEv (14 samples, 0.06%)</title><rect x="363.9" y="821" width="0.7" height="15.0" fill="rgb(221,100,48)" rx="2" ry="2" />
<text x="366.86" y="831.5" ></text>
</g>
<g >
<title>__schedule (831 samples, 3.55%)</title><rect x="159.6" y="773" width="41.8" height="15.0" fill="rgb(234,187,46)" rx="2" ry="2" />
<text x="162.59" y="783.5" >__s..</text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.01%)</title><rect x="399.0" y="773" width="0.2" height="15.0" fill="rgb(210,25,41)" rx="2" ry="2" />
<text x="402.00" y="783.5" ></text>
</g>
<g >
<title>update_process_times (5 samples, 0.02%)</title><rect x="1046.3" y="645" width="0.3" height="15.0" fill="rgb(254,208,15)" rx="2" ry="2" />
<text x="1049.30" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus19GetRaftConfigMemberERKNS0_12RaftConfigPBERKSsPNS0_10RaftPeerPBE (2 samples, 0.01%)</title><rect x="772.1" y="869" width="0.1" height="15.0" fill="rgb(213,107,33)" rx="2" ry="2" />
<text x="775.15" y="879.5" ></text>
</g>
<g >
<title>sock_recvmsg (153 samples, 0.65%)</title><rect x="382.2" y="741" width="7.7" height="15.0" fill="rgb(208,129,22)" rx="2" ry="2" />
<text x="385.19" y="751.5" ></text>
</g>
<g >
<title>__fget_light (6 samples, 0.03%)</title><rect x="150.4" y="837" width="0.3" height="15.0" fill="rgb(238,125,40)" rx="2" ry="2" />
<text x="153.38" y="847.5" ></text>
</g>
<g >
<title>native_write_msr (2 samples, 0.01%)</title><rect x="546.7" y="437" width="0.1" height="15.0" fill="rgb(222,181,27)" rx="2" ry="2" />
<text x="549.68" y="447.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="751.6" y="741" width="0.1" height="15.0" fill="rgb(240,25,0)" rx="2" ry="2" />
<text x="754.60" y="751.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (4 samples, 0.02%)</title><rect x="376.6" y="597" width="0.2" height="15.0" fill="rgb(215,101,48)" rx="2" ry="2" />
<text x="379.60" y="607.5" ></text>
</g>
<g >
<title>_ZN7rocksdb14StatisticsImpl10recordTickEjm (49 samples, 0.21%)</title><rect x="973.7" y="757" width="2.5" height="15.0" fill="rgb(241,123,41)" rx="2" ry="2" />
<text x="976.75" y="767.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="828.5" y="581" width="0.1" height="15.0" fill="rgb(226,76,7)" rx="2" ry="2" />
<text x="831.49" y="591.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (56 samples, 0.24%)</title><rect x="395.7" y="837" width="2.8" height="15.0" fill="rgb(228,182,8)" rx="2" ry="2" />
<text x="398.68" y="847.5" ></text>
</g>
<g >
<title>ev_invoke_pending (1,163 samples, 4.96%)</title><rect x="336.1" y="901" width="58.6" height="15.0" fill="rgb(235,193,27)" rx="2" ry="2" />
<text x="339.12" y="911.5" >ev_inv..</text>
</g>
<g >
<title>nf_hook_slow (5 samples, 0.02%)</title><rect x="355.2" y="325" width="0.3" height="15.0" fill="rgb(230,150,16)" rx="2" ry="2" />
<text x="358.25" y="335.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15BlockBasedTable21GetDataBlockFromCacheERKN2yb5SliceES4_PNS_5CacheES6_PNS_10StatisticsERKNS_11ReadOptionsEPNS0_13CachableEntryINS_5BlockEEEjNS_9BlockTypeERKSt10shared_ptrINS1_10MemTrackerEE (3 samples, 0.01%)</title><rect x="675.9" y="613" width="0.2" height="15.0" fill="rgb(219,80,25)" rx="2" ry="2" />
<text x="678.93" y="623.5" ></text>
</g>
<g >
<title>nf_conntrack_in (15 samples, 0.06%)</title><rect x="384.6" y="549" width="0.8" height="15.0" fill="rgb(244,228,24)" rx="2" ry="2" />
<text x="387.60" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15 samples, 0.06%)</title><rect x="334.1" y="885" width="0.8" height="15.0" fill="rgb(218,51,27)" rx="2" ry="2" />
<text x="337.10" y="895.5" ></text>
</g>
<g >
<title>sys_futex (3 samples, 0.01%)</title><rect x="399.0" y="725" width="0.2" height="15.0" fill="rgb(226,96,1)" rx="2" ry="2" />
<text x="402.00" y="735.5" ></text>
</g>
<g >
<title>timerqueue_add (59 samples, 0.25%)</title><rect x="38.5" y="757" width="3.0" height="15.0" fill="rgb(223,209,24)" rx="2" ry="2" />
<text x="41.55" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection17QueueOutboundCallERKSt10shared_ptrINS0_12OutboundCallEE (2 samples, 0.01%)</title><rect x="361.6" y="853" width="0.1" height="15.0" fill="rgb(253,133,46)" rx="2" ry="2" />
<text x="364.64" y="863.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (3 samples, 0.01%)</title><rect x="539.3" y="885" width="0.1" height="15.0" fill="rgb(228,46,17)" rx="2" ry="2" />
<text x="542.28" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall10InitHeaderEPNS0_13RequestHeaderE (3 samples, 0.01%)</title><rect x="542.8" y="821" width="0.2" height="15.0" fill="rgb(247,143,50)" rx="2" ry="2" />
<text x="545.80" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime10DecodeFromEPNS_5SliceE (623 samples, 2.66%)</title><rect x="797.2" y="645" width="31.4" height="15.0" fill="rgb(223,25,53)" rx="2" ry="2" />
<text x="800.22" y="655.5" >_Z..</text>
</g>
<g >
<title>_ZNK2yb3log9LogReader10LookupOpIdElPNS_6OpIdPBE (7 samples, 0.03%)</title><rect x="549.7" y="837" width="0.4" height="15.0" fill="rgb(247,48,3)" rx="2" ry="2" />
<text x="552.70" y="847.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (50 samples, 0.21%)</title><rect x="151.7" y="821" width="2.5" height="15.0" fill="rgb(229,197,47)" rx="2" ry="2" />
<text x="154.68" y="831.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (27 samples, 0.12%)</title><rect x="493.9" y="789" width="1.4" height="15.0" fill="rgb(209,224,12)" rx="2" ry="2" />
<text x="496.91" y="799.5" ></text>
</g>
<g >
<title>perf_pmu_enable (1,906 samples, 8.13%)</title><rect x="1078.0" y="757" width="95.9" height="15.0" fill="rgb(224,200,27)" rx="2" ry="2" />
<text x="1080.97" y="767.5" >perf_pmu_en..</text>
</g>
<g >
<title>_ZN2yb3log3Log21AsyncAppendReplicatesERKSt6vectorISt10shared_ptrINS_9consensus12ReplicateMsgEESaIS6_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointERKNS_8CallbackIFvRKNS_6StatusEEEE (22 samples, 0.09%)</title><rect x="492.2" y="805" width="1.1" height="15.0" fill="rgb(223,196,49)" rx="2" ry="2" />
<text x="495.15" y="815.5" ></text>
</g>
<g >
<title>update_load_avg (3 samples, 0.01%)</title><rect x="426.5" y="661" width="0.2" height="15.0" fill="rgb(231,87,11)" rx="2" ry="2" />
<text x="429.54" y="671.5" ></text>
</g>
<g >
<title>sys_write (32 samples, 0.14%)</title><rect x="545.7" y="709" width="1.6" height="15.0" fill="rgb(245,120,36)" rx="2" ry="2" />
<text x="548.72" y="719.5" ></text>
</g>
<g >
<title>trigger_load_balance (8 samples, 0.03%)</title><rect x="412.5" y="597" width="0.4" height="15.0" fill="rgb(248,2,33)" rx="2" ry="2" />
<text x="415.50" y="607.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (96 samples, 0.41%)</title><rect x="435.2" y="933" width="4.8" height="15.0" fill="rgb(226,130,38)" rx="2" ry="2" />
<text x="438.15" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb4util22FastDecodeSignedVarIntEPKhm (24 samples, 0.10%)</title><rect x="939.0" y="693" width="1.2" height="15.0" fill="rgb(238,53,14)" rx="2" ry="2" />
<text x="941.96" y="703.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="732.3" y="629" width="0.1" height="15.0" fill="rgb(219,59,15)" rx="2" ry="2" />
<text x="735.32" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log19UpdateIndexForBatchERKNS0_13LogEntryBatchE (2 samples, 0.01%)</title><rect x="403.4" y="869" width="0.1" height="15.0" fill="rgb(240,217,8)" rx="2" ry="2" />
<text x="406.43" y="879.5" ></text>
</g>
<g >
<title>native_write_msr (24 samples, 0.10%)</title><rect x="397.0" y="565" width="1.2" height="15.0" fill="rgb(240,212,48)" rx="2" ry="2" />
<text x="399.99" y="575.5" ></text>
</g>
<g >
<title>ep_poll (4 samples, 0.02%)</title><rect x="395.1" y="837" width="0.2" height="15.0" fill="rgb(214,181,2)" rx="2" ry="2" />
<text x="398.13" y="847.5" ></text>
</g>
<g >
<title>_ZN4base8SpinLock4LockEv (2 samples, 0.01%)</title><rect x="552.6" y="901" width="0.1" height="15.0" fill="rgb(239,76,53)" rx="2" ry="2" />
<text x="555.62" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor9RunThreadEv (3,492 samples, 14.90%)</title><rect x="218.9" y="933" width="175.8" height="15.0" fill="rgb(210,58,45)" rx="2" ry="2" />
<text x="221.90" y="943.5" >_ZN2yb3rpc7Reactor9Run..</text>
</g>
<g >
<title>default_wake_function (11 samples, 0.05%)</title><rect x="746.6" y="549" width="0.5" height="15.0" fill="rgb(247,175,26)" rx="2" ry="2" />
<text x="749.57" y="559.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (1,543 samples, 6.58%)</title><rect x="242.6" y="693" width="77.7" height="15.0" fill="rgb(247,59,15)" rx="2" ry="2" />
<text x="245.62" y="703.5" >intel_pm..</text>
</g>
<g >
<title>pipe_poll (5 samples, 0.02%)</title><rect x="1184.1" y="869" width="0.2" height="15.0" fill="rgb(217,200,13)" rx="2" ry="2" />
<text x="1187.06" y="879.5" ></text>
</g>
<g >
<title>start_thread (27 samples, 0.12%)</title><rect x="482.0" y="965" width="1.4" height="15.0" fill="rgb(251,56,53)" rx="2" ry="2" />
<text x="485.03" y="975.5" ></text>
</g>
<g >
<title>enqueue_entity (3 samples, 0.01%)</title><rect x="426.5" y="677" width="0.2" height="15.0" fill="rgb(230,154,41)" rx="2" ry="2" />
<text x="429.54" y="687.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="394.9" y="677" width="0.2" height="15.0" fill="rgb(212,71,18)" rx="2" ry="2" />
<text x="397.92" y="687.5" ></text>
</g>
<g >
<title>account_entity_dequeue (2 samples, 0.01%)</title><rect x="239.6" y="709" width="0.1" height="15.0" fill="rgb(213,109,22)" rx="2" ry="2" />
<text x="242.65" y="719.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (3 samples, 0.01%)</title><rect x="326.9" y="789" width="0.1" height="15.0" fill="rgb(234,109,5)" rx="2" ry="2" />
<text x="329.85" y="799.5" ></text>
</g>
<g >
<title>dequeue_entity (28 samples, 0.12%)</title><rect x="163.9" y="725" width="1.4" height="15.0" fill="rgb(244,23,12)" rx="2" ry="2" />
<text x="166.87" y="735.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (13 samples, 0.06%)</title><rect x="1039.2" y="741" width="0.7" height="15.0" fill="rgb(236,186,53)" rx="2" ry="2" />
<text x="1042.20" y="751.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2 samples, 0.01%)</title><rect x="1073.5" y="741" width="0.1" height="15.0" fill="rgb(241,130,27)" rx="2" ry="2" />
<text x="1076.49" y="751.5" ></text>
</g>
<g >
<title>_ZNKSt10_HashtableIKN2yb3rpc12ConnectionIdESt4pairIS3_St10shared_ptrINS1_10ConnectionEEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS3_ENS1_16ConnectionIdHashENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS3_m (2 samples, 0.01%)</title><rect x="365.7" y="837" width="0.1" height="15.0" fill="rgb(243,147,9)" rx="2" ry="2" />
<text x="368.67" y="847.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="524.3" y="773" width="0.2" height="15.0" fill="rgb(251,199,47)" rx="2" ry="2" />
<text x="527.32" y="783.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (19 samples, 0.08%)</title><rect x="1009.6" y="709" width="1.0" height="15.0" fill="rgb(238,183,41)" rx="2" ry="2" />
<text x="1012.60" y="719.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4NextEv (465 samples, 1.98%)</title><rect x="862.1" y="677" width="23.4" height="15.0" fill="rgb(214,13,40)" rx="2" ry="2" />
<text x="865.07" y="687.5" >_..</text>
</g>
<g >
<title>x86_pmu_disable (7 samples, 0.03%)</title><rect x="607.8" y="741" width="0.3" height="15.0" fill="rgb(212,15,34)" rx="2" ry="2" />
<text x="610.75" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13SatisfyBoundsERKNS_5SliceE (5 samples, 0.02%)</title><rect x="777.6" y="709" width="0.3" height="15.0" fill="rgb(209,171,8)" rx="2" ry="2" />
<text x="780.63" y="719.5" ></text>
</g>
<g >
<title>irq_exit (6 samples, 0.03%)</title><rect x="198.7" y="709" width="0.3" height="15.0" fill="rgb(221,57,11)" rx="2" ry="2" />
<text x="201.71" y="719.5" ></text>
</g>
<g >
<title>remote_function (4 samples, 0.02%)</title><rect x="437.1" y="821" width="0.2" height="15.0" fill="rgb(206,162,23)" rx="2" ry="2" />
<text x="440.07" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9Scheduler10DoScheduleESt10shared_ptrINS0_17ScheduledTaskBaseEE (2 samples, 0.01%)</title><rect x="432.2" y="869" width="0.1" height="15.0" fill="rgb(207,145,21)" rx="2" ry="2" />
<text x="435.23" y="879.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (5 samples, 0.02%)</title><rect x="158.4" y="773" width="0.3" height="15.0" fill="rgb(242,117,3)" rx="2" ry="2" />
<text x="161.43" y="783.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator3keyEv (6 samples, 0.03%)</title><rect x="709.5" y="677" width="0.3" height="15.0" fill="rgb(241,39,51)" rx="2" ry="2" />
<text x="712.51" y="687.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (5 samples, 0.02%)</title><rect x="521.5" y="757" width="0.2" height="15.0" fill="rgb(230,4,32)" rx="2" ry="2" />
<text x="524.45" y="767.5" ></text>
</g>
<g >
<title>__clock_gettime (4 samples, 0.02%)</title><rect x="554.5" y="917" width="0.2" height="15.0" fill="rgb(249,167,3)" rx="2" ry="2" />
<text x="557.48" y="927.5" ></text>
</g>
<g >
<title>activate_task (2 samples, 0.01%)</title><rect x="766.3" y="677" width="0.1" height="15.0" fill="rgb(239,40,26)" rx="2" ry="2" />
<text x="769.26" y="687.5" ></text>
</g>
<g >
<title>wake_up_process (4 samples, 0.02%)</title><rect x="473.9" y="693" width="0.2" height="15.0" fill="rgb(235,49,2)" rx="2" ry="2" />
<text x="476.92" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim (7 samples, 0.03%)</title><rect x="637.4" y="677" width="0.3" height="15.0" fill="rgb(219,121,33)" rx="2" ry="2" />
<text x="640.36" y="687.5" ></text>
</g>
<g >
<title>ip_local_deliver (62 samples, 0.26%)</title><rect x="352.4" y="341" width="3.2" height="15.0" fill="rgb(249,23,38)" rx="2" ry="2" />
<text x="355.43" y="351.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator4NextEv (7 samples, 0.03%)</title><rect x="1010.9" y="709" width="0.3" height="15.0" fill="rgb(218,163,40)" rx="2" ry="2" />
<text x="1013.86" y="719.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2 samples, 0.01%)</title><rect x="395.9" y="709" width="0.1" height="15.0" fill="rgb(241,142,49)" rx="2" ry="2" />
<text x="398.93" y="719.5" ></text>
</g>
<g >
<title>sys_futex (4 samples, 0.02%)</title><rect x="554.7" y="869" width="0.2" height="15.0" fill="rgb(226,28,43)" rx="2" ry="2" />
<text x="557.69" y="879.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (181 samples, 0.77%)</title><rect x="404.3" y="885" width="9.1" height="15.0" fill="rgb(210,197,30)" rx="2" ry="2" />
<text x="407.29" y="895.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (2 samples, 0.01%)</title><rect x="238.0" y="693" width="0.1" height="15.0" fill="rgb(246,134,32)" rx="2" ry="2" />
<text x="241.03" y="703.5" ></text>
</g>
<g >
<title>ipt_do_table (3 samples, 0.01%)</title><rect x="343.6" y="309" width="0.2" height="15.0" fill="rgb(217,11,9)" rx="2" ry="2" />
<text x="346.62" y="319.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock8NowRangeEv (2 samples, 0.01%)</title><rect x="541.7" y="901" width="0.1" height="15.0" fill="rgb(253,116,22)" rx="2" ry="2" />
<text x="544.75" y="911.5" ></text>
</g>
<g >
<title>tick_sched_handle (9 samples, 0.04%)</title><rect x="412.4" y="645" width="0.5" height="15.0" fill="rgb(254,59,23)" rx="2" ry="2" />
<text x="415.45" y="655.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="715.4" y="645" width="0.1" height="15.0" fill="rgb(207,41,54)" rx="2" ry="2" />
<text x="718.35" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb12HdrHistogram11IncrementByEll (2 samples, 0.01%)</title><rect x="360.4" y="757" width="0.1" height="15.0" fill="rgb(208,212,7)" rx="2" ry="2" />
<text x="363.44" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb4util32FastDecodeDescendingSignedVarIntEPNS_5SliceE (499 samples, 2.13%)</title><rect x="803.5" y="629" width="25.1" height="15.0" fill="rgb(220,9,24)" rx="2" ry="2" />
<text x="806.46" y="639.5" >_..</text>
</g>
<g >
<title>_ZN2yb10ThreadPool14DispatchThreadEb (1,362 samples, 5.81%)</title><rect x="529.2" y="933" width="68.5" height="15.0" fill="rgb(229,161,30)" rx="2" ry="2" />
<text x="532.16" y="943.5" >_ZN2yb1..</text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="417.7" y="949" width="0.1" height="15.0" fill="rgb(249,166,24)" rx="2" ry="2" />
<text x="420.68" y="959.5" ></text>
</g>
<g >
<title>hrtimer_init (9 samples, 0.04%)</title><rect x="155.6" y="789" width="0.5" height="15.0" fill="rgb(220,123,9)" rx="2" ry="2" />
<text x="158.61" y="799.5" ></text>
</g>
<g >
<title>trigger_load_balance (4 samples, 0.02%)</title><rect x="1188.4" y="645" width="0.2" height="15.0" fill="rgb(220,140,10)" rx="2" ry="2" />
<text x="1191.39" y="655.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (3 samples, 0.01%)</title><rect x="546.6" y="453" width="0.2" height="15.0" fill="rgb(244,204,21)" rx="2" ry="2" />
<text x="549.63" y="463.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter3keyEv (2 samples, 0.01%)</title><rect x="692.1" y="661" width="0.1" height="15.0" fill="rgb(224,223,2)" rx="2" ry="2" />
<text x="695.09" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor12AsyncHandlerERN2ev5asyncEi (2 samples, 0.01%)</title><rect x="333.2" y="901" width="0.1" height="15.0" fill="rgb(237,132,31)" rx="2" ry="2" />
<text x="336.20" y="911.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3 samples, 0.01%)</title><rect x="420.7" y="757" width="0.2" height="15.0" fill="rgb(228,199,48)" rx="2" ry="2" />
<text x="423.70" y="767.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="490.6" y="597" width="0.1" height="15.0" fill="rgb(214,224,10)" rx="2" ry="2" />
<text x="493.64" y="607.5" ></text>
</g>
<g >
<title>sched_clock (8 samples, 0.03%)</title><rect x="116.7" y="725" width="0.4" height="15.0" fill="rgb(208,224,52)" rx="2" ry="2" />
<text x="119.74" y="735.5" ></text>
</g>
<g >
<title>pick_next_task_idle (2 samples, 0.01%)</title><rect x="522.5" y="773" width="0.1" height="15.0" fill="rgb(229,18,15)" rx="2" ry="2" />
<text x="525.46" y="783.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream8PopLimitEi@plt (2 samples, 0.01%)</title><rect x="740.7" y="805" width="0.1" height="15.0" fill="rgb(209,120,14)" rx="2" ry="2" />
<text x="743.73" y="815.5" ></text>
</g>
<g >
<title>check_preempt_curr (4 samples, 0.02%)</title><rect x="490.8" y="645" width="0.2" height="15.0" fill="rgb(244,60,15)" rx="2" ry="2" />
<text x="493.79" y="655.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="394.7" y="693" width="0.2" height="15.0" fill="rgb(205,225,48)" rx="2" ry="2" />
<text x="397.72" y="703.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (20 samples, 0.09%)</title><rect x="201.8" y="821" width="1.0" height="15.0" fill="rgb(248,180,32)" rx="2" ry="2" />
<text x="204.83" y="831.5" ></text>
</g>
<g >
<title>lock_sock_nested (2 samples, 0.01%)</title><rect x="382.8" y="693" width="0.1" height="15.0" fill="rgb(226,146,15)" rx="2" ry="2" />
<text x="385.79" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor12TimerHandlerERN2ev5timerEi (19 samples, 0.08%)</title><rect x="214.7" y="885" width="0.9" height="15.0" fill="rgb(231,111,17)" rx="2" ry="2" />
<text x="217.67" y="895.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3 samples, 0.01%)</title><rect x="201.5" y="773" width="0.1" height="15.0" fill="rgb(249,92,6)" rx="2" ry="2" />
<text x="204.48" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken10SubmitFuncESt8functionIFvvEE (2 samples, 0.01%)</title><rect x="624.2" y="741" width="0.1" height="15.0" fill="rgb(208,194,50)" rx="2" ry="2" />
<text x="627.22" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (28 samples, 0.12%)</title><rect x="401.5" y="821" width="1.4" height="15.0" fill="rgb(247,210,50)" rx="2" ry="2" />
<text x="404.52" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker7ReleaseEl (8 samples, 0.03%)</title><rect x="363.2" y="757" width="0.4" height="15.0" fill="rgb(247,108,33)" rx="2" ry="2" />
<text x="366.20" y="767.5" ></text>
</g>
<g >
<title>_ZN5boost11shared_lockIN2yb11rw_spinlockEE4lockEv (2 samples, 0.01%)</title><rect x="483.7" y="853" width="0.1" height="15.0" fill="rgb(221,93,26)" rx="2" ry="2" />
<text x="486.69" y="863.5" ></text>
</g>
<g >
<title>_ZNKSs7compareEPKc (5 samples, 0.02%)</title><rect x="759.9" y="885" width="0.3" height="15.0" fill="rgb(212,213,42)" rx="2" ry="2" />
<text x="762.91" y="895.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream20ReadVarint64FallbackEv (2 samples, 0.01%)</title><rect x="377.8" y="677" width="0.1" height="15.0" fill="rgb(252,40,36)" rx="2" ry="2" />
<text x="380.76" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue23LocalPeerAppendFinishedERKNS_6OpIdPBERKNS_6StatusE (25 samples, 0.11%)</title><rect x="398.8" y="853" width="1.3" height="15.0" fill="rgb(212,124,10)" rx="2" ry="2" />
<text x="401.80" y="863.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="414.2" y="629" width="0.2" height="15.0" fill="rgb(228,223,15)" rx="2" ry="2" />
<text x="417.21" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb18PgsqlReadOperation7ExecuteERKNS_6common12YQLStorageIfENSt6chrono10time_pointINS_15CoarseMonoClockENS6_8durationIlSt5ratioILl1ELl1000000000EEEEEERKNS_14ReadHybridTimeERKNS_6SchemaEPSI_PNS_14PgsqlResultSetEPNS_10HybridTimeE (5,635 samples, 24.04%)</title><rect x="775.3" y="837" width="283.7" height="15.0" fill="rgb(217,139,0)" rx="2" ry="2" />
<text x="778.32" y="847.5" >_ZN2yb5docdb18PgsqlReadOperation7Execu..</text>
</g>
<g >
<title>[libpthread-2.23.so] (267 samples, 1.14%)</title><rect x="346.4" y="805" width="13.4" height="15.0" fill="rgb(252,195,8)" rx="2" ry="2" />
<text x="349.39" y="815.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="963.3" y="645" width="0.1" height="15.0" fill="rgb(237,120,47)" rx="2" ry="2" />
<text x="966.32" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb21CreateRocksDBIteratorEPN7rocksdb2DBEPKNS0_9KeyBoundsENS0_15BloomFilterModeERKN5boost8optionalIKNS_5SliceEEElSt10shared_ptrINS1_14ReadFileFilterEEPSB_ (6 samples, 0.03%)</title><rect x="776.0" y="741" width="0.3" height="15.0" fill="rgb(216,113,12)" rx="2" ry="2" />
<text x="779.02" y="751.5" ></text>
</g>
<g >
<title>__pollwait (2 samples, 0.01%)</title><rect x="1189.1" y="853" width="0.1" height="15.0" fill="rgb(245,140,53)" rx="2" ry="2" />
<text x="1192.09" y="863.5" ></text>
</g>
<g >
<title>__do_softirq (95 samples, 0.41%)</title><rect x="351.8" y="453" width="4.8" height="15.0" fill="rgb(221,86,10)" rx="2" ry="2" />
<text x="354.78" y="463.5" ></text>
</g>
<g >
<title>[unknown] (53 samples, 0.23%)</title><rect x="10.0" y="965" width="2.7" height="15.0" fill="rgb(237,26,33)" rx="2" ry="2" />
<text x="13.00" y="975.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter3keyEv (36 samples, 0.15%)</title><rect x="1051.1" y="757" width="1.8" height="15.0" fill="rgb(246,78,30)" rx="2" ry="2" />
<text x="1054.08" y="767.5" ></text>
</g>
<g >
<title>_ZN5boost13thread_detail17enter_once_regionERNS_9once_flagE (2 samples, 0.01%)</title><rect x="403.2" y="821" width="0.1" height="15.0" fill="rgb(237,135,37)" rx="2" ry="2" />
<text x="406.23" y="831.5" ></text>
</g>
<g >
<title>fput (19 samples, 0.08%)</title><rect x="202.8" y="837" width="1.0" height="15.0" fill="rgb(238,49,40)" rx="2" ry="2" />
<text x="205.84" y="847.5" ></text>
</g>
<g >
<title>process_backlog (56 samples, 0.24%)</title><rect x="341.0" y="405" width="2.8" height="15.0" fill="rgb(219,93,3)" rx="2" ry="2" />
<text x="344.00" y="415.5" ></text>
</g>
<g >
<title>nf_ct_get_tuple (2 samples, 0.01%)</title><rect x="351.2" y="485" width="0.1" height="15.0" fill="rgb(242,144,8)" rx="2" ry="2" />
<text x="354.17" y="495.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="766.1" y="645" width="0.1" height="15.0" fill="rgb(219,157,13)" rx="2" ry="2" />
<text x="769.10" y="655.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116MemTableInserter5PutCFEjRKN2yb5SliceES5_ (7 samples, 0.03%)</title><rect x="532.8" y="629" width="0.3" height="15.0" fill="rgb(245,134,22)" rx="2" ry="2" />
<text x="535.78" y="639.5" ></text>
</g>
<g >
<title>_ZN3cds9intrusive11BasketQueueINS_2gc3DHPENS_9container7details17make_basket_queueIS3_PN2yb3rpc14ThreadPoolTaskENS4_12basket_queue6traitsEE9node_typeENSD_16intrusive_traitsEE7enqueueERSE_ (5 samples, 0.02%)</title><rect x="375.5" y="709" width="0.2" height="15.0" fill="rgb(236,111,49)" rx="2" ry="2" />
<text x="378.49" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus12ReplicaState23MinRetryableRequestOpIdEv (2 samples, 0.01%)</title><rect x="483.9" y="837" width="0.1" height="15.0" fill="rgb(243,43,27)" rx="2" ry="2" />
<text x="486.89" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus4Peer13SignalRequestENS0_18RequestTriggerModeE (11 samples, 0.05%)</title><rect x="531.3" y="869" width="0.5" height="15.0" fill="rgb(217,127,17)" rx="2" ry="2" />
<text x="534.27" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer6SubmitESt10unique_ptrINS0_9OperationESt14default_deleteIS3_EEl (6 samples, 0.03%)</title><rect x="624.0" y="805" width="0.3" height="15.0" fill="rgb(238,128,6)" rx="2" ry="2" />
<text x="627.02" y="815.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (27 samples, 0.12%)</title><rect x="1177.9" y="629" width="1.4" height="15.0" fill="rgb(205,80,41)" rx="2" ry="2" />
<text x="1180.92" y="639.5" ></text>
</g>
<g >
<title>sched_clock (9 samples, 0.04%)</title><rect x="46.4" y="693" width="0.4" height="15.0" fill="rgb(209,69,53)" rx="2" ry="2" />
<text x="49.35" y="703.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="732.3" y="597" width="0.1" height="15.0" fill="rgb(218,47,3)" rx="2" ry="2" />
<text x="735.32" y="607.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4SeekERKN2yb5SliceE (3 samples, 0.01%)</title><rect x="642.7" y="677" width="0.1" height="15.0" fill="rgb(230,51,24)" rx="2" ry="2" />
<text x="645.70" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb10HostPortPB10SharedCtorEv (2 samples, 0.01%)</title><rect x="768.6" y="805" width="0.1" height="15.0" fill="rgb(228,155,7)" rx="2" ry="2" />
<text x="771.62" y="815.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="963.3" y="661" width="0.1" height="15.0" fill="rgb(219,91,35)" rx="2" ry="2" />
<text x="966.32" y="671.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (2 samples, 0.01%)</title><rect x="497.0" y="917" width="0.1" height="15.0" fill="rgb(253,217,30)" rx="2" ry="2" />
<text x="500.03" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus19ConsensusResponsePB5ClearEv (6 samples, 0.03%)</title><rect x="378.3" y="709" width="0.3" height="15.0" fill="rgb(231,95,54)" rx="2" ry="2" />
<text x="381.31" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc5Proxy14DoAsyncRequestEPKNS0_12RemoteMethodERKN6google8protobuf7MessageEPS7_PNS0_13RpcControllerESt8functionIFvvEEb (115 samples, 0.49%)</title><rect x="542.1" y="853" width="5.8" height="15.0" fill="rgb(245,191,50)" rx="2" ry="2" />
<text x="545.15" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13serialization14ParseYBMessageERKNS_5SliceEPN6google8protobuf11MessageLiteEPS2_ (13 samples, 0.06%)</title><rect x="369.6" y="757" width="0.7" height="15.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text x="372.65" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,358 samples, 10.06%)</title><rect x="1063.1" y="917" width="118.7" height="15.0" fill="rgb(250,91,30)" rx="2" ry="2" />
<text x="1066.12" y="927.5" >entry_SYSCALL_..</text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="1059.9" y="885" width="0.1" height="15.0" fill="rgb(215,9,13)" rx="2" ry="2" />
<text x="1062.95" y="895.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (78 samples, 0.33%)</title><rect x="1184.8" y="837" width="3.9" height="15.0" fill="rgb(235,46,27)" rx="2" ry="2" />
<text x="1187.76" y="847.5" ></text>
</g>
<g >
<title>bictcp_acked (2 samples, 0.01%)</title><rect x="387.5" y="293" width="0.1" height="15.0" fill="rgb(217,87,51)" rx="2" ry="2" />
<text x="390.52" y="303.5" ></text>
</g>
<g >
<title>check_preempt_curr (3 samples, 0.01%)</title><rect x="766.4" y="661" width="0.2" height="15.0" fill="rgb(237,206,3)" rx="2" ry="2" />
<text x="769.41" y="671.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (6 samples, 0.03%)</title><rect x="357.9" y="581" width="0.3" height="15.0" fill="rgb(230,52,26)" rx="2" ry="2" />
<text x="360.87" y="591.5" ></text>
</g>
<g >
<title>timerqueue_del (11 samples, 0.05%)</title><rect x="523.1" y="773" width="0.6" height="15.0" fill="rgb(245,59,18)" rx="2" ry="2" />
<text x="526.12" y="783.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (3 samples, 0.01%)</title><rect x="476.7" y="725" width="0.1" height="15.0" fill="rgb(235,168,36)" rx="2" ry="2" />
<text x="479.69" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (4 samples, 0.02%)</title><rect x="394.7" y="949" width="0.2" height="15.0" fill="rgb(227,82,21)" rx="2" ry="2" />
<text x="397.72" y="959.5" ></text>
</g>
<g >
<title>blk_finish_plug (4 samples, 0.02%)</title><rect x="395.7" y="645" width="0.2" height="15.0" fill="rgb(253,86,42)" rx="2" ry="2" />
<text x="398.73" y="655.5" ></text>
</g>
<g >
<title>tcp_current_mss (8 samples, 0.03%)</title><rect x="358.4" y="629" width="0.4" height="15.0" fill="rgb(245,156,41)" rx="2" ry="2" />
<text x="361.37" y="639.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4NextEv (6 samples, 0.03%)</title><rect x="912.2" y="709" width="0.3" height="15.0" fill="rgb(227,25,3)" rx="2" ry="2" />
<text x="915.22" y="719.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="617.1" y="933" width="0.1" height="15.0" fill="rgb(236,38,9)" rx="2" ry="2" />
<text x="620.07" y="943.5" ></text>
</g>
<g >
<title>generic_make_request (2 samples, 0.01%)</title><rect x="398.4" y="645" width="0.1" height="15.0" fill="rgb(226,95,1)" rx="2" ry="2" />
<text x="401.40" y="655.5" ></text>
</g>
<g >
<title>dev_queue_xmit (13 samples, 0.06%)</title><rect x="356.6" y="501" width="0.6" height="15.0" fill="rgb(243,27,37)" rx="2" ry="2" />
<text x="359.56" y="511.5" ></text>
</g>
<g >
<title>__fdget (33 samples, 0.14%)</title><rect x="28.2" y="837" width="1.7" height="15.0" fill="rgb(219,4,40)" rx="2" ry="2" />
<text x="31.23" y="847.5" ></text>
</g>
<g >
<title>native_write_msr (384 samples, 1.64%)</title><rect x="502.1" y="693" width="19.4" height="15.0" fill="rgb(206,34,31)" rx="2" ry="2" />
<text x="505.12" y="703.5" ></text>
</g>
<g >
<title>iptable_security_hook (5 samples, 0.02%)</title><rect x="339.4" y="501" width="0.3" height="15.0" fill="rgb(240,4,18)" rx="2" ry="2" />
<text x="342.44" y="511.5" ></text>
</g>
<g >
<title>do_futex (25 samples, 0.11%)</title><rect x="484.3" y="853" width="1.3" height="15.0" fill="rgb(214,111,22)" rx="2" ry="2" />
<text x="487.35" y="863.5" ></text>
</g>
<g >
<title>xlog_sync (5 samples, 0.02%)</title><rect x="395.7" y="709" width="0.2" height="15.0" fill="rgb(217,165,34)" rx="2" ry="2" />
<text x="398.68" y="719.5" ></text>
</g>
<g >
<title>selinux_file_permission (5 samples, 0.02%)</title><rect x="393.6" y="773" width="0.3" height="15.0" fill="rgb(216,66,43)" rx="2" ry="2" />
<text x="396.62" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb11sw_internal9LogTimingD2Ev (2 samples, 0.01%)</title><rect x="400.9" y="869" width="0.1" height="15.0" fill="rgb(223,206,13)" rx="2" ry="2" />
<text x="403.92" y="879.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="398.2" y="565" width="0.1" height="15.0" fill="rgb(219,46,3)" rx="2" ry="2" />
<text x="401.20" y="575.5" ></text>
</g>
<g >
<title>_ZNK2yb7tserver14WriteRequestPB12ByteSizeLongEv (5 samples, 0.02%)</title><rect x="549.2" y="837" width="0.2" height="15.0" fill="rgb(215,47,19)" rx="2" ry="2" />
<text x="552.20" y="847.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (3 samples, 0.01%)</title><rect x="613.8" y="789" width="0.2" height="15.0" fill="rgb(237,119,31)" rx="2" ry="2" />
<text x="616.85" y="799.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (22 samples, 0.09%)</title><rect x="484.5" y="821" width="1.1" height="15.0" fill="rgb(235,175,49)" rx="2" ry="2" />
<text x="487.50" y="831.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc15CentralFreeList11InsertRangeEPvS1_i (9 samples, 0.04%)</title><rect x="602.3" y="933" width="0.4" height="15.0" fill="rgb(248,10,53)" rx="2" ry="2" />
<text x="605.27" y="943.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.isra.11 (11 samples, 0.05%)</title><rect x="419.8" y="837" width="0.6" height="15.0" fill="rgb(252,227,14)" rx="2" ry="2" />
<text x="422.80" y="847.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (4 samples, 0.02%)</title><rect x="546.6" y="517" width="0.2" height="15.0" fill="rgb(220,46,0)" rx="2" ry="2" />
<text x="549.58" y="527.5" ></text>
</g>
<g >
<title>syscall_trace_enter (2 samples, 0.01%)</title><rect x="1062.2" y="885" width="0.1" height="15.0" fill="rgb(252,107,51)" rx="2" ry="2" />
<text x="1065.21" y="895.5" ></text>
</g>
<g >
<title>_ZN4base8SpinLock8SlowLockEv (8 samples, 0.03%)</title><rect x="539.6" y="901" width="0.4" height="15.0" fill="rgb(244,150,48)" rx="2" ry="2" />
<text x="542.58" y="911.5" ></text>
</g>
<g >
<title>try_to_wake_up (12 samples, 0.05%)</title><rect x="376.2" y="629" width="0.6" height="15.0" fill="rgb(227,69,35)" rx="2" ry="2" />
<text x="379.25" y="639.5" ></text>
</g>
<g >
<title>__remove_hrtimer (23 samples, 0.10%)</title><rect x="593.2" y="789" width="1.2" height="15.0" fill="rgb(220,109,33)" rx="2" ry="2" />
<text x="596.20" y="799.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="490.6" y="613" width="0.1" height="15.0" fill="rgb(236,142,25)" rx="2" ry="2" />
<text x="493.64" y="623.5" ></text>
</g>
<g >
<title>_ZNSt10_HashtableISsSt4pairIKSsPN2yb9consensus16PeerMessageQueue11TrackedPeerEESaIS7_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS9_18_Mod_range_hashingENS9_20_Default_ranged_hashENS9_20_Prime_rehash_policyENS9_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS1_ (3 samples, 0.01%)</title><rect x="551.6" y="885" width="0.2" height="15.0" fill="rgb(229,142,38)" rx="2" ry="2" />
<text x="554.61" y="895.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (7 samples, 0.03%)</title><rect x="607.0" y="837" width="0.4" height="15.0" fill="rgb(240,114,23)" rx="2" ry="2" />
<text x="610.05" y="847.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="618.2" y="933" width="0.2" height="15.0" fill="rgb(227,192,3)" rx="2" ry="2" />
<text x="621.18" y="943.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="1181.7" y="773" width="0.1" height="15.0" fill="rgb(244,179,37)" rx="2" ry="2" />
<text x="1184.74" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log4SyncEv (59 samples, 0.25%)</title><rect x="395.7" y="869" width="3.0" height="15.0" fill="rgb(211,10,36)" rx="2" ry="2" />
<text x="398.68" y="879.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv (23 samples, 0.10%)</title><rect x="734.7" y="709" width="1.2" height="15.0" fill="rgb(240,208,13)" rx="2" ry="2" />
<text x="737.74" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus18ConsensusRequestPBD1Ev (2 samples, 0.01%)</title><rect x="745.6" y="853" width="0.1" height="15.0" fill="rgb(247,77,46)" rx="2" ry="2" />
<text x="748.61" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker7ConsumeEl (2 samples, 0.01%)</title><rect x="345.3" y="789" width="0.1" height="15.0" fill="rgb(232,5,8)" rx="2" ry="2" />
<text x="348.33" y="799.5" ></text>
</g>
<g >
<title>release_sock (4 samples, 0.02%)</title><rect x="338.3" y="645" width="0.2" height="15.0" fill="rgb(252,11,51)" rx="2" ry="2" />
<text x="341.28" y="655.5" ></text>
</g>
<g >
<title>security_file_permission (2 samples, 0.01%)</title><rect x="547.2" y="661" width="0.1" height="15.0" fill="rgb(223,198,6)" rx="2" ry="2" />
<text x="550.23" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCall13QueueResponseEb (27 samples, 0.12%)</title><rect x="746.2" y="805" width="1.3" height="15.0" fill="rgb(238,34,5)" rx="2" ry="2" />
<text x="749.17" y="815.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (2 samples, 0.01%)</title><rect x="118.8" y="805" width="0.1" height="15.0" fill="rgb(228,147,17)" rx="2" ry="2" />
<text x="121.81" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver11ReadContext12PickReadTimeEPNS_6server5ClockE (8 samples, 0.03%)</title><rect x="774.5" y="901" width="0.4" height="15.0" fill="rgb(231,36,32)" rx="2" ry="2" />
<text x="777.51" y="911.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (6 samples, 0.03%)</title><rect x="162.6" y="677" width="0.3" height="15.0" fill="rgb(213,30,11)" rx="2" ry="2" />
<text x="165.56" y="687.5" ></text>
</g>
<g >
<title>decay_load (2 samples, 0.01%)</title><rect x="354.5" y="37" width="0.1" height="15.0" fill="rgb(249,205,32)" rx="2" ry="2" />
<text x="357.49" y="47.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13ProcessIntentEv (1,080 samples, 4.61%)</title><rect x="781.2" y="693" width="54.4" height="15.0" fill="rgb(245,164,0)" rx="2" ry="2" />
<text x="784.21" y="703.5" >_ZN2y..</text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4NextEv (16 samples, 0.07%)</title><rect x="733.9" y="709" width="0.8" height="15.0" fill="rgb(251,164,47)" rx="2" ry="2" />
<text x="736.93" y="719.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf11MessageLite31SerializeWithCachedSizesToArrayEPh (2 samples, 0.01%)</title><rect x="544.2" y="821" width="0.1" height="15.0" fill="rgb(228,35,42)" rx="2" ry="2" />
<text x="547.16" y="831.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf15UnknownFieldSet26SpaceUsedExcludingSelfLongEv (3 samples, 0.01%)</title><rect x="743.4" y="837" width="0.2" height="15.0" fill="rgb(237,28,13)" rx="2" ry="2" />
<text x="746.45" y="847.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5ValidEv (7 samples, 0.03%)</title><rect x="902.5" y="677" width="0.3" height="15.0" fill="rgb(218,67,35)" rx="2" ry="2" />
<text x="905.45" y="687.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (3 samples, 0.01%)</title><rect x="499.9" y="693" width="0.1" height="15.0" fill="rgb(211,16,41)" rx="2" ry="2" />
<text x="502.85" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13serialization16SerializeMessageERKN6google8protobuf11MessageLiteEPNS_12RefCntBufferEibmPm (4 samples, 0.02%)</title><rect x="747.7" y="789" width="0.2" height="15.0" fill="rgb(211,157,42)" rx="2" ry="2" />
<text x="750.68" y="799.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (5 samples, 0.02%)</title><rect x="1046.3" y="725" width="0.3" height="15.0" fill="rgb(233,123,16)" rx="2" ry="2" />
<text x="1049.30" y="735.5" ></text>
</g>
<g >
<title>skb_release_data (2 samples, 0.01%)</title><rect x="387.8" y="245" width="0.1" height="15.0" fill="rgb(247,37,39)" rx="2" ry="2" />
<text x="390.78" y="255.5" ></text>
</g>
<g >
<title>sched_clock (2 samples, 0.01%)</title><rect x="326.4" y="725" width="0.1" height="15.0" fill="rgb(239,32,33)" rx="2" ry="2" />
<text x="329.45" y="735.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (6 samples, 0.03%)</title><rect x="434.4" y="837" width="0.3" height="15.0" fill="rgb(209,86,37)" rx="2" ry="2" />
<text x="437.40" y="847.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.02%)</title><rect x="395.1" y="757" width="0.2" height="15.0" fill="rgb(251,56,19)" rx="2" ry="2" />
<text x="398.13" y="767.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator3keyEv (6 samples, 0.03%)</title><rect x="684.1" y="661" width="0.3" height="15.0" fill="rgb(212,210,26)" rx="2" ry="2" />
<text x="687.13" y="671.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="616.8" y="917" width="0.1" height="15.0" fill="rgb(205,3,11)" rx="2" ry="2" />
<text x="619.82" y="927.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (5 samples, 0.02%)</title><rect x="535.3" y="709" width="0.3" height="15.0" fill="rgb(243,139,16)" rx="2" ry="2" />
<text x="538.30" y="719.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator4NextEv (8 samples, 0.03%)</title><rect x="682.1" y="645" width="0.4" height="15.0" fill="rgb(237,69,25)" rx="2" ry="2" />
<text x="685.07" y="655.5" ></text>
</g>
<g >
<title>sys_getrusage (3 samples, 0.01%)</title><rect x="400.7" y="805" width="0.2" height="15.0" fill="rgb(254,99,49)" rx="2" ry="2" />
<text x="403.72" y="815.5" ></text>
</g>
<g >
<title>_ZN43protobuf_yb_2fconsensus_2fconsensus_2eproto30protobuf_AssignDescriptorsOnceEv (2 samples, 0.01%)</title><rect x="743.8" y="821" width="0.2" height="15.0" fill="rgb(210,157,26)" rx="2" ry="2" />
<text x="746.85" y="831.5" ></text>
</g>
<g >
<title>[unknown] (11 samples, 0.05%)</title><rect x="417.2" y="965" width="0.6" height="15.0" fill="rgb(218,184,29)" rx="2" ry="2" />
<text x="420.23" y="975.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5ValidEv (10 samples, 0.04%)</title><rect x="907.8" y="693" width="0.5" height="15.0" fill="rgb(213,222,21)" rx="2" ry="2" />
<text x="910.79" y="703.5" ></text>
</g>
<g >
<title>activate_task (4 samples, 0.02%)</title><rect x="756.1" y="709" width="0.2" height="15.0" fill="rgb(244,69,34)" rx="2" ry="2" />
<text x="759.14" y="719.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (26 samples, 0.11%)</title><rect x="600.1" y="933" width="1.3" height="15.0" fill="rgb(228,198,5)" rx="2" ry="2" />
<text x="603.05" y="943.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (12 samples, 0.05%)</title><rect x="482.4" y="805" width="0.6" height="15.0" fill="rgb(229,121,10)" rx="2" ry="2" />
<text x="485.43" y="815.5" ></text>
</g>
<g >
<title>rb_insert_color (17 samples, 0.07%)</title><rect x="157.6" y="741" width="0.8" height="15.0" fill="rgb(215,196,49)" rx="2" ry="2" />
<text x="160.58" y="751.5" ></text>
</g>
<g >
<title>epoll_wait (3 samples, 0.01%)</title><rect x="213.6" y="901" width="0.2" height="15.0" fill="rgb(211,44,52)" rx="2" ry="2" />
<text x="216.61" y="911.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (3 samples, 0.01%)</title><rect x="338.6" y="613" width="0.1" height="15.0" fill="rgb(242,116,27)" rx="2" ry="2" />
<text x="341.58" y="623.5" ></text>
</g>
<g >
<title>start_thread (366 samples, 1.56%)</title><rect x="395.5" y="965" width="18.4" height="15.0" fill="rgb(218,206,17)" rx="2" ry="2" />
<text x="398.48" y="975.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (93 samples, 0.40%)</title><rect x="1174.8" y="773" width="4.7" height="15.0" fill="rgb(224,121,20)" rx="2" ry="2" />
<text x="1177.84" y="783.5" ></text>
</g>
<g >
<title>__tcp_ack_snd_check (11 samples, 0.05%)</title><rect x="341.3" y="245" width="0.6" height="15.0" fill="rgb(251,0,18)" rx="2" ry="2" />
<text x="344.30" y="255.5" ></text>
</g>
<g >
<title>start_thread (66 samples, 0.28%)</title><rect x="413.9" y="965" width="3.3" height="15.0" fill="rgb(226,111,10)" rx="2" ry="2" />
<text x="416.91" y="975.5" ></text>
</g>
<g >
<title>native_write_msr (93 samples, 0.40%)</title><rect x="609.2" y="725" width="4.6" height="15.0" fill="rgb(249,28,22)" rx="2" ry="2" />
<text x="612.16" y="735.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (10 samples, 0.04%)</title><rect x="118.3" y="789" width="0.5" height="15.0" fill="rgb(249,101,21)" rx="2" ry="2" />
<text x="121.30" y="799.5" ></text>
</g>
<g >
<title>tick_program_event (2 samples, 0.01%)</title><rect x="233.9" y="757" width="0.1" height="15.0" fill="rgb(213,90,21)" rx="2" ry="2" />
<text x="236.86" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb27ResolveTransactionConflictsERKSt6vectorISt10unique_ptrINS0_12DocOperationESt14default_deleteIS3_EESaIS6_EERKNS0_20KeyValueWriteBatchPBENS_10HybridTimeESE_RKNS0_5DocDBENS_17StronglyTypedBoolINS0_26PartialRangeKeyIntents_TagEEEPNS_24TransactionStatusManagerEPNS_7CounterE (2,238 samples, 9.55%)</title><rect x="624.4" y="805" width="112.7" height="15.0" fill="rgb(233,107,12)" rx="2" ry="2" />
<text x="627.37" y="815.5" >_ZN2yb5docdb2..</text>
</g>
<g >
<title>x86_pmu_disable (10 samples, 0.04%)</title><rect x="238.1" y="693" width="0.5" height="15.0" fill="rgb(225,153,32)" rx="2" ry="2" />
<text x="241.14" y="703.5" ></text>
</g>
<g >
<title>_copy_from_user (2 samples, 0.01%)</title><rect x="334.7" y="837" width="0.1" height="15.0" fill="rgb(226,117,14)" rx="2" ry="2" />
<text x="337.66" y="847.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (3 samples, 0.01%)</title><rect x="326.9" y="805" width="0.1" height="15.0" fill="rgb(214,116,33)" rx="2" ry="2" />
<text x="329.85" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10RpcContextC2ESt10shared_ptrINS0_13YBInboundCallEES2_IN6google8protobuf7MessageEES8_NS0_16RpcMethodMetricsE (3 samples, 0.01%)</title><rect x="621.0" y="885" width="0.1" height="15.0" fill="rgb(210,198,35)" rx="2" ry="2" />
<text x="624.00" y="895.5" ></text>
</g>
<g >
<title>__libc_disable_asynccancel (3 samples, 0.01%)</title><rect x="333.6" y="901" width="0.1" height="15.0" fill="rgb(219,224,15)" rx="2" ry="2" />
<text x="336.60" y="911.5" ></text>
</g>
<g >
<title>select_task_rq_fair (2 samples, 0.01%)</title><rect x="372.4" y="629" width="0.1" height="15.0" fill="rgb(246,220,22)" rx="2" ry="2" />
<text x="375.42" y="639.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (30 samples, 0.13%)</title><rect x="590.6" y="757" width="1.5" height="15.0" fill="rgb(248,107,12)" rx="2" ry="2" />
<text x="593.58" y="767.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (4 samples, 0.02%)</title><rect x="394.7" y="821" width="0.2" height="15.0" fill="rgb(221,154,42)" rx="2" ry="2" />
<text x="397.72" y="831.5" ></text>
</g>
<g >
<title>futex_wait (524 samples, 2.24%)</title><rect x="498.2" y="837" width="26.4" height="15.0" fill="rgb(243,92,3)" rx="2" ry="2" />
<text x="501.19" y="847.5" >f..</text>
</g>
<g >
<title>__raw_spin_unlock (5 samples, 0.02%)</title><rect x="1077.7" y="757" width="0.3" height="15.0" fill="rgb(249,70,39)" rx="2" ry="2" />
<text x="1080.72" y="767.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="686.9" y="581" width="0.1" height="15.0" fill="rgb(241,1,48)" rx="2" ry="2" />
<text x="689.85" y="591.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCall12UnretainSelfEv (10 samples, 0.04%)</title><rect x="431.5" y="853" width="0.5" height="15.0" fill="rgb(241,190,34)" rx="2" ry="2" />
<text x="434.53" y="863.5" ></text>
</g>
<g >
<title>try_to_wake_up (8 samples, 0.03%)</title><rect x="372.2" y="645" width="0.4" height="15.0" fill="rgb(229,27,15)" rx="2" ry="2" />
<text x="375.22" y="655.5" ></text>
</g>
<g >
<title>do_pwritev (24 samples, 0.10%)</title><rect x="401.6" y="773" width="1.2" height="15.0" fill="rgb(226,21,19)" rx="2" ry="2" />
<text x="404.62" y="783.5" ></text>
</g>
<g >
<title>[libc-2.23.so] (1,349 samples, 5.76%)</title><rect x="142.4" y="901" width="67.9" height="15.0" fill="rgb(211,137,41)" rx="2" ry="2" />
<text x="145.37" y="911.5" >[libc-2..</text>
</g>
<g >
<title>selinux_socket_recvmsg (5 samples, 0.02%)</title><rect x="389.6" y="709" width="0.3" height="15.0" fill="rgb(239,91,20)" rx="2" ry="2" />
<text x="392.64" y="719.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="359.7" y="789" width="0.1" height="15.0" fill="rgb(246,23,38)" rx="2" ry="2" />
<text x="362.73" y="799.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (2 samples, 0.01%)</title><rect x="237.2" y="773" width="0.1" height="15.0" fill="rgb(225,118,13)" rx="2" ry="2" />
<text x="240.23" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer10WriteAsyncESt10unique_ptrINS0_19WriteOperationStateESt14default_deleteIS3_EElNSt6chrono10time_pointINS_15CoarseMonoClockENS7_8durationIlSt5ratioILl1ELl1000000000EEEEEE (2,249 samples, 9.60%)</title><rect x="624.0" y="853" width="113.3" height="15.0" fill="rgb(227,113,42)" rx="2" ry="2" />
<text x="627.02" y="863.5" >_ZN2yb6tablet..</text>
</g>
<g >
<title>_ZN2yb5docdb25CreateIntentAwareIteratorERKNS0_5DocDBENS0_15BloomFilterModeERKN5boost8optionalIKNS_5SliceEEElRKNS6_INS_27TransactionOperationContextEEENSt6chrono10time_pointINS_15CoarseMonoClockENSG_8durationIlSt5ratioILl1ELl1000000000EEEEEERKNS_14ReadHybridTimeESt10shared_ptrIN7rocksdb14ReadFileFilterEEPS8_ (9 samples, 0.04%)</title><rect x="776.0" y="773" width="0.4" height="15.0" fill="rgb(224,82,49)" rx="2" ry="2" />
<text x="778.97" y="783.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal16ReflectionSchema22GetFieldOffsetNonOneofEPKNS0_15FieldDescriptorE (2 samples, 0.01%)</title><rect x="744.9" y="821" width="0.1" height="15.0" fill="rgb(217,71,26)" rx="2" ry="2" />
<text x="747.86" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="535.4" y="693" width="0.2" height="15.0" fill="rgb(223,147,27)" rx="2" ry="2" />
<text x="538.35" y="703.5" ></text>
</g>
<g >
<title>resched_curr (2 samples, 0.01%)</title><rect x="354.8" y="85" width="0.1" height="15.0" fill="rgb(247,127,34)" rx="2" ry="2" />
<text x="357.80" y="95.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15BlockBasedTable20NewDataBlockIteratorERKNS_11ReadOptionsERKN2yb5SliceENS_9BlockTypeEPNS_9BlockIterE (4 samples, 0.02%)</title><rect x="869.6" y="629" width="0.2" height="15.0" fill="rgb(216,146,48)" rx="2" ry="2" />
<text x="872.57" y="639.5" ></text>
</g>
<g >
<title>__strncpy_sse2_unaligned (3 samples, 0.01%)</title><rect x="380.5" y="821" width="0.1" height="15.0" fill="rgb(229,25,48)" rx="2" ry="2" />
<text x="383.47" y="831.5" ></text>
</g>
<g >
<title>__pthread_rwlock_rdlock (7 samples, 0.03%)</title><rect x="415.2" y="869" width="0.4" height="15.0" fill="rgb(226,27,27)" rx="2" ry="2" />
<text x="418.22" y="879.5" ></text>
</g>
<g >
<title>enqueue_entity (3 samples, 0.01%)</title><rect x="756.1" y="677" width="0.2" height="15.0" fill="rgb(247,88,2)" rx="2" ry="2" />
<text x="759.14" y="687.5" ></text>
</g>
<g >
<title>update_process_times (28 samples, 0.12%)</title><rect x="590.7" y="661" width="1.4" height="15.0" fill="rgb(218,149,30)" rx="2" ry="2" />
<text x="593.69" y="671.5" ></text>
</g>
<g >
<title>SYSC_getrusage (2 samples, 0.01%)</title><rect x="400.9" y="789" width="0.1" height="15.0" fill="rgb(240,38,6)" rx="2" ry="2" />
<text x="403.92" y="799.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5valueEv (9 samples, 0.04%)</title><rect x="723.4" y="645" width="0.4" height="15.0" fill="rgb(250,195,36)" rx="2" ry="2" />
<text x="726.36" y="655.5" ></text>
</g>
<g >
<title>strlen (3 samples, 0.01%)</title><rect x="216.3" y="933" width="0.2" height="15.0" fill="rgb(206,195,46)" rx="2" ry="2" />
<text x="219.33" y="943.5" ></text>
</g>
<g >
<title>__GI___libc_recvmsg (2 samples, 0.01%)</title><rect x="380.0" y="805" width="0.1" height="15.0" fill="rgb(233,184,52)" rx="2" ry="2" />
<text x="382.97" y="815.5" ></text>
</g>
<g >
<title>native_write_msr (2 samples, 0.01%)</title><rect x="490.8" y="581" width="0.1" height="15.0" fill="rgb(233,24,53)" rx="2" ry="2" />
<text x="493.84" y="591.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (8 samples, 0.03%)</title><rect x="475.1" y="629" width="0.4" height="15.0" fill="rgb(224,25,9)" rx="2" ry="2" />
<text x="478.13" y="639.5" ></text>
</g>
<g >
<title>_ZN7rocksdb16MemTableIterator4SeekERKN2yb5SliceE (3 samples, 0.01%)</title><rect x="642.7" y="645" width="0.1" height="15.0" fill="rgb(208,188,4)" rx="2" ry="2" />
<text x="645.70" y="655.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (9 samples, 0.04%)</title><rect x="118.4" y="773" width="0.4" height="15.0" fill="rgb(230,193,23)" rx="2" ry="2" />
<text x="121.35" y="783.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (4 samples, 0.02%)</title><rect x="680.5" y="597" width="0.2" height="15.0" fill="rgb(208,92,33)" rx="2" ry="2" />
<text x="683.46" y="607.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState35MajorityReplicatedHtLeaseExpirationEmNSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEE (2 samples, 0.01%)</title><rect x="774.8" y="869" width="0.1" height="15.0" fill="rgb(237,152,1)" rx="2" ry="2" />
<text x="777.76" y="879.5" ></text>
</g>
<g >
<title>_ZNSsC2ERKSs (4 samples, 0.02%)</title><rect x="768.0" y="805" width="0.2" height="15.0" fill="rgb(236,189,37)" rx="2" ry="2" />
<text x="770.97" y="815.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (2 samples, 0.01%)</title><rect x="1062.2" y="869" width="0.1" height="15.0" fill="rgb(205,67,6)" rx="2" ry="2" />
<text x="1065.21" y="879.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus8LogCache10LookupOpIdElPNS_6OpIdPBE (12 samples, 0.05%)</title><rect x="549.4" y="853" width="0.7" height="15.0" fill="rgb(236,211,19)" rx="2" ry="2" />
<text x="552.45" y="863.5" ></text>
</g>
<g >
<title>timerqueue_add (2 samples, 0.01%)</title><rect x="433.5" y="805" width="0.1" height="15.0" fill="rgb(249,195,37)" rx="2" ry="2" />
<text x="436.49" y="815.5" ></text>
</g>
<g >
<title>update_process_times (40 samples, 0.17%)</title><rect x="196.7" y="645" width="2.0" height="15.0" fill="rgb(212,217,17)" rx="2" ry="2" />
<text x="199.70" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi (51 samples, 0.22%)</title><rect x="965.7" y="725" width="2.6" height="15.0" fill="rgb(219,0,45)" rx="2" ry="2" />
<text x="968.74" y="735.5" ></text>
</g>
<g >
<title>__wake_up_common (12 samples, 0.05%)</title><rect x="546.2" y="581" width="0.6" height="15.0" fill="rgb(220,148,25)" rx="2" ry="2" />
<text x="549.23" y="591.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet6Tablet13DoGetSafeTimeENS_17StronglyTypedBoolINS0_16RequireLease_TagEEENS_10HybridTimeENSt6chrono10time_pointINS_15CoarseMonoClockENS6_8durationIlSt5ratioILl1ELl1000000000EEEEEE (5 samples, 0.02%)</title><rect x="774.6" y="885" width="0.3" height="15.0" fill="rgb(211,110,0)" rx="2" ry="2" />
<text x="777.61" y="895.5" ></text>
</g>
<g >
<title>tc_newarray (5 samples, 0.02%)</title><rect x="360.2" y="757" width="0.2" height="15.0" fill="rgb(212,12,24)" rx="2" ry="2" />
<text x="363.18" y="767.5" ></text>
</g>
<g >
<title>__pthread_rwlock_rdlock (5 samples, 0.02%)</title><rect x="748.4" y="805" width="0.2" height="15.0" fill="rgb(245,47,47)" rx="2" ry="2" />
<text x="751.38" y="815.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (2 samples, 0.01%)</title><rect x="970.6" y="597" width="0.1" height="15.0" fill="rgb(237,116,5)" rx="2" ry="2" />
<text x="973.58" y="607.5" ></text>
</g>
<g >
<title>__slab_free (2 samples, 0.01%)</title><rect x="387.8" y="197" width="0.1" height="15.0" fill="rgb(235,73,23)" rx="2" ry="2" />
<text x="390.78" y="207.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet11MvccManager13DoGetSafeTimeENS_10HybridTimeENSt6chrono10time_pointINS_15CoarseMonoClockENS3_8durationIlSt5ratioILl1ELl1000000000EEEEEES2_PSt11unique_lockISt5mutexE (16 samples, 0.07%)</title><rect x="537.7" y="853" width="0.8" height="15.0" fill="rgb(225,27,18)" rx="2" ry="2" />
<text x="540.72" y="863.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (6 samples, 0.03%)</title><rect x="596.4" y="853" width="0.3" height="15.0" fill="rgb(214,196,22)" rx="2" ry="2" />
<text x="599.37" y="863.5" ></text>
</g>
<g >
<title>tick_sched_handle (90 samples, 0.38%)</title><rect x="320.9" y="661" width="4.5" height="15.0" fill="rgb(245,121,1)" rx="2" ry="2" />
<text x="323.86" y="671.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (17 samples, 0.07%)</title><rect x="439.1" y="917" width="0.9" height="15.0" fill="rgb(236,1,54)" rx="2" ry="2" />
<text x="442.13" y="927.5" ></text>
</g>
<g >
<title>futex_wake (2 samples, 0.01%)</title><rect x="604.1" y="869" width="0.1" height="15.0" fill="rgb(254,15,9)" rx="2" ry="2" />
<text x="607.08" y="879.5" ></text>
</g>
<g >
<title>x86_pmu_disable (3 samples, 0.01%)</title><rect x="238.8" y="709" width="0.1" height="15.0" fill="rgb(240,24,19)" rx="2" ry="2" />
<text x="241.79" y="719.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (9 samples, 0.04%)</title><rect x="412.4" y="709" width="0.5" height="15.0" fill="rgb(220,216,46)" rx="2" ry="2" />
<text x="415.45" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb11CloudInfoPB10SharedDtorEv (6 samples, 0.03%)</title><rect x="763.0" y="789" width="0.3" height="15.0" fill="rgb(220,9,22)" rx="2" ry="2" />
<text x="766.03" y="799.5" ></text>
</g>
<g >
<title>fsnotify (2 samples, 0.01%)</title><rect x="547.1" y="677" width="0.1" height="15.0" fill="rgb(230,183,26)" rx="2" ry="2" />
<text x="550.13" y="687.5" ></text>
</g>
<g >
<title>__fdget (4 samples, 0.02%)</title><rect x="419.3" y="853" width="0.2" height="15.0" fill="rgb(246,34,41)" rx="2" ry="2" />
<text x="422.29" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7RpcCall11TransferredERKNS_6StatusEPNS0_10ConnectionE (11 samples, 0.05%)</title><rect x="360.0" y="805" width="0.6" height="15.0" fill="rgb(225,73,51)" rx="2" ry="2" />
<text x="363.03" y="815.5" ></text>
</g>
<g >
<title>_ZNK2yb3log10LogEntryPB12ByteSizeLongEv (5 samples, 0.02%)</title><rect x="401.2" y="837" width="0.2" height="15.0" fill="rgb(254,78,15)" rx="2" ry="2" />
<text x="404.17" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="600.4" y="901" width="0.4" height="15.0" fill="rgb(236,198,54)" rx="2" ry="2" />
<text x="603.40" y="911.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.02%)</title><rect x="500.2" y="773" width="0.2" height="15.0" fill="rgb(229,190,52)" rx="2" ry="2" />
<text x="503.16" y="783.5" ></text>
</g>
<g >
<title>__wake_up_locked (8 samples, 0.03%)</title><rect x="342.3" y="149" width="0.4" height="15.0" fill="rgb(241,54,50)" rx="2" ry="2" />
<text x="345.26" y="159.5" ></text>
</g>
<g >
<title>pick_next_task_idle (16 samples, 0.07%)</title><rect x="115.5" y="757" width="0.8" height="15.0" fill="rgb(206,1,6)" rx="2" ry="2" />
<text x="118.53" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb14TaskStreamImplINS_3log13LogEntryBatchEE3RunEv (360 samples, 1.54%)</title><rect x="395.5" y="917" width="18.1" height="15.0" fill="rgb(224,48,39)" rx="2" ry="2" />
<text x="398.48" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7RpcCall11TransferredERKNS_6StatusEPNS0_10ConnectionE (3 samples, 0.01%)</title><rect x="344.6" y="789" width="0.1" height="15.0" fill="rgb(229,191,30)" rx="2" ry="2" />
<text x="347.58" y="799.5" ></text>
</g>
<g >
<title>schedule (842 samples, 3.59%)</title><rect x="159.4" y="789" width="42.4" height="15.0" fill="rgb(251,137,47)" rx="2" ry="2" />
<text x="162.44" y="799.5" >sch..</text>
</g>
<g >
<title>__audit_syscall_exit (2 samples, 0.01%)</title><rect x="757.3" y="773" width="0.1" height="15.0" fill="rgb(251,125,40)" rx="2" ry="2" />
<text x="760.34" y="783.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState11GetPeerUuidEv (2 samples, 0.01%)</title><rect x="758.5" y="853" width="0.1" height="15.0" fill="rgb(209,202,26)" rx="2" ry="2" />
<text x="761.45" y="863.5" ></text>
</g>
<g >
<title>ip_local_out (103 samples, 0.44%)</title><rect x="339.0" y="549" width="5.2" height="15.0" fill="rgb(213,75,12)" rx="2" ry="2" />
<text x="341.99" y="559.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13ProcessIntentEv@plt (7 samples, 0.03%)</title><rect x="777.3" y="709" width="0.3" height="15.0" fill="rgb(212,155,13)" rx="2" ry="2" />
<text x="780.28" y="719.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.02%)</title><rect x="399.9" y="709" width="0.2" height="15.0" fill="rgb(217,174,10)" rx="2" ry="2" />
<text x="402.86" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc15ServicePoolImpl12CheckTimeoutElNSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEERKNS_6StatusE (15 samples, 0.06%)</title><rect x="431.3" y="869" width="0.8" height="15.0" fill="rgb(238,103,6)" rx="2" ry="2" />
<text x="434.33" y="879.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv@plt (2 samples, 0.01%)</title><rect x="1057.5" y="773" width="0.1" height="15.0" fill="rgb(240,205,40)" rx="2" ry="2" />
<text x="1060.48" y="783.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (24 samples, 0.10%)</title><rect x="232.5" y="789" width="1.2" height="15.0" fill="rgb(238,89,8)" rx="2" ry="2" />
<text x="235.50" y="799.5" ></text>
</g>
<g >
<title>finish_task_switch (636 samples, 2.71%)</title><rect x="560.1" y="773" width="32.0" height="15.0" fill="rgb(244,69,19)" rx="2" ry="2" />
<text x="563.12" y="783.5" >fi..</text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream18TryProcessReceivedEv (227 samples, 0.97%)</title><rect x="368.3" y="853" width="11.4" height="15.0" fill="rgb(221,107,32)" rx="2" ry="2" />
<text x="371.29" y="863.5" ></text>
</g>
<g >
<title>dput (4 samples, 0.02%)</title><rect x="205.6" y="821" width="0.2" height="15.0" fill="rgb(238,25,37)" rx="2" ry="2" />
<text x="208.56" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator5validEv (2,893 samples, 12.34%)</title><rect x="913.3" y="805" width="145.7" height="15.0" fill="rgb(220,78,11)" rx="2" ry="2" />
<text x="916.33" y="815.5" >_ZN2yb5docdb19Inte..</text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="526.7" y="901" width="0.1" height="15.0" fill="rgb(252,50,50)" rx="2" ry="2" />
<text x="529.69" y="911.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter12ParseNextKeyEv (2 samples, 0.01%)</title><rect x="1011.2" y="725" width="0.1" height="15.0" fill="rgb(244,129,20)" rx="2" ry="2" />
<text x="1014.21" y="735.5" ></text>
</g>
<g >
<title>timerqueue_add (2 samples, 0.01%)</title><rect x="559.0" y="773" width="0.1" height="15.0" fill="rgb(246,136,1)" rx="2" ry="2" />
<text x="562.02" y="783.5" ></text>
</g>
<g >
<title>_ZN4base8SpinLock8SlowLockEv (7 samples, 0.03%)</title><rect x="550.6" y="885" width="0.3" height="15.0" fill="rgb(206,114,41)" rx="2" ry="2" />
<text x="553.56" y="895.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3 samples, 0.01%)</title><rect x="402.9" y="821" width="0.2" height="15.0" fill="rgb(221,57,22)" rx="2" ry="2" />
<text x="405.93" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus19GetRaftConfigMemberERKNS0_12RaftConfigPBERKSsPNS0_10RaftPeerPBE (2 samples, 0.01%)</title><rect x="399.2" y="821" width="0.1" height="15.0" fill="rgb(222,135,4)" rx="2" ry="2" />
<text x="402.20" y="831.5" ></text>
</g>
<g >
<title>update_rq_clock (7 samples, 0.03%)</title><rect x="201.1" y="757" width="0.3" height="15.0" fill="rgb(241,43,25)" rx="2" ry="2" />
<text x="204.08" y="767.5" ></text>
</g>
<g >
<title>try_to_wake_up (19 samples, 0.08%)</title><rect x="426.1" y="741" width="0.9" height="15.0" fill="rgb(226,140,42)" rx="2" ry="2" />
<text x="429.09" y="751.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,931 samples, 8.24%)</title><rect x="1076.7" y="773" width="97.2" height="15.0" fill="rgb(223,100,47)" rx="2" ry="2" />
<text x="1079.71" y="783.5" >__perf_even..</text>
</g>
<g >
<title>sock_has_perm (4 samples, 0.02%)</title><rect x="359.0" y="661" width="0.2" height="15.0" fill="rgb(223,124,7)" rx="2" ry="2" />
<text x="361.98" y="671.5" ></text>
</g>
<g >
<title>ev_io_stop (2 samples, 0.01%)</title><rect x="391.4" y="869" width="0.1" height="15.0" fill="rgb(233,212,38)" rx="2" ry="2" />
<text x="394.40" y="879.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="417.2" y="917" width="0.2" height="15.0" fill="rgb(208,208,5)" rx="2" ry="2" />
<text x="420.23" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet16OperationTracker7ReleaseEPNS0_15OperationDriverE (4 samples, 0.02%)</title><rect x="534.8" y="741" width="0.2" height="15.0" fill="rgb(223,29,20)" rx="2" ry="2" />
<text x="537.80" y="751.5" ></text>
</g>
<g >
<title>futex_wait_setup (4 samples, 0.02%)</title><rect x="614.9" y="853" width="0.2" height="15.0" fill="rgb(242,119,0)" rx="2" ry="2" />
<text x="617.85" y="863.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (51 samples, 0.22%)</title><rect x="44.3" y="741" width="2.6" height="15.0" fill="rgb(216,126,40)" rx="2" ry="2" />
<text x="47.34" y="751.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (3 samples, 0.01%)</title><rect x="1185.0" y="821" width="0.2" height="15.0" fill="rgb(216,157,38)" rx="2" ry="2" />
<text x="1188.02" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor19ScanIdleConnectionsEv (4 samples, 0.02%)</title><rect x="366.4" y="869" width="0.2" height="15.0" fill="rgb(239,7,46)" rx="2" ry="2" />
<text x="369.43" y="879.5" ></text>
</g>
<g >
<title>futex_wait (12 samples, 0.05%)</title><rect x="753.5" y="741" width="0.6" height="15.0" fill="rgb(232,159,27)" rx="2" ry="2" />
<text x="756.47" y="751.5" ></text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase7ReleaseEv (3 samples, 0.01%)</title><rect x="553.4" y="885" width="0.1" height="15.0" fill="rgb(250,87,43)" rx="2" ry="2" />
<text x="556.38" y="895.5" ></text>
</g>
<g >
<title>sys_futex (25 samples, 0.11%)</title><rect x="484.3" y="869" width="1.3" height="15.0" fill="rgb(249,141,1)" rx="2" ry="2" />
<text x="487.35" y="879.5" ></text>
</g>
<g >
<title>pick_next_task_fair (26 samples, 0.11%)</title><rect x="114.2" y="757" width="1.3" height="15.0" fill="rgb(208,109,47)" rx="2" ry="2" />
<text x="117.22" y="767.5" ></text>
</g>
<g >
<title>memset@plt (2 samples, 0.01%)</title><rect x="216.2" y="933" width="0.1" height="15.0" fill="rgb(239,223,1)" rx="2" ry="2" />
<text x="219.23" y="943.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (94 samples, 0.40%)</title><rect x="609.1" y="741" width="4.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="612.11" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue16ResponseFromPeerERKSsRKNS0_19ConsensusResponsePBEPb (19 samples, 0.08%)</title><rect x="398.8" y="837" width="1.0" height="15.0" fill="rgb(246,69,24)" rx="2" ry="2" />
<text x="401.80" y="847.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (65 samples, 0.28%)</title><rect x="385.9" y="517" width="3.2" height="15.0" fill="rgb(249,122,34)" rx="2" ry="2" />
<text x="388.86" y="527.5" ></text>
</g>
<g >
<title>kmem_zone_alloc (2 samples, 0.01%)</title><rect x="401.9" y="613" width="0.1" height="15.0" fill="rgb(231,198,8)" rx="2" ry="2" />
<text x="404.87" y="623.5" ></text>
</g>
<g >
<title>do_futex (9 samples, 0.04%)</title><rect x="1061.7" y="869" width="0.5" height="15.0" fill="rgb(242,152,6)" rx="2" ry="2" />
<text x="1064.71" y="879.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (2 samples, 0.01%)</title><rect x="342.6" y="69" width="0.1" height="15.0" fill="rgb(220,152,7)" rx="2" ry="2" />
<text x="345.56" y="79.5" ></text>
</g>
<g >
<title>_ZNSt17_Function_handlerIFvvESt5_BindIFSt7_Mem_fnIMN2yb6tablet12PreparerImplEFvvEEPS5_EEE9_M_invokeERKSt9_Any_data (2 samples, 0.01%)</title><rect x="496.5" y="917" width="0.1" height="15.0" fill="rgb(218,80,24)" rx="2" ry="2" />
<text x="499.53" y="927.5" ></text>
</g>
<g >
<title>__netif_receive_skb (88 samples, 0.38%)</title><rect x="352.1" y="405" width="4.4" height="15.0" fill="rgb(240,97,27)" rx="2" ry="2" />
<text x="355.08" y="415.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9Scheduler10DoScheduleESt10shared_ptrINS0_17ScheduledTaskBaseEE (15 samples, 0.06%)</title><rect x="428.8" y="869" width="0.7" height="15.0" fill="rgb(209,19,5)" rx="2" ry="2" />
<text x="431.76" y="879.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="738.3" y="869" width="0.1" height="15.0" fill="rgb(241,109,31)" rx="2" ry="2" />
<text x="741.26" y="879.5" ></text>
</g>
<g >
<title>_raw_spin_lock (5 samples, 0.02%)</title><rect x="755.0" y="757" width="0.2" height="15.0" fill="rgb(221,62,12)" rx="2" ry="2" />
<text x="757.98" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPB5ClearEv (2 samples, 0.01%)</title><rect x="762.4" y="837" width="0.1" height="15.0" fill="rgb(225,71,42)" rx="2" ry="2" />
<text x="765.43" y="847.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.40 (2 samples, 0.01%)</title><rect x="347.7" y="613" width="0.1" height="15.0" fill="rgb(227,166,44)" rx="2" ry="2" />
<text x="350.75" y="623.5" ></text>
</g>
<g >
<title>prepare_[worker (833 samples, 3.55%)</title><rect x="485.6" y="981" width="41.9" height="15.0" fill="rgb(226,154,22)" rx="2" ry="2" />
<text x="488.61" y="991.5" >pre..</text>
</g>
<g >
<title>_ZZN2yb3rpc9Scheduler4Impl10DoScheduleESt10shared_ptrINS0_17ScheduledTaskBaseEEENKUlvE_clEv (13 samples, 0.06%)</title><rect x="428.8" y="821" width="0.6" height="15.0" fill="rgb(245,228,15)" rx="2" ry="2" />
<text x="431.76" y="831.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (8 samples, 0.03%)</title><rect x="228.4" y="805" width="0.4" height="15.0" fill="rgb(221,11,41)" rx="2" ry="2" />
<text x="231.42" y="815.5" ></text>
</g>
<g >
<title>tick_sched_handle (3 samples, 0.01%)</title><rect x="996.7" y="645" width="0.2" height="15.0" fill="rgb(230,94,37)" rx="2" ry="2" />
<text x="999.71" y="655.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="21.8" y="837" width="0.1" height="15.0" fill="rgb(216,47,19)" rx="2" ry="2" />
<text x="24.83" y="847.5" ></text>
</g>
<g >
<title>native_write_msr (1,039 samples, 4.43%)</title><rect x="56.8" y="677" width="52.3" height="15.0" fill="rgb(243,4,30)" rx="2" ry="2" />
<text x="59.78" y="687.5" >nativ..</text>
</g>
<g >
<title>pthread_mutex_unlock (2 samples, 0.01%)</title><rect x="377.1" y="725" width="0.1" height="15.0" fill="rgb(247,148,27)" rx="2" ry="2" />
<text x="380.05" y="735.5" ></text>
</g>
<g >
<title>tick_sched_handle (5 samples, 0.02%)</title><rect x="1046.3" y="661" width="0.3" height="15.0" fill="rgb(253,99,40)" rx="2" ry="2" />
<text x="1049.30" y="671.5" ></text>
</g>
<g >
<title>get_futex_key (2 samples, 0.01%)</title><rect x="437.8" y="837" width="0.1" height="15.0" fill="rgb(205,201,44)" rx="2" ry="2" />
<text x="440.82" y="847.5" ></text>
</g>
<g >
<title>futex_wait (24 samples, 0.10%)</title><rect x="484.4" y="837" width="1.2" height="15.0" fill="rgb(240,221,29)" rx="2" ry="2" />
<text x="487.40" y="847.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (49 samples, 0.21%)</title><rect x="121.9" y="853" width="2.5" height="15.0" fill="rgb(226,133,4)" rx="2" ry="2" />
<text x="124.93" y="863.5" ></text>
</g>
<g >
<title>update_curr (4 samples, 0.02%)</title><rect x="608.5" y="757" width="0.2" height="15.0" fill="rgb(237,169,3)" rx="2" ry="2" />
<text x="611.51" y="767.5" ></text>
</g>
<g >
<title>check_preempt_curr (2 samples, 0.01%)</title><rect x="531.6" y="677" width="0.1" height="15.0" fill="rgb(221,14,2)" rx="2" ry="2" />
<text x="534.57" y="687.5" ></text>
</g>
<g >
<title>scheduler_tick (28 samples, 0.12%)</title><rect x="590.7" y="645" width="1.4" height="15.0" fill="rgb(215,188,35)" rx="2" ry="2" />
<text x="593.69" y="655.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (3 samples, 0.01%)</title><rect x="684.5" y="661" width="0.1" height="15.0" fill="rgb(237,68,14)" rx="2" ry="2" />
<text x="687.49" y="671.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (921 samples, 3.93%)</title><rect x="155.5" y="805" width="46.3" height="15.0" fill="rgb(223,99,1)" rx="2" ry="2" />
<text x="158.46" y="815.5" >sche..</text>
</g>
<g >
<title>enqueue_task_fair (2 samples, 0.01%)</title><rect x="546.5" y="501" width="0.1" height="15.0" fill="rgb(237,94,39)" rx="2" ry="2" />
<text x="549.48" y="511.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (4 samples, 0.02%)</title><rect x="437.1" y="837" width="0.2" height="15.0" fill="rgb(251,181,18)" rx="2" ry="2" />
<text x="440.07" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection19DoQueueOutboundDataESt10shared_ptrINS0_12OutboundDataEEb (8 samples, 0.03%)</title><rect x="345.1" y="837" width="0.4" height="15.0" fill="rgb(225,157,21)" rx="2" ry="2" />
<text x="348.08" y="847.5" ></text>
</g>
<g >
<title>drop_futex_key_refs.isra.13 (3 samples, 0.01%)</title><rect x="450.0" y="837" width="0.1" height="15.0" fill="rgb(214,13,24)" rx="2" ry="2" />
<text x="452.96" y="847.5" ></text>
</g>
<g >
<title>perf_pmu_enable (1,546 samples, 6.60%)</title><rect x="242.5" y="725" width="77.8" height="15.0" fill="rgb(242,195,33)" rx="2" ry="2" />
<text x="245.47" y="735.5" >perf_pmu..</text>
</g>
<g >
<title>start_thread (4 samples, 0.02%)</title><rect x="395.1" y="965" width="0.2" height="15.0" fill="rgb(250,224,24)" rx="2" ry="2" />
<text x="398.13" y="975.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache16AppendOperationsERKSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS5_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointERKNS_8CallbackIFvRKNS_6StatusEEEE (67 samples, 0.29%)</title><rect x="492.1" y="821" width="3.4" height="15.0" fill="rgb(248,69,17)" rx="2" ry="2" />
<text x="495.10" y="831.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.02%)</title><rect x="394.7" y="741" width="0.2" height="15.0" fill="rgb(205,0,31)" rx="2" ry="2" />
<text x="397.72" y="751.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (3 samples, 0.01%)</title><rect x="476.7" y="741" width="0.1" height="15.0" fill="rgb(222,71,1)" rx="2" ry="2" />
<text x="479.69" y="751.5" ></text>
</g>
<g >
<title>x86_pmu_enable (8 samples, 0.03%)</title><rect x="482.5" y="709" width="0.4" height="15.0" fill="rgb(222,136,12)" rx="2" ry="2" />
<text x="485.53" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCall15InboundCallTask3RunEv (2,789 samples, 11.90%)</title><rect x="620.3" y="917" width="140.4" height="15.0" fill="rgb(211,62,21)" rx="2" ry="2" />
<text x="623.29" y="927.5" >_ZN2yb3rpc11Inbou..</text>
</g>
<g >
<title>_ZNK2yb7tserver15TSTabletManager13GetTabletPeerERKSsPSt10shared_ptrINS_6tablet10TabletPeerEE (10 samples, 0.04%)</title><rect x="748.2" y="837" width="0.5" height="15.0" fill="rgb(233,72,19)" rx="2" ry="2" />
<text x="751.18" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4NextEv (7 samples, 0.03%)</title><rect x="911.7" y="709" width="0.4" height="15.0" fill="rgb(218,147,2)" rx="2" ry="2" />
<text x="914.72" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5valueEv (5 samples, 0.02%)</title><rect x="713.0" y="661" width="0.3" height="15.0" fill="rgb(244,90,23)" rx="2" ry="2" />
<text x="716.04" y="671.5" ></text>
</g>
<g >
<title>select_task_rq_fair (2 samples, 0.01%)</title><rect x="395.8" y="437" width="0.1" height="15.0" fill="rgb(221,192,9)" rx="2" ry="2" />
<text x="398.78" y="447.5" ></text>
</g>
<g >
<title>do_futex (773 samples, 3.30%)</title><rect x="557.3" y="853" width="38.9" height="15.0" fill="rgb(208,122,46)" rx="2" ry="2" />
<text x="560.25" y="863.5" >do_..</text>
</g>
<g >
<title>tc_deletearray_nothrow (2 samples, 0.01%)</title><rect x="394.6" y="885" width="0.1" height="15.0" fill="rgb(224,200,7)" rx="2" ry="2" />
<text x="397.57" y="895.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (8 samples, 0.03%)</title><rect x="538.7" y="869" width="0.4" height="15.0" fill="rgb(217,176,43)" rx="2" ry="2" />
<text x="541.72" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc27YBOutboundConnectionContext10HandleCallERKSt10shared_ptrINS0_10ConnectionEEPNS0_8CallDataE (106 samples, 0.45%)</title><rect x="373.9" y="789" width="5.4" height="15.0" fill="rgb(218,178,21)" rx="2" ry="2" />
<text x="376.93" y="799.5" ></text>
</g>
<g >
<title>syscall_trace_enter (11 samples, 0.05%)</title><rect x="206.4" y="853" width="0.5" height="15.0" fill="rgb(216,208,34)" rx="2" ry="2" />
<text x="209.36" y="863.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="667.5" y="613" width="0.1" height="15.0" fill="rgb(214,15,37)" rx="2" ry="2" />
<text x="670.47" y="623.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb3rpc12OutboundCallESaIS2_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info (2 samples, 0.01%)</title><rect x="548.1" y="853" width="0.1" height="15.0" fill="rgb(230,189,40)" rx="2" ry="2" />
<text x="551.14" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet12PreparerImpl6SubmitEPNS0_15OperationDriverE (20 samples, 0.09%)</title><rect x="750.7" y="757" width="1.0" height="15.0" fill="rgb(239,19,3)" rx="2" ry="2" />
<text x="753.70" y="767.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="418.6" y="901" width="0.1" height="15.0" fill="rgb(231,197,29)" rx="2" ry="2" />
<text x="421.59" y="911.5" ></text>
</g>
<g >
<title>_ZNK2yb7tserver14WriteRequestPB12ByteSizeLongEv (2 samples, 0.01%)</title><rect x="401.3" y="805" width="0.1" height="15.0" fill="rgb(206,156,16)" rx="2" ry="2" />
<text x="404.27" y="815.5" ></text>
</g>
<g >
<title>update_rq_clock (15 samples, 0.06%)</title><rect x="116.4" y="757" width="0.7" height="15.0" fill="rgb(253,206,28)" rx="2" ry="2" />
<text x="119.39" y="767.5" ></text>
</g>
<g >
<title>iptable_raw_hook (6 samples, 0.03%)</title><rect x="388.8" y="389" width="0.3" height="15.0" fill="rgb(211,55,13)" rx="2" ry="2" />
<text x="391.78" y="399.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (4 samples, 0.02%)</title><rect x="559.5" y="773" width="0.2" height="15.0" fill="rgb(248,84,27)" rx="2" ry="2" />
<text x="562.47" y="783.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv (3 samples, 0.01%)</title><rect x="912.8" y="709" width="0.1" height="15.0" fill="rgb(218,188,28)" rx="2" ry="2" />
<text x="915.77" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (6 samples, 0.03%)</title><rect x="1013.2" y="725" width="0.3" height="15.0" fill="rgb(248,208,8)" rx="2" ry="2" />
<text x="1016.22" y="735.5" ></text>
</g>
<g >
<title>netif_rx_internal (3 samples, 0.01%)</title><rect x="356.9" y="421" width="0.1" height="15.0" fill="rgb(246,55,43)" rx="2" ry="2" />
<text x="359.86" y="431.5" ></text>
</g>
<g >
<title>_ZN2yb3log8LogIndex8GetEntryElPNS0_13LogIndexEntryE (4 samples, 0.02%)</title><rect x="771.2" y="805" width="0.2" height="15.0" fill="rgb(213,225,43)" rx="2" ry="2" />
<text x="774.24" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="554.7" y="901" width="0.2" height="15.0" fill="rgb(209,43,43)" rx="2" ry="2" />
<text x="557.69" y="911.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (2 samples, 0.01%)</title><rect x="434.5" y="789" width="0.1" height="15.0" fill="rgb(226,207,26)" rx="2" ry="2" />
<text x="437.50" y="799.5" ></text>
</g>
<g >
<title>xfs_buf_submit (5 samples, 0.02%)</title><rect x="395.7" y="677" width="0.2" height="15.0" fill="rgb(246,62,19)" rx="2" ry="2" />
<text x="398.68" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb10hash_valueERKN5boost4asio2ip14basic_endpointINS2_3tcpEEE (2 samples, 0.01%)</title><rect x="364.9" y="805" width="0.1" height="15.0" fill="rgb(215,36,12)" rx="2" ry="2" />
<text x="367.87" y="815.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (3 samples, 0.01%)</title><rect x="745.5" y="853" width="0.1" height="15.0" fill="rgb(221,92,33)" rx="2" ry="2" />
<text x="748.46" y="863.5" ></text>
</g>
<g >
<title>__dta_xfs_file_buffered_aio_write_3295 (19 samples, 0.08%)</title><rect x="401.8" y="693" width="0.9" height="15.0" fill="rgb(218,218,4)" rx="2" ry="2" />
<text x="404.77" y="703.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2 samples, 0.01%)</title><rect x="353.3" y="181" width="0.1" height="15.0" fill="rgb(240,75,6)" rx="2" ry="2" />
<text x="356.34" y="191.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator3keyEv (3 samples, 0.01%)</title><rect x="900.2" y="677" width="0.2" height="15.0" fill="rgb(252,158,44)" rx="2" ry="2" />
<text x="903.24" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver10LeaderTermERKNS_6tablet10TabletPeerE (4 samples, 0.02%)</title><rect x="737.7" y="837" width="0.2" height="15.0" fill="rgb(237,95,8)" rx="2" ry="2" />
<text x="740.66" y="847.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (5 samples, 0.02%)</title><rect x="400.2" y="869" width="0.3" height="15.0" fill="rgb(227,78,37)" rx="2" ry="2" />
<text x="403.21" y="879.5" ></text>
</g>
<g >
<title>put_prev_task_fair (3 samples, 0.01%)</title><rect x="116.2" y="741" width="0.1" height="15.0" fill="rgb(210,53,42)" rx="2" ry="2" />
<text x="119.19" y="751.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator4NextEv (2 samples, 0.01%)</title><rect x="849.4" y="677" width="0.1" height="15.0" fill="rgb(249,160,45)" rx="2" ry="2" />
<text x="852.38" y="687.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="768.2" y="805" width="0.1" height="15.0" fill="rgb(206,37,19)" rx="2" ry="2" />
<text x="771.17" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver25LookupTabletPeerOrRespondINS_9consensus19ConsensusResponsePBEEENS_6ResultISt10shared_ptrINS_6tablet10TabletPeerEEEEPNS0_18TabletPeerLookupIfERKSsPT_PNS_3rpc10RpcContextE (11 samples, 0.05%)</title><rect x="748.1" y="853" width="0.6" height="15.0" fill="rgb(240,205,2)" rx="2" ry="2" />
<text x="751.13" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13ProcessIntentEv@plt (5 samples, 0.02%)</title><rect x="913.8" y="773" width="0.2" height="15.0" fill="rgb(240,90,54)" rx="2" ry="2" />
<text x="916.78" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor19ScanIdleConnectionsEv (5 samples, 0.02%)</title><rect x="136.3" y="869" width="0.3" height="15.0" fill="rgb(230,91,15)" rx="2" ry="2" />
<text x="139.33" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb9LongAdder11IncrementByEl (3 samples, 0.01%)</title><rect x="370.5" y="741" width="0.2" height="15.0" fill="rgb(217,39,52)" rx="2" ry="2" />
<text x="373.51" y="751.5" ></text>
</g>
<g >
<title>deactivate_task (27 samples, 0.12%)</title><rect x="453.3" y="789" width="1.4" height="15.0" fill="rgb(245,111,29)" rx="2" ry="2" />
<text x="456.33" y="799.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (533 samples, 2.27%)</title><rect x="450.1" y="837" width="26.8" height="15.0" fill="rgb(236,79,4)" rx="2" ry="2" />
<text x="453.11" y="847.5" >f..</text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter4NextEv (5 samples, 0.02%)</title><rect x="877.0" y="661" width="0.3" height="15.0" fill="rgb(251,211,26)" rx="2" ry="2" />
<text x="880.03" y="671.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (72 samples, 0.31%)</title><rect x="233.7" y="789" width="3.6" height="15.0" fill="rgb(210,223,14)" rx="2" ry="2" />
<text x="236.70" y="799.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="425.2" y="805" width="0.1" height="15.0" fill="rgb(228,181,35)" rx="2" ry="2" />
<text x="428.19" y="815.5" ></text>
</g>
<g >
<title>copy_msghdr_from_user (4 samples, 0.02%)</title><rect x="381.9" y="741" width="0.2" height="15.0" fill="rgb(209,65,28)" rx="2" ry="2" />
<text x="384.88" y="751.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="540.7" y="901" width="0.1" height="15.0" fill="rgb(217,217,53)" rx="2" ry="2" />
<text x="543.69" y="911.5" ></text>
</g>
<g >
<title>[unknown] (43 samples, 0.18%)</title><rect x="215.9" y="965" width="2.2" height="15.0" fill="rgb(238,39,33)" rx="2" ry="2" />
<text x="218.93" y="975.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3 samples, 0.01%)</title><rect x="398.2" y="597" width="0.1" height="15.0" fill="rgb(244,163,9)" rx="2" ry="2" />
<text x="401.20" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log11AsyncAppendEPNS0_13LogEntryBatchERKNS_8CallbackIFvRKNS_6StatusEEEE (2 samples, 0.01%)</title><rect x="749.9" y="757" width="0.1" height="15.0" fill="rgb(218,217,16)" rx="2" ry="2" />
<text x="752.94" y="767.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="417.2" y="869" width="0.2" height="15.0" fill="rgb(208,24,43)" rx="2" ry="2" />
<text x="420.23" y="879.5" ></text>
</g>
<g >
<title>sys_futex (14 samples, 0.06%)</title><rect x="753.4" y="773" width="0.7" height="15.0" fill="rgb(220,52,47)" rx="2" ry="2" />
<text x="756.37" y="783.5" ></text>
</g>
<g >
<title>deactivate_task (41 samples, 0.17%)</title><rect x="163.2" y="757" width="2.1" height="15.0" fill="rgb(252,126,24)" rx="2" ry="2" />
<text x="166.21" y="767.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (2 samples, 0.01%)</title><rect x="1042.0" y="725" width="0.1" height="15.0" fill="rgb(215,167,38)" rx="2" ry="2" />
<text x="1044.97" y="735.5" ></text>
</g>
<g >
<title>sched_clock (2 samples, 0.01%)</title><rect x="452.8" y="725" width="0.1" height="15.0" fill="rgb(224,51,1)" rx="2" ry="2" />
<text x="455.83" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator20SeekToSuitableIntentILNS0_9DirectionE0EEEvv (2,803 samples, 11.96%)</title><rect x="914.5" y="773" width="141.1" height="15.0" fill="rgb(234,38,12)" rx="2" ry="2" />
<text x="917.49" y="783.5" >_ZN2yb5docdb19Int..</text>
</g>
<g >
<title>_ZN7rocksdb6DBImpl9WriteImplERKNS_12WriteOptionsEPNS_10WriteBatchEPNS_13WriteCallbackE (18 samples, 0.08%)</title><rect x="532.6" y="677" width="0.9" height="15.0" fill="rgb(214,111,4)" rx="2" ry="2" />
<text x="535.58" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer7EnqueueEPNS_3rpc14ThreadPoolTaskE (10 samples, 0.04%)</title><rect x="535.0" y="725" width="0.6" height="15.0" fill="rgb(234,86,23)" rx="2" ry="2" />
<text x="538.05" y="735.5" ></text>
</g>
<g >
<title>__wake_up_common (13 samples, 0.06%)</title><rect x="746.5" y="613" width="0.6" height="15.0" fill="rgb(236,87,22)" rx="2" ry="2" />
<text x="749.47" y="623.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (4 samples, 0.02%)</title><rect x="196.2" y="741" width="0.2" height="15.0" fill="rgb(220,57,24)" rx="2" ry="2" />
<text x="199.24" y="751.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,599 samples, 6.82%)</title><rect x="37.2" y="805" width="80.5" height="15.0" fill="rgb(247,140,19)" rx="2" ry="2" />
<text x="40.24" y="815.5" >schedule_..</text>
</g>
<g >
<title>default_wake_function (11 samples, 0.05%)</title><rect x="546.3" y="565" width="0.5" height="15.0" fill="rgb(243,153,9)" rx="2" ry="2" />
<text x="549.28" y="575.5" ></text>
</g>
<g >
<title>deactivate_task (2 samples, 0.01%)</title><rect x="1185.5" y="789" width="0.1" height="15.0" fill="rgb(241,121,20)" rx="2" ry="2" />
<text x="1188.47" y="799.5" ></text>
</g>
<g >
<title>ipt_do_table (7 samples, 0.03%)</title><rect x="355.7" y="325" width="0.3" height="15.0" fill="rgb(237,163,45)" rx="2" ry="2" />
<text x="358.65" y="335.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="686.9" y="629" width="0.1" height="15.0" fill="rgb(214,197,41)" rx="2" ry="2" />
<text x="689.85" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb7pb_util14ParseFromArrayEPN6google8protobuf11MessageLiteEPKhj (30 samples, 0.13%)</title><rect x="377.2" y="741" width="1.5" height="15.0" fill="rgb(216,57,42)" rx="2" ry="2" />
<text x="380.20" y="751.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5 samples, 0.02%)</title><rect x="1188.3" y="725" width="0.3" height="15.0" fill="rgb(248,42,37)" rx="2" ry="2" />
<text x="1191.34" y="735.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (4 samples, 0.02%)</title><rect x="229.2" y="789" width="0.2" height="15.0" fill="rgb(207,142,4)" rx="2" ry="2" />
<text x="232.22" y="799.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5 samples, 0.02%)</title><rect x="962.9" y="629" width="0.2" height="15.0" fill="rgb(240,93,35)" rx="2" ry="2" />
<text x="965.87" y="639.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc12OutboundCall10IsFinishedEv (2 samples, 0.01%)</title><rect x="361.2" y="805" width="0.1" height="15.0" fill="rgb(249,52,13)" rx="2" ry="2" />
<text x="364.24" y="815.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb10WriteBatch7IterateEPNS0_7HandlerE (12 samples, 0.05%)</title><rect x="532.8" y="645" width="0.6" height="15.0" fill="rgb(230,228,12)" rx="2" ry="2" />
<text x="535.78" y="655.5" ></text>
</g>
<g >
<title>start_thread (6 samples, 0.03%)</title><rect x="601.8" y="965" width="0.3" height="15.0" fill="rgb(211,201,1)" rx="2" ry="2" />
<text x="604.81" y="975.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (4 samples, 0.02%)</title><rect x="399.9" y="725" width="0.2" height="15.0" fill="rgb(246,48,29)" rx="2" ry="2" />
<text x="402.86" y="735.5" ></text>
</g>
<g >
<title>rb_erase (11 samples, 0.05%)</title><rect x="523.1" y="757" width="0.6" height="15.0" fill="rgb(216,139,27)" rx="2" ry="2" />
<text x="526.12" y="767.5" ></text>
</g>
<g >
<title>finish_task_switch (9 samples, 0.04%)</title><rect x="482.5" y="757" width="0.5" height="15.0" fill="rgb(218,6,9)" rx="2" ry="2" />
<text x="485.53" y="767.5" ></text>
</g>
<g >
<title>[libc-2.23.so] (141 samples, 0.60%)</title><rect x="1182.4" y="949" width="7.1" height="15.0" fill="rgb(227,158,41)" rx="2" ry="2" />
<text x="1185.45" y="959.5" ></text>
</g>
<g >
<title>__dta_xfs_file_fsync_3289 (56 samples, 0.24%)</title><rect x="395.7" y="757" width="2.8" height="15.0" fill="rgb(237,127,20)" rx="2" ry="2" />
<text x="398.68" y="767.5" ></text>
</g>
<g >
<title>ev_feed_event (14 samples, 0.06%)</title><rect x="213.8" y="901" width="0.7" height="15.0" fill="rgb(224,98,27)" rx="2" ry="2" />
<text x="216.82" y="911.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="344.5" y="773" width="0.1" height="15.0" fill="rgb(212,207,12)" rx="2" ry="2" />
<text x="347.47" y="783.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (3 samples, 0.01%)</title><rect x="238.6" y="661" width="0.2" height="15.0" fill="rgb(237,218,53)" rx="2" ry="2" />
<text x="241.64" y="671.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (123 samples, 0.52%)</title><rect x="383.3" y="693" width="6.2" height="15.0" fill="rgb(216,142,39)" rx="2" ry="2" />
<text x="386.34" y="703.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="536.7" y="789" width="0.1" height="15.0" fill="rgb(210,138,12)" rx="2" ry="2" />
<text x="539.66" y="799.5" ></text>
</g>
<g >
<title>activate_task (2 samples, 0.01%)</title><rect x="376.5" y="597" width="0.1" height="15.0" fill="rgb(207,79,50)" rx="2" ry="2" />
<text x="379.50" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock12NowWithErrorEPNS_10HybridTimeEPm (3 samples, 0.01%)</title><rect x="774.6" y="821" width="0.2" height="15.0" fill="rgb(225,27,36)" rx="2" ry="2" />
<text x="777.61" y="831.5" ></text>
</g>
<g >
<title>irq_exit (2 samples, 0.01%)</title><rect x="1179.4" y="741" width="0.1" height="15.0" fill="rgb(227,152,38)" rx="2" ry="2" />
<text x="1182.43" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache14EvictThroughOpEl (7 samples, 0.03%)</title><rect x="769.5" y="853" width="0.3" height="15.0" fill="rgb(225,210,49)" rx="2" ry="2" />
<text x="772.48" y="863.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (4 samples, 0.02%)</title><rect x="38.3" y="773" width="0.2" height="15.0" fill="rgb(245,155,31)" rx="2" ry="2" />
<text x="41.30" y="783.5" ></text>
</g>
<g >
<title>nf_hook_slow (30 samples, 0.13%)</title><rect x="384.0" y="581" width="1.6" height="15.0" fill="rgb(232,41,44)" rx="2" ry="2" />
<text x="387.05" y="591.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection10ReadBufferEv (2 samples, 0.01%)</title><rect x="366.5" y="837" width="0.1" height="15.0" fill="rgb(250,169,36)" rx="2" ry="2" />
<text x="369.53" y="847.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (3 samples, 0.01%)</title><rect x="383.6" y="629" width="0.1" height="15.0" fill="rgb(208,151,7)" rx="2" ry="2" />
<text x="386.60" y="639.5" ></text>
</g>
<g >
<title>rb_erase (3 samples, 0.01%)</title><rect x="413.0" y="725" width="0.1" height="15.0" fill="rgb(238,125,43)" rx="2" ry="2" />
<text x="415.95" y="735.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10 samples, 0.04%)</title><rect x="594.4" y="789" width="0.5" height="15.0" fill="rgb(249,28,25)" rx="2" ry="2" />
<text x="597.41" y="799.5" ></text>
</g>
<g >
<title>scheduler_tick (4 samples, 0.02%)</title><rect x="1188.4" y="661" width="0.2" height="15.0" fill="rgb(240,156,1)" rx="2" ry="2" />
<text x="1191.39" y="671.5" ></text>
</g>
<g >
<title>check_preempt_curr (4 samples, 0.02%)</title><rect x="756.4" y="693" width="0.2" height="15.0" fill="rgb(222,102,4)" rx="2" ry="2" />
<text x="759.39" y="703.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="440.4" y="933" width="0.1" height="15.0" fill="rgb(206,38,31)" rx="2" ry="2" />
<text x="443.44" y="943.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="396.0" y="693" width="0.1" height="15.0" fill="rgb(236,74,0)" rx="2" ry="2" />
<text x="399.03" y="703.5" ></text>
</g>
<g >
<title>_ZSteqIcEN9__gnu_cxx11__enable_ifIXsrSt9__is_charIT_E7__valueEbE6__typeERKSbIS3_St11char_traitsIS3_ESaIS3_EESC_ (2 samples, 0.01%)</title><rect x="753.2" y="821" width="0.1" height="15.0" fill="rgb(235,217,28)" rx="2" ry="2" />
<text x="756.16" y="831.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="477.5" y="821" width="0.1" height="15.0" fill="rgb(208,227,32)" rx="2" ry="2" />
<text x="480.50" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream11ReadHandlerEv (2 samples, 0.01%)</title><rect x="216.5" y="933" width="0.1" height="15.0" fill="rgb(234,89,6)" rx="2" ry="2" />
<text x="219.48" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver9ApplyTaskEl (68 samples, 0.29%)</title><rect x="532.2" y="773" width="3.4" height="15.0" fill="rgb(249,223,47)" rx="2" ry="2" />
<text x="535.18" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4NextEv (5 samples, 0.02%)</title><rect x="732.6" y="709" width="0.2" height="15.0" fill="rgb(210,162,6)" rx="2" ry="2" />
<text x="735.57" y="719.5" ></text>
</g>
<g >
<title>_ZN7rocksdb18ArenaWrappedDBIter4NextEv (3 samples, 0.01%)</title><rect x="645.2" y="693" width="0.2" height="15.0" fill="rgb(254,158,25)" rx="2" ry="2" />
<text x="648.21" y="703.5" ></text>
</g>
<g >
<title>sys_futex (605 samples, 2.58%)</title><rect x="447.6" y="885" width="30.5" height="15.0" fill="rgb(225,51,4)" rx="2" ry="2" />
<text x="450.59" y="895.5" >sy..</text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue16AppendOperationsERKSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS5_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointE (3 samples, 0.01%)</title><rect x="749.9" y="805" width="0.1" height="15.0" fill="rgb(237,32,29)" rx="2" ry="2" />
<text x="752.89" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus4Peer15ProcessResponseEv (231 samples, 0.99%)</title><rect x="761.1" y="885" width="11.7" height="15.0" fill="rgb(209,184,47)" rx="2" ry="2" />
<text x="764.12" y="895.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3 samples, 0.01%)</title><rect x="51.4" y="757" width="0.2" height="15.0" fill="rgb(230,56,43)" rx="2" ry="2" />
<text x="54.44" y="767.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3 samples, 0.01%)</title><rect x="715.4" y="629" width="0.1" height="15.0" fill="rgb(238,112,27)" rx="2" ry="2" />
<text x="718.35" y="639.5" ></text>
</g>
<g >
<title>remove_wait_queue (4 samples, 0.02%)</title><rect x="1184.4" y="853" width="0.2" height="15.0" fill="rgb(230,67,32)" rx="2" ry="2" />
<text x="1187.41" y="863.5" ></text>
</g>
<g >
<title>task_tick_fair (2 samples, 0.01%)</title><rect x="197.5" y="613" width="0.1" height="15.0" fill="rgb(212,15,26)" rx="2" ry="2" />
<text x="200.50" y="623.5" ></text>
</g>
<g >
<title>ep_poll (2,059 samples, 8.79%)</title><rect x="223.4" y="837" width="103.7" height="15.0" fill="rgb(240,6,18)" rx="2" ry="2" />
<text x="226.43" y="847.5" >ep_poll</text>
</g>
<g >
<title>_ZN2yb3rpc26YBInboundConnectionContext10HandleCallERKSt10shared_ptrINS0_10ConnectionEEPNS0_8CallDataE (87 samples, 0.37%)</title><rect x="368.9" y="789" width="4.4" height="15.0" fill="rgb(251,223,46)" rx="2" ry="2" />
<text x="371.94" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13serialization14ParseYBMessageERKNS_5SliceEPN6google8protobuf11MessageLiteEPS2_ (8 samples, 0.03%)</title><rect x="374.1" y="741" width="0.4" height="15.0" fill="rgb(233,183,47)" rx="2" ry="2" />
<text x="377.13" y="751.5" ></text>
</g>
<g >
<title>try_to_wake_up (12 samples, 0.05%)</title><rect x="766.0" y="709" width="0.6" height="15.0" fill="rgb(212,138,14)" rx="2" ry="2" />
<text x="769.00" y="719.5" ></text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="1022.9" y="597" width="0.1" height="15.0" fill="rgb(209,188,38)" rx="2" ry="2" />
<text x="1025.89" y="607.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal20RepeatedPtrFieldBase14InternalExtendEi (3 samples, 0.01%)</title><rect x="492.4" y="773" width="0.1" height="15.0" fill="rgb(211,66,1)" rx="2" ry="2" />
<text x="495.35" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken10SubmitFuncESt8functionIFvvEE (16 samples, 0.07%)</title><rect x="490.2" y="821" width="0.8" height="15.0" fill="rgb(207,178,52)" rx="2" ry="2" />
<text x="493.24" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus17RetryableRequests4Impl8RegisterERK13scoped_refptrINS0_14ConsensusRoundEENS_26RestartSafeCoarseTimePointE (3 samples, 0.01%)</title><rect x="495.5" y="837" width="0.2" height="15.0" fill="rgb(235,87,19)" rx="2" ry="2" />
<text x="498.52" y="847.5" ></text>
</g>
<g >
<title>deactivate_task (4 samples, 0.02%)</title><rect x="420.7" y="773" width="0.2" height="15.0" fill="rgb(234,133,0)" rx="2" ry="2" />
<text x="423.65" y="783.5" ></text>
</g>
<g >
<title>futex_wait (6 samples, 0.03%)</title><rect x="414.1" y="773" width="0.3" height="15.0" fill="rgb(212,186,43)" rx="2" ry="2" />
<text x="417.11" y="783.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.05%)</title><rect x="490.5" y="757" width="0.5" height="15.0" fill="rgb(240,157,9)" rx="2" ry="2" />
<text x="493.49" y="767.5" ></text>
</g>
<g >
<title>kernel-watcher- (27 samples, 0.12%)</title><rect x="482.0" y="981" width="1.4" height="15.0" fill="rgb(241,48,1)" rx="2" ry="2" />
<text x="485.03" y="991.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="963.1" y="533" width="0.2" height="15.0" fill="rgb(222,169,15)" rx="2" ry="2" />
<text x="966.12" y="543.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState14GetLeaderStateEv (2 samples, 0.01%)</title><rect x="737.7" y="821" width="0.1" height="15.0" fill="rgb(225,201,42)" rx="2" ry="2" />
<text x="740.66" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus12ReplicaState44SetMajorityReplicatedLeaseExpirationUnlockedERKNS0_22MajorityReplicatedDataENS_10EnumBitSetINS0_40SetMajorityReplicatedLeaseExpirationFlagEEE (14 samples, 0.06%)</title><rect x="535.7" y="885" width="0.7" height="15.0" fill="rgb(219,4,15)" rx="2" ry="2" />
<text x="538.70" y="895.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter5valueEv (8 samples, 0.03%)</title><rect x="728.4" y="693" width="0.4" height="15.0" fill="rgb(252,54,2)" rx="2" ry="2" />
<text x="731.39" y="703.5" ></text>
</g>
<g >
<title>tick_sched_handle (9 samples, 0.04%)</title><rect x="614.0" y="709" width="0.5" height="15.0" fill="rgb(254,114,8)" rx="2" ry="2" />
<text x="617.05" y="719.5" ></text>
</g>
<g >
<title>ipt_do_table (4 samples, 0.02%)</title><rect x="339.2" y="485" width="0.2" height="15.0" fill="rgb(241,54,52)" rx="2" ry="2" />
<text x="342.24" y="495.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (9 samples, 0.04%)</title><rect x="155.0" y="821" width="0.4" height="15.0" fill="rgb(220,43,19)" rx="2" ry="2" />
<text x="157.96" y="831.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="489.5" y="837" width="0.1" height="15.0" fill="rgb(213,228,13)" rx="2" ry="2" />
<text x="492.53" y="847.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="976.1" y="645" width="0.1" height="15.0" fill="rgb(209,148,40)" rx="2" ry="2" />
<text x="979.11" y="655.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (61 samples, 0.26%)</title><rect x="340.7" y="485" width="3.1" height="15.0" fill="rgb(245,4,53)" rx="2" ry="2" />
<text x="343.75" y="495.5" ></text>
</g>
<g >
<title>eventfd_ctx_read (6 samples, 0.03%)</title><rect x="393.1" y="773" width="0.3" height="15.0" fill="rgb(207,144,10)" rx="2" ry="2" />
<text x="396.06" y="783.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.02%)</title><rect x="680.5" y="629" width="0.2" height="15.0" fill="rgb(212,213,47)" rx="2" ry="2" />
<text x="683.46" y="639.5" ></text>
</g>
<g >
<title>dev_queue_xmit (3 samples, 0.01%)</title><rect x="389.1" y="549" width="0.2" height="15.0" fill="rgb(231,175,17)" rx="2" ry="2" />
<text x="392.13" y="559.5" ></text>
</g>
<g >
<title>finish_task_switch (2 samples, 0.01%)</title><rect x="434.6" y="789" width="0.1" height="15.0" fill="rgb(239,94,1)" rx="2" ry="2" />
<text x="437.60" y="799.5" ></text>
</g>
<g >
<title>cpuacct_charge (7 samples, 0.03%)</title><rect x="239.9" y="693" width="0.4" height="15.0" fill="rgb(214,166,38)" rx="2" ry="2" />
<text x="242.90" y="703.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_115ShardedLRUCache6LookupERKN2yb5SliceElPNS_10StatisticsE (2 samples, 0.01%)</title><rect x="869.6" y="581" width="0.1" height="15.0" fill="rgb(215,190,28)" rx="2" ry="2" />
<text x="872.62" y="591.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.02%)</title><rect x="394.9" y="789" width="0.2" height="15.0" fill="rgb(244,110,2)" rx="2" ry="2" />
<text x="397.92" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime10DecodeFromEPNS_5SliceE (587 samples, 2.50%)</title><rect x="933.9" y="709" width="29.6" height="15.0" fill="rgb(238,67,5)" rx="2" ry="2" />
<text x="936.92" y="719.5" >_Z..</text>
</g>
<g >
<title>fput (49 samples, 0.21%)</title><rect x="119.1" y="837" width="2.5" height="15.0" fill="rgb(241,189,53)" rx="2" ry="2" />
<text x="122.11" y="847.5" ></text>
</g>
<g >
<title>_ZN7rocksdb14StatisticsImpl10recordTickEjm (299 samples, 1.28%)</title><rect x="652.7" y="677" width="15.0" height="15.0" fill="rgb(239,100,8)" rx="2" ry="2" />
<text x="655.67" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime14GetEncodedSizeERKNS_5SliceE (13 samples, 0.06%)</title><rect x="795.1" y="661" width="0.7" height="15.0" fill="rgb(248,64,30)" rx="2" ry="2" />
<text x="798.11" y="671.5" ></text>
</g>
<g >
<title>ip_local_out (5 samples, 0.02%)</title><rect x="341.6" y="165" width="0.3" height="15.0" fill="rgb(239,17,54)" rx="2" ry="2" />
<text x="344.60" y="175.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="1181.7" y="789" width="0.1" height="15.0" fill="rgb(235,123,44)" rx="2" ry="2" />
<text x="1184.74" y="799.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (5 samples, 0.02%)</title><rect x="595.8" y="789" width="0.3" height="15.0" fill="rgb(254,2,44)" rx="2" ry="2" />
<text x="598.82" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver19ReplicationFinishedERKNS_6StatusEl (73 samples, 0.31%)</title><rect x="532.0" y="805" width="3.7" height="15.0" fill="rgb(229,137,53)" rx="2" ry="2" />
<text x="534.98" y="815.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="1020.7" y="661" width="0.1" height="15.0" fill="rgb(244,135,7)" rx="2" ry="2" />
<text x="1023.72" y="671.5" ></text>
</g>
<g >
<title>rb_erase (2 samples, 0.01%)</title><rect x="593.3" y="773" width="0.1" height="15.0" fill="rgb(234,116,2)" rx="2" ry="2" />
<text x="596.30" y="783.5" ></text>
</g>
<g >
<title>_ZNKSt10_HashtableIN2yb3rpc12RemoteMethodESt4pairIKS2_PNS0_20ThreadSafeObjectPoolINS1_14RemoteMethodPBEEEESaIS9_ENSt8__detail10_Select1stESt8equal_toIS2_ENS1_16RemoteMethodHashENSB_18_Mod_range_hashingENSB_20_Default_ranged_hashENSB_20_Prime_rehash_policyENSB_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS4_m (2 samples, 0.01%)</title><rect x="544.7" y="821" width="0.1" height="15.0" fill="rgb(226,183,43)" rx="2" ry="2" />
<text x="547.72" y="831.5" ></text>
</g>
<g >
<title>netif_rx (3 samples, 0.01%)</title><rect x="356.9" y="437" width="0.1" height="15.0" fill="rgb(211,202,8)" rx="2" ry="2" />
<text x="359.86" y="447.5" ></text>
</g>
<g >
<title>dequeue_task_fair (38 samples, 0.16%)</title><rect x="163.4" y="741" width="1.9" height="15.0" fill="rgb(250,151,2)" rx="2" ry="2" />
<text x="166.37" y="751.5" ></text>
</g>
<g >
<title>_ZN7rocksdb16MemTableIterator4NextEv (16 samples, 0.07%)</title><rect x="876.0" y="661" width="0.8" height="15.0" fill="rgb(245,146,27)" rx="2" ry="2" />
<text x="878.97" y="671.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf7Message13SpaceUsedLongEv (3 samples, 0.01%)</title><rect x="494.6" y="741" width="0.2" height="15.0" fill="rgb(218,176,37)" rx="2" ry="2" />
<text x="497.62" y="751.5" ></text>
</g>
<g >
<title>do_futex (33 samples, 0.14%)</title><rect x="415.6" y="853" width="1.6" height="15.0" fill="rgb(221,223,36)" rx="2" ry="2" />
<text x="418.57" y="863.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator4NextEv (8 samples, 0.03%)</title><rect x="675.0" y="661" width="0.4" height="15.0" fill="rgb(243,45,34)" rx="2" ry="2" />
<text x="677.97" y="671.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_stage2 (2 samples, 0.01%)</title><rect x="207.0" y="885" width="0.1" height="15.0" fill="rgb(212,12,51)" rx="2" ry="2" />
<text x="210.02" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc16BinaryCallParser5ParseERKSt10shared_ptrINS0_10ConnectionEERKN5boost9container12small_vectorI5iovecLm4ENS8_13new_allocatorISA_EEEENS_17StronglyTypedBoolINS0_18ReadBufferFull_TagEEE (6 samples, 0.03%)</title><rect x="368.6" y="821" width="0.3" height="15.0" fill="rgb(223,122,49)" rx="2" ry="2" />
<text x="371.59" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection19DoQueueOutboundDataESt10shared_ptrINS0_12OutboundDataEEb (33 samples, 0.14%)</title><rect x="362.2" y="821" width="1.7" height="15.0" fill="rgb(218,36,16)" rx="2" ry="2" />
<text x="365.20" y="831.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="770.1" y="789" width="0.1" height="15.0" fill="rgb(224,92,46)" rx="2" ry="2" />
<text x="773.08" y="799.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (6 samples, 0.03%)</title><rect x="202.5" y="805" width="0.3" height="15.0" fill="rgb(251,178,51)" rx="2" ry="2" />
<text x="205.49" y="815.5" ></text>
</g>
<g >
<title>x86_pmu_enable (3 samples, 0.01%)</title><rect x="110.5" y="581" width="0.2" height="15.0" fill="rgb(228,218,44)" rx="2" ry="2" />
<text x="113.55" y="591.5" ></text>
</g>
<g >
<title>_ZNSt10_HashtableISsSt4pairIKSsPN2yb9consensus16PeerMessageQueue11TrackedPeerEESaIS7_ENSt8__detail10_Select1stESt8equal_toISsESt4hashISsENS9_18_Mod_range_hashingENS9_20_Default_ranged_hashENS9_20_Prime_rehash_policyENS9_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS1_ (5 samples, 0.02%)</title><rect x="771.6" y="853" width="0.2" height="15.0" fill="rgb(239,209,36)" rx="2" ry="2" />
<text x="774.59" y="863.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (20 samples, 0.09%)</title><rect x="137.4" y="933" width="1.0" height="15.0" fill="rgb(249,139,6)" rx="2" ry="2" />
<text x="140.39" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream7ReceiveEv (2 samples, 0.01%)</title><rect x="216.5" y="917" width="0.1" height="15.0" fill="rgb(235,213,15)" rx="2" ry="2" />
<text x="219.48" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus10RaftPeerPBC1Ev (2 samples, 0.01%)</title><rect x="761.7" y="869" width="0.1" height="15.0" fill="rgb(251,153,32)" rx="2" ry="2" />
<text x="764.72" y="879.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="750.5" y="709" width="0.1" height="15.0" fill="rgb(239,115,36)" rx="2" ry="2" />
<text x="753.55" y="719.5" ></text>
</g>
<g >
<title>ip_local_out (173 samples, 0.74%)</title><rect x="348.9" y="565" width="8.7" height="15.0" fill="rgb(213,44,42)" rx="2" ry="2" />
<text x="351.91" y="575.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5 samples, 0.02%)</title><rect x="1046.3" y="709" width="0.3" height="15.0" fill="rgb(219,87,13)" rx="2" ry="2" />
<text x="1049.30" y="719.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream15ReadTagFallbackEj (3 samples, 0.01%)</title><rect x="740.5" y="805" width="0.1" height="15.0" fill="rgb(217,85,0)" rx="2" ry="2" />
<text x="743.48" y="815.5" ></text>
</g>
<g >
<title>try_to_wake_up (7 samples, 0.03%)</title><rect x="342.3" y="101" width="0.4" height="15.0" fill="rgb(226,74,3)" rx="2" ry="2" />
<text x="345.31" y="111.5" ></text>
</g>
<g >
<title>ksize (2 samples, 0.01%)</title><rect x="348.1" y="613" width="0.2" height="15.0" fill="rgb(226,91,28)" rx="2" ry="2" />
<text x="351.15" y="623.5" ></text>
</g>
<g >
<title>perf_pmu_disable (3 samples, 0.01%)</title><rect x="499.9" y="725" width="0.1" height="15.0" fill="rgb(243,173,9)" rx="2" ry="2" />
<text x="502.85" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime14GetEncodedSizeERKNS_5SliceE (7 samples, 0.03%)</title><rect x="931.8" y="725" width="0.4" height="15.0" fill="rgb(234,131,9)" rx="2" ry="2" />
<text x="934.81" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection18UpdateLastActivityEv (2 samples, 0.01%)</title><rect x="345.9" y="821" width="0.1" height="15.0" fill="rgb(231,166,13)" rx="2" ry="2" />
<text x="348.93" y="831.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="450.7" y="821" width="0.1" height="15.0" fill="rgb(207,21,37)" rx="2" ry="2" />
<text x="453.71" y="831.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10 samples, 0.04%)</title><rect x="614.0" y="773" width="0.6" height="15.0" fill="rgb(235,215,45)" rx="2" ry="2" />
<text x="617.05" y="783.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.02%)</title><rect x="1038.5" y="709" width="0.2" height="15.0" fill="rgb(253,193,15)" rx="2" ry="2" />
<text x="1041.55" y="719.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (7 samples, 0.03%)</title><rect x="412.9" y="773" width="0.4" height="15.0" fill="rgb(223,225,48)" rx="2" ry="2" />
<text x="415.90" y="783.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5 samples, 0.02%)</title><rect x="1046.3" y="693" width="0.3" height="15.0" fill="rgb(248,8,27)" rx="2" ry="2" />
<text x="1049.30" y="703.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="617.1" y="901" width="0.1" height="15.0" fill="rgb(244,104,17)" rx="2" ry="2" />
<text x="620.07" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream4SendESt10shared_ptrINS0_12OutboundDataEE (7 samples, 0.03%)</title><rect x="345.1" y="821" width="0.4" height="15.0" fill="rgb(253,80,24)" rx="2" ry="2" />
<text x="348.13" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9Scheduler4Impl11HandleTimerERKN5boost6system10error_codeE (66 samples, 0.28%)</title><rect x="424.0" y="853" width="3.3" height="15.0" fill="rgb(243,189,42)" rx="2" ry="2" />
<text x="426.98" y="863.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (3 samples, 0.01%)</title><rect x="615.6" y="885" width="0.1" height="15.0" fill="rgb(240,205,18)" rx="2" ry="2" />
<text x="618.56" y="895.5" ></text>
</g>
<g >
<title>perf_event_task_tick (8 samples, 0.03%)</title><rect x="110.3" y="613" width="0.4" height="15.0" fill="rgb(254,169,38)" rx="2" ry="2" />
<text x="113.30" y="623.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13ProcessIntentEv (5 samples, 0.02%)</title><rect x="913.5" y="773" width="0.3" height="15.0" fill="rgb(242,12,52)" rx="2" ry="2" />
<text x="916.53" y="783.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="394.7" y="725" width="0.2" height="15.0" fill="rgb(217,140,29)" rx="2" ry="2" />
<text x="397.72" y="735.5" ></text>
</g>
<g >
<title>cpuacct_charge (3 samples, 0.01%)</title><rect x="48.9" y="709" width="0.1" height="15.0" fill="rgb(237,14,38)" rx="2" ry="2" />
<text x="51.87" y="719.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (88 samples, 0.38%)</title><rect x="352.1" y="389" width="4.4" height="15.0" fill="rgb(238,209,47)" rx="2" ry="2" />
<text x="355.08" y="399.5" ></text>
</g>
<g >
<title>_ZN7rocksdb16MemTableIterator4NextEv (5 samples, 0.02%)</title><rect x="693.2" y="677" width="0.3" height="15.0" fill="rgb(253,68,27)" rx="2" ry="2" />
<text x="696.25" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb10HybridTime8ToUint64Ev (2 samples, 0.01%)</title><rect x="552.7" y="901" width="0.1" height="15.0" fill="rgb(225,30,49)" rx="2" ry="2" />
<text x="555.72" y="911.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (7 samples, 0.03%)</title><rect x="155.1" y="789" width="0.3" height="15.0" fill="rgb(246,168,33)" rx="2" ry="2" />
<text x="158.06" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer25NewReplicaOperationDriverEPSt10unique_ptrINS0_9OperationESt14default_deleteIS3_EE (8 samples, 0.03%)</title><rect x="750.2" y="789" width="0.4" height="15.0" fill="rgb(241,127,54)" rx="2" ry="2" />
<text x="753.24" y="799.5" ></text>
</g>
<g >
<title>cpuacct_charge (2 samples, 0.01%)</title><rect x="454.2" y="725" width="0.1" height="15.0" fill="rgb(243,184,46)" rx="2" ry="2" />
<text x="457.24" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCall15InboundCallTask3RunEv (4 samples, 0.02%)</title><rect x="618.7" y="933" width="0.2" height="15.0" fill="rgb(220,162,54)" rx="2" ry="2" />
<text x="621.73" y="943.5" ></text>
</g>
<g >
<title>ev_run (3,488 samples, 14.88%)</title><rect x="219.1" y="917" width="175.6" height="15.0" fill="rgb(247,4,9)" rx="2" ry="2" />
<text x="222.05" y="927.5" >ev_run</text>
</g>
<g >
<title>_ZN2yb3log8LogIndex8GetEntryElPNS0_13LogIndexEntryE (2 samples, 0.01%)</title><rect x="549.5" y="837" width="0.2" height="15.0" fill="rgb(252,136,34)" rx="2" ry="2" />
<text x="552.55" y="847.5" ></text>
</g>
<g >
<title>__fdget (2 samples, 0.01%)</title><rect x="334.6" y="837" width="0.1" height="15.0" fill="rgb(247,115,51)" rx="2" ry="2" />
<text x="337.56" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15 samples, 0.06%)</title><rect x="434.2" y="917" width="0.8" height="15.0" fill="rgb(236,202,52)" rx="2" ry="2" />
<text x="437.25" y="927.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io17CodedOutputStream15WriteRawToArrayEPKviPh@plt (2 samples, 0.01%)</title><rect x="543.4" y="789" width="0.1" height="15.0" fill="rgb(214,159,22)" rx="2" ry="2" />
<text x="546.36" y="799.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (385 samples, 1.64%)</title><rect x="502.1" y="709" width="19.4" height="15.0" fill="rgb(228,79,54)" rx="2" ry="2" />
<text x="505.07" y="719.5" ></text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="1038.6" y="597" width="0.1" height="15.0" fill="rgb(214,28,2)" rx="2" ry="2" />
<text x="1041.60" y="607.5" ></text>
</g>
<g >
<title>get_futex_value_locked (5 samples, 0.02%)</title><rect x="592.7" y="805" width="0.3" height="15.0" fill="rgb(216,227,27)" rx="2" ry="2" />
<text x="595.70" y="815.5" ></text>
</g>
<g >
<title>account_system_index_time (2 samples, 0.01%)</title><rect x="474.1" y="629" width="0.1" height="15.0" fill="rgb(225,139,52)" rx="2" ry="2" />
<text x="477.13" y="639.5" ></text>
</g>
<g >
<title>ev_run (4 samples, 0.02%)</title><rect x="394.9" y="917" width="0.2" height="15.0" fill="rgb(244,178,49)" rx="2" ry="2" />
<text x="397.92" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime15FullyDecodeFromERKNS_5SliceE (3 samples, 0.01%)</title><rect x="789.9" y="677" width="0.2" height="15.0" fill="rgb(223,18,10)" rx="2" ry="2" />
<text x="792.92" y="687.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (42 samples, 0.18%)</title><rect x="160.8" y="741" width="2.2" height="15.0" fill="rgb(228,155,13)" rx="2" ry="2" />
<text x="163.85" y="751.5" ></text>
</g>
<g >
<title>trigger_load_balance (49 samples, 0.21%)</title><rect x="110.8" y="613" width="2.4" height="15.0" fill="rgb(206,56,21)" rx="2" ry="2" />
<text x="113.75" y="623.5" ></text>
</g>
<g >
<title>__GI___libc_recvmsg (2 samples, 0.01%)</title><rect x="216.5" y="901" width="0.1" height="15.0" fill="rgb(253,26,30)" rx="2" ry="2" />
<text x="219.48" y="911.5" ></text>
</g>
<g >
<title>pick_next_task_idle (3 samples, 0.01%)</title><rect x="117.5" y="773" width="0.2" height="15.0" fill="rgb(209,53,15)" rx="2" ry="2" />
<text x="120.55" y="783.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.09%)</title><rect x="375.7" y="709" width="1.1" height="15.0" fill="rgb(215,49,23)" rx="2" ry="2" />
<text x="378.74" y="719.5" ></text>
</g>
<g >
<title>do_timerfd_settime (6 samples, 0.03%)</title><rect x="424.8" y="757" width="0.3" height="15.0" fill="rgb(221,185,54)" rx="2" ry="2" />
<text x="427.78" y="767.5" ></text>
</g>
<g >
<title>wake_up_q (9 samples, 0.04%)</title><rect x="490.6" y="709" width="0.4" height="15.0" fill="rgb(245,15,20)" rx="2" ry="2" />
<text x="493.59" y="719.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv@plt (3 samples, 0.01%)</title><rect x="905.3" y="693" width="0.1" height="15.0" fill="rgb(246,67,30)" rx="2" ry="2" />
<text x="908.27" y="703.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (667 samples, 2.85%)</title><rect x="446.8" y="917" width="33.6" height="15.0" fill="rgb(226,203,50)" rx="2" ry="2" />
<text x="449.79" y="927.5" >en..</text>
</g>
<g >
<title>start_thread (150 samples, 0.64%)</title><rect x="1182.4" y="965" width="7.6" height="15.0" fill="rgb(214,214,34)" rx="2" ry="2" />
<text x="1185.45" y="975.5" ></text>
</g>
<g >
<title>cpu_load_update (3 samples, 0.01%)</title><rect x="197.3" y="597" width="0.1" height="15.0" fill="rgb(229,135,14)" rx="2" ry="2" />
<text x="200.25" y="607.5" ></text>
</g>
<g >
<title>ev_invoke_pending (23 samples, 0.10%)</title><rect x="214.5" y="901" width="1.2" height="15.0" fill="rgb(247,28,41)" rx="2" ry="2" />
<text x="217.52" y="911.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (8 samples, 0.03%)</title><rect x="55.2" y="725" width="0.4" height="15.0" fill="rgb(219,181,30)" rx="2" ry="2" />
<text x="58.16" y="735.5" ></text>
</g>
<g >
<title>do_sys_poll (122 samples, 0.52%)</title><rect x="1183.1" y="885" width="6.1" height="15.0" fill="rgb(247,72,3)" rx="2" ry="2" />
<text x="1186.10" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver14WriteRequestPBD1Ev (2 samples, 0.01%)</title><rect x="737.6" y="853" width="0.1" height="15.0" fill="rgb(229,83,50)" rx="2" ry="2" />
<text x="740.56" y="863.5" ></text>
</g>
<g >
<title>ev_io_stop (3 samples, 0.01%)</title><rect x="346.1" y="805" width="0.1" height="15.0" fill="rgb(221,27,20)" rx="2" ry="2" />
<text x="349.09" y="815.5" ></text>
</g>
<g >
<title>_ZN7rocksdb18ArenaWrappedDBIter4NextEv (9 samples, 0.04%)</title><rect x="733.5" y="709" width="0.4" height="15.0" fill="rgb(245,200,3)" rx="2" ry="2" />
<text x="736.48" y="719.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter12ParseNextKeyEv (76 samples, 0.32%)</title><rect x="870.6" y="645" width="3.9" height="15.0" fill="rgb(222,225,47)" rx="2" ry="2" />
<text x="873.63" y="655.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="146.2" y="885" width="0.1" height="15.0" fill="rgb(246,156,25)" rx="2" ry="2" />
<text x="149.25" y="895.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (5 samples, 0.02%)</title><rect x="360.7" y="773" width="0.2" height="15.0" fill="rgb(211,221,12)" rx="2" ry="2" />
<text x="363.69" y="783.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator11IsKeyPinnedEv (12 samples, 0.05%)</title><rect x="710.9" y="677" width="0.6" height="15.0" fill="rgb(247,23,5)" rx="2" ry="2" />
<text x="713.87" y="687.5" ></text>
</g>
<g >
<title>ipt_do_table (2 samples, 0.01%)</title><rect x="350.4" y="501" width="0.1" height="15.0" fill="rgb(206,70,46)" rx="2" ry="2" />
<text x="353.42" y="511.5" ></text>
</g>
<g >
<title>scheduler_tick (10 samples, 0.04%)</title><rect x="521.9" y="645" width="0.5" height="15.0" fill="rgb(233,141,29)" rx="2" ry="2" />
<text x="524.86" y="655.5" ></text>
</g>
<g >
<title>_ZN3cds9intrusive11BasketQueueINS_2gc3DHPENS_9container7details17make_basket_queueIS3_PN2yb3rpc14ThreadPoolTaskENS4_12basket_queue6traitsEE9node_typeENSD_16intrusive_traitsEE7enqueueERSE_ (3 samples, 0.01%)</title><rect x="371.6" y="725" width="0.2" height="15.0" fill="rgb(206,86,45)" rx="2" ry="2" />
<text x="374.61" y="735.5" ></text>
</g>
<g >
<title>do_futex (3 samples, 0.01%)</title><rect x="600.5" y="869" width="0.1" height="15.0" fill="rgb(219,121,8)" rx="2" ry="2" />
<text x="603.45" y="879.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet6Tablet33CreateTransactionOperationContextERKNS_21TransactionMetadataPBE (2 samples, 0.01%)</title><rect x="1059.2" y="853" width="0.1" height="15.0" fill="rgb(216,92,36)" rx="2" ry="2" />
<text x="1062.19" y="863.5" ></text>
</g>
<g >
<title>account_process_tick (2 samples, 0.01%)</title><rect x="474.1" y="661" width="0.1" height="15.0" fill="rgb(212,113,48)" rx="2" ry="2" />
<text x="477.13" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPBC1Ev (3 samples, 0.01%)</title><rect x="761.6" y="869" width="0.1" height="15.0" fill="rgb(250,81,2)" rx="2" ry="2" />
<text x="764.57" y="879.5" ></text>
</g>
<g >
<title>acceptor-23920 (4 samples, 0.02%)</title><rect x="394.7" y="981" width="0.2" height="15.0" fill="rgb(233,195,23)" rx="2" ry="2" />
<text x="397.72" y="991.5" ></text>
</g>
<g >
<title>__clock_gettime (7 samples, 0.03%)</title><rect x="136.6" y="869" width="0.3" height="15.0" fill="rgb(222,150,5)" rx="2" ry="2" />
<text x="139.58" y="879.5" ></text>
</g>
<g >
<title>dequeue_entity (10 samples, 0.04%)</title><rect x="500.4" y="741" width="0.5" height="15.0" fill="rgb(229,93,2)" rx="2" ry="2" />
<text x="503.41" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi (74 samples, 0.32%)</title><rect x="637.9" y="677" width="3.7" height="15.0" fill="rgb(251,211,1)" rx="2" ry="2" />
<text x="640.86" y="687.5" ></text>
</g>
<g >
<title>do_futex (3 samples, 0.01%)</title><rect x="555.0" y="853" width="0.2" height="15.0" fill="rgb(208,217,10)" rx="2" ry="2" />
<text x="558.04" y="863.5" ></text>
</g>
<g >
<title>SYSC_getrusage (3 samples, 0.01%)</title><rect x="400.7" y="789" width="0.2" height="15.0" fill="rgb(230,19,19)" rx="2" ry="2" />
<text x="403.72" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus11PeerManager13SignalRequestENS0_18RequestTriggerModeE (19 samples, 0.08%)</title><rect x="490.1" y="853" width="0.9" height="15.0" fill="rgb(214,218,52)" rx="2" ry="2" />
<text x="493.09" y="863.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 0.03%)</title><rect x="753.5" y="597" width="0.4" height="15.0" fill="rgb(208,152,40)" rx="2" ry="2" />
<text x="756.52" y="607.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (43 samples, 0.18%)</title><rect x="1018.6" y="709" width="2.1" height="15.0" fill="rgb(228,192,11)" rx="2" ry="2" />
<text x="1021.56" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log11AsyncAppendEPNS0_13LogEntryBatchERKNS_8CallbackIFvRKNS_6StatusEEEE (4 samples, 0.02%)</title><rect x="536.7" y="837" width="0.2" height="15.0" fill="rgb(233,167,1)" rx="2" ry="2" />
<text x="539.66" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="492.6" y="741" width="0.3" height="15.0" fill="rgb(227,170,0)" rx="2" ry="2" />
<text x="495.60" y="751.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (2 samples, 0.01%)</title><rect x="393.3" y="757" width="0.1" height="15.0" fill="rgb(218,206,15)" rx="2" ry="2" />
<text x="396.26" y="767.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (9 samples, 0.04%)</title><rect x="750.9" y="709" width="0.5" height="15.0" fill="rgb(229,61,20)" rx="2" ry="2" />
<text x="753.95" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13ProcessIntentEv (2 samples, 0.01%)</title><rect x="777.2" y="709" width="0.1" height="15.0" fill="rgb(222,118,26)" rx="2" ry="2" />
<text x="780.18" y="719.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="757.2" y="805" width="0.2" height="15.0" fill="rgb(210,43,23)" rx="2" ry="2" />
<text x="760.24" y="815.5" ></text>
</g>
<g >
<title>_ZN20trace_event_internal12ScopedTracerD1Ev (4 samples, 0.02%)</title><rect x="749.4" y="821" width="0.2" height="15.0" fill="rgb(224,135,0)" rx="2" ry="2" />
<text x="752.39" y="831.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBImpl18GetFlushedFrontierEv (4 samples, 0.02%)</title><rect x="484.1" y="837" width="0.2" height="15.0" fill="rgb(234,197,36)" rx="2" ry="2" />
<text x="487.09" y="847.5" ></text>
</g>
<g >
<title>ev_run (1,527 samples, 6.52%)</title><rect x="138.9" y="917" width="76.9" height="15.0" fill="rgb(216,121,2)" rx="2" ry="2" />
<text x="141.90" y="927.5" >ev_run</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (179 samples, 0.76%)</title><rect x="404.3" y="869" width="9.0" height="15.0" fill="rgb(211,72,21)" rx="2" ry="2" />
<text x="407.29" y="879.5" ></text>
</g>
<g >
<title>perf_pmu_enable (53 samples, 0.23%)</title><rect x="1185.7" y="757" width="2.6" height="15.0" fill="rgb(234,64,16)" rx="2" ry="2" />
<text x="1188.67" y="767.5" ></text>
</g>
<g >
<title>do_futex (5 samples, 0.02%)</title><rect x="751.0" y="645" width="0.3" height="15.0" fill="rgb(236,4,26)" rx="2" ry="2" />
<text x="754.05" y="655.5" ></text>
</g>
<g >
<title>find_busiest_group (2 samples, 0.01%)</title><rect x="326.0" y="725" width="0.1" height="15.0" fill="rgb(212,39,20)" rx="2" ry="2" />
<text x="329.00" y="735.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator4NextEv (5 samples, 0.02%)</title><rect x="983.9" y="741" width="0.2" height="15.0" fill="rgb(227,115,40)" rx="2" ry="2" />
<text x="986.87" y="751.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4SeekERKN2yb5SliceE (3 samples, 0.01%)</title><rect x="776.9" y="693" width="0.2" height="15.0" fill="rgb(225,33,21)" rx="2" ry="2" />
<text x="779.93" y="703.5" ></text>
</g>
<g >
<title>update_load_avg (4 samples, 0.02%)</title><rect x="165.1" y="709" width="0.2" height="15.0" fill="rgb(205,225,29)" rx="2" ry="2" />
<text x="168.08" y="719.5" ></text>
</g>
<g >
<title>drop_futex_key_refs.isra.13 (18 samples, 0.08%)</title><rect x="1071.0" y="837" width="0.9" height="15.0" fill="rgb(239,71,46)" rx="2" ry="2" />
<text x="1074.02" y="847.5" ></text>
</g>
<g >
<title>select_task_rq_fair (4 samples, 0.02%)</title><rect x="354.1" y="117" width="0.2" height="15.0" fill="rgb(254,15,29)" rx="2" ry="2" />
<text x="357.09" y="127.5" ></text>
</g>
<g >
<title>hrtimer_active (3 samples, 0.01%)</title><rect x="1185.0" y="805" width="0.2" height="15.0" fill="rgb(252,91,32)" rx="2" ry="2" />
<text x="1188.02" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log21AsyncAppendReplicatesERKSt6vectorISt10shared_ptrINS_9consensus12ReplicateMsgEESaIS6_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointERKNS_8CallbackIFvRKNS_6StatusEEEE (2 samples, 0.01%)</title><rect x="749.9" y="773" width="0.1" height="15.0" fill="rgb(224,217,9)" rx="2" ry="2" />
<text x="752.94" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock8NowRangeEv (3 samples, 0.01%)</title><rect x="774.6" y="837" width="0.2" height="15.0" fill="rgb(239,73,11)" rx="2" ry="2" />
<text x="777.61" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet12PreparerImpl6SubmitEPNS0_15OperationDriverE (2 samples, 0.01%)</title><rect x="624.2" y="757" width="0.1" height="15.0" fill="rgb(208,136,12)" rx="2" ry="2" />
<text x="627.22" y="767.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="417.2" y="933" width="0.2" height="15.0" fill="rgb(244,36,36)" rx="2" ry="2" />
<text x="420.23" y="943.5" ></text>
</g>
<g >
<title>rb_erase (19 samples, 0.08%)</title><rect x="593.4" y="757" width="1.0" height="15.0" fill="rgb(239,116,19)" rx="2" ry="2" />
<text x="596.40" y="767.5" ></text>
</g>
<g >
<title>x86_pmu_disable (2 samples, 0.01%)</title><rect x="434.5" y="725" width="0.1" height="15.0" fill="rgb(226,219,37)" rx="2" ry="2" />
<text x="437.50" y="735.5" ></text>
</g>
<g >
<title>iptable_filter_hook (9 samples, 0.04%)</title><rect x="349.3" y="517" width="0.4" height="15.0" fill="rgb(220,208,38)" rx="2" ry="2" />
<text x="352.26" y="527.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (54 samples, 0.23%)</title><rect x="352.5" y="309" width="2.7" height="15.0" fill="rgb(209,86,13)" rx="2" ry="2" />
<text x="355.48" y="319.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (6 samples, 0.03%)</title><rect x="485.8" y="933" width="0.3" height="15.0" fill="rgb(207,78,15)" rx="2" ry="2" />
<text x="488.81" y="943.5" ></text>
</g>
<g >
<title>__tls_get_addr@plt (3 samples, 0.01%)</title><rect x="693.0" y="661" width="0.2" height="15.0" fill="rgb(226,143,17)" rx="2" ry="2" />
<text x="696.05" y="671.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (3 samples, 0.01%)</title><rect x="623.6" y="805" width="0.2" height="15.0" fill="rgb(207,220,48)" rx="2" ry="2" />
<text x="626.61" y="815.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (4 samples, 0.02%)</title><rect x="1042.9" y="709" width="0.2" height="15.0" fill="rgb(226,81,9)" rx="2" ry="2" />
<text x="1045.88" y="719.5" ></text>
</g>
<g >
<title>schedule_timeout (8 samples, 0.03%)</title><rect x="396.5" y="677" width="0.4" height="15.0" fill="rgb(254,65,29)" rx="2" ry="2" />
<text x="399.54" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock12NowWithErrorEPNS_10HybridTimeEPm (3 samples, 0.01%)</title><rect x="548.8" y="869" width="0.1" height="15.0" fill="rgb(225,34,29)" rx="2" ry="2" />
<text x="551.79" y="879.5" ></text>
</g>
<g >
<title>sys_epoll_wait (4 samples, 0.02%)</title><rect x="125.3" y="869" width="0.2" height="15.0" fill="rgb(250,48,34)" rx="2" ry="2" />
<text x="128.25" y="879.5" ></text>
</g>
<g >
<title>get_futex_key (2 samples, 0.01%)</title><rect x="522.7" y="805" width="0.1" height="15.0" fill="rgb(230,170,22)" rx="2" ry="2" />
<text x="525.66" y="815.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (13 samples, 0.06%)</title><rect x="521.8" y="725" width="0.6" height="15.0" fill="rgb(243,81,25)" rx="2" ry="2" />
<text x="524.76" y="735.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5valueEv (9 samples, 0.04%)</title><rect x="725.2" y="693" width="0.4" height="15.0" fill="rgb(229,55,17)" rx="2" ry="2" />
<text x="728.17" y="703.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (831 samples, 3.55%)</title><rect x="555.8" y="917" width="41.8" height="15.0" fill="rgb(254,78,12)" rx="2" ry="2" />
<text x="558.79" y="927.5" >pth..</text>
</g>
<g >
<title>mod_timer (4 samples, 0.02%)</title><rect x="353.2" y="213" width="0.2" height="15.0" fill="rgb(206,204,50)" rx="2" ry="2" />
<text x="356.24" y="223.5" ></text>
</g>
<g >
<title>mark_wake_futex (2 samples, 0.01%)</title><rect x="765.9" y="725" width="0.1" height="15.0" fill="rgb(225,133,12)" rx="2" ry="2" />
<text x="768.90" y="735.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (15 samples, 0.06%)</title><rect x="217.1" y="933" width="0.7" height="15.0" fill="rgb(224,217,5)" rx="2" ry="2" />
<text x="220.09" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection14OutboundQueuedEv (148 samples, 0.63%)</title><rect x="337.6" y="837" width="7.5" height="15.0" fill="rgb(225,224,1)" rx="2" ry="2" />
<text x="340.63" y="847.5" ></text>
</g>
<g >
<title>sys_timerfd_settime (7 samples, 0.03%)</title><rect x="424.8" y="773" width="0.3" height="15.0" fill="rgb(225,153,13)" rx="2" ry="2" />
<text x="427.78" y="783.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator26SkipEmptyDataBlocksForwardEv.constprop.113 (17 samples, 0.07%)</title><rect x="1003.2" y="725" width="0.8" height="15.0" fill="rgb(217,79,47)" rx="2" ry="2" />
<text x="1006.15" y="735.5" ></text>
</g>
<g >
<title>ev_timer_start (2 samples, 0.01%)</title><rect x="336.6" y="853" width="0.1" height="15.0" fill="rgb(217,24,54)" rx="2" ry="2" />
<text x="339.62" y="863.5" ></text>
</g>
<g >
<title>perf_event_task_tick (2 samples, 0.01%)</title><rect x="1174.9" y="645" width="0.1" height="15.0" fill="rgb(239,57,53)" rx="2" ry="2" />
<text x="1177.95" y="655.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (26 samples, 0.11%)</title><rect x="765.4" y="805" width="1.3" height="15.0" fill="rgb(247,42,54)" rx="2" ry="2" />
<text x="768.40" y="815.5" ></text>
</g>
<g >
<title>deactivate_task (11 samples, 0.05%)</title><rect x="500.4" y="773" width="0.5" height="15.0" fill="rgb(251,213,33)" rx="2" ry="2" />
<text x="503.36" y="783.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15BlockBasedTable20NewDataBlockIteratorERKNS_11ReadOptionsERKN2yb5SliceENS_9BlockTypeEPNS_9BlockIterE (5 samples, 0.02%)</title><rect x="675.9" y="629" width="0.3" height="15.0" fill="rgb(223,138,13)" rx="2" ry="2" />
<text x="678.93" y="639.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="399.0" y="741" width="0.2" height="15.0" fill="rgb(244,87,31)" rx="2" ry="2" />
<text x="402.00" y="751.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (167 samples, 0.71%)</title><rect x="404.5" y="789" width="8.4" height="15.0" fill="rgb(221,123,45)" rx="2" ry="2" />
<text x="407.49" y="799.5" ></text>
</g>
<g >
<title>inet_sendmsg (239 samples, 1.02%)</title><rect x="346.8" y="693" width="12.1" height="15.0" fill="rgb(246,120,35)" rx="2" ry="2" />
<text x="349.84" y="703.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="21.8" y="853" width="0.1" height="15.0" fill="rgb(209,184,18)" rx="2" ry="2" />
<text x="24.83" y="863.5" ></text>
</g>
<g >
<title>_ZNK2yb14CountDownLatch7WaitForERKNS_9MonoDeltaE (6 samples, 0.03%)</title><rect x="601.8" y="917" width="0.3" height="15.0" fill="rgb(242,45,21)" rx="2" ry="2" />
<text x="604.81" y="927.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (96 samples, 0.41%)</title><rect x="320.7" y="709" width="4.8" height="15.0" fill="rgb(253,136,13)" rx="2" ry="2" />
<text x="323.71" y="719.5" ></text>
</g>
<g >
<title>do_syscall_64 (257 samples, 1.10%)</title><rect x="346.7" y="773" width="12.9" height="15.0" fill="rgb(205,109,29)" rx="2" ry="2" />
<text x="349.69" y="783.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (4 samples, 0.02%)</title><rect x="481.8" y="933" width="0.2" height="15.0" fill="rgb(235,122,15)" rx="2" ry="2" />
<text x="484.78" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver4InitEPSt10unique_ptrINS0_9OperationESt14default_deleteIS3_EEl (3 samples, 0.01%)</title><rect x="624.1" y="757" width="0.1" height="15.0" fill="rgb(222,2,8)" rx="2" ry="2" />
<text x="627.07" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet35AcquireLocksAndPerformDocOperationsESt10unique_ptrINS0_14WriteOperationESt14default_deleteIS3_EE (2,248 samples, 9.59%)</title><rect x="624.0" y="837" width="113.2" height="15.0" fill="rgb(210,167,32)" rx="2" ry="2" />
<text x="627.02" y="847.5" >_ZN2yb6tablet..</text>
</g>
<g >
<title>_ZN2yb3rpc9Messenger16QueueInboundCallESt10shared_ptrINS0_11InboundCallEE (39 samples, 0.17%)</title><rect x="371.2" y="773" width="2.0" height="15.0" fill="rgb(213,103,4)" rx="2" ry="2" />
<text x="374.21" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime14GetEncodedSizeERKNS_5SliceE (7 samples, 0.03%)</title><rect x="966.9" y="709" width="0.4" height="15.0" fill="rgb(227,9,7)" rx="2" ry="2" />
<text x="969.95" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue16ReadFromLogCacheElliRKSsPSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS7_EEPNS_6OpIdPBEPb (29 samples, 0.12%)</title><rect x="548.9" y="885" width="1.5" height="15.0" fill="rgb(221,58,10)" rx="2" ry="2" />
<text x="551.95" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb16EnumerateIntentsENS_5SliceERKS1_RKN5boost8functionIFNS_6StatusENS0_14IntentStrengthES1_PNS0_8KeyBytesEEEES9_NS_17StronglyTypedBoolINS0_26PartialRangeKeyIntents_TagEEE (6 samples, 0.03%)</title><rect x="533.6" y="661" width="0.3" height="15.0" fill="rgb(228,90,5)" rx="2" ry="2" />
<text x="536.59" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb6Schema5ResetERKSt6vectorINS_12ColumnSchemaESaIS2_EERKS1_INS_8ColumnIdESaIS7_EEiRKNS_15TablePropertiesERKNS_4UuidE (2 samples, 0.01%)</title><rect x="775.4" y="789" width="0.1" height="15.0" fill="rgb(225,94,25)" rx="2" ry="2" />
<text x="778.42" y="799.5" ></text>
</g>
<g >
<title>scheduler_tick (3 samples, 0.01%)</title><rect x="715.4" y="549" width="0.1" height="15.0" fill="rgb(229,185,18)" rx="2" ry="2" />
<text x="718.35" y="559.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (3,492 samples, 14.90%)</title><rect x="218.9" y="949" width="175.8" height="15.0" fill="rgb(237,16,19)" rx="2" ry="2" />
<text x="221.90" y="959.5" >_ZN2yb6Thread15Supervi..</text>
</g>
<g >
<title>_ZN2yb3rpc16BinaryCallParser5ParseERKSt10shared_ptrINS0_10ConnectionEERKN5boost9container12small_vectorI5iovecLm4ENS8_13new_allocatorISA_EEEENS_17StronglyTypedBoolINS0_18ReadBufferFull_TagEEE (113 samples, 0.48%)</title><rect x="373.8" y="805" width="5.7" height="15.0" fill="rgb(242,148,28)" rx="2" ry="2" />
<text x="376.83" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver14ReadResponsePB10SharedCtorEv (2 samples, 0.01%)</title><rect x="623.9" y="869" width="0.1" height="15.0" fill="rgb(248,182,29)" rx="2" ry="2" />
<text x="626.87" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (36 samples, 0.15%)</title><rect x="545.5" y="741" width="1.8" height="15.0" fill="rgb(232,148,53)" rx="2" ry="2" />
<text x="548.52" y="751.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (15 samples, 0.06%)</title><rect x="490.3" y="789" width="0.7" height="15.0" fill="rgb(213,92,44)" rx="2" ry="2" />
<text x="493.29" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall7SetSentEv (2 samples, 0.01%)</title><rect x="360.4" y="773" width="0.1" height="15.0" fill="rgb(239,27,36)" rx="2" ry="2" />
<text x="363.44" y="783.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (32 samples, 0.14%)</title><rect x="353.5" y="245" width="1.6" height="15.0" fill="rgb(236,149,12)" rx="2" ry="2" />
<text x="356.54" y="255.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter5ValidEv (5 samples, 0.02%)</title><rect x="728.1" y="693" width="0.3" height="15.0" fill="rgb(247,62,43)" rx="2" ry="2" />
<text x="731.14" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver17TabletServiceImpl4ReadEPKNS0_13ReadRequestPBEPNS0_14ReadResponsePBENS_3rpc10RpcContextE (2,265 samples, 9.66%)</title><rect x="624.0" y="869" width="114.0" height="15.0" fill="rgb(220,124,53)" rx="2" ry="2" />
<text x="626.97" y="879.5" >_ZN2yb7tserver..</text>
</g>
<g >
<title>schedule (5 samples, 0.02%)</title><rect x="601.9" y="789" width="0.2" height="15.0" fill="rgb(239,37,43)" rx="2" ry="2" />
<text x="604.86" y="799.5" ></text>
</g>
<g >
<title>scheduler_tick (89 samples, 0.38%)</title><rect x="1174.9" y="661" width="4.5" height="15.0" fill="rgb(233,175,4)" rx="2" ry="2" />
<text x="1177.90" y="671.5" ></text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase7ReleaseEv (2 samples, 0.01%)</title><rect x="771.5" y="805" width="0.1" height="15.0" fill="rgb(243,42,16)" rx="2" ry="2" />
<text x="774.49" y="815.5" ></text>
</g>
<g >
<title>current_kernel_time64 (9 samples, 0.04%)</title><rect x="124.7" y="821" width="0.5" height="15.0" fill="rgb(234,122,33)" rx="2" ry="2" />
<text x="127.75" y="831.5" ></text>
</g>
<g >
<title>selinux_ip_postroute (3 samples, 0.01%)</title><rect x="357.4" y="501" width="0.2" height="15.0" fill="rgb(238,71,17)" rx="2" ry="2" />
<text x="360.41" y="511.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall14RespondSuccessERKN6google8protobuf11MessageLiteE (2 samples, 0.01%)</title><rect x="1059.3" y="853" width="0.1" height="15.0" fill="rgb(241,189,37)" rx="2" ry="2" />
<text x="1062.34" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall11SetResponseEONS0_12CallResponseE (80 samples, 0.34%)</title><rect x="374.8" y="757" width="4.0" height="15.0" fill="rgb(217,49,22)" rx="2" ry="2" />
<text x="377.78" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver26RemoteBootstrapServiceImpl18EndExpiredSessionsEv (6 samples, 0.03%)</title><rect x="601.8" y="933" width="0.3" height="15.0" fill="rgb(236,126,0)" rx="2" ry="2" />
<text x="604.81" y="943.5" ></text>
</g>
<g >
<title>sys_futex (2,306 samples, 9.84%)</title><rect x="1063.9" y="885" width="116.1" height="15.0" fill="rgb(210,160,3)" rx="2" ry="2" />
<text x="1066.87" y="895.5" >sys_futex</text>
</g>
<g >
<title>perf_pmu_disable (2 samples, 0.01%)</title><rect x="434.5" y="741" width="0.1" height="15.0" fill="rgb(225,17,16)" rx="2" ry="2" />
<text x="437.50" y="751.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (4 samples, 0.02%)</title><rect x="483.2" y="917" width="0.2" height="15.0" fill="rgb(219,159,37)" rx="2" ry="2" />
<text x="486.19" y="927.5" ></text>
</g>
<g >
<title>try_to_wake_up (2 samples, 0.01%)</title><rect x="399.1" y="677" width="0.1" height="15.0" fill="rgb(233,158,27)" rx="2" ry="2" />
<text x="402.05" y="687.5" ></text>
</g>
<g >
<title>__ip_local_out (54 samples, 0.23%)</title><rect x="348.9" y="549" width="2.7" height="15.0" fill="rgb(212,23,8)" rx="2" ry="2" />
<text x="351.91" y="559.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1020.7" y="709" width="0.1" height="15.0" fill="rgb(223,220,41)" rx="2" ry="2" />
<text x="1023.72" y="719.5" ></text>
</g>
<g >
<title>select_task_rq_fair (3 samples, 0.01%)</title><rect x="430.4" y="693" width="0.2" height="15.0" fill="rgb(210,140,29)" rx="2" ry="2" />
<text x="433.42" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue37NotifyObserversOfMajorityReplOpChangeERKNS0_22MajorityReplicatedDataE (41 samples, 0.17%)</title><rect x="765.1" y="853" width="2.1" height="15.0" fill="rgb(239,227,26)" rx="2" ry="2" />
<text x="768.15" y="863.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (4 samples, 0.02%)</title><rect x="395.1" y="805" width="0.2" height="15.0" fill="rgb(210,60,49)" rx="2" ry="2" />
<text x="398.13" y="815.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (60 samples, 0.26%)</title><rect x="38.5" y="773" width="3.0" height="15.0" fill="rgb(231,52,52)" rx="2" ry="2" />
<text x="41.50" y="783.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5valueEv (54 samples, 0.23%)</title><rect x="721.5" y="661" width="2.7" height="15.0" fill="rgb(229,121,41)" rx="2" ry="2" />
<text x="724.49" y="671.5" ></text>
</g>
<g >
<title>iptable_filter_hook (2 samples, 0.01%)</title><rect x="355.2" y="309" width="0.1" height="15.0" fill="rgb(231,210,29)" rx="2" ry="2" />
<text x="358.25" y="319.5" ></text>
</g>
<g >
<title>_ZNSs6resizeEmc (2 samples, 0.01%)</title><rect x="741.8" y="805" width="0.1" height="15.0" fill="rgb(212,10,52)" rx="2" ry="2" />
<text x="744.84" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime10DecodeFromEPNS_5SliceE (2 samples, 0.01%)</title><rect x="931.7" y="725" width="0.1" height="15.0" fill="rgb(214,128,21)" rx="2" ry="2" />
<text x="934.65" y="735.5" ></text>
</g>
<g >
<title>append_[worker] (369 samples, 1.57%)</title><rect x="395.3" y="981" width="18.6" height="15.0" fill="rgb(233,66,44)" rx="2" ry="2" />
<text x="398.33" y="991.5" ></text>
</g>
<g >
<title>heartbeat-23923 (66 samples, 0.28%)</title><rect x="413.9" y="981" width="3.3" height="15.0" fill="rgb(248,7,40)" rx="2" ry="2" />
<text x="416.91" y="991.5" ></text>
</g>
<g >
<title>sys_epoll_wait (4 samples, 0.02%)</title><rect x="395.1" y="853" width="0.2" height="15.0" fill="rgb(218,180,40)" rx="2" ry="2" />
<text x="398.13" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb3log34CreateBatchFromAllocatedOperationsERKSt6vectorISt10shared_ptrINS_9consensus12ReplicateMsgEESaIS5_EE (3 samples, 0.01%)</title><rect x="492.4" y="789" width="0.1" height="15.0" fill="rgb(224,174,8)" rx="2" ry="2" />
<text x="495.35" y="799.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (552 samples, 2.36%)</title><rect x="497.2" y="917" width="27.8" height="15.0" fill="rgb(216,50,50)" rx="2" ry="2" />
<text x="500.24" y="927.5" >p..</text>
</g>
<g >
<title>file_update_time (11 samples, 0.05%)</title><rect x="401.9" y="661" width="0.5" height="15.0" fill="rgb(226,223,21)" rx="2" ry="2" />
<text x="404.87" y="671.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.08%)</title><rect x="482.2" y="885" width="0.9" height="15.0" fill="rgb(248,220,7)" rx="2" ry="2" />
<text x="485.23" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall14InvokeCallbackEv (43 samples, 0.18%)</title><rect x="375.0" y="741" width="2.2" height="15.0" fill="rgb(225,16,41)" rx="2" ry="2" />
<text x="378.04" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb10HostPortPBC2Ev (3 samples, 0.01%)</title><rect x="767.6" y="821" width="0.2" height="15.0" fill="rgb(235,219,48)" rx="2" ry="2" />
<text x="770.61" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="399.0" y="757" width="0.2" height="15.0" fill="rgb(247,225,43)" rx="2" ry="2" />
<text x="402.00" y="767.5" ></text>
</g>
<g >
<title>_ZN7rocksdb16MemTableIterator4NextEv (18 samples, 0.08%)</title><rect x="681.6" y="661" width="0.9" height="15.0" fill="rgb(206,17,39)" rx="2" ry="2" />
<text x="684.62" y="671.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (57 samples, 0.24%)</title><rect x="44.0" y="757" width="2.9" height="15.0" fill="rgb(233,191,35)" rx="2" ry="2" />
<text x="47.04" y="767.5" ></text>
</g>
<g >
<title>ctx_sched_out (3 samples, 0.01%)</title><rect x="1185.3" y="757" width="0.2" height="15.0" fill="rgb(238,32,12)" rx="2" ry="2" />
<text x="1188.32" y="767.5" ></text>
</g>
<g >
<title>tcp_send_mss (8 samples, 0.03%)</title><rect x="358.4" y="645" width="0.4" height="15.0" fill="rgb(238,15,37)" rx="2" ry="2" />
<text x="361.37" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet22TransactionCoordinator4Impl4PollERKNS_6StatusE (7 samples, 0.03%)</title><rect x="432.1" y="901" width="0.3" height="15.0" fill="rgb(207,93,3)" rx="2" ry="2" />
<text x="435.08" y="911.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="732.3" y="581" width="0.1" height="15.0" fill="rgb(234,157,0)" rx="2" ry="2" />
<text x="735.32" y="591.5" ></text>
</g>
<g >
<title>perf_event_task_tick (2 samples, 0.01%)</title><rect x="590.7" y="629" width="0.1" height="15.0" fill="rgb(208,153,29)" rx="2" ry="2" />
<text x="593.69" y="639.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (3 samples, 0.01%)</title><rect x="347.4" y="629" width="0.2" height="15.0" fill="rgb(235,176,44)" rx="2" ry="2" />
<text x="350.44" y="639.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet6Tablet17MaxPersistentOpIdEv (4 samples, 0.02%)</title><rect x="484.1" y="853" width="0.2" height="15.0" fill="rgb(236,161,1)" rx="2" ry="2" />
<text x="487.09" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19DocHybridTimeBuffer19EncodeWithValueTypeERKNS_13DocHybridTimeE (2 samples, 0.01%)</title><rect x="533.9" y="661" width="0.1" height="15.0" fill="rgb(242,49,31)" rx="2" ry="2" />
<text x="536.89" y="671.5" ></text>
</g>
<g >
<title>[libprofiler.so.0.4.18] (2 samples, 0.01%)</title><rect x="770.1" y="837" width="0.1" height="15.0" fill="rgb(220,35,24)" rx="2" ry="2" />
<text x="773.08" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken6SubmitESt10shared_ptrINS_8RunnableEE (9 samples, 0.04%)</title><rect x="531.3" y="837" width="0.5" height="15.0" fill="rgb(239,209,44)" rx="2" ry="2" />
<text x="534.32" y="847.5" ></text>
</g>
<g >
<title>perf_pmu_disable (30 samples, 0.13%)</title><rect x="161.0" y="709" width="1.5" height="15.0" fill="rgb(206,181,9)" rx="2" ry="2" />
<text x="164.00" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection18HandleCallResponseEPNS0_8CallDataE (104 samples, 0.44%)</title><rect x="374.0" y="773" width="5.2" height="15.0" fill="rgb(216,44,23)" rx="2" ry="2" />
<text x="376.98" y="783.5" ></text>
</g>
<g >
<title>__queue_work (3 samples, 0.01%)</title><rect x="395.8" y="517" width="0.1" height="15.0" fill="rgb(221,90,43)" rx="2" ry="2" />
<text x="398.78" y="527.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13serialization15SerializeHeaderERKN6google8protobuf11MessageLiteEmPNS_12RefCntBufferEmPm (11 samples, 0.05%)</title><rect x="543.0" y="821" width="0.6" height="15.0" fill="rgb(210,115,7)" rx="2" ry="2" />
<text x="546.00" y="831.5" ></text>
</g>
<g >
<title>__GI___libc_write (38 samples, 0.16%)</title><rect x="545.5" y="757" width="1.9" height="15.0" fill="rgb(242,229,43)" rx="2" ry="2" />
<text x="548.47" y="767.5" ></text>
</g>
<g >
<title>__clock_gettime (2 samples, 0.01%)</title><rect x="603.3" y="949" width="0.1" height="15.0" fill="rgb(236,196,25)" rx="2" ry="2" />
<text x="606.32" y="959.5" ></text>
</g>
<g >
<title>sys_futex (527 samples, 2.25%)</title><rect x="498.0" y="869" width="26.6" height="15.0" fill="rgb(242,171,47)" rx="2" ry="2" />
<text x="501.04" y="879.5" >s..</text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (2,473 samples, 10.55%)</title><rect x="12.7" y="949" width="124.5" height="15.0" fill="rgb(245,100,47)" rx="2" ry="2" />
<text x="15.67" y="959.5" >_ZN2yb6Thread15..</text>
</g>
<g >
<title>_ZN2yb3log3Log16allocation_stateEv (2 samples, 0.01%)</title><rect x="395.6" y="885" width="0.1" height="15.0" fill="rgb(218,181,0)" rx="2" ry="2" />
<text x="398.58" y="895.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="394.9" y="709" width="0.2" height="15.0" fill="rgb(246,120,34)" rx="2" ry="2" />
<text x="397.92" y="719.5" ></text>
</g>
<g >
<title>dequeue_entity (4 samples, 0.02%)</title><rect x="1074.3" y="757" width="0.2" height="15.0" fill="rgb(253,116,44)" rx="2" ry="2" />
<text x="1077.35" y="767.5" ></text>
</g>
<g >
<title>ttwu_do_activate (9 samples, 0.04%)</title><rect x="426.5" y="725" width="0.5" height="15.0" fill="rgb(208,80,8)" rx="2" ry="2" />
<text x="429.54" y="735.5" ></text>
</g>
<g >
<title>dequeue_task_fair (10 samples, 0.04%)</title><rect x="500.4" y="757" width="0.5" height="15.0" fill="rgb(220,95,41)" rx="2" ry="2" />
<text x="503.41" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10RpcContextC2ESt10shared_ptrINS0_13YBInboundCallEES2_IN6google8protobuf7MessageEES8_NS0_16RpcMethodMetricsE (136 samples, 0.58%)</title><rect x="738.8" y="869" width="6.8" height="15.0" fill="rgb(219,196,4)" rx="2" ry="2" />
<text x="741.76" y="879.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (3 samples, 0.01%)</title><rect x="163.1" y="757" width="0.1" height="15.0" fill="rgb(216,216,43)" rx="2" ry="2" />
<text x="166.06" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock12NowWithErrorEPNS_10HybridTimeEPm (5 samples, 0.02%)</title><rect x="538.2" y="821" width="0.3" height="15.0" fill="rgb(247,201,46)" rx="2" ry="2" />
<text x="541.22" y="831.5" ></text>
</g>
<g >
<title>tcp_rcv_established (3 samples, 0.01%)</title><rect x="338.3" y="597" width="0.2" height="15.0" fill="rgb(249,37,50)" rx="2" ry="2" />
<text x="341.33" y="607.5" ></text>
</g>
<g >
<title>_ZN37protobuf_yb_2fcommon_2fcommon_2eproto30protobuf_AssignDescriptorsOnceEv (2 samples, 0.01%)</title><rect x="494.7" y="725" width="0.1" height="15.0" fill="rgb(214,209,21)" rx="2" ry="2" />
<text x="497.67" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb20ServerRegistrationPBD2Ev (4 samples, 0.02%)</title><rect x="414.7" y="805" width="0.2" height="15.0" fill="rgb(215,76,37)" rx="2" ry="2" />
<text x="417.71" y="815.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (4 samples, 0.02%)</title><rect x="963.1" y="613" width="0.2" height="15.0" fill="rgb(224,83,19)" rx="2" ry="2" />
<text x="966.12" y="623.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (2 samples, 0.01%)</title><rect x="547.0" y="645" width="0.1" height="15.0" fill="rgb(205,21,18)" rx="2" ry="2" />
<text x="550.03" y="655.5" ></text>
</g>
<g >
<title>dequeue_task_fair (4 samples, 0.02%)</title><rect x="559.9" y="757" width="0.2" height="15.0" fill="rgb(221,81,0)" rx="2" ry="2" />
<text x="562.92" y="767.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="380.0" y="741" width="0.1" height="15.0" fill="rgb(240,19,18)" rx="2" ry="2" />
<text x="382.97" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator5validEv (4 samples, 0.02%)</title><rect x="776.9" y="773" width="0.2" height="15.0" fill="rgb(247,32,6)" rx="2" ry="2" />
<text x="779.93" y="783.5" ></text>
</g>
<g >
<title>_copy_from_iter_full (3 samples, 0.01%)</title><rect x="347.4" y="645" width="0.2" height="15.0" fill="rgb(210,154,49)" rx="2" ry="2" />
<text x="350.44" y="655.5" ></text>
</g>
<g >
<title>finish_task_switch (61 samples, 0.26%)</title><rect x="1185.6" y="789" width="3.0" height="15.0" fill="rgb(223,43,0)" rx="2" ry="2" />
<text x="1188.57" y="799.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,880 samples, 8.02%)</title><rect x="232.0" y="805" width="94.7" height="15.0" fill="rgb(212,180,30)" rx="2" ry="2" />
<text x="234.99" y="815.5" >schedule_hr..</text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.05%)</title><rect x="414.1" y="821" width="0.5" height="15.0" fill="rgb(225,9,5)" rx="2" ry="2" />
<text x="417.06" y="831.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="1060.0" y="917" width="0.1" height="15.0" fill="rgb(207,149,52)" rx="2" ry="2" />
<text x="1063.05" y="927.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="1022.9" y="661" width="0.1" height="15.0" fill="rgb(239,37,0)" rx="2" ry="2" />
<text x="1025.89" y="671.5" ></text>
</g>
<g >
<title>ev_run (4 samples, 0.02%)</title><rect x="395.1" y="917" width="0.2" height="15.0" fill="rgb(206,171,26)" rx="2" ry="2" />
<text x="398.13" y="927.5" ></text>
</g>
<g >
<title>_ZNK2yb6Schema34CreateProjectionByIdsIgnoreMissingERKSt6vectorINS_8ColumnIdESaIS2_EEPS0_ (3 samples, 0.01%)</title><rect x="775.4" y="805" width="0.2" height="15.0" fill="rgb(241,220,3)" rx="2" ry="2" />
<text x="778.42" y="815.5" ></text>
</g>
<g >
<title>[unknown] (29 samples, 0.12%)</title><rect x="527.5" y="965" width="1.5" height="15.0" fill="rgb(228,6,40)" rx="2" ry="2" />
<text x="530.55" y="975.5" ></text>
</g>
<g >
<title>nf_conntrack_in (14 samples, 0.06%)</title><rect x="339.8" y="485" width="0.7" height="15.0" fill="rgb(210,212,11)" rx="2" ry="2" />
<text x="342.79" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="599.6" y="917" width="0.5" height="15.0" fill="rgb(237,122,14)" rx="2" ry="2" />
<text x="602.65" y="927.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator4NextEv (132 samples, 0.56%)</title><rect x="1004.0" y="725" width="6.7" height="15.0" fill="rgb(222,184,45)" rx="2" ry="2" />
<text x="1007.01" y="735.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="746.6" y="517" width="0.1" height="15.0" fill="rgb(248,165,46)" rx="2" ry="2" />
<text x="749.57" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="414.2" y="661" width="0.2" height="15.0" fill="rgb(252,84,25)" rx="2" ry="2" />
<text x="417.21" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4NextEv (5 samples, 0.02%)</title><rect x="973.0" y="757" width="0.2" height="15.0" fill="rgb(224,87,10)" rx="2" ry="2" />
<text x="975.99" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb8internal12CallbackBaseD2Ev (3 samples, 0.01%)</title><rect x="553.4" y="901" width="0.1" height="15.0" fill="rgb(254,148,35)" rx="2" ry="2" />
<text x="556.38" y="911.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (5 samples, 0.02%)</title><rect x="201.2" y="693" width="0.2" height="15.0" fill="rgb(210,123,54)" rx="2" ry="2" />
<text x="204.18" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock8NowRangeEv (2 samples, 0.01%)</title><rect x="491.4" y="789" width="0.1" height="15.0" fill="rgb(242,12,33)" rx="2" ry="2" />
<text x="494.40" y="799.5" ></text>
</g>
<g >
<title>ttwu_do_activate (2 samples, 0.01%)</title><rect x="492.8" y="661" width="0.1" height="15.0" fill="rgb(254,172,46)" rx="2" ry="2" />
<text x="495.75" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc17ConnectionContext15UpdateLastWriteERKSt10shared_ptrINS0_10ConnectionEE (3 samples, 0.01%)</title><rect x="359.9" y="805" width="0.1" height="15.0" fill="rgb(213,216,32)" rx="2" ry="2" />
<text x="362.88" y="815.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (3 samples, 0.01%)</title><rect x="501.8" y="725" width="0.1" height="15.0" fill="rgb(208,172,41)" rx="2" ry="2" />
<text x="504.77" y="735.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4NextEv (1,378 samples, 5.88%)</title><rect x="646.1" y="693" width="69.4" height="15.0" fill="rgb(218,46,44)" rx="2" ry="2" />
<text x="649.12" y="703.5" >_ZN7roc..</text>
</g>
<g >
<title>select_task_rq_fair (3 samples, 0.01%)</title><rect x="342.4" y="85" width="0.2" height="15.0" fill="rgb(227,184,31)" rx="2" ry="2" />
<text x="345.41" y="95.5" ></text>
</g>
<g >
<title>hrtimer_active (18 samples, 0.08%)</title><rect x="594.9" y="789" width="0.9" height="15.0" fill="rgb(246,26,40)" rx="2" ry="2" />
<text x="597.91" y="799.5" ></text>
</g>
<g >
<title>try_to_wake_up (4 samples, 0.02%)</title><rect x="473.9" y="677" width="0.2" height="15.0" fill="rgb(251,35,28)" rx="2" ry="2" />
<text x="476.92" y="687.5" ></text>
</g>
<g >
<title>_ZN7rocksdb16ColumnFamilyData25GetReferencedSuperVersionEPNS_17InstrumentedMutexE (2 samples, 0.01%)</title><rect x="776.0" y="693" width="0.1" height="15.0" fill="rgb(246,194,1)" rx="2" ry="2" />
<text x="779.02" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor18AssignOutboundCallERKSt10shared_ptrINS0_12OutboundCallEE (4 samples, 0.02%)</title><rect x="345.5" y="869" width="0.2" height="15.0" fill="rgb(218,63,27)" rx="2" ry="2" />
<text x="348.53" y="879.5" ></text>
</g>
<g >
<title>wake_q_add (2 samples, 0.01%)</title><rect x="441.3" y="837" width="0.1" height="15.0" fill="rgb(252,63,51)" rx="2" ry="2" />
<text x="444.30" y="847.5" ></text>
</g>
<g >
<title>_ZNK2yb9MonoDelta14ToMicrosecondsEv (3 samples, 0.01%)</title><rect x="525.8" y="933" width="0.2" height="15.0" fill="rgb(225,52,43)" rx="2" ry="2" />
<text x="528.83" y="943.5" ></text>
</g>
<g >
<title>__perf_event_enable (4 samples, 0.02%)</title><rect x="963.1" y="565" width="0.2" height="15.0" fill="rgb(229,104,18)" rx="2" ry="2" />
<text x="966.12" y="575.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.02%)</title><rect x="394.7" y="773" width="0.2" height="15.0" fill="rgb(208,104,6)" rx="2" ry="2" />
<text x="397.72" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim@plt (5 samples, 0.02%)</title><rect x="965.5" y="725" width="0.2" height="15.0" fill="rgb(243,86,47)" rx="2" ry="2" />
<text x="968.49" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream11SendingDataC2ESt10shared_ptrINS0_12OutboundDataEERKS3_INS_10MemTrackerEE (6 samples, 0.03%)</title><rect x="345.2" y="805" width="0.3" height="15.0" fill="rgb(234,68,20)" rx="2" ry="2" />
<text x="348.18" y="815.5" ></text>
</g>
<g >
<title>_ZNSt17_Function_handlerIFvvESt5_BindIFSt7_Mem_fnIMN2yb6tablet12PreparerImplEFvvEEPS5_EEE9_M_invokeERKSt9_Any_data (3 samples, 0.01%)</title><rect x="526.0" y="933" width="0.1" height="15.0" fill="rgb(254,111,2)" rx="2" ry="2" />
<text x="528.99" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus12ReplicaState30ApplyPendingOperationsUnlockedERKNS_4OpIdENS_17StronglyTypedBoolINS0_13CouldStop_TagEEE (74 samples, 0.32%)</title><rect x="531.9" y="853" width="3.8" height="15.0" fill="rgb(206,196,43)" rx="2" ry="2" />
<text x="534.93" y="863.5" ></text>
</g>
<g >
<title>perf_pmu_enable (575 samples, 2.45%)</title><rect x="561.3" y="741" width="28.9" height="15.0" fill="rgb(244,46,1)" rx="2" ry="2" />
<text x="564.28" y="751.5" >pe..</text>
</g>
<g >
<title>syscall_slow_exit_work (4 samples, 0.02%)</title><rect x="524.6" y="869" width="0.2" height="15.0" fill="rgb(244,46,14)" rx="2" ry="2" />
<text x="527.58" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus23EnqueuePreparesUnlockedERKNS0_18ConsensusRequestPBEPNS1_13LeaderRequestEPNS0_19ConsensusResponsePBE (38 samples, 0.16%)</title><rect x="750.1" y="821" width="1.9" height="15.0" fill="rgb(247,109,40)" rx="2" ry="2" />
<text x="753.09" y="831.5" ></text>
</g>
<g >
<title>resched_curr (2 samples, 0.01%)</title><rect x="430.7" y="645" width="0.1" height="15.0" fill="rgb(236,60,50)" rx="2" ry="2" />
<text x="433.72" y="655.5" ></text>
</g>
<g >
<title>__wake_up_common (3 samples, 0.01%)</title><rect x="393.1" y="741" width="0.1" height="15.0" fill="rgb(223,135,18)" rx="2" ry="2" />
<text x="396.06" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator3keyEv (3 samples, 0.01%)</title><rect x="1038.7" y="741" width="0.2" height="15.0" fill="rgb(208,205,5)" rx="2" ry="2" />
<text x="1041.75" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4SeekERKNS_5SliceE (3 samples, 0.01%)</title><rect x="776.9" y="709" width="0.2" height="15.0" fill="rgb(239,108,47)" rx="2" ry="2" />
<text x="779.93" y="719.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="372.3" y="549" width="0.1" height="15.0" fill="rgb(242,167,20)" rx="2" ry="2" />
<text x="375.32" y="559.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (4 samples, 0.02%)</title><rect x="343.8" y="469" width="0.2" height="15.0" fill="rgb(248,164,36)" rx="2" ry="2" />
<text x="346.82" y="479.5" ></text>
</g>
<g >
<title>__GI___getrusage (2 samples, 0.01%)</title><rect x="400.9" y="853" width="0.1" height="15.0" fill="rgb(210,170,31)" rx="2" ry="2" />
<text x="403.92" y="863.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="766.1" y="677" width="0.1" height="15.0" fill="rgb(228,140,16)" rx="2" ry="2" />
<text x="769.10" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10StartTimerENSt6chrono8durationIlSt5ratioILl1ELl1000000000EEEEPN2ev5timerE (2 samples, 0.01%)</title><rect x="336.6" y="869" width="0.1" height="15.0" fill="rgb(251,73,15)" rx="2" ry="2" />
<text x="339.62" y="879.5" ></text>
</g>
<g >
<title>_ZN7rocksdb14StatisticsImpl10recordTickEjm (2 samples, 0.01%)</title><rect x="1003.7" y="629" width="0.1" height="15.0" fill="rgb(247,141,32)" rx="2" ry="2" />
<text x="1006.66" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver18ReadCompletionTask3RunEv (5,663 samples, 24.16%)</title><rect x="774.4" y="917" width="285.1" height="15.0" fill="rgb(241,137,34)" rx="2" ry="2" />
<text x="777.41" y="927.5" >_ZN2yb7tserver18ReadCompletionTask3RunEv</text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection16GetUnknownFieldsERKNS0_7MessageE (3 samples, 0.01%)</title><rect x="745.0" y="821" width="0.1" height="15.0" fill="rgb(213,65,50)" rx="2" ry="2" />
<text x="747.96" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime10DecodeFromEPNS_5SliceE@plt (3 samples, 0.01%)</title><rect x="795.0" y="661" width="0.1" height="15.0" fill="rgb(237,182,36)" rx="2" ry="2" />
<text x="797.95" y="671.5" ></text>
</g>
<g >
<title>tick_program_event (2 samples, 0.01%)</title><rect x="325.4" y="693" width="0.1" height="15.0" fill="rgb(250,163,20)" rx="2" ry="2" />
<text x="328.44" y="703.5" ></text>
</g>
<g >
<title>load_balance (4 samples, 0.02%)</title><rect x="115.3" y="741" width="0.2" height="15.0" fill="rgb(225,116,22)" rx="2" ry="2" />
<text x="118.33" y="751.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="420.0" y="821" width="0.1" height="15.0" fill="rgb(224,40,54)" rx="2" ry="2" />
<text x="423.00" y="831.5" ></text>
</g>
<g >
<title>get_futex_value_locked (3 samples, 0.01%)</title><rect x="477.7" y="821" width="0.2" height="15.0" fill="rgb(220,182,52)" rx="2" ry="2" />
<text x="480.70" y="831.5" ></text>
</g>
<g >
<title>_ZN4base8SpinLock8SpinLoopElPi (6 samples, 0.03%)</title><rect x="539.7" y="885" width="0.3" height="15.0" fill="rgb(238,30,51)" rx="2" ry="2" />
<text x="542.68" y="895.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc15CentralFreeList18ReleaseListToSpansEPv (7 samples, 0.03%)</title><rect x="602.4" y="917" width="0.3" height="15.0" fill="rgb(252,40,38)" rx="2" ry="2" />
<text x="605.37" y="927.5" ></text>
</g>
<g >
<title>tcp_write_xmit (200 samples, 0.85%)</title><rect x="348.3" y="613" width="10.1" height="15.0" fill="rgb(217,25,30)" rx="2" ry="2" />
<text x="351.30" y="623.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus18ConsensusRequestPB27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (56 samples, 0.24%)</title><rect x="739.7" y="821" width="2.8" height="15.0" fill="rgb(225,153,11)" rx="2" ry="2" />
<text x="742.72" y="831.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.isra.11 (47 samples, 0.20%)</title><rect x="228.8" y="821" width="2.4" height="15.0" fill="rgb(253,181,50)" rx="2" ry="2" />
<text x="231.82" y="831.5" ></text>
</g>
<g >
<title>_ZNSt6vectorISt10shared_ptrIN2yb3rpc10ConnectionEESaIS4_EE7reserveEm (2 samples, 0.01%)</title><rect x="366.2" y="869" width="0.1" height="15.0" fill="rgb(252,73,0)" rx="2" ry="2" />
<text x="369.23" y="879.5" ></text>
</g>
<g >
<title>perf_pmu_enable (388 samples, 1.66%)</title><rect x="501.9" y="741" width="19.6" height="15.0" fill="rgb(219,164,44)" rx="2" ry="2" />
<text x="504.92" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11ServicePool16QueueInboundCallESt10shared_ptrINS0_11InboundCallEE (2 samples, 0.01%)</title><rect x="380.0" y="757" width="0.1" height="15.0" fill="rgb(206,69,4)" rx="2" ry="2" />
<text x="382.97" y="767.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="766.1" y="613" width="0.1" height="15.0" fill="rgb(232,49,5)" rx="2" ry="2" />
<text x="769.10" y="623.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (4 samples, 0.02%)</title><rect x="161.0" y="693" width="0.2" height="15.0" fill="rgb(210,128,37)" rx="2" ry="2" />
<text x="164.00" y="703.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="770.1" y="821" width="0.1" height="15.0" fill="rgb(226,149,46)" rx="2" ry="2" />
<text x="773.08" y="831.5" ></text>
</g>
<g >
<title>resched_curr (4 samples, 0.02%)</title><rect x="546.6" y="485" width="0.2" height="15.0" fill="rgb(213,125,51)" rx="2" ry="2" />
<text x="549.58" y="495.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (4 samples, 0.02%)</title><rect x="395.1" y="949" width="0.2" height="15.0" fill="rgb(207,203,12)" rx="2" ry="2" />
<text x="398.13" y="959.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="55.1" y="725" width="0.1" height="15.0" fill="rgb(222,54,21)" rx="2" ry="2" />
<text x="58.06" y="735.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3 samples, 0.01%)</title><rect x="413.8" y="901" width="0.1" height="15.0" fill="rgb(239,38,39)" rx="2" ry="2" />
<text x="416.76" y="911.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.14 (2 samples, 0.01%)</title><rect x="561.3" y="693" width="0.1" height="15.0" fill="rgb(241,178,45)" rx="2" ry="2" />
<text x="564.33" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver25LookupTabletPeerOrRespondINS_9consensus19ConsensusResponsePBEEENS_6ResultISt10shared_ptrINS_6tablet10TabletPeerEEEEPNS0_18TabletPeerLookupIfERKSsPT_PNS_3rpc10RpcContextE (2 samples, 0.01%)</title><rect x="758.8" y="869" width="0.1" height="15.0" fill="rgb(224,173,3)" rx="2" ry="2" />
<text x="761.80" y="879.5" ></text>
</g>
<g >
<title>futex_wait (592 samples, 2.53%)</title><rect x="448.2" y="853" width="29.8" height="15.0" fill="rgb(229,217,32)" rx="2" ry="2" />
<text x="451.20" y="863.5" >fu..</text>
</g>
<g >
<title>_ZN2yb8MonoTime8AddDeltaERKNS_9MonoDeltaE (2 samples, 0.01%)</title><rect x="428.6" y="853" width="0.1" height="15.0" fill="rgb(216,206,34)" rx="2" ry="2" />
<text x="431.56" y="863.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.02%)</title><rect x="680.5" y="549" width="0.2" height="15.0" fill="rgb(249,15,40)" rx="2" ry="2" />
<text x="683.46" y="559.5" ></text>
</g>
<g >
<title>dput (5 samples, 0.02%)</title><rect x="330.4" y="805" width="0.2" height="15.0" fill="rgb(254,224,29)" rx="2" ry="2" />
<text x="333.38" y="815.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet10TabletPeer17GetGCableDataSizeEPl (15 samples, 0.06%)</title><rect x="483.5" y="885" width="0.8" height="15.0" fill="rgb(242,0,38)" rx="2" ry="2" />
<text x="486.54" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb6SchemaC1Ev (2 samples, 0.01%)</title><rect x="775.7" y="821" width="0.1" height="15.0" fill="rgb(235,214,20)" rx="2" ry="2" />
<text x="778.67" y="831.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="732.3" y="693" width="0.1" height="15.0" fill="rgb(219,221,1)" rx="2" ry="2" />
<text x="735.32" y="703.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="601.9" y="725" width="0.2" height="15.0" fill="rgb(229,26,19)" rx="2" ry="2" />
<text x="604.86" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator27SeekForwardToSuitableIntentERKNS0_8KeyBytesE (4 samples, 0.02%)</title><rect x="776.9" y="741" width="0.2" height="15.0" fill="rgb(234,186,49)" rx="2" ry="2" />
<text x="779.93" y="751.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.02%)</title><rect x="970.5" y="725" width="0.2" height="15.0" fill="rgb(239,148,4)" rx="2" ry="2" />
<text x="973.52" y="735.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="680.5" y="485" width="0.2" height="15.0" fill="rgb(215,117,49)" rx="2" ry="2" />
<text x="683.46" y="495.5" ></text>
</g>
<g >
<title>try_to_wake_up (9 samples, 0.04%)</title><rect x="490.6" y="693" width="0.4" height="15.0" fill="rgb(231,124,7)" rx="2" ry="2" />
<text x="493.59" y="703.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator4NextEv (105 samples, 0.45%)</title><rect x="676.3" y="661" width="5.3" height="15.0" fill="rgb(237,126,41)" rx="2" ry="2" />
<text x="679.33" y="671.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="342.7" y="117" width="0.1" height="15.0" fill="rgb(224,66,19)" rx="2" ry="2" />
<text x="345.71" y="127.5" ></text>
</g>
<g >
<title>sys_sendmsg (127 samples, 0.54%)</title><rect x="338.1" y="741" width="6.4" height="15.0" fill="rgb(248,208,31)" rx="2" ry="2" />
<text x="341.08" y="751.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="395.1" y="677" width="0.2" height="15.0" fill="rgb(235,224,47)" rx="2" ry="2" />
<text x="398.13" y="687.5" ></text>
</g>
<g >
<title>tcp_push (107 samples, 0.46%)</title><rect x="338.9" y="629" width="5.4" height="15.0" fill="rgb(228,129,0)" rx="2" ry="2" />
<text x="341.89" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache17EvictSomeUnlockedEll (4 samples, 0.02%)</title><rect x="399.3" y="805" width="0.2" height="15.0" fill="rgb(250,55,0)" rx="2" ry="2" />
<text x="402.31" y="815.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (107 samples, 0.46%)</title><rect x="338.9" y="613" width="5.4" height="15.0" fill="rgb(243,91,4)" rx="2" ry="2" />
<text x="341.89" y="623.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3 samples, 0.01%)</title><rect x="996.7" y="693" width="0.2" height="15.0" fill="rgb(206,113,0)" rx="2" ry="2" />
<text x="999.71" y="703.5" ></text>
</g>
<g >
<title>perf_pmu_disable (11 samples, 0.05%)</title><rect x="452.3" y="741" width="0.5" height="15.0" fill="rgb(212,124,53)" rx="2" ry="2" />
<text x="455.27" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet26ApplyKeyValueRowOperationsERKNS_5docdb20KeyValueWriteBatchPBEPKN7rocksdb13UserFrontiersENS_10HybridTimeE (48 samples, 0.20%)</title><rect x="532.2" y="725" width="2.4" height="15.0" fill="rgb(242,195,36)" rx="2" ry="2" />
<text x="535.18" y="735.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="372.3" y="565" width="0.1" height="15.0" fill="rgb(226,106,38)" rx="2" ry="2" />
<text x="375.32" y="575.5" ></text>
</g>
<g >
<title>try_to_wake_up (3 samples, 0.01%)</title><rect x="395.8" y="453" width="0.1" height="15.0" fill="rgb(254,148,9)" rx="2" ry="2" />
<text x="398.78" y="463.5" ></text>
</g>
<g >
<title>sys_futex (4 samples, 0.02%)</title><rect x="535.4" y="661" width="0.2" height="15.0" fill="rgb(224,206,31)" rx="2" ry="2" />
<text x="538.35" y="671.5" ></text>
</g>
<g >
<title>_ZN7rocksdb14StatisticsImpl10recordTickEjm (43 samples, 0.18%)</title><rect x="642.8" y="693" width="2.2" height="15.0" fill="rgb(214,99,15)" rx="2" ry="2" />
<text x="645.85" y="703.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (4 samples, 0.02%)</title><rect x="202.5" y="789" width="0.2" height="15.0" fill="rgb(214,30,41)" rx="2" ry="2" />
<text x="205.54" y="799.5" ></text>
</g>
<g >
<title>sys_epoll_ctl (9 samples, 0.04%)</title><rect x="334.4" y="853" width="0.4" height="15.0" fill="rgb(237,216,13)" rx="2" ry="2" />
<text x="337.35" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (651 samples, 2.78%)</title><rect x="447.4" y="901" width="32.8" height="15.0" fill="rgb(209,92,53)" rx="2" ry="2" />
<text x="450.44" y="911.5" >do..</text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5valueEv (4 samples, 0.02%)</title><rect x="1043.8" y="741" width="0.2" height="15.0" fill="rgb(237,172,13)" rx="2" ry="2" />
<text x="1046.83" y="751.5" ></text>
</g>
<g >
<title>_ZNSt14_Function_base13_Base_managerISt5_BindIFSt7_Mem_fnIMN2yb8CallbackIFvvEEEKFvvEES6_EEE10_M_managerERSt9_Any_dataRKSD_St18_Manager_operation (12 samples, 0.05%)</title><rect x="553.3" y="917" width="0.6" height="15.0" fill="rgb(227,104,11)" rx="2" ry="2" />
<text x="556.33" y="927.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (8 samples, 0.03%)</title><rect x="46.4" y="661" width="0.4" height="15.0" fill="rgb(206,181,31)" rx="2" ry="2" />
<text x="49.35" y="671.5" ></text>
</g>
<g >
<title>timerfd_poll (2 samples, 0.01%)</title><rect x="420.2" y="805" width="0.1" height="15.0" fill="rgb(224,186,33)" rx="2" ry="2" />
<text x="423.20" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb18PgsqlReadOperation10GetIntentsERKNS_6SchemaEPNS0_20KeyValueWriteBatchPBE (3 samples, 0.01%)</title><rect x="737.3" y="837" width="0.2" height="15.0" fill="rgb(243,169,53)" rx="2" ry="2" />
<text x="740.30" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor31DrainTaskQueueAndCheckIfClosingEv@plt (2 samples, 0.01%)</title><rect x="367.3" y="885" width="0.1" height="15.0" fill="rgb(233,109,20)" rx="2" ry="2" />
<text x="370.28" y="895.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (111 samples, 0.47%)</title><rect x="891.5" y="661" width="5.6" height="15.0" fill="rgb(235,80,39)" rx="2" ry="2" />
<text x="894.53" y="671.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="424.9" y="725" width="0.1" height="15.0" fill="rgb(224,195,32)" rx="2" ry="2" />
<text x="427.88" y="735.5" ></text>
</g>
<g >
<title>__vfs_read (10 samples, 0.04%)</title><rect x="392.9" y="805" width="0.5" height="15.0" fill="rgb(211,44,7)" rx="2" ry="2" />
<text x="395.86" y="815.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (3 samples, 0.01%)</title><rect x="196.4" y="741" width="0.2" height="15.0" fill="rgb(219,22,36)" rx="2" ry="2" />
<text x="199.45" y="751.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,355 samples, 10.05%)</title><rect x="1063.3" y="901" width="118.5" height="15.0" fill="rgb(248,9,30)" rx="2" ry="2" />
<text x="1066.27" y="911.5" >do_syscall_64</text>
</g>
<g >
<title>finish_task_switch (668 samples, 2.85%)</title><rect x="165.5" y="757" width="33.6" height="15.0" fill="rgb(239,94,14)" rx="2" ry="2" />
<text x="168.48" y="767.5" >fi..</text>
</g>
<g >
<title>sys_futex (11 samples, 0.05%)</title><rect x="490.5" y="741" width="0.5" height="15.0" fill="rgb(209,180,7)" rx="2" ry="2" />
<text x="493.49" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb21InternalKeyComparator7CompareERKN2yb5SliceES4_ (86 samples, 0.37%)</title><rect x="879.9" y="661" width="4.3" height="15.0" fill="rgb(209,138,17)" rx="2" ry="2" />
<text x="882.90" y="671.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="424.8" y="789" width="0.4" height="15.0" fill="rgb(246,116,45)" rx="2" ry="2" />
<text x="427.78" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb11CloudInfoPBD2Ev (7 samples, 0.03%)</title><rect x="763.0" y="805" width="0.4" height="15.0" fill="rgb(215,55,13)" rx="2" ry="2" />
<text x="766.03" y="815.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (11 samples, 0.05%)</title><rect x="607.6" y="805" width="0.6" height="15.0" fill="rgb(230,174,32)" rx="2" ry="2" />
<text x="610.60" y="815.5" ></text>
</g>
<g >
<title>nf_hook_slow (49 samples, 0.21%)</title><rect x="349.2" y="533" width="2.4" height="15.0" fill="rgb(222,140,16)" rx="2" ry="2" />
<text x="352.16" y="543.5" ></text>
</g>
<g >
<title>_ZN7rocksdb16MemTableIterator4SeekERKN2yb5SliceE (2 samples, 0.01%)</title><rect x="777.0" y="661" width="0.1" height="15.0" fill="rgb(234,199,3)" rx="2" ry="2" />
<text x="779.98" y="671.5" ></text>
</g>
<g >
<title>__do_softirq (60 samples, 0.26%)</title><rect x="340.8" y="437" width="3.0" height="15.0" fill="rgb(218,124,31)" rx="2" ry="2" />
<text x="343.80" y="447.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection10ReadBufferEv (3 samples, 0.01%)</title><rect x="367.6" y="853" width="0.2" height="15.0" fill="rgb(207,51,24)" rx="2" ry="2" />
<text x="370.64" y="863.5" ></text>
</g>
<g >
<title>sock_poll (9 samples, 0.04%)</title><rect x="1188.8" y="869" width="0.4" height="15.0" fill="rgb(242,53,37)" rx="2" ry="2" />
<text x="1191.79" y="879.5" ></text>
</g>
<g >
<title>__schedule (32 samples, 0.14%)</title><rect x="415.6" y="789" width="1.6" height="15.0" fill="rgb(212,24,48)" rx="2" ry="2" />
<text x="418.62" y="799.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="1181.7" y="805" width="0.1" height="15.0" fill="rgb(238,92,16)" rx="2" ry="2" />
<text x="1184.74" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream12UpdateEventsEv (2 samples, 0.01%)</title><rect x="337.7" y="805" width="0.1" height="15.0" fill="rgb(234,95,36)" rx="2" ry="2" />
<text x="340.73" y="815.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="616.3" y="869" width="0.1" height="15.0" fill="rgb(213,19,5)" rx="2" ry="2" />
<text x="619.31" y="879.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (5 samples, 0.02%)</title><rect x="756.3" y="709" width="0.3" height="15.0" fill="rgb(254,168,39)" rx="2" ry="2" />
<text x="759.34" y="719.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (10 samples, 0.04%)</title><rect x="600.9" y="917" width="0.5" height="15.0" fill="rgb(206,96,15)" rx="2" ry="2" />
<text x="603.86" y="927.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf11MessageLite20ParseFromCodedStreamEPNS0_2io16CodedInputStreamE (2 samples, 0.01%)</title><rect x="370.3" y="757" width="0.1" height="15.0" fill="rgb(237,155,46)" rx="2" ry="2" />
<text x="373.30" y="767.5" ></text>
</g>
<g >
<title>update_process_times (90 samples, 0.38%)</title><rect x="320.9" y="645" width="4.5" height="15.0" fill="rgb(217,126,7)" rx="2" ry="2" />
<text x="323.86" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall18InvokeCallbackSyncEv (242 samples, 1.03%)</title><rect x="760.9" y="901" width="12.2" height="15.0" fill="rgb(248,183,44)" rx="2" ry="2" />
<text x="763.92" y="911.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb8MemTable13KeyComparatorclEPKcS3_ (2 samples, 0.01%)</title><rect x="642.7" y="613" width="0.1" height="15.0" fill="rgb(223,13,14)" rx="2" ry="2" />
<text x="645.75" y="623.5" ></text>
</g>
<g >
<title>ctx_resched (4 samples, 0.02%)</title><rect x="963.1" y="549" width="0.2" height="15.0" fill="rgb(245,154,3)" rx="2" ry="2" />
<text x="966.12" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (43 samples, 0.18%)</title><rect x="754.6" y="821" width="2.1" height="15.0" fill="rgb(207,130,3)" rx="2" ry="2" />
<text x="757.57" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb4util22FastDecodeSignedVarIntEPKhm (374 samples, 1.60%)</title><rect x="809.8" y="613" width="18.8" height="15.0" fill="rgb(231,157,30)" rx="2" ry="2" />
<text x="812.76" y="623.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection14OutboundQueuedEv (315 samples, 1.34%)</title><rect x="345.8" y="853" width="15.8" height="15.0" fill="rgb(251,28,37)" rx="2" ry="2" />
<text x="348.78" y="863.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (53 samples, 0.23%)</title><rect x="1185.7" y="725" width="2.6" height="15.0" fill="rgb(230,202,35)" rx="2" ry="2" />
<text x="1188.67" y="735.5" ></text>
</g>
<g >
<title>scheduler_tick (27 samples, 0.12%)</title><rect x="474.2" y="661" width="1.4" height="15.0" fill="rgb(218,201,27)" rx="2" ry="2" />
<text x="477.23" y="671.5" ></text>
</g>
<g >
<title>ctx_sched_out (18 samples, 0.08%)</title><rect x="238.0" y="725" width="0.9" height="15.0" fill="rgb(221,20,38)" rx="2" ry="2" />
<text x="241.03" y="735.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (3 samples, 0.01%)</title><rect x="424.8" y="741" width="0.2" height="15.0" fill="rgb(249,38,39)" rx="2" ry="2" />
<text x="427.83" y="751.5" ></text>
</g>
<g >
<title>sys_futex (6 samples, 0.03%)</title><rect x="751.0" y="661" width="0.4" height="15.0" fill="rgb(230,126,16)" rx="2" ry="2" />
<text x="754.05" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker7ConsumeEl (7 samples, 0.03%)</title><rect x="542.5" y="821" width="0.3" height="15.0" fill="rgb(211,216,21)" rx="2" ry="2" />
<text x="545.45" y="831.5" ></text>
</g>
<g >
<title>avc_has_perm (2 samples, 0.01%)</title><rect x="359.1" y="645" width="0.1" height="15.0" fill="rgb(230,77,41)" rx="2" ry="2" />
<text x="362.08" y="655.5" ></text>
</g>
<g >
<title>_ZNSt6chrono3_V212system_clock3nowEv (3 samples, 0.01%)</title><rect x="603.2" y="949" width="0.1" height="15.0" fill="rgb(220,16,26)" rx="2" ry="2" />
<text x="606.17" y="959.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (5 samples, 0.02%)</title><rect x="359.3" y="725" width="0.2" height="15.0" fill="rgb(233,205,48)" rx="2" ry="2" />
<text x="362.28" y="735.5" ></text>
</g>
<g >
<title>wake_up_q (36 samples, 0.15%)</title><rect x="441.4" y="853" width="1.8" height="15.0" fill="rgb(230,188,0)" rx="2" ry="2" />
<text x="444.40" y="863.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (7 samples, 0.03%)</title><rect x="36.6" y="789" width="0.4" height="15.0" fill="rgb(242,172,48)" rx="2" ry="2" />
<text x="39.64" y="799.5" ></text>
</g>
<g >
<title>tcp_send_ack (11 samples, 0.05%)</title><rect x="341.3" y="229" width="0.6" height="15.0" fill="rgb(217,198,29)" rx="2" ry="2" />
<text x="344.30" y="239.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv@plt (8 samples, 0.03%)</title><rect x="912.9" y="709" width="0.4" height="15.0" fill="rgb(208,50,36)" rx="2" ry="2" />
<text x="915.92" y="719.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKSs (10 samples, 0.04%)</title><rect x="741.1" y="805" width="0.5" height="15.0" fill="rgb(215,73,19)" rx="2" ry="2" />
<text x="744.08" y="815.5" ></text>
</g>
<g >
<title>perf_pmu_enable (8 samples, 0.03%)</title><rect x="396.5" y="597" width="0.4" height="15.0" fill="rgb(218,136,38)" rx="2" ry="2" />
<text x="399.54" y="607.5" ></text>
</g>
<g >
<title>native_write_msr (1,539 samples, 6.57%)</title><rect x="242.8" y="677" width="77.5" height="15.0" fill="rgb(244,39,2)" rx="2" ry="2" />
<text x="245.82" y="687.5" >native_w..</text>
</g>
<g >
<title>sock_sendmsg (125 samples, 0.53%)</title><rect x="338.2" y="693" width="6.3" height="15.0" fill="rgb(237,102,23)" rx="2" ry="2" />
<text x="341.18" y="703.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (20 samples, 0.09%)</title><rect x="484.6" y="709" width="1.0" height="15.0" fill="rgb(230,26,0)" rx="2" ry="2" />
<text x="487.60" y="719.5" ></text>
</g>
<g >
<title>ip_rcv_finish (41 samples, 0.17%)</title><rect x="386.4" y="405" width="2.1" height="15.0" fill="rgb(246,33,15)" rx="2" ry="2" />
<text x="389.42" y="415.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="430.9" y="789" width="0.1" height="15.0" fill="rgb(245,186,15)" rx="2" ry="2" />
<text x="433.93" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus19GetRaftConfigMemberERKNS0_12RaftConfigPBERKSsPNS0_10RaftPeerPBE (45 samples, 0.19%)</title><rect x="767.2" y="853" width="2.3" height="15.0" fill="rgb(228,10,11)" rx="2" ry="2" />
<text x="770.21" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb15ThreadPoolToken6SubmitESt10shared_ptrINS_8RunnableEE (14 samples, 0.06%)</title><rect x="750.7" y="725" width="0.7" height="15.0" fill="rgb(224,226,47)" rx="2" ry="2" />
<text x="753.70" y="735.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb21InternalKeyComparator7CompareERKN2yb5SliceES4_ (10 samples, 0.04%)</title><rect x="1044.0" y="741" width="0.5" height="15.0" fill="rgb(244,79,22)" rx="2" ry="2" />
<text x="1047.04" y="751.5" ></text>
</g>
<g >
<title>timerfd_settime (20 samples, 0.09%)</title><rect x="433.1" y="917" width="1.0" height="15.0" fill="rgb(212,91,37)" rx="2" ry="2" />
<text x="436.09" y="927.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (2 samples, 0.01%)</title><rect x="357.7" y="549" width="0.1" height="15.0" fill="rgb(242,228,22)" rx="2" ry="2" />
<text x="360.72" y="559.5" ></text>
</g>
<g >
<title>_ZN2yb16FunctionRunnable3RunEv (5 samples, 0.02%)</title><rect x="597.8" y="933" width="0.3" height="15.0" fill="rgb(254,162,48)" rx="2" ry="2" />
<text x="600.83" y="943.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter5ValidEv (8 samples, 0.03%)</title><rect x="1049.7" y="741" width="0.4" height="15.0" fill="rgb(237,58,0)" rx="2" ry="2" />
<text x="1052.73" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9Messenger15RemoteToReactorERKN5boost4asio2ip14basic_endpointINS4_3tcpEEEj (2 samples, 0.01%)</title><rect x="545.0" y="821" width="0.1" height="15.0" fill="rgb(243,31,40)" rx="2" ry="2" />
<text x="548.02" y="831.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12SkipListBaseIPKcRKNS_11MemTableRep13KeyComparatorENS_30SingleWriterInlineSkipListNodeEE13PrepareInsertES2_ (4 samples, 0.02%)</title><rect x="532.8" y="581" width="0.2" height="15.0" fill="rgb(246,159,41)" rx="2" ry="2" />
<text x="535.83" y="591.5" ></text>
</g>
<g >
<title>account_entity_dequeue (8 samples, 0.03%)</title><rect x="48.5" y="709" width="0.4" height="15.0" fill="rgb(230,68,50)" rx="2" ry="2" />
<text x="51.47" y="719.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_local_fn (2 samples, 0.01%)</title><rect x="349.9" y="501" width="0.1" height="15.0" fill="rgb(205,6,13)" rx="2" ry="2" />
<text x="352.86" y="511.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor12TimerHandlerERN2ev5timerEi (9 samples, 0.04%)</title><rect x="366.3" y="885" width="0.5" height="15.0" fill="rgb(248,67,26)" rx="2" ry="2" />
<text x="369.33" y="895.5" ></text>
</g>
<g >
<title>__schedule (1,769 samples, 7.55%)</title><rect x="237.5" y="773" width="89.0" height="15.0" fill="rgb(254,3,11)" rx="2" ry="2" />
<text x="240.48" y="783.5" >__schedule</text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.02%)</title><rect x="559.7" y="773" width="0.2" height="15.0" fill="rgb(233,125,32)" rx="2" ry="2" />
<text x="562.72" y="783.5" ></text>
</g>
<g >
<title>__netif_receive_skb (58 samples, 0.25%)</title><rect x="386.2" y="453" width="2.9" height="15.0" fill="rgb(206,45,16)" rx="2" ry="2" />
<text x="389.16" y="463.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection14UpdateLastReadEv (2 samples, 0.01%)</title><rect x="367.8" y="853" width="0.1" height="15.0" fill="rgb(214,50,16)" rx="2" ry="2" />
<text x="370.79" y="863.5" ></text>
</g>
<g >
<title>resched_curr (4 samples, 0.02%)</title><rect x="490.8" y="629" width="0.2" height="15.0" fill="rgb(210,122,24)" rx="2" ry="2" />
<text x="493.79" y="639.5" ></text>
</g>
<g >
<title>fput (2 samples, 0.01%)</title><rect x="1184.3" y="853" width="0.1" height="15.0" fill="rgb(213,174,37)" rx="2" ry="2" />
<text x="1187.31" y="863.5" ></text>
</g>
<g >
<title>__fget (2 samples, 0.01%)</title><rect x="334.6" y="805" width="0.1" height="15.0" fill="rgb(227,223,52)" rx="2" ry="2" />
<text x="337.56" y="815.5" ></text>
</g>
<g >
<title>dequeue_task_fair (10 samples, 0.04%)</title><rect x="608.2" y="789" width="0.5" height="15.0" fill="rgb(208,163,23)" rx="2" ry="2" />
<text x="611.21" y="799.5" ></text>
</g>
<g >
<title>do_syscall_64 (27 samples, 0.12%)</title><rect x="401.6" y="805" width="1.3" height="15.0" fill="rgb(218,17,8)" rx="2" ry="2" />
<text x="404.57" y="815.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE6InsertEPv (4 samples, 0.02%)</title><rect x="532.8" y="597" width="0.2" height="15.0" fill="rgb(233,63,7)" rx="2" ry="2" />
<text x="535.83" y="607.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="1015.3" y="661" width="0.2" height="15.0" fill="rgb(250,132,21)" rx="2" ry="2" />
<text x="1018.34" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim (6 samples, 0.03%)</title><rect x="829.9" y="661" width="0.4" height="15.0" fill="rgb(210,172,38)" rx="2" ry="2" />
<text x="832.95" y="671.5" ></text>
</g>
<g >
<title>ip_finish_output2 (2 samples, 0.01%)</title><rect x="341.8" y="117" width="0.1" height="15.0" fill="rgb(217,23,6)" rx="2" ry="2" />
<text x="344.76" y="127.5" ></text>
</g>
<g >
<title>_ZN2yb11CloudInfoPBD0Ev (3 samples, 0.01%)</title><rect x="762.8" y="837" width="0.1" height="15.0" fill="rgb(237,82,36)" rx="2" ry="2" />
<text x="765.78" y="847.5" ></text>
</g>
<g >
<title>x86_pmu_enable (1,059 samples, 4.52%)</title><rect x="55.8" y="709" width="53.3" height="15.0" fill="rgb(248,79,9)" rx="2" ry="2" />
<text x="58.77" y="719.5" >x86_p..</text>
</g>
<g >
<title>_ZN5boost11this_thread20interruption_enabledEv (2 samples, 0.01%)</title><rect x="403.2" y="837" width="0.1" height="15.0" fill="rgb(239,185,38)" rx="2" ry="2" />
<text x="406.23" y="847.5" ></text>
</g>
<g >
<title>__dta_xlog_state_release_iclog_3650 (5 samples, 0.02%)</title><rect x="395.7" y="725" width="0.2" height="15.0" fill="rgb(216,1,11)" rx="2" ry="2" />
<text x="398.68" y="735.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (7 samples, 0.03%)</title><rect x="607.8" y="725" width="0.3" height="15.0" fill="rgb(235,91,38)" rx="2" ry="2" />
<text x="610.75" y="735.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (8 samples, 0.03%)</title><rect x="396.5" y="565" width="0.4" height="15.0" fill="rgb(248,37,42)" rx="2" ry="2" />
<text x="399.54" y="575.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="624.2" y="709" width="0.1" height="15.0" fill="rgb(224,143,15)" rx="2" ry="2" />
<text x="627.22" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (41 samples, 0.17%)</title><rect x="196.6" y="693" width="2.1" height="15.0" fill="rgb(237,166,5)" rx="2" ry="2" />
<text x="199.65" y="703.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (226 samples, 0.96%)</title><rect x="604.7" y="949" width="11.4" height="15.0" fill="rgb(242,101,16)" rx="2" ry="2" />
<text x="607.68" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator22SeekIntentIterIfNeededEv (2,704 samples, 11.54%)</title><rect x="777.2" y="741" width="136.1" height="15.0" fill="rgb(207,157,49)" rx="2" ry="2" />
<text x="780.18" y="751.5" >_ZN2yb5docdb19Int..</text>
</g>
<g >
<title>x86_pmu_disable (2 samples, 0.01%)</title><rect x="46.8" y="709" width="0.1" height="15.0" fill="rgb(238,43,15)" rx="2" ry="2" />
<text x="49.81" y="719.5" ></text>
</g>
<g >
<title>[unknown] (7 samples, 0.03%)</title><rect x="616.3" y="933" width="0.3" height="15.0" fill="rgb(237,35,47)" rx="2" ry="2" />
<text x="619.26" y="943.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="766.1" y="597" width="0.1" height="15.0" fill="rgb(231,146,45)" rx="2" ry="2" />
<text x="769.10" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12IoThreadPool4Impl7ExecuteEv (323 samples, 1.38%)</title><rect x="417.8" y="933" width="16.3" height="15.0" fill="rgb(223,49,10)" rx="2" ry="2" />
<text x="420.83" y="943.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="616.3" y="901" width="0.1" height="15.0" fill="rgb(230,86,0)" rx="2" ry="2" />
<text x="619.31" y="911.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb (2 samples, 0.01%)</title><rect x="976.5" y="757" width="0.1" height="15.0" fill="rgb(206,149,43)" rx="2" ry="2" />
<text x="979.52" y="767.5" ></text>
</g>
<g >
<title>perf_pmu_disable (38 samples, 0.16%)</title><rect x="44.4" y="709" width="1.9" height="15.0" fill="rgb(245,166,14)" rx="2" ry="2" />
<text x="47.39" y="719.5" ></text>
</g>
<g >
<title>__nf_ct_l4proto_find (5 samples, 0.02%)</title><rect x="350.5" y="501" width="0.3" height="15.0" fill="rgb(240,12,31)" rx="2" ry="2" />
<text x="353.52" y="511.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal20RepeatedPtrFieldBase18MergeFromInnerLoopINS0_16RepeatedPtrFieldIN2yb10HostPortPBEE11TypeHandlerEEEvPPvSA_ii (14 samples, 0.06%)</title><rect x="768.6" y="821" width="0.7" height="15.0" fill="rgb(223,138,37)" rx="2" ry="2" />
<text x="771.57" y="831.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus17ConsensusMetadata11active_roleEv (5 samples, 0.02%)</title><rect x="537.3" y="885" width="0.2" height="15.0" fill="rgb(232,40,3)" rx="2" ry="2" />
<text x="540.26" y="895.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (25 samples, 0.11%)</title><rect x="484.3" y="917" width="1.3" height="15.0" fill="rgb(215,22,49)" rx="2" ry="2" />
<text x="487.35" y="927.5" ></text>
</g>
<g >
<title>_ZN7rocksdb18ArenaWrappedDBIter4NextEv (4 samples, 0.02%)</title><rect x="1056.3" y="773" width="0.2" height="15.0" fill="rgb(254,3,54)" rx="2" ry="2" />
<text x="1059.32" y="783.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf11MessageLite20ParseFromCodedStreamEPNS0_2io16CodedInputStreamE (71 samples, 0.30%)</title><rect x="739.5" y="837" width="3.6" height="15.0" fill="rgb(221,184,4)" rx="2" ry="2" />
<text x="742.52" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc14RemoteMethodPBD2Ev (3 samples, 0.01%)</title><rect x="431.8" y="789" width="0.2" height="15.0" fill="rgb(205,205,52)" rx="2" ry="2" />
<text x="434.83" y="799.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (9 samples, 0.04%)</title><rect x="1181.8" y="917" width="0.5" height="15.0" fill="rgb(233,139,2)" rx="2" ry="2" />
<text x="1184.84" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4SeekERKNS_5SliceE (3 samples, 0.01%)</title><rect x="642.7" y="693" width="0.1" height="15.0" fill="rgb(212,79,49)" rx="2" ry="2" />
<text x="645.70" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver23CheckUuidMatchOrRespondINS_9consensus18ConsensusRequestPBENS2_19ConsensusResponsePBEEEbPNS0_18TabletPeerLookupIfEPKcPKT_PT0_PNS_3rpc10RpcContextE (2 samples, 0.01%)</title><rect x="758.7" y="869" width="0.1" height="15.0" fill="rgb(236,99,35)" rx="2" ry="2" />
<text x="761.70" y="879.5" ></text>
</g>
<g >
<title>__fdget_pos (5 samples, 0.02%)</title><rect x="392.6" y="821" width="0.3" height="15.0" fill="rgb(224,31,26)" rx="2" ry="2" />
<text x="395.61" y="831.5" ></text>
</g>
<g >
<title>dequeue_entity (3 samples, 0.01%)</title><rect x="560.0" y="741" width="0.1" height="15.0" fill="rgb(211,66,40)" rx="2" ry="2" />
<text x="562.97" y="751.5" ></text>
</g>
<g >
<title>ctx_sched_out (42 samples, 0.18%)</title><rect x="160.8" y="725" width="2.2" height="15.0" fill="rgb(205,46,32)" rx="2" ry="2" />
<text x="163.85" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus19ConsensusResponsePB27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (16 samples, 0.07%)</title><rect x="377.5" y="709" width="0.8" height="15.0" fill="rgb(245,118,54)" rx="2" ry="2" />
<text x="380.50" y="719.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2 samples, 0.01%)</title><rect x="420.2" y="789" width="0.1" height="15.0" fill="rgb(248,35,42)" rx="2" ry="2" />
<text x="423.20" y="799.5" ></text>
</g>
<g >
<title>_ZNK5boost11multi_index6detail12hashed_indexINS0_13const_mem_funIN2yb6tablet12_GLOBAL__N_118RunningTransactionERKNS_5uuids4uuidEXadL_ZNKS7_2idEvEEEENS_4hashISA_EESt8equal_toISA_ENS1_9nth_layerILi1ESt10shared_ptrIS7_ENS0_10indexed_byINS0_13hashed_uniqueISC_N4mpl_2naESN_SN_EESN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_SN_EESaISJ_EEENS_3mpl7vector0ISN_EENS1_17hashed_unique_tagEE4findIS9_SE_SG_EENS1_21hashed_index_iteratorINS1_17hashed_index_nodeINS1_15index_node_baseISJ_SQ_EESV_EENS1_12bucket_arrayISQ_EENS1_32hashed_index_global_iterator_tagEEERKT_RKT0_RKT1_NSM_5bool_ILb0EEE.isra.535.constprop.752 (3 samples, 0.01%)</title><rect x="534.2" y="661" width="0.1" height="15.0" fill="rgb(248,203,43)" rx="2" ry="2" />
<text x="537.19" y="671.5" ></text>
</g>
<g >
<title>__alloc_skb (2 samples, 0.01%)</title><rect x="338.8" y="613" width="0.1" height="15.0" fill="rgb(220,83,33)" rx="2" ry="2" />
<text x="341.78" y="623.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (8 samples, 0.03%)</title><rect x="396.5" y="613" width="0.4" height="15.0" fill="rgb(248,161,42)" rx="2" ry="2" />
<text x="399.54" y="623.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (63 samples, 0.27%)</title><rect x="207.1" y="885" width="3.2" height="15.0" fill="rgb(217,203,27)" rx="2" ry="2" />
<text x="210.12" y="895.5" ></text>
</g>
<g >
<title>sys_sendmsg (254 samples, 1.08%)</title><rect x="346.7" y="757" width="12.8" height="15.0" fill="rgb(224,115,28)" rx="2" ry="2" />
<text x="349.74" y="767.5" ></text>
</g>
<g >
<title>ev_feed_event (3 samples, 0.01%)</title><rect x="394.4" y="869" width="0.2" height="15.0" fill="rgb(249,11,40)" rx="2" ry="2" />
<text x="397.42" y="879.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (23 samples, 0.10%)</title><rect x="117.7" y="821" width="1.2" height="15.0" fill="rgb(250,53,23)" rx="2" ry="2" />
<text x="120.75" y="831.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="417.2" y="949" width="0.2" height="15.0" fill="rgb(210,139,37)" rx="2" ry="2" />
<text x="420.23" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12_GLOBAL__N_16Worker7ExecuteEv (8,763 samples, 37.39%)</title><rect x="618.9" y="933" width="441.2" height="15.0" fill="rgb(228,178,50)" rx="2" ry="2" />
<text x="621.93" y="943.5" >_ZN2yb3rpc12_GLOBAL__N_16Worker7ExecuteEv</text>
</g>
<g >
<title>__schedule (6 samples, 0.03%)</title><rect x="414.1" y="725" width="0.3" height="15.0" fill="rgb(251,4,23)" rx="2" ry="2" />
<text x="417.11" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker17UpdateConsumptionEb (4 samples, 0.02%)</title><rect x="488.0" y="821" width="0.2" height="15.0" fill="rgb(224,32,22)" rx="2" ry="2" />
<text x="490.97" y="831.5" ></text>
</g>
<g >
<title>start_thread (1,533 samples, 6.54%)</title><rect x="138.7" y="965" width="77.2" height="15.0" fill="rgb(236,155,42)" rx="2" ry="2" />
<text x="141.74" y="975.5" >start_th..</text>
</g>
<g >
<title>iptable_security_hook (2 samples, 0.01%)</title><rect x="388.3" y="357" width="0.1" height="15.0" fill="rgb(209,212,38)" rx="2" ry="2" />
<text x="391.28" y="367.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc29FunctorReactorTaskWithWeakPtrISt5_BindIFSt7_Mem_fnIMNS0_10ConnectionEFvvEEPS4_EES4_E3RunEPNS0_7ReactorE (158 samples, 0.67%)</title><rect x="337.6" y="869" width="7.9" height="15.0" fill="rgb(206,201,51)" rx="2" ry="2" />
<text x="340.58" y="879.5" ></text>
</g>
<g >
<title>account_system_time (3 samples, 0.01%)</title><rect x="196.7" y="613" width="0.1" height="15.0" fill="rgb(254,104,54)" rx="2" ry="2" />
<text x="199.70" y="623.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="490.6" y="565" width="0.1" height="15.0" fill="rgb(210,28,47)" rx="2" ry="2" />
<text x="493.64" y="575.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5ValidEv (14 samples, 0.06%)</title><rect x="1020.9" y="725" width="0.7" height="15.0" fill="rgb(247,134,31)" rx="2" ry="2" />
<text x="1023.87" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="394.9" y="885" width="0.2" height="15.0" fill="rgb(218,76,49)" rx="2" ry="2" />
<text x="397.92" y="895.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (30 samples, 0.13%)</title><rect x="590.6" y="741" width="1.5" height="15.0" fill="rgb(220,30,45)" rx="2" ry="2" />
<text x="593.58" y="751.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="417.2" y="901" width="0.2" height="15.0" fill="rgb(226,206,28)" rx="2" ry="2" />
<text x="420.23" y="911.5" ></text>
</g>
<g >
<title>vfs_fsync_range (56 samples, 0.24%)</title><rect x="395.7" y="773" width="2.8" height="15.0" fill="rgb(235,153,23)" rx="2" ry="2" />
<text x="398.68" y="783.5" ></text>
</g>
<g >
<title>start_thread (3,492 samples, 14.90%)</title><rect x="218.9" y="965" width="175.8" height="15.0" fill="rgb(228,141,20)" rx="2" ry="2" />
<text x="221.90" y="975.5" >start_thread</text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator13InitDataBlockEv.part.107.constprop.115 (5 samples, 0.02%)</title><rect x="869.5" y="645" width="0.3" height="15.0" fill="rgb(223,29,8)" rx="2" ry="2" />
<text x="872.52" y="655.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5valueEv (28 samples, 0.12%)</title><rect x="900.9" y="677" width="1.5" height="15.0" fill="rgb(237,170,12)" rx="2" ry="2" />
<text x="903.94" y="687.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.02%)</title><rect x="667.5" y="661" width="0.2" height="15.0" fill="rgb(232,161,28)" rx="2" ry="2" />
<text x="670.47" y="671.5" ></text>
</g>
<g >
<title>ip_finish_output (74 samples, 0.32%)</title><rect x="385.6" y="581" width="3.7" height="15.0" fill="rgb(242,179,44)" rx="2" ry="2" />
<text x="388.56" y="591.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log8DoAppendEPNS0_13LogEntryBatchEbb (69 samples, 0.29%)</title><rect x="400.5" y="885" width="3.4" height="15.0" fill="rgb(242,52,44)" rx="2" ry="2" />
<text x="403.46" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb4util32FastDecodeDescendingSignedVarIntEPNS_5SliceE (21 samples, 0.09%)</title><rect x="828.6" y="645" width="1.0" height="15.0" fill="rgb(220,87,48)" rx="2" ry="2" />
<text x="831.59" y="655.5" ></text>
</g>
<g >
<title>__fget_light (4 samples, 0.02%)</title><rect x="419.3" y="837" width="0.2" height="15.0" fill="rgb(207,64,6)" rx="2" ry="2" />
<text x="422.29" y="847.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5 samples, 0.02%)</title><rect x="1188.3" y="741" width="0.3" height="15.0" fill="rgb(205,169,10)" rx="2" ry="2" />
<text x="1191.34" y="751.5" ></text>
</g>
<g >
<title>ip_output (69 samples, 0.29%)</title><rect x="340.7" y="533" width="3.5" height="15.0" fill="rgb(221,222,49)" rx="2" ry="2" />
<text x="343.70" y="543.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc14ResponseHeaderC2Ev (4 samples, 0.02%)</title><rect x="378.9" y="757" width="0.2" height="15.0" fill="rgb(221,153,26)" rx="2" ry="2" />
<text x="381.86" y="767.5" ></text>
</g>
<g >
<title>__xfs_trans_commit (4 samples, 0.02%)</title><rect x="402.0" y="613" width="0.2" height="15.0" fill="rgb(229,81,17)" rx="2" ry="2" />
<text x="405.02" y="623.5" ></text>
</g>
<g >
<title>ipt_do_table (4 samples, 0.02%)</title><rect x="339.5" y="485" width="0.2" height="15.0" fill="rgb(208,8,42)" rx="2" ry="2" />
<text x="342.49" y="495.5" ></text>
</g>
<g >
<title>tcp_write_xmit (106 samples, 0.45%)</title><rect x="338.9" y="597" width="5.4" height="15.0" fill="rgb(244,35,0)" rx="2" ry="2" />
<text x="341.94" y="607.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4NextEv (507 samples, 2.16%)</title><rect x="667.7" y="677" width="25.5" height="15.0" fill="rgb(225,104,52)" rx="2" ry="2" />
<text x="670.72" y="687.5" >_..</text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase7ReleaseEv (2 samples, 0.01%)</title><rect x="759.8" y="885" width="0.1" height="15.0" fill="rgb(236,117,46)" rx="2" ry="2" />
<text x="762.81" y="895.5" ></text>
</g>
<g >
<title>tick_sched_handle (2 samples, 0.01%)</title><rect x="732.3" y="613" width="0.1" height="15.0" fill="rgb(229,207,8)" rx="2" ry="2" />
<text x="735.32" y="623.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (5 samples, 0.02%)</title><rect x="590.2" y="757" width="0.3" height="15.0" fill="rgb(206,155,49)" rx="2" ry="2" />
<text x="593.23" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb5TraceD1Ev (2 samples, 0.01%)</title><rect x="488.2" y="821" width="0.1" height="15.0" fill="rgb(210,196,48)" rx="2" ry="2" />
<text x="491.17" y="831.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (2 samples, 0.01%)</title><rect x="756.5" y="645" width="0.1" height="15.0" fill="rgb(222,78,30)" rx="2" ry="2" />
<text x="759.49" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb16ScopedAdoptTraceC1EPNS_5TraceE (2 samples, 0.01%)</title><rect x="487.5" y="869" width="0.1" height="15.0" fill="rgb(207,52,38)" rx="2" ry="2" />
<text x="490.47" y="879.5" ></text>
</g>
<g >
<title>[libprofiler.so.0.4.18] (2 samples, 0.01%)</title><rect x="539.6" y="885" width="0.1" height="15.0" fill="rgb(247,216,27)" rx="2" ry="2" />
<text x="542.58" y="895.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (2 samples, 0.01%)</title><rect x="614.8" y="741" width="0.1" height="15.0" fill="rgb(205,40,6)" rx="2" ry="2" />
<text x="617.75" y="751.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (58 samples, 0.25%)</title><rect x="156.1" y="789" width="2.9" height="15.0" fill="rgb(239,218,16)" rx="2" ry="2" />
<text x="159.07" y="799.5" ></text>
</g>
<g >
<title>iptable_mangle_hook (7 samples, 0.03%)</title><rect x="343.2" y="325" width="0.4" height="15.0" fill="rgb(210,193,38)" rx="2" ry="2" />
<text x="346.22" y="335.5" ></text>
</g>
<g >
<title>__schedule (1,471 samples, 6.28%)</title><rect x="43.1" y="773" width="74.0" height="15.0" fill="rgb(239,115,17)" rx="2" ry="2" />
<text x="46.08" y="783.5" >__schedule</text>
</g>
<g >
<title>_ZNK7rocksdb21InternalKeyComparator7CompareERKN2yb5SliceES4_ (4 samples, 0.02%)</title><rect x="713.9" y="677" width="0.2" height="15.0" fill="rgb(246,122,46)" rx="2" ry="2" />
<text x="716.89" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCall21RecordHandlingStartedE13scoped_refptrINS_9HistogramEE (8 samples, 0.03%)</title><rect x="621.1" y="885" width="0.4" height="15.0" fill="rgb(229,62,12)" rx="2" ry="2" />
<text x="624.15" y="895.5" ></text>
</g>
<g >
<title>native_write_msr (25 samples, 0.11%)</title><rect x="161.3" y="661" width="1.2" height="15.0" fill="rgb(239,132,41)" rx="2" ry="2" />
<text x="164.25" y="671.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="538.6" y="869" width="0.1" height="15.0" fill="rgb(219,5,11)" rx="2" ry="2" />
<text x="541.62" y="879.5" ></text>
</g>
<g >
<title>tcp_filter (3 samples, 0.01%)</title><rect x="386.9" y="341" width="0.1" height="15.0" fill="rgb(219,103,40)" rx="2" ry="2" />
<text x="389.87" y="351.5" ></text>
</g>
<g >
<title>wake_up_process (3 samples, 0.01%)</title><rect x="395.8" y="469" width="0.1" height="15.0" fill="rgb(228,181,12)" rx="2" ry="2" />
<text x="398.78" y="479.5" ></text>
</g>
<g >
<title>_ZN2yb6master15TSInformationPB8CopyFromERKS1_ (2 samples, 0.01%)</title><rect x="415.0" y="853" width="0.1" height="15.0" fill="rgb(237,119,8)" rx="2" ry="2" />
<text x="417.96" y="863.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5valueEv (7 samples, 0.03%)</title><rect x="1043.1" y="725" width="0.3" height="15.0" fill="rgb(228,5,8)" rx="2" ry="2" />
<text x="1046.08" y="735.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="342.7" y="181" width="0.1" height="15.0" fill="rgb(248,112,18)" rx="2" ry="2" />
<text x="345.71" y="191.5" ></text>
</g>
<g >
<title>syscall (18 samples, 0.08%)</title><rect x="756.9" y="837" width="0.9" height="15.0" fill="rgb(214,203,37)" rx="2" ry="2" />
<text x="759.89" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet14StartOperationEPNS0_19WriteOperationStateE (6 samples, 0.03%)</title><rect x="491.4" y="805" width="0.3" height="15.0" fill="rgb(227,102,11)" rx="2" ry="2" />
<text x="494.40" y="815.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="1015.3" y="693" width="0.2" height="15.0" fill="rgb(205,199,42)" rx="2" ry="2" />
<text x="1018.34" y="703.5" ></text>
</g>
<g >
<title>_cond_resched (2 samples, 0.01%)</title><rect x="449.9" y="837" width="0.1" height="15.0" fill="rgb(235,193,8)" rx="2" ry="2" />
<text x="452.86" y="847.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="375.6" y="693" width="0.1" height="15.0" fill="rgb(211,52,8)" rx="2" ry="2" />
<text x="378.59" y="703.5" ></text>
</g>
<g >
<title>cpumask_clear_cpu (2 samples, 0.01%)</title><rect x="325.2" y="581" width="0.1" height="15.0" fill="rgb(215,193,9)" rx="2" ry="2" />
<text x="328.24" y="591.5" ></text>
</g>
<g >
<title>ipt_do_table (3 samples, 0.01%)</title><rect x="349.7" y="501" width="0.2" height="15.0" fill="rgb(209,30,5)" rx="2" ry="2" />
<text x="352.71" y="511.5" ></text>
</g>
<g >
<title>__fget_light (13 samples, 0.06%)</title><rect x="149.7" y="821" width="0.7" height="15.0" fill="rgb(227,185,12)" rx="2" ry="2" />
<text x="152.72" y="831.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.01%)</title><rect x="536.7" y="757" width="0.1" height="15.0" fill="rgb(247,207,39)" rx="2" ry="2" />
<text x="539.66" y="767.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKSs (3 samples, 0.01%)</title><rect x="767.8" y="805" width="0.2" height="15.0" fill="rgb(225,186,29)" rx="2" ry="2" />
<text x="770.82" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10RpcContext14RespondSuccessEv (2 samples, 0.01%)</title><rect x="738.7" y="869" width="0.1" height="15.0" fill="rgb(217,170,15)" rx="2" ry="2" />
<text x="741.66" y="879.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1059.9" y="917" width="0.1" height="15.0" fill="rgb(238,191,8)" rx="2" ry="2" />
<text x="1062.95" y="927.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (36 samples, 0.15%)</title><rect x="473.9" y="741" width="1.8" height="15.0" fill="rgb(240,38,27)" rx="2" ry="2" />
<text x="476.87" y="751.5" ></text>
</g>
<g >
<title>tcp_ack_update_rtt.isra.39 (3 samples, 0.01%)</title><rect x="388.0" y="277" width="0.2" height="15.0" fill="rgb(220,221,29)" rx="2" ry="2" />
<text x="391.03" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2 samples, 0.01%)</title><rect x="419.6" y="837" width="0.1" height="15.0" fill="rgb(215,171,13)" rx="2" ry="2" />
<text x="422.60" y="847.5" ></text>
</g>
<g >
<title>net_rx_action (62 samples, 0.26%)</title><rect x="386.0" y="485" width="3.1" height="15.0" fill="rgb(218,4,26)" rx="2" ry="2" />
<text x="388.96" y="495.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc27YBOutboundConnectionContext14UpdateLastReadERKSt10shared_ptrINS0_10ConnectionEE (2 samples, 0.01%)</title><rect x="368.2" y="853" width="0.1" height="15.0" fill="rgb(236,84,21)" rx="2" ry="2" />
<text x="371.19" y="863.5" ></text>
</g>
<g >
<title>__libc_enable_asynccancel (4 samples, 0.02%)</title><rect x="211.8" y="901" width="0.2" height="15.0" fill="rgb(222,129,15)" rx="2" ry="2" />
<text x="214.75" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb6ResultINS_5docdb12_GLOBAL__N_129DecodeStrongWriteIntentResultEE7get_ptrEv (10 samples, 0.04%)</title><rect x="838.3" y="693" width="0.5" height="15.0" fill="rgb(242,208,17)" rx="2" ry="2" />
<text x="841.31" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb12_GLOBAL__N_116BuildSubDocumentEPNS0_19IntentAwareIteratorERKNS0_18GetSubDocumentDataENS_13DocHybridTimeEPl.constprop.479 (6 samples, 0.03%)</title><rect x="776.9" y="789" width="0.3" height="15.0" fill="rgb(222,209,2)" rx="2" ry="2" />
<text x="779.88" y="799.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (36 samples, 0.15%)</title><rect x="386.4" y="373" width="1.8" height="15.0" fill="rgb(224,97,22)" rx="2" ry="2" />
<text x="389.42" y="383.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal14WireFormatLite11ReadMessageEPNS0_2io16CodedInputStreamEPNS0_11MessageLiteE (3 samples, 0.01%)</title><rect x="622.5" y="773" width="0.2" height="15.0" fill="rgb(252,158,24)" rx="2" ry="2" />
<text x="625.51" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3log8LogIndex8AddEntryERKNS0_13LogIndexEntryE (2 samples, 0.01%)</title><rect x="403.4" y="853" width="0.1" height="15.0" fill="rgb(250,129,0)" rx="2" ry="2" />
<text x="406.43" y="863.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator3keyEv (20 samples, 0.09%)</title><rect x="897.4" y="661" width="1.0" height="15.0" fill="rgb(217,35,51)" rx="2" ry="2" />
<text x="900.42" y="671.5" ></text>
</g>
<g >
<title>perf_pmu_enable (562 samples, 2.40%)</title><rect x="167.9" y="725" width="28.3" height="15.0" fill="rgb(250,126,46)" rx="2" ry="2" />
<text x="170.95" y="735.5" >p..</text>
</g>
<g >
<title>_ZN6google8protobuf8internal14WireFormatLite11ReadMessageEPNS0_2io16CodedInputStreamEPNS0_11MessageLiteE (2 samples, 0.01%)</title><rect x="623.2" y="821" width="0.1" height="15.0" fill="rgb(211,21,7)" rx="2" ry="2" />
<text x="626.21" y="831.5" ></text>
</g>
<g >
<title>try_to_wake_up (3 samples, 0.01%)</title><rect x="109.6" y="645" width="0.2" height="15.0" fill="rgb(214,130,24)" rx="2" ry="2" />
<text x="112.64" y="655.5" ></text>
</g>
<g >
<title>current_kernel_time64 (2 samples, 0.01%)</title><rect x="206.8" y="821" width="0.1" height="15.0" fill="rgb(222,159,35)" rx="2" ry="2" />
<text x="209.77" y="831.5" ></text>
</g>
<g >
<title>ip_local_deliver (40 samples, 0.17%)</title><rect x="386.4" y="389" width="2.0" height="15.0" fill="rgb(236,92,10)" rx="2" ry="2" />
<text x="389.42" y="399.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.02%)</title><rect x="396.1" y="613" width="0.2" height="15.0" fill="rgb(217,53,54)" rx="2" ry="2" />
<text x="399.13" y="623.5" ></text>
</g>
<g >
<title>_ZNK2yb6tablet17RaftGroupMetadata10table_typeEv (2 samples, 0.01%)</title><rect x="534.4" y="693" width="0.1" height="15.0" fill="rgb(205,196,9)" rx="2" ry="2" />
<text x="537.39" y="703.5" ></text>
</g>
<g >
<title>ip_queue_xmit (111 samples, 0.47%)</title><rect x="383.8" y="629" width="5.6" height="15.0" fill="rgb(205,9,47)" rx="2" ry="2" />
<text x="386.85" y="639.5" ></text>
</g>
<g >
<title>tcp_in_window (2 samples, 0.01%)</title><rect x="385.1" y="533" width="0.1" height="15.0" fill="rgb(252,160,15)" rx="2" ry="2" />
<text x="388.11" y="543.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="400.9" y="837" width="0.1" height="15.0" fill="rgb(253,74,50)" rx="2" ry="2" />
<text x="403.92" y="847.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3 samples, 0.01%)</title><rect x="434.8" y="821" width="0.1" height="15.0" fill="rgb(242,113,44)" rx="2" ry="2" />
<text x="437.75" y="831.5" ></text>
</g>
<g >
<title>__tls_get_addr (51 samples, 0.22%)</title><rect x="728.8" y="693" width="2.6" height="15.0" fill="rgb(250,125,8)" rx="2" ry="2" />
<text x="731.80" y="703.5" ></text>
</g>
<g >
<title>wake_up_q (25 samples, 0.11%)</title><rect x="755.4" y="757" width="1.3" height="15.0" fill="rgb(233,38,11)" rx="2" ry="2" />
<text x="758.43" y="767.5" ></text>
</g>
<g >
<title>[libpthread-2.23.so] (133 samples, 0.57%)</title><rect x="337.9" y="789" width="6.7" height="15.0" fill="rgb(217,125,14)" rx="2" ry="2" />
<text x="340.88" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache14EvictThroughOpEl (2 samples, 0.01%)</title><rect x="772.2" y="869" width="0.1" height="15.0" fill="rgb(250,217,28)" rx="2" ry="2" />
<text x="775.25" y="879.5" ></text>
</g>
<g >
<title>_ZNSt6vectorIPN2yb9consensus24PeerMessageQueueObserverESaIS3_EEaSERKS5_ (6 samples, 0.03%)</title><rect x="540.2" y="901" width="0.3" height="15.0" fill="rgb(237,147,14)" rx="2" ry="2" />
<text x="543.23" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor17QueueOutboundCallESt10shared_ptrINS0_12OutboundCallEE (48 samples, 0.20%)</title><rect x="545.2" y="805" width="2.4" height="15.0" fill="rgb(232,68,33)" rx="2" ry="2" />
<text x="548.17" y="815.5" ></text>
</g>
<g >
<title>nf_hook_slow (18 samples, 0.08%)</title><rect x="355.6" y="357" width="0.9" height="15.0" fill="rgb(224,119,50)" rx="2" ry="2" />
<text x="358.60" y="367.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (2 samples, 0.01%)</title><rect x="1073.5" y="693" width="0.1" height="15.0" fill="rgb(223,35,34)" rx="2" ry="2" />
<text x="1076.49" y="703.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (3 samples, 0.01%)</title><rect x="238.6" y="677" width="0.2" height="15.0" fill="rgb(248,134,23)" rx="2" ry="2" />
<text x="241.64" y="687.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="480.2" y="901" width="0.1" height="15.0" fill="rgb(216,186,29)" rx="2" ry="2" />
<text x="483.22" y="911.5" ></text>
</g>
<g >
<title>tcp_v4_send_check (3 samples, 0.01%)</title><rect x="358.2" y="597" width="0.2" height="15.0" fill="rgb(235,30,35)" rx="2" ry="2" />
<text x="361.22" y="607.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (67 samples, 0.29%)</title><rect x="224.6" y="821" width="3.4" height="15.0" fill="rgb(253,144,30)" rx="2" ry="2" />
<text x="227.64" y="831.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (5 samples, 0.02%)</title><rect x="413.7" y="917" width="0.2" height="15.0" fill="rgb(251,107,13)" rx="2" ry="2" />
<text x="416.66" y="927.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4SeekERKN2yb5SliceE (3 samples, 0.01%)</title><rect x="776.9" y="677" width="0.2" height="15.0" fill="rgb(242,34,43)" rx="2" ry="2" />
<text x="779.93" y="687.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5valueEv (6 samples, 0.03%)</title><rect x="723.1" y="645" width="0.3" height="15.0" fill="rgb(248,34,16)" rx="2" ry="2" />
<text x="726.06" y="655.5" ></text>
</g>
<g >
<title>sys_futex (16 samples, 0.07%)</title><rect x="482.3" y="853" width="0.8" height="15.0" fill="rgb(225,177,23)" rx="2" ry="2" />
<text x="485.33" y="863.5" ></text>
</g>
<g >
<title>[libc-2.23.so] (4 samples, 0.02%)</title><rect x="394.9" y="901" width="0.2" height="15.0" fill="rgb(232,13,29)" rx="2" ry="2" />
<text x="397.92" y="911.5" ></text>
</g>
<g >
<title>clear_buddies (2 samples, 0.01%)</title><rect x="163.8" y="725" width="0.1" height="15.0" fill="rgb(237,165,3)" rx="2" ry="2" />
<text x="166.77" y="735.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf11MessageLite20ParseFromCodedStreamEPNS0_2io16CodedInputStreamE (27 samples, 0.12%)</title><rect x="622.1" y="837" width="1.3" height="15.0" fill="rgb(247,107,4)" rx="2" ry="2" />
<text x="625.05" y="847.5" ></text>
</g>
<g >
<title>__update_idle_core (9 samples, 0.04%)</title><rect x="200.1" y="741" width="0.4" height="15.0" fill="rgb(210,83,18)" rx="2" ry="2" />
<text x="203.07" y="751.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="400.2" y="821" width="0.1" height="15.0" fill="rgb(218,112,35)" rx="2" ry="2" />
<text x="403.21" y="831.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf7Message13SpaceUsedLongEv (7 samples, 0.03%)</title><rect x="743.6" y="837" width="0.4" height="15.0" fill="rgb(213,120,41)" rx="2" ry="2" />
<text x="746.60" y="847.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter3keyEv (30 samples, 0.13%)</title><rect x="834.0" y="677" width="1.5" height="15.0" fill="rgb(223,78,52)" rx="2" ry="2" />
<text x="836.98" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5valueEv (102 samples, 0.44%)</title><rect x="719.2" y="693" width="5.2" height="15.0" fill="rgb(225,147,21)" rx="2" ry="2" />
<text x="722.23" y="703.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 0.03%)</title><rect x="599.6" y="709" width="0.5" height="15.0" fill="rgb(246,5,29)" rx="2" ry="2" />
<text x="602.65" y="719.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (66 samples, 0.28%)</title><rect x="385.8" y="549" width="3.3" height="15.0" fill="rgb(207,137,12)" rx="2" ry="2" />
<text x="388.81" y="559.5" ></text>
</g>
<g >
<title>load_balance (5 samples, 0.02%)</title><rect x="199.8" y="741" width="0.2" height="15.0" fill="rgb(224,22,48)" rx="2" ry="2" />
<text x="202.77" y="751.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (3 samples, 0.01%)</title><rect x="41.8" y="773" width="0.1" height="15.0" fill="rgb(238,171,14)" rx="2" ry="2" />
<text x="44.77" y="783.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1022.9" y="709" width="0.1" height="15.0" fill="rgb(221,185,14)" rx="2" ry="2" />
<text x="1025.89" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection17QueueOutboundDataESt10shared_ptrINS0_12OutboundDataEE (25 samples, 0.11%)</title><rect x="746.2" y="773" width="1.3" height="15.0" fill="rgb(251,137,23)" rx="2" ry="2" />
<text x="749.22" y="783.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="437.1" y="757" width="0.2" height="15.0" fill="rgb(215,157,8)" rx="2" ry="2" />
<text x="440.07" y="767.5" ></text>
</g>
<g >
<title>ttwu_do_activate (2 samples, 0.01%)</title><rect x="342.6" y="85" width="0.1" height="15.0" fill="rgb(244,98,11)" rx="2" ry="2" />
<text x="345.56" y="95.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="617.1" y="917" width="0.1" height="15.0" fill="rgb(233,40,35)" rx="2" ry="2" />
<text x="620.07" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb6master15TSInformationPBD2Ev (5 samples, 0.02%)</title><rect x="414.7" y="869" width="0.2" height="15.0" fill="rgb(212,54,6)" rx="2" ry="2" />
<text x="417.66" y="879.5" ></text>
</g>
<g >
<title>_ZNK2yb9MonoDelta13ToNanosecondsEv (2 samples, 0.01%)</title><rect x="428.6" y="837" width="0.1" height="15.0" fill="rgb(240,189,53)" rx="2" ry="2" />
<text x="431.56" y="847.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus19ConsensusResponsePB12ByteSizeLongEv (2 samples, 0.01%)</title><rect x="748.0" y="837" width="0.1" height="15.0" fill="rgb(224,17,7)" rx="2" ry="2" />
<text x="751.03" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPB27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (3 samples, 0.01%)</title><rect x="740.2" y="805" width="0.2" height="15.0" fill="rgb(245,71,38)" rx="2" ry="2" />
<text x="743.22" y="815.5" ></text>
</g>
<g >
<title>ip_local_deliver (39 samples, 0.17%)</title><rect x="341.2" y="325" width="1.9" height="15.0" fill="rgb(242,183,37)" rx="2" ry="2" />
<text x="344.15" y="335.5" ></text>
</g>
<g >
<title>account_entity_enqueue (2 samples, 0.01%)</title><rect x="756.1" y="661" width="0.1" height="15.0" fill="rgb(205,136,36)" rx="2" ry="2" />
<text x="759.14" y="671.5" ></text>
</g>
<g >
<title>trigger_load_balance (78 samples, 0.33%)</title><rect x="321.4" y="613" width="3.9" height="15.0" fill="rgb(213,19,9)" rx="2" ry="2" />
<text x="324.41" y="623.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="342.7" y="101" width="0.1" height="15.0" fill="rgb(228,66,11)" rx="2" ry="2" />
<text x="345.71" y="111.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal32StringSpaceUsedExcludingSelfLongERKSs (3 samples, 0.01%)</title><rect x="743.2" y="837" width="0.1" height="15.0" fill="rgb(213,170,24)" rx="2" ry="2" />
<text x="746.20" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="536.7" y="805" width="0.1" height="15.0" fill="rgb(242,120,29)" rx="2" ry="2" />
<text x="539.66" y="815.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4NextEv (4 samples, 0.02%)</title><rect x="645.0" y="693" width="0.2" height="15.0" fill="rgb(207,131,24)" rx="2" ry="2" />
<text x="648.01" y="703.5" ></text>
</g>
<g >
<title>ev_io_stop (2 samples, 0.01%)</title><rect x="337.7" y="789" width="0.1" height="15.0" fill="rgb(210,73,25)" rx="2" ry="2" />
<text x="340.73" y="799.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (34 samples, 0.15%)</title><rect x="473.9" y="725" width="1.7" height="15.0" fill="rgb(206,29,4)" rx="2" ry="2" />
<text x="476.87" y="735.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus19ConsensusResponsePB39InternalSerializeWithCachedSizesToArrayEbPh (3 samples, 0.01%)</title><rect x="747.7" y="773" width="0.2" height="15.0" fill="rgb(226,183,38)" rx="2" ry="2" />
<text x="750.73" y="783.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5 samples, 0.02%)</title><rect x="443.4" y="917" width="0.2" height="15.0" fill="rgb(233,91,28)" rx="2" ry="2" />
<text x="446.36" y="927.5" ></text>
</g>
<g >
<title>_ZNSt6chrono3_V212steady_clock3nowEv (2 samples, 0.01%)</title><rect x="753.1" y="821" width="0.1" height="15.0" fill="rgb(224,50,16)" rx="2" ry="2" />
<text x="756.06" y="831.5" ></text>
</g>
<g >
<title>select_task_rq_fair (2 samples, 0.01%)</title><rect x="546.4" y="533" width="0.1" height="15.0" fill="rgb(216,120,32)" rx="2" ry="2" />
<text x="549.38" y="543.5" ></text>
</g>
<g >
<title>finish_task_switch (2,084 samples, 8.89%)</title><rect x="1074.6" y="789" width="104.9" height="15.0" fill="rgb(235,150,43)" rx="2" ry="2" />
<text x="1077.60" y="799.5" >finish_task_..</text>
</g>
<g >
<title>__perf_event_task_sched_in (54 samples, 0.23%)</title><rect x="1185.6" y="773" width="2.7" height="15.0" fill="rgb(206,14,7)" rx="2" ry="2" />
<text x="1188.62" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb6master15TSInformationPB10SharedDtorEv (4 samples, 0.02%)</title><rect x="414.7" y="853" width="0.2" height="15.0" fill="rgb(220,145,48)" rx="2" ry="2" />
<text x="417.71" y="863.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (47 samples, 0.20%)</title><rect x="160.6" y="757" width="2.4" height="15.0" fill="rgb(209,79,41)" rx="2" ry="2" />
<text x="163.60" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker17UpdateConsumptionEb (3 samples, 0.01%)</title><rect x="738.8" y="837" width="0.1" height="15.0" fill="rgb(219,32,45)" rx="2" ry="2" />
<text x="741.76" y="847.5" ></text>
</g>
<g >
<title>do_futex (5 samples, 0.02%)</title><rect x="492.6" y="709" width="0.3" height="15.0" fill="rgb(235,220,28)" rx="2" ry="2" />
<text x="495.60" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (9 samples, 0.04%)</title><rect x="614.0" y="741" width="0.5" height="15.0" fill="rgb(213,205,48)" rx="2" ry="2" />
<text x="617.05" y="751.5" ></text>
</g>
<g >
<title>update_load_avg (2 samples, 0.01%)</title><rect x="354.5" y="53" width="0.1" height="15.0" fill="rgb(211,108,40)" rx="2" ry="2" />
<text x="357.49" y="63.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="1022.9" y="613" width="0.1" height="15.0" fill="rgb(213,218,37)" rx="2" ry="2" />
<text x="1025.89" y="623.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5ValidEv (2 samples, 0.01%)</title><rect x="709.8" y="677" width="0.1" height="15.0" fill="rgb(240,127,37)" rx="2" ry="2" />
<text x="712.81" y="687.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="760.3" y="885" width="0.1" height="15.0" fill="rgb(232,223,14)" rx="2" ry="2" />
<text x="763.31" y="895.5" ></text>
</g>
<g >
<title>tcp_in_window (2 samples, 0.01%)</title><rect x="385.3" y="517" width="0.1" height="15.0" fill="rgb(230,172,30)" rx="2" ry="2" />
<text x="388.26" y="527.5" ></text>
</g>
<g >
<title>_ZN2yb5Mutex7ReleaseEv (4 samples, 0.02%)</title><rect x="525.6" y="933" width="0.2" height="15.0" fill="rgb(212,123,2)" rx="2" ry="2" />
<text x="528.58" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus31FillConsensusResponseOKUnlockedEPNS0_19ConsensusResponsePBE (4 samples, 0.02%)</title><rect x="752.5" y="821" width="0.2" height="15.0" fill="rgb(227,156,8)" rx="2" ry="2" />
<text x="755.46" y="831.5" ></text>
</g>
<g >
<title>_ZNSt17_Function_handlerIFN2yb10HybridTimeEvEZNS0_6tablet10TabletPeer14InitTabletPeerERKSt10shared_ptrINS3_10enterprise6TabletEERKSt13shared_futureIPNS0_6client8YBClientEERKS5_INS0_10MemTrackerEEPNS0_3rpc9MessengerEPNSM_10ProxyCacheERK13scoped_refptrINS0_3log3LogEERKSR_INS0_12MetricEntityEEPNS0_10ThreadPoolES12_PNS0_9consensus17RetryableRequestsEEUlvE1_E9_M_invokeERKSt9_Any_data (13 samples, 0.06%)</title><rect x="551.8" y="885" width="0.6" height="15.0" fill="rgb(223,178,7)" rx="2" ry="2" />
<text x="554.76" y="895.5" ></text>
</g>
<g >
<title>check_preempt_curr (3 samples, 0.01%)</title><rect x="354.6" y="85" width="0.2" height="15.0" fill="rgb(241,179,33)" rx="2" ry="2" />
<text x="357.64" y="95.5" ></text>
</g>
<g >
<title>pipecb (11 samples, 0.05%)</title><rect x="394.0" y="885" width="0.6" height="15.0" fill="rgb(251,68,17)" rx="2" ry="2" />
<text x="397.02" y="895.5" ></text>
</g>
<g >
<title>put_prev_entity (3 samples, 0.01%)</title><rect x="200.6" y="725" width="0.2" height="15.0" fill="rgb(245,88,9)" rx="2" ry="2" />
<text x="203.62" y="735.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="372.3" y="581" width="0.1" height="15.0" fill="rgb(238,201,54)" rx="2" ry="2" />
<text x="375.32" y="591.5" ></text>
</g>
<g >
<title>unroll_tree_refs (2 samples, 0.01%)</title><rect x="206.1" y="821" width="0.1" height="15.0" fill="rgb(241,129,46)" rx="2" ry="2" />
<text x="209.11" y="831.5" ></text>
</g>
<g >
<title>kmem_cache_free (2 samples, 0.01%)</title><rect x="342.0" y="181" width="0.1" height="15.0" fill="rgb(221,142,17)" rx="2" ry="2" />
<text x="345.01" y="191.5" ></text>
</g>
<g >
<title>tcp_clean_rtx_queue (4 samples, 0.02%)</title><rect x="342.0" y="229" width="0.2" height="15.0" fill="rgb(216,166,33)" rx="2" ry="2" />
<text x="345.01" y="239.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail18completion_handlerIZN2yb3rpc9Scheduler4Impl11HandleTimerERKNS_6system10error_codeEEUlvE_E11do_completeEPvPNS1_19scheduler_operationESA_m (87 samples, 0.37%)</title><rect x="428.2" y="917" width="4.4" height="15.0" fill="rgb(232,94,2)" rx="2" ry="2" />
<text x="431.21" y="927.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (20 samples, 0.09%)</title><rect x="384.5" y="565" width="1.0" height="15.0" fill="rgb(219,117,12)" rx="2" ry="2" />
<text x="387.50" y="575.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf7Message13SpaceUsedLongEv (2 samples, 0.01%)</title><rect x="493.8" y="789" width="0.1" height="15.0" fill="rgb(216,137,5)" rx="2" ry="2" />
<text x="496.81" y="799.5" ></text>
</g>
<g >
<title>__fget (5 samples, 0.02%)</title><rect x="392.6" y="789" width="0.3" height="15.0" fill="rgb(215,15,53)" rx="2" ry="2" />
<text x="395.61" y="799.5" ></text>
</g>
<g >
<title>__intel_pmu_disable_all (2 samples, 0.01%)</title><rect x="44.6" y="661" width="0.1" height="15.0" fill="rgb(244,101,12)" rx="2" ry="2" />
<text x="47.64" y="671.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (4 samples, 0.02%)</title><rect x="343.8" y="453" width="0.2" height="15.0" fill="rgb(218,72,0)" rx="2" ry="2" />
<text x="346.82" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,973 samples, 8.42%)</title><rect x="25.9" y="869" width="99.4" height="15.0" fill="rgb(217,115,49)" rx="2" ry="2" />
<text x="28.91" y="879.5" >do_syscall_64</text>
</g>
<g >
<title>_ZN2yb7tserver16LeaderTabletPeer8FillTermEPNS0_19TabletServerErrorPBEPNS_3rpc10RpcContextE (4 samples, 0.02%)</title><rect x="737.7" y="853" width="0.2" height="15.0" fill="rgb(222,217,54)" rx="2" ry="2" />
<text x="740.66" y="863.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (7 samples, 0.03%)</title><rect x="623.5" y="837" width="0.3" height="15.0" fill="rgb(246,142,20)" rx="2" ry="2" />
<text x="626.46" y="847.5" ></text>
</g>
<g >
<title>tick_sched_timer (9 samples, 0.04%)</title><rect x="412.4" y="661" width="0.5" height="15.0" fill="rgb(219,62,47)" rx="2" ry="2" />
<text x="415.45" y="671.5" ></text>
</g>
<g >
<title>finish_task_switch (428 samples, 1.83%)</title><rect x="500.9" y="773" width="21.6" height="15.0" fill="rgb(247,7,7)" rx="2" ry="2" />
<text x="503.91" y="783.5" >f..</text>
</g>
<g >
<title>process_backlog (90 samples, 0.38%)</title><rect x="352.0" y="421" width="4.6" height="15.0" fill="rgb(218,78,1)" rx="2" ry="2" />
<text x="355.03" y="431.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter3keyEv (6 samples, 0.03%)</title><rect x="680.4" y="645" width="0.3" height="15.0" fill="rgb(230,222,39)" rx="2" ry="2" />
<text x="683.36" y="655.5" ></text>
</g>
<g >
<title>__clock_gettime (11 samples, 0.05%)</title><rect x="12.7" y="917" width="0.5" height="15.0" fill="rgb(226,37,1)" rx="2" ry="2" />
<text x="15.67" y="927.5" ></text>
</g>
<g >
<title>update_cfs_rq_h_load (2 samples, 0.01%)</title><rect x="430.5" y="677" width="0.1" height="15.0" fill="rgb(245,0,10)" rx="2" ry="2" />
<text x="433.47" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb12_GLOBAL__N_117PosixWritableFile6AppendERKNS_5SliceE (34 samples, 0.15%)</title><rect x="401.4" y="853" width="1.7" height="15.0" fill="rgb(217,149,34)" rx="2" ry="2" />
<text x="404.42" y="863.5" ></text>
</g>
<g >
<title>start_thread (822 samples, 3.51%)</title><rect x="486.2" y="965" width="41.3" height="15.0" fill="rgb(227,106,36)" rx="2" ry="2" />
<text x="489.16" y="975.5" >sta..</text>
</g>
<g >
<title>__kfree_skb (6 samples, 0.03%)</title><rect x="387.6" y="277" width="0.3" height="15.0" fill="rgb(210,161,43)" rx="2" ry="2" />
<text x="390.62" y="287.5" ></text>
</g>
<g >
<title>do_futex (4 samples, 0.02%)</title><rect x="399.9" y="757" width="0.2" height="15.0" fill="rgb(227,21,43)" rx="2" ry="2" />
<text x="402.86" y="767.5" ></text>
</g>
<g >
<title>xfs_trans_alloc (3 samples, 0.01%)</title><rect x="401.9" y="629" width="0.1" height="15.0" fill="rgb(213,34,29)" rx="2" ry="2" />
<text x="404.87" y="639.5" ></text>
</g>
<g >
<title>sys_write (19 samples, 0.08%)</title><rect x="746.4" y="693" width="1.0" height="15.0" fill="rgb(235,130,1)" rx="2" ry="2" />
<text x="749.42" y="703.5" ></text>
</g>
<g >
<title>tick_sched_handle (3 samples, 0.01%)</title><rect x="1015.3" y="629" width="0.2" height="15.0" fill="rgb(250,221,32)" rx="2" ry="2" />
<text x="1018.34" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb14ParseIntentKeyENS_5SliceES1_ (193 samples, 0.82%)</title><rect x="631.9" y="693" width="9.7" height="15.0" fill="rgb(242,139,0)" rx="2" ry="2" />
<text x="634.87" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache16AppendOperationsERKSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS5_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointERKNS_8CallbackIFvRKNS_6StatusEEEE (2 samples, 0.01%)</title><rect x="749.9" y="789" width="0.1" height="15.0" fill="rgb(211,155,2)" rx="2" ry="2" />
<text x="752.94" y="799.5" ></text>
</g>
<g >
<title>_ZThn568_N2yb7tserver12TabletServer5ClockEv (4 samples, 0.02%)</title><rect x="1059.6" y="917" width="0.2" height="15.0" fill="rgb(253,198,10)" rx="2" ry="2" />
<text x="1062.59" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc14RemoteMethodPB10SharedDtorEv (3 samples, 0.01%)</title><rect x="431.8" y="773" width="0.2" height="15.0" fill="rgb(238,4,46)" rx="2" ry="2" />
<text x="434.83" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13RpcController11set_timeoutERKNS_9MonoDeltaE (2 samples, 0.01%)</title><rect x="541.8" y="885" width="0.1" height="15.0" fill="rgb(217,149,6)" rx="2" ry="2" />
<text x="544.85" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet12PreparerImpl30ProcessAndClearLeaderSideBatchEv (121 samples, 0.52%)</title><rect x="490.0" y="901" width="6.1" height="15.0" fill="rgb(217,129,53)" rx="2" ry="2" />
<text x="493.04" y="911.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator4SeekERKN2yb5SliceEPKc (2 samples, 0.01%)</title><rect x="777.0" y="645" width="0.1" height="15.0" fill="rgb(243,70,51)" rx="2" ry="2" />
<text x="779.98" y="655.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (8 samples, 0.03%)</title><rect x="554.9" y="917" width="0.4" height="15.0" fill="rgb(217,4,1)" rx="2" ry="2" />
<text x="557.94" y="927.5" ></text>
</g>
<g >
<title>__ip_local_out (34 samples, 0.15%)</title><rect x="339.0" y="533" width="1.7" height="15.0" fill="rgb(245,183,2)" rx="2" ry="2" />
<text x="341.99" y="543.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="370.7" y="741" width="0.1" height="15.0" fill="rgb(253,77,23)" rx="2" ry="2" />
<text x="373.66" y="751.5" ></text>
</g>
<g >
<title>do_futex (3 samples, 0.01%)</title><rect x="399.0" y="709" width="0.2" height="15.0" fill="rgb(206,19,9)" rx="2" ry="2" />
<text x="402.00" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb18MaintenanceManager18RunSchedulerThreadEv (41 samples, 0.17%)</title><rect x="483.5" y="933" width="2.1" height="15.0" fill="rgb(219,143,49)" rx="2" ry="2" />
<text x="486.54" y="943.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection6GetRawINS1_14ArenaStringPtrEEERKT_RKNS0_7MessageEPKNS0_15FieldDescriptorE (2 samples, 0.01%)</title><rect x="495.1" y="741" width="0.1" height="15.0" fill="rgb(235,87,9)" rx="2" ry="2" />
<text x="498.12" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="526.4" y="917" width="0.4" height="15.0" fill="rgb(211,8,27)" rx="2" ry="2" />
<text x="529.44" y="927.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5ValidEv (11 samples, 0.05%)</title><rect x="900.4" y="677" width="0.5" height="15.0" fill="rgb(241,224,2)" rx="2" ry="2" />
<text x="903.39" y="687.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator5ValidEv (5 samples, 0.02%)</title><rect x="877.4" y="661" width="0.2" height="15.0" fill="rgb(210,135,17)" rx="2" ry="2" />
<text x="880.38" y="671.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (3 samples, 0.01%)</title><rect x="231.8" y="805" width="0.2" height="15.0" fill="rgb(228,57,41)" rx="2" ry="2" />
<text x="234.84" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus18ConsensusRequestPBC2Ev (2 samples, 0.01%)</title><rect x="759.0" y="869" width="0.1" height="15.0" fill="rgb(234,6,26)" rx="2" ry="2" />
<text x="762.00" y="879.5" ></text>
</g>
<g >
<title>x86_pmu_enable (8 samples, 0.03%)</title><rect x="396.5" y="581" width="0.4" height="15.0" fill="rgb(246,136,9)" rx="2" ry="2" />
<text x="399.54" y="591.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEji (7 samples, 0.03%)</title><rect x="488.3" y="805" width="0.4" height="15.0" fill="rgb(248,204,23)" rx="2" ry="2" />
<text x="491.32" y="815.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_116TwoLevelIterator4NextEv (122 samples, 0.52%)</title><rect x="869.8" y="661" width="6.2" height="15.0" fill="rgb(243,6,13)" rx="2" ry="2" />
<text x="872.83" y="671.5" ></text>
</g>
<g >
<title>sys_futex (7 samples, 0.03%)</title><rect x="531.4" y="773" width="0.3" height="15.0" fill="rgb(247,94,17)" rx="2" ry="2" />
<text x="534.37" y="783.5" ></text>
</g>
<g >
<title>wait_on_page_bit_common (28 samples, 0.12%)</title><rect x="397.0" y="709" width="1.4" height="15.0" fill="rgb(214,187,26)" rx="2" ry="2" />
<text x="399.99" y="719.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache11ListTooLongEPNS0_8FreeListEj (3 samples, 0.01%)</title><rect x="553.5" y="901" width="0.2" height="15.0" fill="rgb(220,179,18)" rx="2" ry="2" />
<text x="556.53" y="911.5" ></text>
</g>
<g >
<title>unroll_tree_refs (7 samples, 0.03%)</title><rect x="330.6" y="821" width="0.4" height="15.0" fill="rgb(207,16,39)" rx="2" ry="2" />
<text x="333.63" y="831.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (26 samples, 0.11%)</title><rect x="903.4" y="677" width="1.3" height="15.0" fill="rgb(229,163,19)" rx="2" ry="2" />
<text x="906.41" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb12HdrHistogram9IncrementEl (2 samples, 0.01%)</title><rect x="620.8" y="885" width="0.1" height="15.0" fill="rgb(236,189,52)" rx="2" ry="2" />
<text x="623.84" y="895.5" ></text>
</g>
<g >
<title>_ZN2ev4baseI5ev_ioNS_2ioEE12method_thunkIN2yb3rpc9TcpStreamEXadL_ZNS7_7HandlerERS2_iEEEEvP7ev_loopPS1_i (2 samples, 0.01%)</title><rect x="332.7" y="901" width="0.1" height="15.0" fill="rgb(244,67,15)" rx="2" ry="2" />
<text x="335.69" y="911.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (7 samples, 0.03%)</title><rect x="36.6" y="805" width="0.4" height="15.0" fill="rgb(221,29,9)" rx="2" ry="2" />
<text x="39.64" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer18NewOperationDriverEPSt10unique_ptrINS0_9OperationESt14default_deleteIS3_EEl (4 samples, 0.02%)</title><rect x="624.0" y="773" width="0.2" height="15.0" fill="rgb(211,90,18)" rx="2" ry="2" />
<text x="627.02" y="783.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (3 samples, 0.01%)</title><rect x="747.0" y="501" width="0.1" height="15.0" fill="rgb(230,190,8)" rx="2" ry="2" />
<text x="749.97" y="511.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="686.9" y="645" width="0.1" height="15.0" fill="rgb(217,52,16)" rx="2" ry="2" />
<text x="689.85" y="655.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.05%)</title><rect x="756.9" y="821" width="0.6" height="15.0" fill="rgb(215,72,29)" rx="2" ry="2" />
<text x="759.94" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet12PreparerImpl17ReplicateSubBatchEN9__gnu_cxx17__normal_iteratorIPPNS0_15OperationDriverESt6vectorIS5_SaIS5_EEEESA_ (120 samples, 0.51%)</title><rect x="490.0" y="885" width="6.1" height="15.0" fill="rgb(219,155,46)" rx="2" ry="2" />
<text x="493.04" y="895.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus8LogCache10LookupOpIdElPNS_6OpIdPBE (3 samples, 0.01%)</title><rect x="550.3" y="869" width="0.1" height="15.0" fill="rgb(220,132,47)" rx="2" ry="2" />
<text x="553.25" y="879.5" ></text>
</g>
<g >
<title>ttwu_do_activate (2 samples, 0.01%)</title><rect x="372.5" y="629" width="0.1" height="15.0" fill="rgb(229,166,23)" rx="2" ry="2" />
<text x="375.52" y="639.5" ></text>
</g>
<g >
<title>ctx_sched_out (2 samples, 0.01%)</title><rect x="1073.5" y="757" width="0.1" height="15.0" fill="rgb(230,61,47)" rx="2" ry="2" />
<text x="1076.49" y="767.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.02%)</title><rect x="394.9" y="757" width="0.2" height="15.0" fill="rgb(225,87,0)" rx="2" ry="2" />
<text x="397.92" y="767.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1,562 samples, 6.66%)</title><rect x="241.7" y="741" width="78.6" height="15.0" fill="rgb(254,34,35)" rx="2" ry="2" />
<text x="244.66" y="751.5" >__perf_ev..</text>
</g>
<g >
<title>ip_local_deliver_finish (55 samples, 0.23%)</title><rect x="352.4" y="325" width="2.8" height="15.0" fill="rgb(211,168,22)" rx="2" ry="2" />
<text x="355.43" y="335.5" ></text>
</g>
<g >
<title>update_process_times (9 samples, 0.04%)</title><rect x="412.4" y="629" width="0.5" height="15.0" fill="rgb(223,182,38)" rx="2" ry="2" />
<text x="415.45" y="639.5" ></text>
</g>
<g >
<title>__pv_queued_spin_lock_slowpath (2 samples, 0.01%)</title><rect x="199.8" y="693" width="0.1" height="15.0" fill="rgb(210,89,44)" rx="2" ry="2" />
<text x="202.77" y="703.5" ></text>
</g>
<g >
<title>update_load_avg (7 samples, 0.03%)</title><rect x="51.0" y="709" width="0.3" height="15.0" fill="rgb(218,42,0)" rx="2" ry="2" />
<text x="53.98" y="719.5" ></text>
</g>
<g >
<title>wake_up_process (3 samples, 0.01%)</title><rect x="109.6" y="661" width="0.2" height="15.0" fill="rgb(209,41,47)" rx="2" ry="2" />
<text x="112.64" y="671.5" ></text>
</g>
<g >
<title>rcu_check_callbacks (2 samples, 0.01%)</title><rect x="196.8" y="629" width="0.1" height="15.0" fill="rgb(254,50,4)" rx="2" ry="2" />
<text x="199.85" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream7DoWriteEv (143 samples, 0.61%)</title><rect x="337.8" y="805" width="7.2" height="15.0" fill="rgb(239,131,13)" rx="2" ry="2" />
<text x="340.83" y="815.5" ></text>
</g>
<g >
<title>_ZNK2yb17ConditionVariable9TimedWaitERKNS_9MonoDeltaE (2 samples, 0.01%)</title><rect x="496.2" y="917" width="0.1" height="15.0" fill="rgb(238,203,21)" rx="2" ry="2" />
<text x="499.18" y="927.5" ></text>
</g>
<g >
<title>select_task_rq_fair (8 samples, 0.03%)</title><rect x="441.9" y="821" width="0.4" height="15.0" fill="rgb(228,78,44)" rx="2" ry="2" />
<text x="444.85" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb6master16TSRegistrationPBD1Ev (4 samples, 0.02%)</title><rect x="414.7" y="837" width="0.2" height="15.0" fill="rgb(230,126,6)" rx="2" ry="2" />
<text x="417.71" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall10ParseParamEPN6google8protobuf7MessageE (129 samples, 0.55%)</title><rect x="738.8" y="853" width="6.5" height="15.0" fill="rgb(215,64,26)" rx="2" ry="2" />
<text x="741.76" y="863.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="561.2" y="725" width="0.1" height="15.0" fill="rgb(250,161,4)" rx="2" ry="2" />
<text x="564.18" y="735.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (3 samples, 0.01%)</title><rect x="623.6" y="821" width="0.2" height="15.0" fill="rgb(238,74,47)" rx="2" ry="2" />
<text x="626.61" y="831.5" ></text>
</g>
<g >
<title>perf_pmu_enable (24 samples, 0.10%)</title><rect x="397.0" y="613" width="1.2" height="15.0" fill="rgb(235,220,29)" rx="2" ry="2" />
<text x="399.99" y="623.5" ></text>
</g>
<g >
<title>tick_sched_timer (2 samples, 0.01%)</title><rect x="963.3" y="613" width="0.1" height="15.0" fill="rgb(211,90,39)" rx="2" ry="2" />
<text x="966.32" y="623.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (20 samples, 0.09%)</title><rect x="371.8" y="741" width="1.0" height="15.0" fill="rgb(227,111,26)" rx="2" ry="2" />
<text x="374.81" y="751.5" ></text>
</g>
<g >
<title>finish_task_switch (420 samples, 1.79%)</title><rect x="454.7" y="789" width="21.1" height="15.0" fill="rgb(245,139,20)" rx="2" ry="2" />
<text x="457.69" y="799.5" ></text>
</g>
<g >
<title>__sys_sendmsg (254 samples, 1.08%)</title><rect x="346.7" y="741" width="12.8" height="15.0" fill="rgb(241,54,51)" rx="2" ry="2" />
<text x="349.74" y="751.5" ></text>
</g>
<g >
<title>dequeue_entity (60 samples, 0.26%)</title><rect x="48.3" y="725" width="3.0" height="15.0" fill="rgb(253,164,29)" rx="2" ry="2" />
<text x="51.32" y="735.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (3 samples, 0.01%)</title><rect x="110.4" y="565" width="0.1" height="15.0" fill="rgb(252,80,7)" rx="2" ry="2" />
<text x="113.40" y="575.5" ></text>
</g>
<g >
<title>sys_futex (5 samples, 0.02%)</title><rect x="492.6" y="725" width="0.3" height="15.0" fill="rgb(219,225,0)" rx="2" ry="2" />
<text x="495.60" y="735.5" ></text>
</g>
<g >
<title>x86_pmu_disable (2 samples, 0.01%)</title><rect x="559.5" y="709" width="0.1" height="15.0" fill="rgb(205,6,37)" rx="2" ry="2" />
<text x="562.52" y="719.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="232.6" y="773" width="0.1" height="15.0" fill="rgb(213,105,53)" rx="2" ry="2" />
<text x="235.60" y="783.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.01%)</title><rect x="1059.8" y="917" width="0.1" height="15.0" fill="rgb(233,74,26)" rx="2" ry="2" />
<text x="1062.80" y="927.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="342.7" y="165" width="0.1" height="15.0" fill="rgb(220,82,33)" rx="2" ry="2" />
<text x="345.71" y="175.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="393.9" y="869" width="0.1" height="15.0" fill="rgb(213,54,2)" rx="2" ry="2" />
<text x="396.92" y="879.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (12 samples, 0.05%)</title><rect x="442.5" y="805" width="0.6" height="15.0" fill="rgb(214,92,8)" rx="2" ry="2" />
<text x="445.46" y="815.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv (7 samples, 0.03%)</title><rect x="1057.1" y="773" width="0.4" height="15.0" fill="rgb(243,56,32)" rx="2" ry="2" />
<text x="1060.13" y="783.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.05%)</title><rect x="600.3" y="917" width="0.6" height="15.0" fill="rgb(225,113,29)" rx="2" ry="2" />
<text x="603.25" y="927.5" ></text>
</g>
<g >
<title>__wake_up_common (11 samples, 0.05%)</title><rect x="746.6" y="565" width="0.5" height="15.0" fill="rgb(208,118,14)" rx="2" ry="2" />
<text x="749.57" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (14 samples, 0.06%)</title><rect x="154.2" y="821" width="0.7" height="15.0" fill="rgb(231,21,48)" rx="2" ry="2" />
<text x="157.20" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="555.0" y="901" width="0.2" height="15.0" fill="rgb(239,74,47)" rx="2" ry="2" />
<text x="557.99" y="911.5" ></text>
</g>
<g >
<title>tick_sched_timer (9 samples, 0.04%)</title><rect x="614.0" y="725" width="0.5" height="15.0" fill="rgb(238,54,5)" rx="2" ry="2" />
<text x="617.05" y="735.5" ></text>
</g>
<g >
<title>sched_clock (7 samples, 0.03%)</title><rect x="162.6" y="693" width="0.3" height="15.0" fill="rgb(248,98,42)" rx="2" ry="2" />
<text x="165.56" y="703.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="765.8" y="725" width="0.1" height="15.0" fill="rgb(237,184,19)" rx="2" ry="2" />
<text x="768.80" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall7RespondERKN6google8protobuf11MessageLiteEb (37 samples, 0.16%)</title><rect x="746.2" y="821" width="1.8" height="15.0" fill="rgb(244,64,49)" rx="2" ry="2" />
<text x="749.17" y="831.5" ></text>
</g>
<g >
<title>queue_unplugged (4 samples, 0.02%)</title><rect x="395.7" y="613" width="0.2" height="15.0" fill="rgb(250,219,44)" rx="2" ry="2" />
<text x="398.73" y="623.5" ></text>
</g>
<g >
<title>cpuacct_charge (24 samples, 0.10%)</title><rect x="49.8" y="693" width="1.2" height="15.0" fill="rgb(226,142,32)" rx="2" ry="2" />
<text x="52.78" y="703.5" ></text>
</g>
<g >
<title>_ZN4base8SpinLock8SpinLoopElPi (2 samples, 0.01%)</title><rect x="770.2" y="837" width="0.1" height="15.0" fill="rgb(229,147,51)" rx="2" ry="2" />
<text x="773.18" y="847.5" ></text>
</g>
<g >
<title>task_tick_fair (2 samples, 0.01%)</title><rect x="474.4" y="645" width="0.1" height="15.0" fill="rgb(254,10,24)" rx="2" ry="2" />
<text x="477.38" y="655.5" ></text>
</g>
<g >
<title>_ZN8tcmalloc11ThreadCache21ReleaseToCentralCacheEPNS0_8FreeListEji (2 samples, 0.01%)</title><rect x="773.8" y="853" width="0.1" height="15.0" fill="rgb(243,2,34)" rx="2" ry="2" />
<text x="776.76" y="863.5" ></text>
</g>
<g >
<title>ipt_do_table (3 samples, 0.01%)</title><rect x="384.4" y="549" width="0.1" height="15.0" fill="rgb(226,49,40)" rx="2" ry="2" />
<text x="387.35" y="559.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail13epoll_reactor3runElRNS1_8op_queueINS1_19scheduler_operationEEE (11 samples, 0.05%)</title><rect x="427.6" y="917" width="0.6" height="15.0" fill="rgb(207,214,7)" rx="2" ry="2" />
<text x="430.60" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet14WriteOperation5ApplyEl (48 samples, 0.20%)</title><rect x="532.2" y="757" width="2.4" height="15.0" fill="rgb(215,38,26)" rx="2" ry="2" />
<text x="535.18" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb4util32FastDecodeDescendingSignedVarIntEPNS_5SliceE@plt (9 samples, 0.04%)</title><rect x="964.6" y="709" width="0.5" height="15.0" fill="rgb(216,93,51)" rx="2" ry="2" />
<text x="967.63" y="719.5" ></text>
</g>
<g >
<title>tc_malloc (2 samples, 0.01%)</title><rect x="379.5" y="805" width="0.1" height="15.0" fill="rgb(234,177,37)" rx="2" ry="2" />
<text x="382.52" y="815.5" ></text>
</g>
<g >
<title>select_task_rq_fair (3 samples, 0.01%)</title><rect x="531.4" y="709" width="0.2" height="15.0" fill="rgb(240,145,41)" rx="2" ry="2" />
<text x="534.42" y="719.5" ></text>
</g>
<g >
<title>scheduler_tick (9 samples, 0.04%)</title><rect x="412.4" y="613" width="0.5" height="15.0" fill="rgb(227,57,46)" rx="2" ry="2" />
<text x="415.45" y="623.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (2 samples, 0.01%)</title><rect x="439.0" y="869" width="0.1" height="15.0" fill="rgb(207,64,25)" rx="2" ry="2" />
<text x="442.03" y="879.5" ></text>
</g>
<g >
<title>ttwu_do_activate (4 samples, 0.02%)</title><rect x="430.6" y="693" width="0.2" height="15.0" fill="rgb(251,190,17)" rx="2" ry="2" />
<text x="433.62" y="703.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (3 samples, 0.01%)</title><rect x="326.9" y="773" width="0.1" height="15.0" fill="rgb(253,101,35)" rx="2" ry="2" />
<text x="329.85" y="783.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2 samples, 0.01%)</title><rect x="199.8" y="725" width="0.1" height="15.0" fill="rgb(214,138,8)" rx="2" ry="2" />
<text x="202.77" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue14RequestForPeerERKSsPNS0_18ConsensusRequestPBEPNS0_19ReplicateMsgsHolderEPbPNS0_21RaftPeerPB_MemberTypeES8_ (84 samples, 0.36%)</title><rect x="548.3" y="901" width="4.2" height="15.0" fill="rgb(221,186,31)" rx="2" ry="2" />
<text x="551.29" y="911.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2 samples, 0.01%)</title><rect x="426.1" y="725" width="0.1" height="15.0" fill="rgb(210,21,17)" rx="2" ry="2" />
<text x="429.14" y="735.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.01%)</title><rect x="604.1" y="901" width="0.1" height="15.0" fill="rgb(238,205,23)" rx="2" ry="2" />
<text x="607.08" y="911.5" ></text>
</g>
<g >
<title>sys_fsync (56 samples, 0.24%)</title><rect x="395.7" y="805" width="2.8" height="15.0" fill="rgb(237,86,41)" rx="2" ry="2" />
<text x="398.68" y="815.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (2 samples, 0.01%)</title><rect x="109.4" y="741" width="0.1" height="15.0" fill="rgb(244,61,1)" rx="2" ry="2" />
<text x="112.39" y="751.5" ></text>
</g>
<g >
<title>trigger_load_balance (3 samples, 0.01%)</title><rect x="970.5" y="613" width="0.2" height="15.0" fill="rgb(219,141,51)" rx="2" ry="2" />
<text x="973.52" y="623.5" ></text>
</g>
<g >
<title>sched_clock_cpu (8 samples, 0.03%)</title><rect x="162.5" y="709" width="0.4" height="15.0" fill="rgb(235,92,12)" rx="2" ry="2" />
<text x="165.51" y="719.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (2 samples, 0.01%)</title><rect x="403.3" y="853" width="0.1" height="15.0" fill="rgb(231,225,4)" rx="2" ry="2" />
<text x="406.33" y="863.5" ></text>
</g>
<g >
<title>do_futex (4 samples, 0.02%)</title><rect x="535.4" y="645" width="0.2" height="15.0" fill="rgb(216,11,27)" rx="2" ry="2" />
<text x="538.35" y="655.5" ></text>
</g>
<g >
<title>tcp_clean_rtx_queue (2 samples, 0.01%)</title><rect x="338.4" y="565" width="0.1" height="15.0" fill="rgb(251,54,24)" rx="2" ry="2" />
<text x="341.38" y="575.5" ></text>
</g>
<g >
<title>iptable_raw_hook (9 samples, 0.04%)</title><rect x="350.0" y="517" width="0.4" height="15.0" fill="rgb(212,113,21)" rx="2" ry="2" />
<text x="352.96" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (531 samples, 2.27%)</title><rect x="498.0" y="885" width="26.8" height="15.0" fill="rgb(218,145,23)" rx="2" ry="2" />
<text x="501.04" y="895.5" >d..</text>
</g>
<g >
<title>_ZNK2yb9consensus17ConsensusMetadata12current_termEv (2 samples, 0.01%)</title><rect x="752.3" y="805" width="0.1" height="15.0" fill="rgb(219,90,14)" rx="2" ry="2" />
<text x="755.26" y="815.5" ></text>
</g>
<g >
<title>skb_release_all (2 samples, 0.01%)</title><rect x="342.1" y="197" width="0.1" height="15.0" fill="rgb(214,181,29)" rx="2" ry="2" />
<text x="345.11" y="207.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (2 samples, 0.01%)</title><rect x="712.9" y="661" width="0.1" height="15.0" fill="rgb(206,170,10)" rx="2" ry="2" />
<text x="715.93" y="671.5" ></text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="667.5" y="533" width="0.1" height="15.0" fill="rgb(218,209,47)" rx="2" ry="2" />
<text x="670.52" y="543.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (6 samples, 0.03%)</title><rect x="601.8" y="949" width="0.3" height="15.0" fill="rgb(230,82,24)" rx="2" ry="2" />
<text x="604.81" y="959.5" ></text>
</g>
<g >
<title>ctx_sched_out (2 samples, 0.01%)</title><rect x="434.5" y="757" width="0.1" height="15.0" fill="rgb(246,150,32)" rx="2" ry="2" />
<text x="437.50" y="767.5" ></text>
</g>
<g >
<title>_ZNSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE2EE10_M_releaseEv (3 samples, 0.01%)</title><rect x="363.6" y="757" width="0.2" height="15.0" fill="rgb(246,87,9)" rx="2" ry="2" />
<text x="366.61" y="767.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (3 samples, 0.01%)</title><rect x="21.8" y="885" width="0.1" height="15.0" fill="rgb(245,88,41)" rx="2" ry="2" />
<text x="24.78" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim (20 samples, 0.09%)</title><rect x="967.3" y="709" width="1.0" height="15.0" fill="rgb(207,219,2)" rx="2" ry="2" />
<text x="970.30" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator3keyEv (14 samples, 0.06%)</title><rect x="877.6" y="661" width="0.7" height="15.0" fill="rgb(217,215,28)" rx="2" ry="2" />
<text x="880.63" y="671.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream9PushLimitEi (4 samples, 0.02%)</title><rect x="740.8" y="805" width="0.2" height="15.0" fill="rgb(242,181,45)" rx="2" ry="2" />
<text x="743.83" y="815.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="483.3" y="901" width="0.1" height="15.0" fill="rgb(222,219,26)" rx="2" ry="2" />
<text x="486.29" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12OutboundCall17NotifyTransferredERKNS_6StatusEPNS0_10ConnectionE (10 samples, 0.04%)</title><rect x="360.1" y="789" width="0.5" height="15.0" fill="rgb(221,110,3)" rx="2" ry="2" />
<text x="363.08" y="799.5" ></text>
</g>
<g >
<title>migrate_task_rq_fair (2 samples, 0.01%)</title><rect x="442.3" y="805" width="0.1" height="15.0" fill="rgb(235,156,2)" rx="2" ry="2" />
<text x="445.25" y="815.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="499.6" y="805" width="0.1" height="15.0" fill="rgb(239,83,1)" rx="2" ry="2" />
<text x="502.60" y="815.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 0.03%)</title><rect x="482.5" y="677" width="0.4" height="15.0" fill="rgb(233,157,17)" rx="2" ry="2" />
<text x="485.53" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="394.9" y="869" width="0.2" height="15.0" fill="rgb(219,136,13)" rx="2" ry="2" />
<text x="397.92" y="879.5" ></text>
</g>
<g >
<title>ipv4_conntrack_defrag (2 samples, 0.01%)</title><rect x="339.1" y="517" width="0.1" height="15.0" fill="rgb(209,106,27)" rx="2" ry="2" />
<text x="342.09" y="527.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="552.2" y="869" width="0.1" height="15.0" fill="rgb(224,174,10)" rx="2" ry="2" />
<text x="555.22" y="879.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5ValidEv (5 samples, 0.02%)</title><rect x="1043.6" y="741" width="0.2" height="15.0" fill="rgb(210,84,33)" rx="2" ry="2" />
<text x="1046.58" y="751.5" ></text>
</g>
<g >
<title>__schedule (5 samples, 0.02%)</title><rect x="601.9" y="773" width="0.2" height="15.0" fill="rgb(216,100,18)" rx="2" ry="2" />
<text x="604.86" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb16EnumerateIntentsERKN6google8protobuf16RepeatedPtrFieldINS0_14KeyValuePairPBEEERKN5boost8functionIFNS_6StatusENS0_14IntentStrengthENS_5SliceEPNS0_8KeyBytesEEEENS_17StronglyTypedBoolINS0_26PartialRangeKeyIntents_TagEEE (7 samples, 0.03%)</title><rect x="533.5" y="677" width="0.4" height="15.0" fill="rgb(227,44,8)" rx="2" ry="2" />
<text x="536.54" y="687.5" ></text>
</g>
<g >
<title>_ZNSs4_Rep9_S_createEmmRKSaIcE (4 samples, 0.02%)</title><rect x="527.7" y="949" width="0.2" height="15.0" fill="rgb(222,214,53)" rx="2" ry="2" />
<text x="530.70" y="959.5" ></text>
</g>
<g >
<title>epoll_ctl (34 samples, 0.15%)</title><rect x="333.8" y="901" width="1.7" height="15.0" fill="rgb(240,63,8)" rx="2" ry="2" />
<text x="336.80" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="399.9" y="789" width="0.2" height="15.0" fill="rgb(233,75,17)" rx="2" ry="2" />
<text x="402.86" y="799.5" ></text>
</g>
<g >
<title>hrtimer_active (3 samples, 0.01%)</title><rect x="413.1" y="757" width="0.2" height="15.0" fill="rgb(242,71,47)" rx="2" ry="2" />
<text x="416.10" y="767.5" ></text>
</g>
<g >
<title>rb-session-exp- (6 samples, 0.03%)</title><rect x="601.8" y="981" width="0.3" height="15.0" fill="rgb(239,131,29)" rx="2" ry="2" />
<text x="604.81" y="991.5" ></text>
</g>
<g >
<title>__libc_enable_asynccancel (3 samples, 0.01%)</title><rect x="432.7" y="917" width="0.2" height="15.0" fill="rgb(218,152,42)" rx="2" ry="2" />
<text x="435.74" y="927.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (3 samples, 0.01%)</title><rect x="440.3" y="933" width="0.1" height="15.0" fill="rgb(205,24,27)" rx="2" ry="2" />
<text x="443.29" y="943.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="440.6" y="917" width="0.1" height="15.0" fill="rgb(227,220,31)" rx="2" ry="2" />
<text x="443.59" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb12_GLOBAL__N_116ConflictResolver27EnsureIntentIteratorCreatedEv (4 samples, 0.02%)</title><rect x="631.7" y="693" width="0.2" height="15.0" fill="rgb(242,23,22)" rx="2" ry="2" />
<text x="634.67" y="703.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="434.0" y="901" width="0.1" height="15.0" fill="rgb(228,82,54)" rx="2" ry="2" />
<text x="437.00" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache14EvictThroughOpEl (5 samples, 0.02%)</title><rect x="399.3" y="821" width="0.3" height="15.0" fill="rgb(251,162,45)" rx="2" ry="2" />
<text x="402.31" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb6OpIdPBC1Ev (3 samples, 0.01%)</title><rect x="541.5" y="901" width="0.2" height="15.0" fill="rgb(244,43,6)" rx="2" ry="2" />
<text x="544.54" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator22SeekIntentIterIfNeededEv (4 samples, 0.02%)</title><rect x="776.9" y="757" width="0.2" height="15.0" fill="rgb(247,126,5)" rx="2" ry="2" />
<text x="779.93" y="767.5" ></text>
</g>
<g >
<title>perf_pmu_disable (3 samples, 0.01%)</title><rect x="559.5" y="725" width="0.1" height="15.0" fill="rgb(250,171,42)" rx="2" ry="2" />
<text x="562.47" y="735.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="334.0" y="885" width="0.1" height="15.0" fill="rgb(208,202,28)" rx="2" ry="2" />
<text x="337.00" y="895.5" ></text>
</g>
<g >
<title>__fget_light (4 samples, 0.02%)</title><rect x="359.3" y="693" width="0.2" height="15.0" fill="rgb(242,96,50)" rx="2" ry="2" />
<text x="362.28" y="703.5" ></text>
</g>
<g >
<title>try_to_wake_up (2 samples, 0.01%)</title><rect x="751.2" y="613" width="0.1" height="15.0" fill="rgb(239,80,41)" rx="2" ry="2" />
<text x="754.20" y="623.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (14 samples, 0.06%)</title><rect x="753.4" y="821" width="0.7" height="15.0" fill="rgb(230,122,12)" rx="2" ry="2" />
<text x="756.37" y="831.5" ></text>
</g>
<g >
<title>ev_time (3 samples, 0.01%)</title><rect x="215.8" y="917" width="0.1" height="15.0" fill="rgb(205,46,24)" rx="2" ry="2" />
<text x="218.78" y="927.5" ></text>
</g>
<g >
<title>sys_recvmsg (166 samples, 0.71%)</title><rect x="381.7" y="789" width="8.3" height="15.0" fill="rgb(250,11,22)" rx="2" ry="2" />
<text x="384.68" y="799.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (53 samples, 0.23%)</title><rect x="440.7" y="917" width="2.7" height="15.0" fill="rgb(254,51,12)" rx="2" ry="2" />
<text x="443.69" y="927.5" ></text>
</g>
<g >
<title>iptable_filter_hook (4 samples, 0.02%)</title><rect x="384.1" y="565" width="0.2" height="15.0" fill="rgb(240,26,48)" rx="2" ry="2" />
<text x="387.10" y="575.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb12_GLOBAL__N_116ConflictResolver19ReadIntentConflictsENS_10EnumBitSetINS0_10IntentTypeEEEPNS0_8KeyBytesE.constprop.344 (2,124 samples, 9.06%)</title><rect x="624.4" y="709" width="107.0" height="15.0" fill="rgb(249,80,29)" rx="2" ry="2" />
<text x="627.42" y="719.5" >_ZN2yb5docdb1..</text>
</g>
<g >
<title>__raw_spin_unlock (2 samples, 0.01%)</title><rect x="561.2" y="741" width="0.1" height="15.0" fill="rgb(227,60,17)" rx="2" ry="2" />
<text x="564.18" y="751.5" ></text>
</g>
<g >
<title>tcp_ack (7 samples, 0.03%)</title><rect x="341.9" y="245" width="0.3" height="15.0" fill="rgb(250,68,0)" rx="2" ry="2" />
<text x="344.86" y="255.5" ></text>
</g>
<g >
<title>perf_pmu_enable (1,063 samples, 4.54%)</title><rect x="55.6" y="725" width="53.5" height="15.0" fill="rgb(219,224,0)" rx="2" ry="2" />
<text x="58.57" y="735.5" >perf_..</text>
</g>
<g >
<title>vfs_write (29 samples, 0.12%)</title><rect x="545.9" y="693" width="1.4" height="15.0" fill="rgb(230,25,49)" rx="2" ry="2" />
<text x="548.87" y="703.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (7 samples, 0.03%)</title><rect x="138.4" y="949" width="0.3" height="15.0" fill="rgb(219,122,52)" rx="2" ry="2" />
<text x="141.39" y="959.5" ></text>
</g>
<g >
<title>sched_clock (5 samples, 0.02%)</title><rect x="201.2" y="725" width="0.2" height="15.0" fill="rgb(212,93,45)" rx="2" ry="2" />
<text x="204.18" y="735.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (2 samples, 0.01%)</title><rect x="590.5" y="757" width="0.1" height="15.0" fill="rgb(241,67,41)" rx="2" ry="2" />
<text x="593.48" y="767.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (14 samples, 0.06%)</title><rect x="521.8" y="741" width="0.7" height="15.0" fill="rgb(240,120,9)" rx="2" ry="2" />
<text x="524.76" y="751.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (3 samples, 0.01%)</title><rect x="555.3" y="917" width="0.2" height="15.0" fill="rgb(227,190,8)" rx="2" ry="2" />
<text x="558.34" y="927.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb9LockBatch5ResetEv (3 samples, 0.01%)</title><rect x="534.6" y="709" width="0.2" height="15.0" fill="rgb(237,138,17)" rx="2" ry="2" />
<text x="537.65" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc14RemoteMethodPB27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (9 samples, 0.04%)</title><rect x="369.7" y="709" width="0.5" height="15.0" fill="rgb(226,178,33)" rx="2" ry="2" />
<text x="372.70" y="719.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="1181.7" y="821" width="0.1" height="15.0" fill="rgb(210,88,3)" rx="2" ry="2" />
<text x="1184.74" y="831.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.02%)</title><rect x="680.5" y="533" width="0.2" height="15.0" fill="rgb(215,189,4)" rx="2" ry="2" />
<text x="683.46" y="543.5" ></text>
</g>
<g >
<title>pwritev64 (31 samples, 0.13%)</title><rect x="401.5" y="837" width="1.6" height="15.0" fill="rgb(239,95,28)" rx="2" ry="2" />
<text x="404.52" y="847.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3 samples, 0.01%)</title><rect x="238.6" y="709" width="0.2" height="15.0" fill="rgb(222,2,15)" rx="2" ry="2" />
<text x="241.64" y="719.5" ></text>
</g>
<g >
<title>start_thread (4 samples, 0.02%)</title><rect x="394.7" y="965" width="0.2" height="15.0" fill="rgb(209,58,37)" rx="2" ry="2" />
<text x="397.72" y="975.5" ></text>
</g>
<g >
<title>_ZN7rocksdb9BlockIter12ParseNextKeyEv (5 samples, 0.02%)</title><rect x="876.8" y="661" width="0.2" height="15.0" fill="rgb(214,53,17)" rx="2" ry="2" />
<text x="879.77" y="671.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.08%)</title><rect x="433.1" y="901" width="0.9" height="15.0" fill="rgb(228,1,3)" rx="2" ry="2" />
<text x="436.09" y="911.5" ></text>
</g>
<g >
<title>scheduler_tick (3 samples, 0.01%)</title><rect x="1015.3" y="597" width="0.2" height="15.0" fill="rgb(213,140,43)" rx="2" ry="2" />
<text x="1018.34" y="607.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="616.3" y="917" width="0.1" height="15.0" fill="rgb(241,36,27)" rx="2" ry="2" />
<text x="619.31" y="927.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (62 samples, 0.26%)</title><rect x="420.4" y="837" width="3.1" height="15.0" fill="rgb(249,121,45)" rx="2" ry="2" />
<text x="423.35" y="847.5" ></text>
</g>
<g >
<title>schedule (28 samples, 0.12%)</title><rect x="397.0" y="677" width="1.4" height="15.0" fill="rgb(243,43,5)" rx="2" ry="2" />
<text x="399.99" y="687.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (583 samples, 2.49%)</title><rect x="560.9" y="757" width="29.3" height="15.0" fill="rgb(249,14,12)" rx="2" ry="2" />
<text x="563.88" y="767.5" >__..</text>
</g>
<g >
<title>_ZN2yb5docdb15DecodeIntentKeyERKNS_5SliceE (5 samples, 0.02%)</title><rect x="780.9" y="693" width="0.3" height="15.0" fill="rgb(228,96,2)" rx="2" ry="2" />
<text x="783.91" y="703.5" ></text>
</g>
<g >
<title>nf_hook_slow (2 samples, 0.01%)</title><rect x="341.7" y="133" width="0.1" height="15.0" fill="rgb(245,17,4)" rx="2" ry="2" />
<text x="344.65" y="143.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3 samples, 0.01%)</title><rect x="44.2" y="741" width="0.1" height="15.0" fill="rgb(224,76,46)" rx="2" ry="2" />
<text x="47.19" y="751.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail18completion_handlerIZN2yb3rpc9Scheduler4Impl10DoScheduleESt10shared_ptrINS4_17ScheduledTaskBaseEEEUlvE_E11do_completeEPvPNS1_19scheduler_operationERKNS_6system10error_codeEm (13 samples, 0.06%)</title><rect x="428.8" y="837" width="0.6" height="15.0" fill="rgb(243,122,50)" rx="2" ry="2" />
<text x="431.76" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver13ReadRequestPB27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE (22 samples, 0.09%)</title><rect x="622.1" y="821" width="1.1" height="15.0" fill="rgb(252,128,42)" rx="2" ry="2" />
<text x="625.10" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver30RpcOperationCompletionCallbackINS0_14ReadResponsePBEE18OperationCompletedEv.part.288 (2 samples, 0.01%)</title><rect x="1059.3" y="885" width="0.1" height="15.0" fill="rgb(233,26,23)" rx="2" ry="2" />
<text x="1062.34" y="895.5" ></text>
</g>
<g >
<title>epoll_wait (2 samples, 0.01%)</title><rect x="134.5" y="901" width="0.1" height="15.0" fill="rgb(249,130,54)" rx="2" ry="2" />
<text x="137.46" y="911.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="970.5" y="677" width="0.2" height="15.0" fill="rgb(231,197,2)" rx="2" ry="2" />
<text x="973.52" y="687.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (49 samples, 0.21%)</title><rect x="196.6" y="741" width="2.5" height="15.0" fill="rgb(253,4,1)" rx="2" ry="2" />
<text x="199.60" y="751.5" ></text>
</g>
<g >
<title>iptable_mangle_hook (4 samples, 0.02%)</title><rect x="388.5" y="389" width="0.2" height="15.0" fill="rgb(232,115,44)" rx="2" ry="2" />
<text x="391.53" y="399.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (11 samples, 0.05%)</title><rect x="12.1" y="949" width="0.6" height="15.0" fill="rgb(237,137,52)" rx="2" ry="2" />
<text x="15.11" y="959.5" ></text>
</g>
<g >
<title>pick_next_task_fair (6 samples, 0.03%)</title><rect x="117.2" y="773" width="0.3" height="15.0" fill="rgb(210,138,53)" rx="2" ry="2" />
<text x="120.25" y="783.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15MergingIterator4NextEv (518 samples, 2.21%)</title><rect x="996.9" y="741" width="26.1" height="15.0" fill="rgb(209,10,17)" rx="2" ry="2" />
<text x="999.91" y="751.5" >_..</text>
</g>
<g >
<title>_ZN5boost11this_thread20disable_interruptionC2Ev (2 samples, 0.01%)</title><rect x="403.2" y="853" width="0.1" height="15.0" fill="rgb(252,181,43)" rx="2" ry="2" />
<text x="406.23" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (25 samples, 0.11%)</title><rect x="484.3" y="885" width="1.3" height="15.0" fill="rgb(224,7,40)" rx="2" ry="2" />
<text x="487.35" y="895.5" ></text>
</g>
<g >
<title>ip_rcv (55 samples, 0.23%)</title><rect x="341.1" y="357" width="2.7" height="15.0" fill="rgb(238,136,21)" rx="2" ry="2" />
<text x="344.05" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="395.1" y="869" width="0.2" height="15.0" fill="rgb(219,204,6)" rx="2" ry="2" />
<text x="398.13" y="879.5" ></text>
</g>
<g >
<title>check_preempt_curr (5 samples, 0.02%)</title><rect x="426.7" y="693" width="0.3" height="15.0" fill="rgb(240,118,20)" rx="2" ry="2" />
<text x="429.75" y="703.5" ></text>
</g>
<g >
<title>do_futex (35 samples, 0.15%)</title><rect x="437.3" y="869" width="1.7" height="15.0" fill="rgb(226,22,48)" rx="2" ry="2" />
<text x="440.27" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet16OperationTracker3AddEPNS0_15OperationDriverE (5 samples, 0.02%)</title><rect x="750.4" y="741" width="0.2" height="15.0" fill="rgb(217,82,47)" rx="2" ry="2" />
<text x="753.40" y="751.5" ></text>
</g>
<g >
<title>__schedule (455 samples, 1.94%)</title><rect x="499.8" y="789" width="22.9" height="15.0" fill="rgb(253,191,27)" rx="2" ry="2" />
<text x="502.75" y="799.5" >_..</text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="732.3" y="565" width="0.1" height="15.0" fill="rgb(235,175,2)" rx="2" ry="2" />
<text x="735.32" y="575.5" ></text>
</g>
<g >
<title>update_curr (2 samples, 0.01%)</title><rect x="1074.4" y="741" width="0.1" height="15.0" fill="rgb(235,119,41)" rx="2" ry="2" />
<text x="1077.45" y="751.5" ></text>
</g>
<g >
<title>ip_queue_xmit (179 samples, 0.76%)</title><rect x="348.7" y="581" width="9.0" height="15.0" fill="rgb(223,1,19)" rx="2" ry="2" />
<text x="351.65" y="591.5" ></text>
</g>
<g >
<title>x86_pmu_disable (3 samples, 0.01%)</title><rect x="499.9" y="709" width="0.1" height="15.0" fill="rgb(252,101,23)" rx="2" ry="2" />
<text x="502.85" y="719.5" ></text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="1015.4" y="581" width="0.1" height="15.0" fill="rgb(221,169,43)" rx="2" ry="2" />
<text x="1018.39" y="591.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus18ConsensusRequestPB12ByteSizeLongEv (7 samples, 0.03%)</title><rect x="551.3" y="885" width="0.3" height="15.0" fill="rgb(234,195,29)" rx="2" ry="2" />
<text x="554.26" y="895.5" ></text>
</g>
<g >
<title>___sys_sendmsg (248 samples, 1.06%)</title><rect x="346.8" y="725" width="12.5" height="15.0" fill="rgb(240,169,54)" rx="2" ry="2" />
<text x="349.79" y="735.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (6 samples, 0.03%)</title><rect x="722.8" y="645" width="0.3" height="15.0" fill="rgb(232,225,25)" rx="2" ry="2" />
<text x="725.75" y="655.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (2 samples, 0.01%)</title><rect x="379.1" y="757" width="0.1" height="15.0" fill="rgb(208,117,10)" rx="2" ry="2" />
<text x="382.12" y="767.5" ></text>
</g>
<g >
<title>__check_object_size (3 samples, 0.01%)</title><rect x="346.9" y="661" width="0.2" height="15.0" fill="rgb(251,187,53)" rx="2" ry="2" />
<text x="349.94" y="671.5" ></text>
</g>
<g >
<title>tick_sched_handle (11 samples, 0.05%)</title><rect x="521.9" y="677" width="0.5" height="15.0" fill="rgb(212,16,3)" rx="2" ry="2" />
<text x="524.86" y="687.5" ></text>
</g>
<g >
<title>ipv4_dst_check (3 samples, 0.01%)</title><rect x="348.7" y="549" width="0.2" height="15.0" fill="rgb(207,8,34)" rx="2" ry="2" />
<text x="351.70" y="559.5" ></text>
</g>
<g >
<title>ttwu_do_activate (12 samples, 0.05%)</title><rect x="354.3" y="117" width="0.6" height="15.0" fill="rgb(251,219,53)" rx="2" ry="2" />
<text x="357.29" y="127.5" ></text>
</g>
<g >
<title>x86_pmu_disable (34 samples, 0.15%)</title><rect x="44.6" y="693" width="1.7" height="15.0" fill="rgb(216,38,5)" rx="2" ry="2" />
<text x="47.59" y="703.5" ></text>
</g>
<g >
<title>schedule (22 samples, 0.09%)</title><rect x="484.5" y="805" width="1.1" height="15.0" fill="rgb(249,11,8)" rx="2" ry="2" />
<text x="487.50" y="815.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1022.9" y="725" width="0.1" height="15.0" fill="rgb(235,134,12)" rx="2" ry="2" />
<text x="1025.89" y="735.5" ></text>
</g>
<g >
<title>_ZNK2yb12HdrHistogram11BucketIndexEm (2 samples, 0.01%)</title><rect x="621.3" y="853" width="0.1" height="15.0" fill="rgb(222,165,22)" rx="2" ry="2" />
<text x="624.30" y="863.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="372.3" y="597" width="0.1" height="15.0" fill="rgb(241,117,49)" rx="2" ry="2" />
<text x="375.32" y="607.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (8 samples, 0.03%)</title><rect x="382.9" y="693" width="0.4" height="15.0" fill="rgb(231,183,48)" rx="2" ry="2" />
<text x="385.94" y="703.5" ></text>
</g>
<g >
<title>timerqueue_del (3 samples, 0.01%)</title><rect x="413.0" y="741" width="0.1" height="15.0" fill="rgb(222,174,50)" rx="2" ry="2" />
<text x="415.95" y="751.5" ></text>
</g>
<g >
<title>delayed_work_timer_fn (2 samples, 0.01%)</title><rect x="113.7" y="645" width="0.1" height="15.0" fill="rgb(224,55,39)" rx="2" ry="2" />
<text x="116.72" y="655.5" ></text>
</g>
<g >
<title>plist_add (2 samples, 0.01%)</title><rect x="559.1" y="805" width="0.1" height="15.0" fill="rgb(210,169,7)" rx="2" ry="2" />
<text x="562.12" y="815.5" ></text>
</g>
<g >
<title>_ZN7rocksdb14StatisticsImpl10recordTickEjm (250 samples, 1.07%)</title><rect x="849.5" y="677" width="12.6" height="15.0" fill="rgb(251,214,54)" rx="2" ry="2" />
<text x="852.48" y="687.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (5 samples, 0.02%)</title><rect x="601.9" y="805" width="0.2" height="15.0" fill="rgb(252,201,38)" rx="2" ry="2" />
<text x="604.86" y="815.5" ></text>
</g>
<g >
<title>_ZThn568_N2yb7tserver12TabletServer18tablet_peer_lookupEv (2 samples, 0.01%)</title><rect x="738.1" y="869" width="0.1" height="15.0" fill="rgb(229,133,4)" rx="2" ry="2" />
<text x="741.11" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus4Peer13SignalRequestENS0_18RequestTriggerModeE (17 samples, 0.07%)</title><rect x="490.2" y="837" width="0.8" height="15.0" fill="rgb(207,37,34)" rx="2" ry="2" />
<text x="493.19" y="847.5" ></text>
</g>
<g >
<title>update_process_times (9 samples, 0.04%)</title><rect x="614.0" y="693" width="0.5" height="15.0" fill="rgb(229,86,36)" rx="2" ry="2" />
<text x="617.05" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13SatisfyBoundsERKNS_5SliceE@plt (7 samples, 0.03%)</title><rect x="914.1" y="773" width="0.4" height="15.0" fill="rgb(227,181,4)" rx="2" ry="2" />
<text x="917.13" y="783.5" ></text>
</g>
<g >
<title>futex_wake (5 samples, 0.02%)</title><rect x="1061.7" y="853" width="0.3" height="15.0" fill="rgb(225,222,21)" rx="2" ry="2" />
<text x="1064.71" y="863.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (3 samples, 0.01%)</title><rect x="1185.3" y="789" width="0.2" height="15.0" fill="rgb(226,211,15)" rx="2" ry="2" />
<text x="1188.32" y="799.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="963.1" y="501" width="0.2" height="15.0" fill="rgb(218,186,35)" rx="2" ry="2" />
<text x="966.12" y="511.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (10 samples, 0.04%)</title><rect x="390.2" y="821" width="0.5" height="15.0" fill="rgb(236,82,15)" rx="2" ry="2" />
<text x="393.19" y="831.5" ></text>
</g>
<g >
<title>do_softirq (95 samples, 0.41%)</title><rect x="351.8" y="485" width="4.8" height="15.0" fill="rgb(223,84,12)" rx="2" ry="2" />
<text x="354.78" y="495.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (7 samples, 0.03%)</title><rect x="499.8" y="757" width="0.4" height="15.0" fill="rgb(212,162,18)" rx="2" ry="2" />
<text x="502.80" y="767.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (72 samples, 0.31%)</title><rect x="109.6" y="693" width="3.6" height="15.0" fill="rgb(254,89,52)" rx="2" ry="2" />
<text x="112.59" y="703.5" ></text>
</g>
<g >
<title>update_process_times (29 samples, 0.12%)</title><rect x="474.1" y="677" width="1.5" height="15.0" fill="rgb(225,105,3)" rx="2" ry="2" />
<text x="477.13" y="687.5" ></text>
</g>
<g >
<title>sys_futex (775 samples, 3.31%)</title><rect x="557.2" y="869" width="39.0" height="15.0" fill="rgb(212,120,9)" rx="2" ry="2" />
<text x="560.15" y="879.5" >sys..</text>
</g>
<g >
<title>_ZNSt11unique_lockISt5mutexE6unlockEv (5 samples, 0.02%)</title><rect x="540.0" y="901" width="0.2" height="15.0" fill="rgb(254,105,19)" rx="2" ry="2" />
<text x="542.98" y="911.5" ></text>
</g>
<g >
<title>__clock_gettime (5 samples, 0.02%)</title><rect x="618.1" y="949" width="0.3" height="15.0" fill="rgb(247,110,38)" rx="2" ry="2" />
<text x="621.13" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator22SeekIntentIterIfNeededEv (2,893 samples, 12.34%)</title><rect x="913.3" y="789" width="145.7" height="15.0" fill="rgb(235,225,17)" rx="2" ry="2" />
<text x="916.33" y="799.5" >_ZN2yb5docdb19Inte..</text>
</g>
<g >
<title>[unknown] (8 samples, 0.03%)</title><rect x="556.4" y="901" width="0.4" height="15.0" fill="rgb(232,59,21)" rx="2" ry="2" />
<text x="559.40" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor21FindOrStartConnectionERKNS0_12ConnectionIdERKSsRKNS_8MonoTimeEPSt10shared_ptrINS0_10ConnectionEE (9 samples, 0.04%)</title><rect x="364.7" y="837" width="0.5" height="15.0" fill="rgb(234,213,6)" rx="2" ry="2" />
<text x="367.71" y="847.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (6 samples, 0.03%)</title><rect x="341.6" y="197" width="0.3" height="15.0" fill="rgb(232,140,33)" rx="2" ry="2" />
<text x="344.55" y="207.5" ></text>
</g>
<g >
<title>x86_pmu_enable (560 samples, 2.39%)</title><rect x="168.0" y="709" width="28.2" height="15.0" fill="rgb(240,156,51)" rx="2" ry="2" />
<text x="171.05" y="719.5" >x..</text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (7 samples, 0.03%)</title><rect x="473.5" y="773" width="0.3" height="15.0" fill="rgb(214,48,34)" rx="2" ry="2" />
<text x="476.47" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream10PopSendingEv (2 samples, 0.01%)</title><rect x="344.7" y="789" width="0.1" height="15.0" fill="rgb(235,14,26)" rx="2" ry="2" />
<text x="347.73" y="799.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4 samples, 0.02%)</title><rect x="970.5" y="709" width="0.2" height="15.0" fill="rgb(246,154,28)" rx="2" ry="2" />
<text x="973.52" y="719.5" ></text>
</g>
<g >
<title>account_process_tick (2 samples, 0.01%)</title><rect x="109.9" y="629" width="0.1" height="15.0" fill="rgb(248,212,22)" rx="2" ry="2" />
<text x="112.89" y="639.5" ></text>
</g>
<g >
<title>__sk_dst_check (4 samples, 0.02%)</title><rect x="348.7" y="565" width="0.2" height="15.0" fill="rgb(224,5,51)" rx="2" ry="2" />
<text x="351.65" y="575.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4NextEv (1,384 samples, 5.91%)</title><rect x="976.9" y="757" width="69.7" height="15.0" fill="rgb(245,214,41)" rx="2" ry="2" />
<text x="979.87" y="767.5" >_ZN7roc..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="419.7" y="837" width="0.1" height="15.0" fill="rgb(213,229,35)" rx="2" ry="2" />
<text x="422.70" y="847.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (9 samples, 0.04%)</title><rect x="528.2" y="933" width="0.5" height="15.0" fill="rgb(215,211,47)" rx="2" ry="2" />
<text x="531.20" y="943.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4 samples, 0.02%)</title><rect x="524.8" y="901" width="0.2" height="15.0" fill="rgb(234,144,5)" rx="2" ry="2" />
<text x="527.83" y="911.5" ></text>
</g>
<g >
<title>__blk_run_queue (4 samples, 0.02%)</title><rect x="395.7" y="597" width="0.2" height="15.0" fill="rgb(228,177,12)" rx="2" ry="2" />
<text x="398.73" y="607.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb20KeyValueWriteBatchPB12ByteSizeLongEv (3 samples, 0.01%)</title><rect x="549.3" y="821" width="0.1" height="15.0" fill="rgb(233,54,1)" rx="2" ry="2" />
<text x="552.30" y="831.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="531.4" y="789" width="0.3" height="15.0" fill="rgb(243,39,8)" rx="2" ry="2" />
<text x="534.37" y="799.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1059.9" y="901" width="0.1" height="15.0" fill="rgb(239,49,13)" rx="2" ry="2" />
<text x="1062.95" y="911.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.14 (5 samples, 0.02%)</title><rect x="168.2" y="677" width="0.3" height="15.0" fill="rgb(224,89,0)" rx="2" ry="2" />
<text x="171.25" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache23PrepareAppendOperationsERKSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS5_EE (40 samples, 0.17%)</title><rect x="493.3" y="805" width="2.0" height="15.0" fill="rgb(212,14,39)" rx="2" ry="2" />
<text x="496.31" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver19PrepareAndStartTaskEv (50 samples, 0.21%)</title><rect x="487.5" y="885" width="2.5" height="15.0" fill="rgb(232,204,14)" rx="2" ry="2" />
<text x="490.47" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb6DocKey11EncodedSizeENS_5SliceENS0_10DocKeyPartENS_17StronglyTypedBoolINS0_16AllowSpecial_TagEEE (2 samples, 0.01%)</title><rect x="533.6" y="645" width="0.1" height="15.0" fill="rgb(248,145,2)" rx="2" ry="2" />
<text x="536.64" y="655.5" ></text>
</g>
<g >
<title>ep_poll (4 samples, 0.02%)</title><rect x="394.9" y="837" width="0.2" height="15.0" fill="rgb(208,62,50)" rx="2" ry="2" />
<text x="397.92" y="847.5" ></text>
</g>
<g >
<title>sys_futex (8 samples, 0.03%)</title><rect x="599.6" y="885" width="0.5" height="15.0" fill="rgb(239,128,17)" rx="2" ry="2" />
<text x="602.65" y="895.5" ></text>
</g>
<g >
<title>skb_release_data (2 samples, 0.01%)</title><rect x="342.1" y="181" width="0.1" height="15.0" fill="rgb(215,174,29)" rx="2" ry="2" />
<text x="345.11" y="191.5" ></text>
</g>
<g >
<title>__wake_up_common (8 samples, 0.03%)</title><rect x="342.3" y="133" width="0.4" height="15.0" fill="rgb(236,109,52)" rx="2" ry="2" />
<text x="345.26" y="143.5" ></text>
</g>
<g >
<title>rw_copy_check_uvector (2 samples, 0.01%)</title><rect x="382.0" y="709" width="0.1" height="15.0" fill="rgb(212,95,41)" rx="2" ry="2" />
<text x="384.98" y="719.5" ></text>
</g>
<g >
<title>sys_pwritev (26 samples, 0.11%)</title><rect x="401.6" y="789" width="1.3" height="15.0" fill="rgb(218,130,36)" rx="2" ry="2" />
<text x="404.57" y="799.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (19 samples, 0.08%)</title><rect x="430.1" y="805" width="0.9" height="15.0" fill="rgb(238,5,41)" rx="2" ry="2" />
<text x="433.07" y="815.5" ></text>
</g>
<g >
<title>_ZNSsC2ERKSs (2 samples, 0.01%)</title><rect x="534.5" y="693" width="0.1" height="15.0" fill="rgb(215,221,45)" rx="2" ry="2" />
<text x="537.49" y="703.5" ></text>
</g>
<g >
<title>__perf_event_enable (4 samples, 0.02%)</title><rect x="437.1" y="789" width="0.2" height="15.0" fill="rgb(239,138,6)" rx="2" ry="2" />
<text x="440.07" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus4Peer23StartProcessingUnlockedEv (2 samples, 0.01%)</title><rect x="772.8" y="885" width="0.1" height="15.0" fill="rgb(217,52,39)" rx="2" ry="2" />
<text x="775.75" y="895.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13RequestHeaderC1Ev (2 samples, 0.01%)</title><rect x="369.1" y="757" width="0.1" height="15.0" fill="rgb(210,181,36)" rx="2" ry="2" />
<text x="372.10" y="767.5" ></text>
</g>
<g >
<title>sys_futex (20 samples, 0.09%)</title><rect x="375.8" y="677" width="1.0" height="15.0" fill="rgb(248,184,30)" rx="2" ry="2" />
<text x="378.84" y="687.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail18completion_handlerINS1_17rewrapped_handlerINS1_7binder1INS1_15wrapped_handlerINS0_10io_context6strandESt5_BindIFSt7_Mem_fnIMN2yb3rpc9Scheduler4ImplEFvRKNS_6system10error_codeEEEPSD_St12_PlaceholderILi1EEEENS1_26is_continuation_if_runningEEESF_EESP_EEE11do_completeEPvPNS1_19scheduler_operationESH_m (68 samples, 0.29%)</title><rect x="424.0" y="885" width="3.4" height="15.0" fill="rgb(221,132,27)" rx="2" ry="2" />
<text x="426.98" y="895.5" ></text>
</g>
<g >
<title>deactivate_task (70 samples, 0.30%)</title><rect x="47.9" y="757" width="3.5" height="15.0" fill="rgb(254,153,24)" rx="2" ry="2" />
<text x="50.91" y="767.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb@plt (3 samples, 0.01%)</title><rect x="646.0" y="693" width="0.1" height="15.0" fill="rgb(240,63,23)" rx="2" ry="2" />
<text x="648.97" y="703.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4 samples, 0.02%)</title><rect x="423.6" y="901" width="0.2" height="15.0" fill="rgb(228,130,54)" rx="2" ry="2" />
<text x="426.57" y="911.5" ></text>
</g>
<g >
<title>import_iovec (2 samples, 0.01%)</title><rect x="382.0" y="725" width="0.1" height="15.0" fill="rgb(221,220,14)" rx="2" ry="2" />
<text x="384.98" y="735.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv@plt (4 samples, 0.02%)</title><rect x="735.9" y="709" width="0.2" height="15.0" fill="rgb(218,157,9)" rx="2" ry="2" />
<text x="738.89" y="719.5" ></text>
</g>
<g >
<title>unroll_tree_refs (3 samples, 0.01%)</title><rect x="124.1" y="821" width="0.1" height="15.0" fill="rgb(219,119,39)" rx="2" ry="2" />
<text x="127.09" y="831.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKSs (3 samples, 0.01%)</title><rect x="754.1" y="837" width="0.2" height="15.0" fill="rgb(230,139,49)" rx="2" ry="2" />
<text x="757.12" y="847.5" ></text>
</g>
<g >
<title>update_process_times (89 samples, 0.38%)</title><rect x="1174.9" y="677" width="4.5" height="15.0" fill="rgb(239,154,32)" rx="2" ry="2" />
<text x="1177.90" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer24NewLeaderOperationDriverEPSt10unique_ptrINS0_9OperationESt14default_deleteIS3_EEl (4 samples, 0.02%)</title><rect x="624.0" y="789" width="0.2" height="15.0" fill="rgb(232,36,5)" rx="2" ry="2" />
<text x="627.02" y="799.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.02%)</title><rect x="399.9" y="693" width="0.2" height="15.0" fill="rgb(224,24,6)" rx="2" ry="2" />
<text x="402.86" y="703.5" ></text>
</g>
<g >
<title>xfs_log_commit_cil (3 samples, 0.01%)</title><rect x="402.0" y="597" width="0.2" height="15.0" fill="rgb(226,221,54)" rx="2" ry="2" />
<text x="405.02" y="607.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (6 samples, 0.03%)</title><rect x="433.4" y="837" width="0.3" height="15.0" fill="rgb(247,114,10)" rx="2" ry="2" />
<text x="436.39" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet11MvccManager10AddPendingEPNS_10HybridTimeE (2 samples, 0.01%)</title><rect x="491.5" y="789" width="0.1" height="15.0" fill="rgb(253,140,51)" rx="2" ry="2" />
<text x="494.50" y="799.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (3 samples, 0.01%)</title><rect x="338.7" y="629" width="0.2" height="15.0" fill="rgb(233,49,42)" rx="2" ry="2" />
<text x="341.73" y="639.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.04%)</title><rect x="424.7" y="805" width="0.5" height="15.0" fill="rgb(254,217,50)" rx="2" ry="2" />
<text x="427.73" y="815.5" ></text>
</g>
<g >
<title>kfree (2 samples, 0.01%)</title><rect x="123.6" y="821" width="0.1" height="15.0" fill="rgb(241,114,1)" rx="2" ry="2" />
<text x="126.59" y="831.5" ></text>
</g>
<g >
<title>update_process_times (5 samples, 0.02%)</title><rect x="1188.3" y="677" width="0.3" height="15.0" fill="rgb(215,91,18)" rx="2" ry="2" />
<text x="1191.34" y="687.5" ></text>
</g>
<g >
<title>tc_newarray (10 samples, 0.04%)</title><rect x="741.1" y="789" width="0.5" height="15.0" fill="rgb(221,92,35)" rx="2" ry="2" />
<text x="744.08" y="799.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicateMsg11GetMetadataEv (3 samples, 0.01%)</title><rect x="493.7" y="789" width="0.1" height="15.0" fill="rgb(249,0,6)" rx="2" ry="2" />
<text x="496.66" y="799.5" ></text>
</g>
<g >
<title>blk_flush_plug_list (4 samples, 0.02%)</title><rect x="395.7" y="629" width="0.2" height="15.0" fill="rgb(205,57,29)" rx="2" ry="2" />
<text x="398.73" y="639.5" ></text>
</g>
<g >
<title>_ZN3cds9intrusive11BasketQueueINS_2gc3DHPENS_9container7details17make_basket_queueIS3_PN2yb3rpc14ThreadPoolTaskENS4_12basket_queue6traitsEE9node_typeENSD_16intrusive_traitsEE7enqueueERSE_ (5 samples, 0.02%)</title><rect x="535.0" y="693" width="0.3" height="15.0" fill="rgb(212,70,36)" rx="2" ry="2" />
<text x="538.05" y="703.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (2 samples, 0.01%)</title><rect x="531.6" y="693" width="0.1" height="15.0" fill="rgb(236,86,46)" rx="2" ry="2" />
<text x="534.57" y="703.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (2 samples, 0.01%)</title><rect x="492.8" y="645" width="0.1" height="15.0" fill="rgb(239,129,36)" rx="2" ry="2" />
<text x="495.75" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (1,443 samples, 6.16%)</title><rect x="529.2" y="949" width="72.6" height="15.0" fill="rgb(232,182,41)" rx="2" ry="2" />
<text x="532.16" y="959.5" >_ZN2yb6T..</text>
</g>
<g >
<title>__schedule (4 samples, 0.02%)</title><rect x="396.1" y="709" width="0.2" height="15.0" fill="rgb(217,117,15)" rx="2" ry="2" />
<text x="399.13" y="719.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (6 samples, 0.03%)</title><rect x="109.1" y="741" width="0.3" height="15.0" fill="rgb(236,200,39)" rx="2" ry="2" />
<text x="112.09" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb15DecodeIntentKeyERKNS_5SliceE (8 samples, 0.03%)</title><rect x="917.3" y="757" width="0.4" height="15.0" fill="rgb(232,205,13)" rx="2" ry="2" />
<text x="920.31" y="767.5" ></text>
</g>
<g >
<title>finish_task_switch (51 samples, 0.22%)</title><rect x="420.9" y="773" width="2.5" height="15.0" fill="rgb(253,98,43)" rx="2" ry="2" />
<text x="423.86" y="783.5" ></text>
</g>
<g >
<title>trigger_load_balance (22 samples, 0.09%)</title><rect x="474.5" y="645" width="1.1" height="15.0" fill="rgb(228,223,4)" rx="2" ry="2" />
<text x="477.48" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb14IoVecsFullSizeERKN5boost9container12small_vectorI5iovecLm4ENS1_13new_allocatorIS3_EEEE (4 samples, 0.02%)</title><rect x="373.6" y="805" width="0.2" height="15.0" fill="rgb(247,152,4)" rx="2" ry="2" />
<text x="376.63" y="815.5" ></text>
</g>
<g >
<title>__fdget_pos (2 samples, 0.01%)</title><rect x="545.7" y="693" width="0.1" height="15.0" fill="rgb(214,216,7)" rx="2" ry="2" />
<text x="548.72" y="703.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_116TwoLevelIterator5valueEv (3 samples, 0.01%)</title><rect x="1039.1" y="741" width="0.1" height="15.0" fill="rgb(219,42,49)" rx="2" ry="2" />
<text x="1042.05" y="751.5" ></text>
</g>
<g >
<title>try_to_wake_up (35 samples, 0.15%)</title><rect x="441.4" y="837" width="1.8" height="15.0" fill="rgb(209,56,47)" rx="2" ry="2" />
<text x="444.45" y="847.5" ></text>
</g>
<g >
<title>__dta_xfs_file_iomap_begin_3393 (2 samples, 0.01%)</title><rect x="402.5" y="645" width="0.1" height="15.0" fill="rgb(235,181,1)" rx="2" ry="2" />
<text x="405.53" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue13UpdateMetricsEv (4 samples, 0.02%)</title><rect x="764.4" y="853" width="0.2" height="15.0" fill="rgb(243,140,25)" rx="2" ry="2" />
<text x="767.44" y="863.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (3 samples, 0.01%)</title><rect x="109.6" y="677" width="0.2" height="15.0" fill="rgb(225,95,28)" rx="2" ry="2" />
<text x="112.64" y="687.5" ></text>
</g>
<g >
<title>_ZNSt6chrono3_V212steady_clock3nowEv (4 samples, 0.02%)</title><rect x="554.1" y="917" width="0.2" height="15.0" fill="rgb(234,212,51)" rx="2" ry="2" />
<text x="557.08" y="927.5" ></text>
</g>
<g >
<title>__lll_lock_wait (20 samples, 0.09%)</title><rect x="434.1" y="933" width="1.1" height="15.0" fill="rgb(243,34,10)" rx="2" ry="2" />
<text x="437.15" y="943.5" ></text>
</g>
<g >
<title>update_process_times (2 samples, 0.01%)</title><rect x="667.5" y="565" width="0.1" height="15.0" fill="rgb(207,0,15)" rx="2" ry="2" />
<text x="670.52" y="575.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (5 samples, 0.02%)</title><rect x="962.9" y="645" width="0.2" height="15.0" fill="rgb(228,186,37)" rx="2" ry="2" />
<text x="965.87" y="655.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (26 samples, 0.11%)</title><rect x="35.2" y="821" width="1.3" height="15.0" fill="rgb(205,136,16)" rx="2" ry="2" />
<text x="38.23" y="831.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io17CodedOutputStream15WriteRawToArrayEPKviPh (2 samples, 0.01%)</title><rect x="543.3" y="789" width="0.1" height="15.0" fill="rgb(241,27,17)" rx="2" ry="2" />
<text x="546.26" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus4Peer15ProcessResponseEv (2 samples, 0.01%)</title><rect x="773.1" y="901" width="0.1" height="15.0" fill="rgb(211,115,4)" rx="2" ry="2" />
<text x="776.10" y="911.5" ></text>
</g>
<g >
<title>do_timerfd_settime (12 samples, 0.05%)</title><rect x="433.3" y="853" width="0.6" height="15.0" fill="rgb(233,228,53)" rx="2" ry="2" />
<text x="436.29" y="863.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (78 samples, 0.33%)</title><rect x="38.0" y="789" width="3.9" height="15.0" fill="rgb(217,72,45)" rx="2" ry="2" />
<text x="40.99" y="799.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="490.6" y="661" width="0.1" height="15.0" fill="rgb(232,184,38)" rx="2" ry="2" />
<text x="493.64" y="671.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (35 samples, 0.15%)</title><rect x="392.2" y="869" width="1.7" height="15.0" fill="rgb(220,20,1)" rx="2" ry="2" />
<text x="395.16" y="879.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (9 samples, 0.04%)</title><rect x="614.0" y="757" width="0.5" height="15.0" fill="rgb(215,192,34)" rx="2" ry="2" />
<text x="617.05" y="767.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1061.0" y="917" width="0.2" height="15.0" fill="rgb(221,131,17)" rx="2" ry="2" />
<text x="1063.95" y="927.5" ></text>
</g>
<g >
<title>_ZN7rocksdb18ArenaWrappedDBIter4NextEv (5 samples, 0.02%)</title><rect x="841.0" y="693" width="0.3" height="15.0" fill="rgb(215,210,14)" rx="2" ry="2" />
<text x="844.02" y="703.5" ></text>
</g>
<g >
<title>tcp_rcv_established (43 samples, 0.18%)</title><rect x="353.0" y="277" width="2.2" height="15.0" fill="rgb(214,61,42)" rx="2" ry="2" />
<text x="356.03" y="287.5" ></text>
</g>
<g >
<title>native_write_msr (572 samples, 2.44%)</title><rect x="561.4" y="693" width="28.8" height="15.0" fill="rgb(207,67,16)" rx="2" ry="2" />
<text x="564.43" y="703.5" >na..</text>
</g>
<g >
<title>ttwu_do_activate (6 samples, 0.03%)</title><rect x="376.5" y="613" width="0.3" height="15.0" fill="rgb(227,108,11)" rx="2" ry="2" />
<text x="379.50" y="623.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (5 samples, 0.02%)</title><rect x="201.2" y="709" width="0.2" height="15.0" fill="rgb(230,155,26)" rx="2" ry="2" />
<text x="204.18" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5ValidEv (9 samples, 0.04%)</title><rect x="1050.2" y="757" width="0.5" height="15.0" fill="rgb(234,55,52)" rx="2" ry="2" />
<text x="1053.23" y="767.5" ></text>
</g>
<g >
<title>skb_free_head (2 samples, 0.01%)</title><rect x="387.8" y="229" width="0.1" height="15.0" fill="rgb(250,220,52)" rx="2" ry="2" />
<text x="390.78" y="239.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (2 samples, 0.01%)</title><rect x="382.8" y="677" width="0.1" height="15.0" fill="rgb(212,30,48)" rx="2" ry="2" />
<text x="385.79" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (129 samples, 0.55%)</title><rect x="338.0" y="757" width="6.5" height="15.0" fill="rgb(209,98,34)" rx="2" ry="2" />
<text x="340.98" y="767.5" ></text>
</g>
<g >
<title>_ZN7rocksdb14StatisticsImpl10recordTickEjm (254 samples, 1.08%)</title><rect x="984.1" y="741" width="12.8" height="15.0" fill="rgb(227,104,19)" rx="2" ry="2" />
<text x="987.12" y="751.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (3 samples, 0.01%)</title><rect x="443.2" y="885" width="0.2" height="15.0" fill="rgb(244,3,30)" rx="2" ry="2" />
<text x="446.21" y="895.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.02%)</title><rect x="398.2" y="613" width="0.2" height="15.0" fill="rgb(244,88,10)" rx="2" ry="2" />
<text x="401.20" y="623.5" ></text>
</g>
<g >
<title>futex_wait_setup (18 samples, 0.08%)</title><rect x="476.9" y="837" width="1.0" height="15.0" fill="rgb(249,48,36)" rx="2" ry="2" />
<text x="479.94" y="847.5" ></text>
</g>
<g >
<title>__tls_get_addr (14 samples, 0.06%)</title><rect x="884.7" y="661" width="0.7" height="15.0" fill="rgb(205,226,20)" rx="2" ry="2" />
<text x="887.73" y="671.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.14 (2 samples, 0.01%)</title><rect x="1078.0" y="709" width="0.1" height="15.0" fill="rgb(216,98,15)" rx="2" ry="2" />
<text x="1080.97" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (2 samples, 0.01%)</title><rect x="901.5" y="661" width="0.1" height="15.0" fill="rgb(251,27,51)" rx="2" ry="2" />
<text x="904.55" y="671.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBImpl11NewIteratorERKNS_11ReadOptionsEPNS_18ColumnFamilyHandleE (4 samples, 0.02%)</title><rect x="631.7" y="645" width="0.2" height="15.0" fill="rgb(207,156,17)" rx="2" ry="2" />
<text x="634.67" y="655.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (670 samples, 2.86%)</title><rect x="558.7" y="821" width="33.7" height="15.0" fill="rgb(224,37,44)" rx="2" ry="2" />
<text x="561.66" y="831.5" >fu..</text>
</g>
<g >
<title>ttwu_do_activate (5 samples, 0.02%)</title><rect x="490.8" y="677" width="0.2" height="15.0" fill="rgb(248,112,47)" rx="2" ry="2" />
<text x="493.79" y="687.5" ></text>
</g>
<g >
<title>x86_pmu_enable (53 samples, 0.23%)</title><rect x="1185.7" y="741" width="2.6" height="15.0" fill="rgb(252,34,42)" rx="2" ry="2" />
<text x="1188.67" y="751.5" ></text>
</g>
<g >
<title>_ZN37protobuf_yb_2fcommon_2fcommon_2eproto22InitDefaultsHostPortPBEv@plt (2 samples, 0.01%)</title><rect x="769.0" y="805" width="0.1" height="15.0" fill="rgb(246,202,30)" rx="2" ry="2" />
<text x="772.02" y="815.5" ></text>
</g>
<g >
<title>remote_function (4 samples, 0.02%)</title><rect x="963.1" y="597" width="0.2" height="15.0" fill="rgb(218,126,29)" rx="2" ry="2" />
<text x="966.12" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream7DoWriteEv (303 samples, 1.29%)</title><rect x="346.2" y="821" width="15.3" height="15.0" fill="rgb(228,196,0)" rx="2" ry="2" />
<text x="349.24" y="831.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10 samples, 0.04%)</title><rect x="356.6" y="469" width="0.5" height="15.0" fill="rgb(214,88,42)" rx="2" ry="2" />
<text x="359.61" y="479.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5valueEv (5 samples, 0.02%)</title><rect x="1042.3" y="709" width="0.2" height="15.0" fill="rgb(253,43,43)" rx="2" ry="2" />
<text x="1045.27" y="719.5" ></text>
</g>
<g >
<title>_ZNK2yb6subtle24RefCountedThreadSafeBase6AddRefEv (4 samples, 0.02%)</title><rect x="760.5" y="901" width="0.2" height="15.0" fill="rgb(229,158,23)" rx="2" ry="2" />
<text x="763.52" y="911.5" ></text>
</g>
<g >
<title>sys_futex (37 samples, 0.16%)</title><rect x="754.9" y="789" width="1.8" height="15.0" fill="rgb(231,17,0)" rx="2" ry="2" />
<text x="757.88" y="799.5" ></text>
</g>
<g >
<title>tick_sched_timer (12 samples, 0.05%)</title><rect x="521.8" y="693" width="0.6" height="15.0" fill="rgb(225,0,34)" rx="2" ry="2" />
<text x="524.81" y="703.5" ></text>
</g>
<g >
<title>perf_pmu_disable (3 samples, 0.01%)</title><rect x="110.4" y="597" width="0.1" height="15.0" fill="rgb(218,185,36)" rx="2" ry="2" />
<text x="113.40" y="607.5" ></text>
</g>
<g >
<title>__pthread_rwlock_rdlock (9 samples, 0.04%)</title><rect x="218.4" y="949" width="0.5" height="15.0" fill="rgb(254,179,12)" rx="2" ry="2" />
<text x="221.45" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker7ConsumeEl (2 samples, 0.01%)</title><rect x="362.8" y="773" width="0.1" height="15.0" fill="rgb(243,136,17)" rx="2" ry="2" />
<text x="365.80" y="783.5" ></text>
</g>
<g >
<title>tcp_ack (18 samples, 0.08%)</title><rect x="387.3" y="309" width="0.9" height="15.0" fill="rgb(233,212,52)" rx="2" ry="2" />
<text x="390.27" y="319.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10RpcContext14RespondSuccessEv (2 samples, 0.01%)</title><rect x="1059.3" y="869" width="0.1" height="15.0" fill="rgb(216,86,31)" rx="2" ry="2" />
<text x="1062.34" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb15CoarseMonoClock3nowEv (2 samples, 0.01%)</title><rect x="135.2" y="885" width="0.1" height="15.0" fill="rgb(241,176,33)" rx="2" ry="2" />
<text x="138.22" y="895.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal32StringSpaceUsedExcludingSelfLongERKSs (2 samples, 0.01%)</title><rect x="494.9" y="725" width="0.1" height="15.0" fill="rgb(245,86,24)" rx="2" ry="2" />
<text x="497.92" y="735.5" ></text>
</g>
<g >
<title>trigger_load_balance (86 samples, 0.37%)</title><rect x="1175.0" y="645" width="4.4" height="15.0" fill="rgb(223,196,43)" rx="2" ry="2" />
<text x="1178.05" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb10MemTracker7ConsumeEl (7 samples, 0.03%)</title><rect x="739.0" y="837" width="0.3" height="15.0" fill="rgb(242,92,27)" rx="2" ry="2" />
<text x="741.97" y="847.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (2 samples, 0.01%)</title><rect x="879.8" y="645" width="0.1" height="15.0" fill="rgb(251,175,19)" rx="2" ry="2" />
<text x="882.79" y="655.5" ></text>
</g>
<g >
<title>_ZN5boost6detail8function21function_obj_invoker3ISt17reference_wrapperIN2yb5docdb34PrepareTransactionWriteBatchHelperEENS4_6StatusENS5_14IntentStrengthENS4_5SliceEPNS5_8KeyBytesEE6invokeERNS1_15function_bufferES9_SA_SC_ (3 samples, 0.01%)</title><rect x="533.7" y="645" width="0.2" height="15.0" fill="rgb(216,9,18)" rx="2" ry="2" />
<text x="536.74" y="655.5" ></text>
</g>
<g >
<title>sys_futex (5 samples, 0.02%)</title><rect x="601.9" y="853" width="0.2" height="15.0" fill="rgb(232,146,46)" rx="2" ry="2" />
<text x="604.86" y="863.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10 samples, 0.04%)</title><rect x="235.8" y="773" width="0.5" height="15.0" fill="rgb(219,118,28)" rx="2" ry="2" />
<text x="238.77" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream11ReadHandlerEv (470 samples, 2.01%)</title><rect x="367.5" y="869" width="23.7" height="15.0" fill="rgb(224,26,35)" rx="2" ry="2" />
<text x="370.53" y="879.5" >_..</text>
</g>
<g >
<title>_ZN2yb3rpc10Connection15ProcessReceivedERKN5boost9container12small_vectorI5iovecLm4ENS3_13new_allocatorIS5_EEEENS_17StronglyTypedBoolINS0_18ReadBufferFull_TagEEE (221 samples, 0.94%)</title><rect x="368.5" y="837" width="11.1" height="15.0" fill="rgb(249,130,50)" rx="2" ry="2" />
<text x="371.49" y="847.5" ></text>
</g>
<g >
<title>resched_curr (4 samples, 0.02%)</title><rect x="756.4" y="677" width="0.2" height="15.0" fill="rgb(211,141,39)" rx="2" ry="2" />
<text x="759.39" y="687.5" ></text>
</g>
<g >
<title>select_idle_sibling (2 samples, 0.01%)</title><rect x="354.1" y="101" width="0.1" height="15.0" fill="rgb(218,153,45)" rx="2" ry="2" />
<text x="357.14" y="111.5" ></text>
</g>
<g >
<title>nohz_balance_exit_idle (2 samples, 0.01%)</title><rect x="614.4" y="645" width="0.1" height="15.0" fill="rgb(239,203,42)" rx="2" ry="2" />
<text x="617.40" y="655.5" ></text>
</g>
<g >
<title>futex_wake (30 samples, 0.13%)</title><rect x="437.5" y="853" width="1.5" height="15.0" fill="rgb(226,161,22)" rx="2" ry="2" />
<text x="440.47" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb8MonoTime8AddDeltaERKNS_9MonoDeltaE (2 samples, 0.01%)</title><rect x="365.2" y="837" width="0.1" height="15.0" fill="rgb(212,201,22)" rx="2" ry="2" />
<text x="368.17" y="847.5" ></text>
</g>
<g >
<title>trigger_load_balance (3 samples, 0.01%)</title><rect x="398.2" y="501" width="0.1" height="15.0" fill="rgb(231,73,26)" rx="2" ry="2" />
<text x="401.20" y="511.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (33 samples, 0.14%)</title><rect x="522.8" y="805" width="1.7" height="15.0" fill="rgb(230,46,35)" rx="2" ry="2" />
<text x="525.81" y="815.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb18ArenaWrappedDBIter3keyEv (23 samples, 0.10%)</title><rect x="969.4" y="741" width="1.1" height="15.0" fill="rgb(212,35,47)" rx="2" ry="2" />
<text x="972.37" y="751.5" ></text>
</g>
<g >
<title>_ZN5boost4asio6detail14strand_service8dispatchIZN2yb3rpc9Scheduler4Impl10DoScheduleESt10shared_ptrINS5_17ScheduledTaskBaseEEEUlvE_EEvRPNS2_11strand_implERT_ (15 samples, 0.06%)</title><rect x="428.8" y="853" width="0.7" height="15.0" fill="rgb(252,100,5)" rx="2" ry="2" />
<text x="431.76" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.06%)</title><rect x="753.4" y="789" width="0.7" height="15.0" fill="rgb(252,191,45)" rx="2" ry="2" />
<text x="756.37" y="799.5" ></text>
</g>
<g >
<title>__fget_light (2 samples, 0.01%)</title><rect x="334.6" y="821" width="0.1" height="15.0" fill="rgb(212,221,17)" rx="2" ry="2" />
<text x="337.56" y="831.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv (9 samples, 0.04%)</title><rect x="1057.6" y="773" width="0.4" height="15.0" fill="rgb(211,91,17)" rx="2" ry="2" />
<text x="1060.58" y="783.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState14GetLeaderStateEv (2 samples, 0.01%)</title><rect x="737.8" y="805" width="0.1" height="15.0" fill="rgb(252,63,21)" rx="2" ry="2" />
<text x="740.76" y="815.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="363.8" y="789" width="0.1" height="15.0" fill="rgb(241,10,19)" rx="2" ry="2" />
<text x="366.76" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9Scheduler4Impl10StartTimerEv (15 samples, 0.06%)</title><rect x="424.5" y="837" width="0.8" height="15.0" fill="rgb(230,81,54)" rx="2" ry="2" />
<text x="427.53" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus11MaximumOpIdEv (2 samples, 0.01%)</title><rect x="761.9" y="869" width="0.1" height="15.0" fill="rgb(246,32,25)" rx="2" ry="2" />
<text x="764.87" y="879.5" ></text>
</g>
<g >
<title>sys_epoll_wait (4 samples, 0.02%)</title><rect x="394.7" y="853" width="0.2" height="15.0" fill="rgb(215,83,24)" rx="2" ry="2" />
<text x="397.72" y="863.5" ></text>
</g>
<g >
<title>scheduler_tick (31 samples, 0.13%)</title><rect x="197.2" y="629" width="1.5" height="15.0" fill="rgb(247,229,23)" rx="2" ry="2" />
<text x="200.15" y="639.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (4 samples, 0.02%)</title><rect x="231.2" y="821" width="0.2" height="15.0" fill="rgb(212,190,29)" rx="2" ry="2" />
<text x="234.24" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection13HandleTimeoutERN2ev5timerEi (2 samples, 0.01%)</title><rect x="333.0" y="901" width="0.1" height="15.0" fill="rgb(212,77,10)" rx="2" ry="2" />
<text x="336.04" y="911.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb15MergingIterator5valueEv (7 samples, 0.03%)</title><rect x="720.1" y="677" width="0.4" height="15.0" fill="rgb(242,171,7)" rx="2" ry="2" />
<text x="723.13" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall10ParseParamEPN6google8protobuf7MessageE (38 samples, 0.16%)</title><rect x="621.9" y="853" width="1.9" height="15.0" fill="rgb(249,178,24)" rx="2" ry="2" />
<text x="624.90" y="863.5" ></text>
</g>
<g >
<title>sys_epoll_wait (4 samples, 0.02%)</title><rect x="394.9" y="853" width="0.2" height="15.0" fill="rgb(212,181,31)" rx="2" ry="2" />
<text x="397.92" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb14NodeInstancePBC2Ev (2 samples, 0.01%)</title><rect x="377.4" y="709" width="0.1" height="15.0" fill="rgb(238,121,35)" rx="2" ry="2" />
<text x="380.35" y="719.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator4SeekERKN2yb5SliceEPKc (3 samples, 0.01%)</title><rect x="642.7" y="629" width="0.1" height="15.0" fill="rgb(243,36,21)" rx="2" ry="2" />
<text x="645.70" y="639.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb (318 samples, 1.36%)</title><rect x="693.5" y="677" width="16.0" height="15.0" fill="rgb(240,197,14)" rx="2" ry="2" />
<text x="696.50" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus18ConsensusRequestPB12ByteSizeLongEv (3 samples, 0.01%)</title><rect x="552.8" y="901" width="0.2" height="15.0" fill="rgb(238,8,36)" rx="2" ry="2" />
<text x="555.82" y="911.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (2 samples, 0.01%)</title><rect x="1073.5" y="773" width="0.1" height="15.0" fill="rgb(229,76,25)" rx="2" ry="2" />
<text x="1076.49" y="783.5" ></text>
</g>
<g >
<title>nf_hook_slow (3 samples, 0.01%)</title><rect x="388.3" y="373" width="0.1" height="15.0" fill="rgb(224,74,28)" rx="2" ry="2" />
<text x="391.28" y="383.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (2 samples, 0.01%)</title><rect x="747.2" y="629" width="0.1" height="15.0" fill="rgb(214,141,39)" rx="2" ry="2" />
<text x="750.17" y="639.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13SatisfyBoundsERKNS_5SliceE (45 samples, 0.19%)</title><rect x="970.7" y="757" width="2.3" height="15.0" fill="rgb(231,89,43)" rx="2" ry="2" />
<text x="973.73" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb7tserver21TabletServerServiceIf6HandleESt10shared_ptrINS_3rpc11InboundCallEE (2,314 samples, 9.87%)</title><rect x="621.9" y="885" width="116.5" height="15.0" fill="rgb(251,182,39)" rx="2" ry="2" />
<text x="624.85" y="895.5" >_ZN2yb7tserver..</text>
</g>
<g >
<title>enqueue_task_fair (2 samples, 0.01%)</title><rect x="376.5" y="581" width="0.1" height="15.0" fill="rgb(206,37,7)" rx="2" ry="2" />
<text x="379.50" y="591.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (26 samples, 0.11%)</title><rect x="480.4" y="917" width="1.3" height="15.0" fill="rgb(237,22,50)" rx="2" ry="2" />
<text x="483.37" y="927.5" ></text>
</g>
<g >
<title>pick_next_task_idle (4 samples, 0.02%)</title><rect x="326.1" y="757" width="0.2" height="15.0" fill="rgb(208,55,35)" rx="2" ry="2" />
<text x="329.10" y="767.5" ></text>
</g>
<g >
<title>perf_pmu_enable (43 samples, 0.18%)</title><rect x="421.2" y="741" width="2.1" height="15.0" fill="rgb(226,156,26)" rx="2" ry="2" />
<text x="424.16" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver15PrepareAndStartEv (46 samples, 0.20%)</title><rect x="487.7" y="869" width="2.3" height="15.0" fill="rgb(213,194,49)" rx="2" ry="2" />
<text x="490.67" y="879.5" ></text>
</g>
<g >
<title>__do_softirq (7 samples, 0.03%)</title><rect x="113.5" y="693" width="0.3" height="15.0" fill="rgb(209,181,39)" rx="2" ry="2" />
<text x="116.47" y="703.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter4SeekERKN2yb5SliceE (4 samples, 0.02%)</title><rect x="913.3" y="741" width="0.2" height="15.0" fill="rgb(254,200,12)" rx="2" ry="2" />
<text x="916.33" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc15ServicePoolImpl6HandleESt10shared_ptrINS0_11InboundCallEE (2,783 samples, 11.87%)</title><rect x="620.4" y="901" width="140.1" height="15.0" fill="rgb(232,171,18)" rx="2" ry="2" />
<text x="623.39" y="911.5" >_ZN2yb3rpc15Servi..</text>
</g>
<g >
<title>[libprofiler.so.0.4.18] (3 samples, 0.01%)</title><rect x="550.6" y="869" width="0.1" height="15.0" fill="rgb(235,34,23)" rx="2" ry="2" />
<text x="553.56" y="879.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3 samples, 0.01%)</title><rect x="371.9" y="661" width="0.2" height="15.0" fill="rgb(242,196,0)" rx="2" ry="2" />
<text x="374.92" y="671.5" ></text>
</g>
<g >
<title>tc_newarray (3 samples, 0.01%)</title><rect x="754.1" y="821" width="0.2" height="15.0" fill="rgb(231,36,34)" rx="2" ry="2" />
<text x="757.12" y="831.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_115ShardedLRUCache6LookupERKN2yb5SliceElPNS_10StatisticsE (4 samples, 0.02%)</title><rect x="1003.6" y="645" width="0.2" height="15.0" fill="rgb(208,173,36)" rx="2" ry="2" />
<text x="1006.55" y="655.5" ></text>
</g>
<g >
<title>tc_newarray (3 samples, 0.01%)</title><rect x="216.8" y="933" width="0.1" height="15.0" fill="rgb(235,184,28)" rx="2" ry="2" />
<text x="219.79" y="943.5" ></text>
</g>
<g >
<title>__wake_up_common (9 samples, 0.04%)</title><rect x="342.3" y="181" width="0.4" height="15.0" fill="rgb(210,60,45)" rx="2" ry="2" />
<text x="345.26" y="191.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.02%)</title><rect x="395.1" y="741" width="0.2" height="15.0" fill="rgb(214,77,4)" rx="2" ry="2" />
<text x="398.13" y="751.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1050.1" y="725" width="0.1" height="15.0" fill="rgb(228,204,9)" rx="2" ry="2" />
<text x="1053.13" y="735.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (100 samples, 0.43%)</title><rect x="320.7" y="725" width="5.0" height="15.0" fill="rgb(227,165,4)" rx="2" ry="2" />
<text x="323.71" y="735.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (30 samples, 0.13%)</title><rect x="590.6" y="709" width="1.5" height="15.0" fill="rgb(249,130,42)" rx="2" ry="2" />
<text x="593.58" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb6StatusC2ENS0_4CodeEPKciRKNS_5SliceES6_lNS_17StronglyTypedBoolINS_15DupFileName_TagEEE (3 samples, 0.01%)</title><rect x="380.3" y="821" width="0.2" height="15.0" fill="rgb(212,55,24)" rx="2" ry="2" />
<text x="383.32" y="831.5" ></text>
</g>
<g >
<title>sk_reset_timer (4 samples, 0.02%)</title><rect x="353.2" y="229" width="0.2" height="15.0" fill="rgb(206,104,31)" rx="2" ry="2" />
<text x="356.24" y="239.5" ></text>
</g>
<g >
<title>_ZN7rocksdb18ArenaWrappedDBIter4NextEv (2 samples, 0.01%)</title><rect x="976.4" y="757" width="0.1" height="15.0" fill="rgb(247,161,41)" rx="2" ry="2" />
<text x="979.42" y="767.5" ></text>
</g>
<g >
<title>trigger_load_balance (2 samples, 0.01%)</title><rect x="963.0" y="533" width="0.1" height="15.0" fill="rgb(220,228,21)" rx="2" ry="2" />
<text x="965.97" y="543.5" ></text>
</g>
<g >
<title>load_balance (3 samples, 0.01%)</title><rect x="325.9" y="741" width="0.2" height="15.0" fill="rgb(251,33,30)" rx="2" ry="2" />
<text x="328.95" y="751.5" ></text>
</g>
<g >
<title>native_write_msr (1,904 samples, 8.12%)</title><rect x="1078.1" y="709" width="95.8" height="15.0" fill="rgb(236,15,2)" rx="2" ry="2" />
<text x="1081.07" y="719.5" >native_writ..</text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="1038.5" y="661" width="0.2" height="15.0" fill="rgb(239,170,24)" rx="2" ry="2" />
<text x="1041.55" y="671.5" ></text>
</g>
<g >
<title>_ZNK17crcutil_interface14ImplementationIN7crcutil10Crc32cSSE4ENS1_17RollingCrc32cSSE4EE7ComputeEPKvmPmS7_ (2 samples, 0.01%)</title><rect x="403.1" y="853" width="0.1" height="15.0" fill="rgb(252,186,40)" rx="2" ry="2" />
<text x="406.13" y="863.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (32 samples, 0.14%)</title><rect x="341.3" y="277" width="1.6" height="15.0" fill="rgb(219,154,54)" rx="2" ry="2" />
<text x="344.30" y="287.5" ></text>
</g>
<g >
<title>_ZN7rocksdb15BlockBasedTable21GetDataBlockFromCacheERKN2yb5SliceES4_PNS_5CacheES6_PNS_10StatisticsERKNS_11ReadOptionsEPNS0_13CachableEntryINS_5BlockEEEjNS_9BlockTypeERKSt10shared_ptrINS1_10MemTrackerEE (4 samples, 0.02%)</title><rect x="1003.6" y="677" width="0.2" height="15.0" fill="rgb(225,56,33)" rx="2" ry="2" />
<text x="1006.55" y="687.5" ></text>
</g>
<g >
<title>tc_malloc (3 samples, 0.01%)</title><rect x="380.3" y="805" width="0.2" height="15.0" fill="rgb(207,89,40)" rx="2" ry="2" />
<text x="383.32" y="815.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (4 samples, 0.02%)</title><rect x="963.1" y="629" width="0.2" height="15.0" fill="rgb(218,39,17)" rx="2" ry="2" />
<text x="966.12" y="639.5" ></text>
</g>
<g >
<title>ev_async_send (3 samples, 0.01%)</title><rect x="547.4" y="773" width="0.1" height="15.0" fill="rgb(224,170,51)" rx="2" ry="2" />
<text x="550.38" y="783.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (24 samples, 0.10%)</title><rect x="744.0" y="837" width="1.2" height="15.0" fill="rgb(229,200,12)" rx="2" ry="2" />
<text x="746.95" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="550.6" y="853" width="0.1" height="15.0" fill="rgb(247,113,6)" rx="2" ry="2" />
<text x="553.61" y="863.5" ></text>
</g>
<g >
<title>x86_pmu_enable (20 samples, 0.09%)</title><rect x="484.6" y="725" width="1.0" height="15.0" fill="rgb(211,33,47)" rx="2" ry="2" />
<text x="487.60" y="735.5" ></text>
</g>
<g >
<title>__tcp_ack_snd_check (5 samples, 0.02%)</title><rect x="353.2" y="261" width="0.2" height="15.0" fill="rgb(213,152,38)" rx="2" ry="2" />
<text x="356.18" y="271.5" ></text>
</g>
<g >
<title>_ZN3cds2gc3dhp3smr3tlsEv@plt (2 samples, 0.01%)</title><rect x="1060.7" y="933" width="0.1" height="15.0" fill="rgb(246,104,16)" rx="2" ry="2" />
<text x="1063.70" y="943.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11ServicePool16QueueInboundCallESt10shared_ptrINS0_11InboundCallEE (34 samples, 0.15%)</title><rect x="371.3" y="757" width="1.7" height="15.0" fill="rgb(250,86,7)" rx="2" ry="2" />
<text x="374.26" y="767.5" ></text>
</g>
<g >
<title>sock_sendmsg (247 samples, 1.05%)</title><rect x="346.8" y="709" width="12.5" height="15.0" fill="rgb(212,148,36)" rx="2" ry="2" />
<text x="349.84" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb4util22FastDecodeSignedVarIntEPKhm@plt (8 samples, 0.03%)</title><rect x="803.1" y="629" width="0.4" height="15.0" fill="rgb(221,12,2)" rx="2" ry="2" />
<text x="806.06" y="639.5" ></text>
</g>
<g >
<title>start_thread (1,275 samples, 5.44%)</title><rect x="417.8" y="965" width="64.2" height="15.0" fill="rgb(219,205,33)" rx="2" ry="2" />
<text x="420.83" y="975.5" >start_t..</text>
</g>
<g >
<title>do_iter_write (22 samples, 0.09%)</title><rect x="401.7" y="741" width="1.1" height="15.0" fill="rgb(208,205,42)" rx="2" ry="2" />
<text x="404.72" y="751.5" ></text>
</g>
<g >
<title>__alloc_skb (3 samples, 0.01%)</title><rect x="383.6" y="645" width="0.1" height="15.0" fill="rgb(208,121,24)" rx="2" ry="2" />
<text x="386.60" y="655.5" ></text>
</g>
<g >
<title>perf_pmu_enable (4 samples, 0.02%)</title><rect x="396.1" y="661" width="0.2" height="15.0" fill="rgb(239,194,21)" rx="2" ry="2" />
<text x="399.13" y="671.5" ></text>
</g>
<g >
<title>select_idle_sibling (2 samples, 0.01%)</title><rect x="531.4" y="693" width="0.1" height="15.0" fill="rgb(224,3,37)" rx="2" ry="2" />
<text x="534.42" y="703.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (10 samples, 0.04%)</title><rect x="167.4" y="709" width="0.5" height="15.0" fill="rgb(216,26,54)" rx="2" ry="2" />
<text x="170.44" y="719.5" ></text>
</g>
<g >
<title>__tls_get_addr (39 samples, 0.17%)</title><rect x="909.8" y="693" width="1.9" height="15.0" fill="rgb(223,90,41)" rx="2" ry="2" />
<text x="912.75" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3log3Log7ReserveENS0_14LogEntryTypePBEPNS0_15LogEntryBatchPBEPPNS0_13LogEntryBatchE (3 samples, 0.01%)</title><rect x="493.0" y="789" width="0.1" height="15.0" fill="rgb(217,9,30)" rx="2" ry="2" />
<text x="495.96" y="799.5" ></text>
</g>
<g >
<title>enqueue_entity (2 samples, 0.01%)</title><rect x="376.5" y="565" width="0.1" height="15.0" fill="rgb(222,106,20)" rx="2" ry="2" />
<text x="379.50" y="575.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor12TimerHandlerERN2ev5timerEi (3 samples, 0.01%)</title><rect x="333.3" y="901" width="0.1" height="15.0" fill="rgb(226,222,8)" rx="2" ry="2" />
<text x="336.30" y="911.5" ></text>
</g>
<g >
<title>do_futex (4 samples, 0.02%)</title><rect x="554.7" y="853" width="0.2" height="15.0" fill="rgb(208,208,24)" rx="2" ry="2" />
<text x="557.69" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb22BoundedRocksDbIterator4NextEv (14 samples, 0.06%)</title><rect x="1055.6" y="773" width="0.7" height="15.0" fill="rgb(237,196,4)" rx="2" ry="2" />
<text x="1058.62" y="783.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="828.5" y="565" width="0.1" height="15.0" fill="rgb(220,196,47)" rx="2" ry="2" />
<text x="831.49" y="575.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc27ConnectionContextWithCallId13QueueResponseERKSt10shared_ptrINS0_10ConnectionEES2_INS0_11InboundCallEE (2 samples, 0.01%)</title><rect x="1059.3" y="805" width="0.1" height="15.0" fill="rgb(226,74,23)" rx="2" ry="2" />
<text x="1062.34" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet6Tablet18ApplyRowOperationsEPNS0_19WriteOperationStateE (48 samples, 0.20%)</title><rect x="532.2" y="741" width="2.4" height="15.0" fill="rgb(234,72,21)" rx="2" ry="2" />
<text x="535.18" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="751.0" y="693" width="0.4" height="15.0" fill="rgb(248,20,37)" rx="2" ry="2" />
<text x="754.00" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor20ProcessOutboundQueueEv (2 samples, 0.01%)</title><rect x="366.8" y="885" width="0.1" height="15.0" fill="rgb(222,28,37)" rx="2" ry="2" />
<text x="369.83" y="895.5" ></text>
</g>
<g >
<title>_ZN4base8SpinLock8SlowLockEv (4 samples, 0.02%)</title><rect x="770.1" y="853" width="0.2" height="15.0" fill="rgb(253,42,19)" rx="2" ry="2" />
<text x="773.08" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime16CheckEncodedSizeEim (37 samples, 0.16%)</title><rect x="639.7" y="661" width="1.9" height="15.0" fill="rgb(245,116,9)" rx="2" ry="2" />
<text x="642.73" y="671.5" ></text>
</g>
<g >
<title>_ZNK2yb9consensus12ReplicaState35MajorityReplicatedHtLeaseExpirationEmNSt6chrono10time_pointINS_15CoarseMonoClockENS2_8durationIlSt5ratioILl1ELl1000000000EEEEEE (2 samples, 0.01%)</title><rect x="552.1" y="869" width="0.1" height="15.0" fill="rgb(253,109,34)" rx="2" ry="2" />
<text x="555.12" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc8Acceptor9RunThreadEv (4 samples, 0.02%)</title><rect x="395.1" y="933" width="0.2" height="15.0" fill="rgb(208,92,34)" rx="2" ry="2" />
<text x="398.13" y="943.5" ></text>
</g>
<g >
<title>__libc_disable_asynccancel (17 samples, 0.07%)</title><rect x="131.4" y="901" width="0.9" height="15.0" fill="rgb(248,40,2)" rx="2" ry="2" />
<text x="134.44" y="911.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb19IntentAwareIterator13SatisfyBoundsERKNS_5SliceE (51 samples, 0.22%)</title><rect x="835.6" y="693" width="2.6" height="15.0" fill="rgb(253,112,36)" rx="2" ry="2" />
<text x="838.59" y="703.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (2 samples, 0.01%)</title><rect x="559.5" y="693" width="0.1" height="15.0" fill="rgb(251,40,28)" rx="2" ry="2" />
<text x="562.52" y="703.5" ></text>
</g>
<g >
<title>ttwu_do_activate (7 samples, 0.03%)</title><rect x="746.8" y="517" width="0.3" height="15.0" fill="rgb(208,139,6)" rx="2" ry="2" />
<text x="749.77" y="527.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (12 samples, 0.05%)</title><rect x="414.1" y="853" width="0.6" height="15.0" fill="rgb(240,174,26)" rx="2" ry="2" />
<text x="417.06" y="863.5" ></text>
</g>
<g >
<title>_ZN2yb4util32FastDecodeDescendingSignedVarIntEPNS_5SliceE (451 samples, 1.92%)</title><rect x="940.8" y="693" width="22.7" height="15.0" fill="rgb(248,165,44)" rx="2" ry="2" />
<text x="943.77" y="703.5" >_..</text>
</g>
<g >
<title>tcp_error (2 samples, 0.01%)</title><rect x="351.4" y="501" width="0.1" height="15.0" fill="rgb(248,13,38)" rx="2" ry="2" />
<text x="354.42" y="511.5" ></text>
</g>
<g >
<title>lock_hrtimer_base.isra.21 (3 samples, 0.01%)</title><rect x="524.3" y="789" width="0.2" height="15.0" fill="rgb(231,168,13)" rx="2" ry="2" />
<text x="527.32" y="799.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb16FunctionRunnableESaIS1_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info (3 samples, 0.01%)</title><rect x="766.9" y="837" width="0.2" height="15.0" fill="rgb(226,214,25)" rx="2" ry="2" />
<text x="769.91" y="847.5" ></text>
</g>
<g >
<title>dequeue_task_fair (4 samples, 0.02%)</title><rect x="165.3" y="757" width="0.2" height="15.0" fill="rgb(251,19,1)" rx="2" ry="2" />
<text x="168.28" y="767.5" ></text>
</g>
<g >
<title>__fget_light (9 samples, 0.04%)</title><rect x="1183.5" y="853" width="0.5" height="15.0" fill="rgb(246,223,29)" rx="2" ry="2" />
<text x="1186.50" y="863.5" ></text>
</g>
<g >
<title>dequeue_entity (22 samples, 0.09%)</title><rect x="453.5" y="757" width="1.1" height="15.0" fill="rgb(227,116,33)" rx="2" ry="2" />
<text x="456.53" y="767.5" ></text>
</g>
<g >
<title>activate_task (2 samples, 0.01%)</title><rect x="546.5" y="517" width="0.1" height="15.0" fill="rgb(222,9,28)" rx="2" ry="2" />
<text x="549.48" y="527.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb (6 samples, 0.03%)</title><rect x="841.3" y="693" width="0.3" height="15.0" fill="rgb(252,8,7)" rx="2" ry="2" />
<text x="844.28" y="703.5" ></text>
</g>
<g >
<title>rw_verify_area (10 samples, 0.04%)</title><rect x="393.4" y="805" width="0.5" height="15.0" fill="rgb(227,81,30)" rx="2" ry="2" />
<text x="396.36" y="815.5" ></text>
</g>
<g >
<title>put_prev_task_fair (5 samples, 0.02%)</title><rect x="200.5" y="741" width="0.3" height="15.0" fill="rgb(226,25,13)" rx="2" ry="2" />
<text x="203.52" y="751.5" ></text>
</g>
<g >
<title>drop_futex_key_refs.isra.13 (7 samples, 0.03%)</title><rect x="498.9" y="821" width="0.3" height="15.0" fill="rgb(206,9,15)" rx="2" ry="2" />
<text x="501.90" y="831.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="862.0" y="645" width="0.1" height="15.0" fill="rgb(211,104,6)" rx="2" ry="2" />
<text x="864.97" y="655.5" ></text>
</g>
<g >
<title>do_futex (15 samples, 0.06%)</title><rect x="371.9" y="677" width="0.7" height="15.0" fill="rgb(217,103,53)" rx="2" ry="2" />
<text x="374.86" y="687.5" ></text>
</g>
<g >
<title>ep_poll_callback (30 samples, 0.13%)</title><rect x="353.6" y="197" width="1.5" height="15.0" fill="rgb(219,107,12)" rx="2" ry="2" />
<text x="356.59" y="207.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator4NextEv (6 samples, 0.03%)</title><rect x="876.4" y="645" width="0.3" height="15.0" fill="rgb(251,106,34)" rx="2" ry="2" />
<text x="879.42" y="655.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (2 samples, 0.01%)</title><rect x="339.9" y="469" width="0.1" height="15.0" fill="rgb(238,32,30)" rx="2" ry="2" />
<text x="342.94" y="479.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (3 samples, 0.01%)</title><rect x="110.5" y="565" width="0.2" height="15.0" fill="rgb(233,133,53)" rx="2" ry="2" />
<text x="113.55" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (22 samples, 0.09%)</title><rect x="425.9" y="805" width="1.1" height="15.0" fill="rgb(229,130,9)" rx="2" ry="2" />
<text x="428.94" y="815.5" ></text>
</g>
<g >
<title>sys_futex (4 samples, 0.02%)</title><rect x="399.9" y="773" width="0.2" height="15.0" fill="rgb(250,26,41)" rx="2" ry="2" />
<text x="402.86" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet19ScopedReadOperation6CreateEPNS0_14AbstractTabletENS_17StronglyTypedBoolINS0_16RequireLease_TagEEENS_14ReadHybridTimeE (2 samples, 0.01%)</title><rect x="775.1" y="869" width="0.1" height="15.0" fill="rgb(223,31,51)" rx="2" ry="2" />
<text x="778.12" y="879.5" ></text>
</g>
<g >
<title>ep_poll (79 samples, 0.34%)</title><rect x="419.5" y="853" width="4.0" height="15.0" fill="rgb(214,11,25)" rx="2" ry="2" />
<text x="422.50" y="863.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_122BytewiseComparatorImpl7CompareERKN2yb5SliceES5_ (133 samples, 0.57%)</title><rect x="701.3" y="661" width="6.7" height="15.0" fill="rgb(205,221,49)" rx="2" ry="2" />
<text x="704.30" y="671.5" ></text>
</g>
<g >
<title>_ZN7rocksdb12_GLOBAL__N_117GetEntryFromCacheEPNS_5CacheERKN2yb5SliceENS_7TickersES7_PNS_10StatisticsEl.constprop.252 (3 samples, 0.01%)</title><rect x="675.9" y="597" width="0.2" height="15.0" fill="rgb(235,33,22)" rx="2" ry="2" />
<text x="678.93" y="607.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (38 samples, 0.16%)</title><rect x="473.9" y="773" width="1.9" height="15.0" fill="rgb(227,64,32)" rx="2" ry="2" />
<text x="476.87" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus9Consensus11ExecuteHookENS1_9HookPointE (2 samples, 0.01%)</title><rect x="496.0" y="869" width="0.1" height="15.0" fill="rgb(209,229,13)" rx="2" ry="2" />
<text x="498.98" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13PeriodicTimer16GetMinimumPeriodEv (2 samples, 0.01%)</title><rect x="428.7" y="869" width="0.1" height="15.0" fill="rgb(232,106,38)" rx="2" ry="2" />
<text x="431.66" y="879.5" ></text>
</g>
<g >
<title>native_write_msr (2 samples, 0.01%)</title><rect x="434.5" y="693" width="0.1" height="15.0" fill="rgb(212,98,44)" rx="2" ry="2" />
<text x="437.50" y="703.5" ></text>
</g>
<g >
<title>iptable_security_hook (2 samples, 0.01%)</title><rect x="355.4" y="309" width="0.1" height="15.0" fill="rgb(229,137,19)" rx="2" ry="2" />
<text x="358.40" y="319.5" ></text>
</g>
<g >
<title>tick_sched_timer (92 samples, 0.39%)</title><rect x="320.8" y="677" width="4.6" height="15.0" fill="rgb(251,14,48)" rx="2" ry="2" />
<text x="323.76" y="687.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (16 samples, 0.07%)</title><rect x="680.7" y="645" width="0.8" height="15.0" fill="rgb(249,48,33)" rx="2" ry="2" />
<text x="683.71" y="655.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="601.9" y="709" width="0.2" height="15.0" fill="rgb(253,47,50)" rx="2" ry="2" />
<text x="604.86" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb10HostPortPBD1Ev (2 samples, 0.01%)</title><rect x="762.7" y="837" width="0.1" height="15.0" fill="rgb(251,50,36)" rx="2" ry="2" />
<text x="765.68" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc8Acceptor9RunThreadEv (4 samples, 0.02%)</title><rect x="394.7" y="933" width="0.2" height="15.0" fill="rgb(235,55,7)" rx="2" ry="2" />
<text x="397.72" y="943.5" ></text>
</g>
<g >
<title>iptable_mangle_hook (7 samples, 0.03%)</title><rect x="355.7" y="341" width="0.3" height="15.0" fill="rgb(223,150,40)" rx="2" ry="2" />
<text x="358.65" y="351.5" ></text>
</g>
<g >
<title>_ZNSt17_Function_handlerIFvvEZN2yb6tablet10TabletPeer14InitTabletPeerERKSt10shared_ptrINS2_10enterprise6TabletEERKSt13shared_futureIPNS1_6client8YBClientEERKS4_INS1_10MemTrackerEEPNS1_3rpc9MessengerEPNSL_10ProxyCacheERK13scoped_refptrINS1_3log3LogEERKSQ_INS1_12MetricEntityEEPNS1_10ThreadPoolES11_PNS1_9consensus17RetryableRequestsEEUlvE2_E9_M_invokeERKSt9_Any_data (32 samples, 0.14%)</title><rect x="537.6" y="885" width="1.6" height="15.0" fill="rgb(212,134,16)" rx="2" ry="2" />
<text x="540.57" y="895.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc13RequestHeader39InternalSerializeWithCachedSizesToArrayEbPh (7 samples, 0.03%)</title><rect x="543.2" y="805" width="0.4" height="15.0" fill="rgb(217,12,18)" rx="2" ry="2" />
<text x="546.21" y="815.5" ></text>
</g>
<g >
<title>__remove_hrtimer (4 samples, 0.02%)</title><rect x="412.9" y="757" width="0.2" height="15.0" fill="rgb(213,98,33)" rx="2" ry="2" />
<text x="415.90" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb15IntentValueTypeEc (11 samples, 0.05%)</title><rect x="731.9" y="709" width="0.5" height="15.0" fill="rgb(236,61,42)" rx="2" ry="2" />
<text x="734.87" y="719.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb18PerformRocksDBSeekEPN7rocksdb8IteratorERKNS_5SliceEPKci (4 samples, 0.02%)</title><rect x="913.3" y="773" width="0.2" height="15.0" fill="rgb(250,64,51)" rx="2" ry="2" />
<text x="916.33" y="783.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (69 samples, 0.29%)</title><rect x="435.7" y="917" width="3.4" height="15.0" fill="rgb(233,100,43)" rx="2" ry="2" />
<text x="438.66" y="927.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10 samples, 0.04%)</title><rect x="614.0" y="789" width="0.6" height="15.0" fill="rgb(226,56,20)" rx="2" ry="2" />
<text x="617.05" y="799.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (9 samples, 0.04%)</title><rect x="155.0" y="805" width="0.4" height="15.0" fill="rgb(220,62,51)" rx="2" ry="2" />
<text x="157.96" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus21EnqueueWritesUnlockedERKNS1_13LeaderRequestERKNS_4OpIdENS_17StronglyTypedBoolINS0_14WriteEmpty_TagEEE (3 samples, 0.01%)</title><rect x="749.9" y="821" width="0.1" height="15.0" fill="rgb(252,203,28)" rx="2" ry="2" />
<text x="752.89" y="831.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1,890 samples, 8.06%)</title><rect x="231.5" y="821" width="95.2" height="15.0" fill="rgb(241,32,5)" rx="2" ry="2" />
<text x="234.49" y="831.5" >schedule_hr..</text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="766.1" y="629" width="0.1" height="15.0" fill="rgb(225,17,31)" rx="2" ry="2" />
<text x="769.10" y="639.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="1015.3" y="645" width="0.2" height="15.0" fill="rgb(226,92,2)" rx="2" ry="2" />
<text x="1018.34" y="655.5" ></text>
</g>
<g >
<title>__strerror_r (15 samples, 0.06%)</title><rect x="218.1" y="965" width="0.8" height="15.0" fill="rgb(216,76,48)" rx="2" ry="2" />
<text x="221.15" y="975.5" ></text>
</g>
<g >
<title>x86_pmu_disable (3 samples, 0.01%)</title><rect x="110.4" y="581" width="0.1" height="15.0" fill="rgb(241,198,53)" rx="2" ry="2" />
<text x="113.40" y="591.5" ></text>
</g>
<g >
<title>insert_work (3 samples, 0.01%)</title><rect x="395.8" y="501" width="0.1" height="15.0" fill="rgb(237,187,45)" rx="2" ry="2" />
<text x="398.78" y="511.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet15OperationDriver8FinalizeEv (19 samples, 0.08%)</title><rect x="534.6" y="757" width="1.0" height="15.0" fill="rgb(211,146,0)" rx="2" ry="2" />
<text x="537.60" y="767.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="390.7" y="837" width="0.2" height="15.0" fill="rgb(207,171,51)" rx="2" ry="2" />
<text x="393.75" y="847.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="976.1" y="629" width="0.1" height="15.0" fill="rgb(235,75,37)" rx="2" ry="2" />
<text x="979.11" y="639.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb12_GLOBAL__N_111SkipListRepINS_26SingleWriterInlineSkipListIRKNS_11MemTableRep13KeyComparatorEEEE8Iterator3keyEv (6 samples, 0.03%)</title><rect x="683.6" y="661" width="0.3" height="15.0" fill="rgb(247,153,30)" rx="2" ry="2" />
<text x="686.58" y="671.5" ></text>
</g>
<g >
<title>_ZN2yb6Thread15SuperviseThreadEPv (1,533 samples, 6.54%)</title><rect x="138.7" y="949" width="77.2" height="15.0" fill="rgb(233,116,0)" rx="2" ry="2" />
<text x="141.74" y="959.5" >_ZN2yb6T..</text>
</g>
<g >
<title>[libprofiler.so.0.4.18] (4 samples, 0.02%)</title><rect x="399.9" y="821" width="0.2" height="15.0" fill="rgb(246,222,0)" rx="2" ry="2" />
<text x="402.86" y="831.5" ></text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="996.7" y="629" width="0.2" height="15.0" fill="rgb(238,68,36)" rx="2" ry="2" />
<text x="999.71" y="639.5" ></text>
</g>
<g >
<title>futex_wake (2 samples, 0.01%)</title><rect x="600.5" y="853" width="0.1" height="15.0" fill="rgb(235,129,10)" rx="2" ry="2" />
<text x="603.45" y="863.5" ></text>
</g>
<g >
<title>_ZNK2yb17ConditionVariable9TimedWaitERKNS_9MonoDeltaE (2 samples, 0.01%)</title><rect x="599.2" y="933" width="0.1" height="15.0" fill="rgb(230,38,45)" rx="2" ry="2" />
<text x="602.24" y="943.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="21.8" y="869" width="0.1" height="15.0" fill="rgb(227,226,48)" rx="2" ry="2" />
<text x="24.83" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc11InboundCall13QueueResponseEb (2 samples, 0.01%)</title><rect x="1059.3" y="821" width="0.1" height="15.0" fill="rgb(235,175,21)" rx="2" ry="2" />
<text x="1062.34" y="831.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5 samples, 0.02%)</title><rect x="757.5" y="821" width="0.3" height="15.0" fill="rgb(248,133,13)" rx="2" ry="2" />
<text x="760.54" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor19ScheduleReactorTaskESt10shared_ptrINS0_11ReactorTaskEEb (41 samples, 0.17%)</title><rect x="545.3" y="773" width="2.1" height="15.0" fill="rgb(247,54,21)" rx="2" ry="2" />
<text x="548.32" y="783.5" ></text>
</g>
<g >
<title>run_timer_softirq (2 samples, 0.01%)</title><rect x="325.6" y="677" width="0.1" height="15.0" fill="rgb(215,168,20)" rx="2" ry="2" />
<text x="328.59" y="687.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="399.9" y="629" width="0.2" height="15.0" fill="rgb(254,159,38)" rx="2" ry="2" />
<text x="402.86" y="639.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (19 samples, 0.08%)</title><rect x="603.4" y="949" width="1.0" height="15.0" fill="rgb(215,109,54)" rx="2" ry="2" />
<text x="606.42" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet8Preparer6SubmitEPNS0_15OperationDriverE (20 samples, 0.09%)</title><rect x="750.7" y="773" width="1.0" height="15.0" fill="rgb(214,152,34)" rx="2" ry="2" />
<text x="753.70" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc18CircularReadBuffer13PrepareAppendEv (2 samples, 0.01%)</title><rect x="380.1" y="837" width="0.1" height="15.0" fill="rgb(207,65,1)" rx="2" ry="2" />
<text x="383.12" y="847.5" ></text>
</g>
<g >
<title>xfs_submit_ioend (2 samples, 0.01%)</title><rect x="398.4" y="677" width="0.1" height="15.0" fill="rgb(253,174,52)" rx="2" ry="2" />
<text x="401.40" y="687.5" ></text>
</g>
<g >
<title>futex_wait_setup (11 samples, 0.05%)</title><rect x="592.4" y="821" width="0.6" height="15.0" fill="rgb(249,7,23)" rx="2" ry="2" />
<text x="595.40" y="831.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (3 samples, 0.01%)</title><rect x="715.4" y="661" width="0.1" height="15.0" fill="rgb(236,31,1)" rx="2" ry="2" />
<text x="718.35" y="671.5" ></text>
</g>
<g >
<title>scheduler_tick (3 samples, 0.01%)</title><rect x="1038.5" y="613" width="0.2" height="15.0" fill="rgb(221,160,15)" rx="2" ry="2" />
<text x="1041.55" y="623.5" ></text>
</g>
<g >
<title>_ZNSs6appendEPKcm (2 samples, 0.01%)</title><rect x="534.0" y="661" width="0.1" height="15.0" fill="rgb(249,167,53)" rx="2" ry="2" />
<text x="536.99" y="671.5" ></text>
</g>
<g >
<title>syscall_trace_enter (5 samples, 0.02%)</title><rect x="480.0" y="885" width="0.2" height="15.0" fill="rgb(254,35,25)" rx="2" ry="2" />
<text x="482.97" y="895.5" ></text>
</g>
<g >
<title>ctx_resched (4 samples, 0.02%)</title><rect x="437.1" y="773" width="0.2" height="15.0" fill="rgb(218,113,37)" rx="2" ry="2" />
<text x="440.07" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus10RaftPeerPB8CopyFromERKS1_ (2 samples, 0.01%)</title><rect x="762.6" y="853" width="0.1" height="15.0" fill="rgb(225,95,35)" rx="2" ry="2" />
<text x="765.58" y="863.5" ></text>
</g>
<g >
<title>update_rq_clock (3 samples, 0.01%)</title><rect x="614.7" y="805" width="0.2" height="15.0" fill="rgb(212,94,41)" rx="2" ry="2" />
<text x="617.70" y="815.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator3keyEv (4 samples, 0.02%)</title><rect x="912.5" y="709" width="0.2" height="15.0" fill="rgb(251,82,10)" rx="2" ry="2" />
<text x="915.52" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator3keyEv (22 samples, 0.09%)</title><rect x="878.8" y="661" width="1.1" height="15.0" fill="rgb(230,219,11)" rx="2" ry="2" />
<text x="881.79" y="671.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.01%)</title><rect x="372.3" y="629" width="0.1" height="15.0" fill="rgb(245,150,1)" rx="2" ry="2" />
<text x="375.32" y="639.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (2 samples, 0.01%)</title><rect x="559.0" y="789" width="0.1" height="15.0" fill="rgb(254,145,10)" rx="2" ry="2" />
<text x="562.02" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet14WriteOperation22DoStartSynchronizationERKNS_6StatusE (6 samples, 0.03%)</title><rect x="624.0" y="821" width="0.3" height="15.0" fill="rgb(208,103,46)" rx="2" ry="2" />
<text x="627.02" y="831.5" ></text>
</g>
<g >
<title>__queue_work (2 samples, 0.01%)</title><rect x="113.7" y="629" width="0.1" height="15.0" fill="rgb(230,193,42)" rx="2" ry="2" />
<text x="116.72" y="639.5" ></text>
</g>
<g >
<title>tc_deletearray_nothrow (4 samples, 0.02%)</title><rect x="616.1" y="949" width="0.2" height="15.0" fill="rgb(218,196,36)" rx="2" ry="2" />
<text x="619.06" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor9RunThreadEv (2,473 samples, 10.55%)</title><rect x="12.7" y="933" width="124.5" height="15.0" fill="rgb(231,185,16)" rx="2" ry="2" />
<text x="15.67" y="943.5" >_ZN2yb3rpc7Reac..</text>
</g>
<g >
<title>vfs_writev (23 samples, 0.10%)</title><rect x="401.7" y="757" width="1.1" height="15.0" fill="rgb(240,149,18)" rx="2" ry="2" />
<text x="404.67" y="767.5" ></text>
</g>
<g >
<title>update_curr (8 samples, 0.03%)</title><rect x="453.9" y="741" width="0.4" height="15.0" fill="rgb(238,161,54)" rx="2" ry="2" />
<text x="456.93" y="751.5" ></text>
</g>
<g >
<title>_ZNK6google8protobuf8internal26GeneratedMessageReflection13SpaceUsedLongERKNS0_7MessageE (6 samples, 0.03%)</title><rect x="494.8" y="741" width="0.3" height="15.0" fill="rgb(249,140,9)" rx="2" ry="2" />
<text x="497.77" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor19ScheduleReactorTaskESt10shared_ptrINS0_11ReactorTaskEE (44 samples, 0.19%)</title><rect x="545.3" y="789" width="2.2" height="15.0" fill="rgb(215,208,22)" rx="2" ry="2" />
<text x="548.32" y="799.5" ></text>
</g>
<g >
<title>_ZN5boost11multi_index6detail23ordered_index_node_implINS1_19null_augment_policyESaIcEE19rebalance_for_eraseEPS5_NS1_34ordered_index_node_compressed_baseIS3_S4_E10parent_refERS6_SA_ (6 samples, 0.03%)</title><rect x="425.3" y="837" width="0.3" height="15.0" fill="rgb(253,67,8)" rx="2" ry="2" />
<text x="428.29" y="847.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.02%)</title><rect x="996.7" y="709" width="0.2" height="15.0" fill="rgb(250,15,14)" rx="2" ry="2" />
<text x="999.71" y="719.5" ></text>
</g>
<g >
<title>dequeue_task_fair (2 samples, 0.01%)</title><rect x="608.7" y="805" width="0.1" height="15.0" fill="rgb(216,104,17)" rx="2" ry="2" />
<text x="611.71" y="815.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (6 samples, 0.03%)</title><rect x="357.9" y="597" width="0.3" height="15.0" fill="rgb(232,225,42)" rx="2" ry="2" />
<text x="360.87" y="607.5" ></text>
</g>
<g >
<title>__alloc_skb (2 samples, 0.01%)</title><rect x="341.5" y="197" width="0.1" height="15.0" fill="rgb(252,93,33)" rx="2" ry="2" />
<text x="344.45" y="207.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="715.4" y="597" width="0.1" height="15.0" fill="rgb(207,30,44)" rx="2" ry="2" />
<text x="718.35" y="607.5" ></text>
</g>
<g >
<title>tick_sched_handle (66 samples, 0.28%)</title><rect x="109.9" y="661" width="3.3" height="15.0" fill="rgb(246,23,14)" rx="2" ry="2" />
<text x="112.89" y="671.5" ></text>
</g>
<g >
<title>__inet_lookup_established (4 samples, 0.02%)</title><rect x="386.7" y="341" width="0.2" height="15.0" fill="rgb(219,123,2)" rx="2" ry="2" />
<text x="389.67" y="351.5" ></text>
</g>
<g >
<title>perf_pmu_enable (8 samples, 0.03%)</title><rect x="482.5" y="725" width="0.4" height="15.0" fill="rgb(235,83,29)" rx="2" ry="2" />
<text x="485.53" y="735.5" ></text>
</g>
<g >
<title>do_syscall_64 (12 samples, 0.05%)</title><rect x="1061.7" y="901" width="0.6" height="15.0" fill="rgb(254,222,8)" rx="2" ry="2" />
<text x="1064.71" y="911.5" ></text>
</g>
<g >
<title>native_write_msr (9 samples, 0.04%)</title><rect x="238.2" y="661" width="0.4" height="15.0" fill="rgb(226,126,39)" rx="2" ry="2" />
<text x="241.19" y="671.5" ></text>
</g>
<g >
<title>epoll_poll (11 samples, 0.05%)</title><rect x="335.6" y="901" width="0.5" height="15.0" fill="rgb(235,28,3)" rx="2" ry="2" />
<text x="338.56" y="911.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (16 samples, 0.07%)</title><rect x="452.2" y="773" width="0.8" height="15.0" fill="rgb(226,13,44)" rx="2" ry="2" />
<text x="455.22" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc10Connection17QueueOutboundCallERKSt10shared_ptrINS0_12OutboundCallEE (55 samples, 0.23%)</title><rect x="361.9" y="837" width="2.8" height="15.0" fill="rgb(232,90,20)" rx="2" ry="2" />
<text x="364.90" y="847.5" ></text>
</g>
<g >
<title>_ZN7rocksdb16MemTableIterator4NextEv (11 samples, 0.05%)</title><rect x="1010.7" y="725" width="0.5" height="15.0" fill="rgb(242,206,24)" rx="2" ry="2" />
<text x="1013.65" y="735.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (11 samples, 0.05%)</title><rect x="342.3" y="197" width="0.5" height="15.0" fill="rgb(226,81,36)" rx="2" ry="2" />
<text x="345.26" y="207.5" ></text>
</g>
<g >
<title>_ZN7rocksdb8MemTable3AddEmNS_9ValueTypeERKN2yb5SliceES5_b (5 samples, 0.02%)</title><rect x="532.8" y="613" width="0.3" height="15.0" fill="rgb(224,88,51)" rx="2" ry="2" />
<text x="535.83" y="623.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.01%)</title><rect x="732.3" y="677" width="0.1" height="15.0" fill="rgb(242,102,25)" rx="2" ry="2" />
<text x="735.32" y="687.5" ></text>
</g>
<g >
<title>_ZNK2yb3rpc13RpcController6statusEv (3 samples, 0.01%)</title><rect x="772.9" y="885" width="0.1" height="15.0" fill="rgb(252,139,30)" rx="2" ry="2" />
<text x="775.85" y="895.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (27 samples, 0.12%)</title><rect x="425.7" y="821" width="1.4" height="15.0" fill="rgb(251,187,53)" rx="2" ry="2" />
<text x="428.74" y="831.5" ></text>
</g>
<g >
<title>check_preempt_curr (3 samples, 0.01%)</title><rect x="430.7" y="661" width="0.1" height="15.0" fill="rgb(211,225,45)" rx="2" ry="2" />
<text x="433.67" y="671.5" ></text>
</g>
<g >
<title>tick_sched_handle (5 samples, 0.02%)</title><rect x="1188.3" y="693" width="0.3" height="15.0" fill="rgb(242,165,4)" rx="2" ry="2" />
<text x="1191.34" y="703.5" ></text>
</g>
<g >
<title>sys_futex (33 samples, 0.14%)</title><rect x="415.6" y="869" width="1.6" height="15.0" fill="rgb(251,19,2)" rx="2" ry="2" />
<text x="418.57" y="879.5" ></text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="1015.3" y="613" width="0.2" height="15.0" fill="rgb(240,165,5)" rx="2" ry="2" />
<text x="1018.34" y="623.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall9SerializeEPN5boost9container17small_vector_baseINS_12RefCntBufferENS3_13new_allocatorIS5_EEEE (2 samples, 0.01%)</title><rect x="617.1" y="949" width="0.1" height="15.0" fill="rgb(235,6,4)" rx="2" ry="2" />
<text x="620.07" y="959.5" ></text>
</g>
<g >
<title>_ZN2yb5docdb15IntentValueTypeEc@plt (3 samples, 0.01%)</title><rect x="732.4" y="709" width="0.2" height="15.0" fill="rgb(216,178,16)" rx="2" ry="2" />
<text x="735.42" y="719.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (3 samples, 0.01%)</title><rect x="1015.3" y="709" width="0.2" height="15.0" fill="rgb(211,216,31)" rx="2" ry="2" />
<text x="1018.34" y="719.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb9BlockIter5ValidEv (8 samples, 0.03%)</title><rect x="884.3" y="661" width="0.4" height="15.0" fill="rgb(245,169,50)" rx="2" ry="2" />
<text x="887.33" y="671.5" ></text>
</g>
<g >
<title>tcp_send_delayed_ack (5 samples, 0.02%)</title><rect x="353.2" y="245" width="0.2" height="15.0" fill="rgb(242,223,9)" rx="2" ry="2" />
<text x="356.18" y="255.5" ></text>
</g>
<g >
<title>eventfd_read (7 samples, 0.03%)</title><rect x="393.0" y="789" width="0.4" height="15.0" fill="rgb(205,25,18)" rx="2" ry="2" />
<text x="396.01" y="799.5" ></text>
</g>
<g >
<title>hrtimer_cancel (62 samples, 0.26%)</title><rect x="593.0" y="821" width="3.1" height="15.0" fill="rgb(223,78,32)" rx="2" ry="2" />
<text x="595.95" y="831.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="437.1" y="725" width="0.2" height="15.0" fill="rgb(252,23,15)" rx="2" ry="2" />
<text x="440.07" y="735.5" ></text>
</g>
<g >
<title>_ZN2yb11sw_internal9LogTimingC1EPKciiSsSslb (8 samples, 0.03%)</title><rect x="400.5" y="869" width="0.4" height="15.0" fill="rgb(242,156,34)" rx="2" ry="2" />
<text x="403.51" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor20ProcessOutboundQueueEv (405 samples, 1.73%)</title><rect x="345.7" y="869" width="20.4" height="15.0" fill="rgb(229,109,29)" rx="2" ry="2" />
<text x="348.73" y="879.5" ></text>
</g>
<g >
<title>__clock_gettime (10 samples, 0.04%)</title><rect x="485.6" y="949" width="0.5" height="15.0" fill="rgb(252,89,31)" rx="2" ry="2" />
<text x="488.61" y="959.5" ></text>
</g>
<g >
<title>__update_idle_core (10 samples, 0.04%)</title><rect x="115.6" y="741" width="0.5" height="15.0" fill="rgb(251,8,3)" rx="2" ry="2" />
<text x="118.63" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor12TimerHandlerERN2ev5timerEi (12 samples, 0.05%)</title><rect x="210.5" y="901" width="0.6" height="15.0" fill="rgb(237,20,45)" rx="2" ry="2" />
<text x="213.49" y="911.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (17 samples, 0.07%)</title><rect x="339.7" y="501" width="0.8" height="15.0" fill="rgb(238,225,45)" rx="2" ry="2" />
<text x="342.69" y="511.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (756 samples, 3.23%)</title><rect x="443.6" y="933" width="38.1" height="15.0" fill="rgb(215,78,11)" rx="2" ry="2" />
<text x="446.61" y="943.5" >pth..</text>
</g>
<g >
<title>sched_clock (3 samples, 0.01%)</title><rect x="476.7" y="757" width="0.1" height="15.0" fill="rgb(215,31,9)" rx="2" ry="2" />
<text x="479.69" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock12NowWithErrorEPNS_10HybridTimeEPm (2 samples, 0.01%)</title><rect x="552.0" y="821" width="0.1" height="15.0" fill="rgb(243,141,8)" rx="2" ry="2" />
<text x="555.02" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus12ReplicaState33NotifyReplicationFinishedUnlockedERK13scoped_refptrINS0_14ConsensusRoundEERKNS_6StatusEl (73 samples, 0.31%)</title><rect x="532.0" y="837" width="3.7" height="15.0" fill="rgb(248,22,33)" rx="2" ry="2" />
<text x="534.98" y="847.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (3 samples, 0.01%)</title><rect x="490.8" y="613" width="0.1" height="15.0" fill="rgb(228,220,11)" rx="2" ry="2" />
<text x="493.79" y="623.5" ></text>
</g>
<g >
<title>native_write_msr (551 samples, 2.35%)</title><rect x="168.5" y="677" width="27.7" height="15.0" fill="rgb(238,154,1)" rx="2" ry="2" />
<text x="171.50" y="687.5" >n..</text>
</g>
<g >
<title>_ZN2yb3rpc13PeriodicTimer14SnoozeUnlockedENS_9MonoDeltaE (2 samples, 0.01%)</title><rect x="428.6" y="869" width="0.1" height="15.0" fill="rgb(210,74,3)" rx="2" ry="2" />
<text x="431.56" y="879.5" ></text>
</g>
<g >
<title>__dta_xfs_vn_update_time_3398 (9 samples, 0.04%)</title><rect x="401.9" y="645" width="0.4" height="15.0" fill="rgb(212,154,35)" rx="2" ry="2" />
<text x="404.87" y="655.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor18AssignOutboundCallERKSt10shared_ptrINS0_12OutboundCallEE (85 samples, 0.36%)</title><rect x="361.7" y="853" width="4.3" height="15.0" fill="rgb(228,152,9)" rx="2" ry="2" />
<text x="364.74" y="863.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (4 samples, 0.02%)</title><rect x="963.1" y="661" width="0.2" height="15.0" fill="rgb(242,118,10)" rx="2" ry="2" />
<text x="966.12" y="671.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.02%)</title><rect x="396.1" y="645" width="0.2" height="15.0" fill="rgb(231,174,11)" rx="2" ry="2" />
<text x="399.13" y="655.5" ></text>
</g>
<g >
<title>__raw_spin_unlock (2 samples, 0.01%)</title><rect x="1174.7" y="773" width="0.1" height="15.0" fill="rgb(209,71,5)" rx="2" ry="2" />
<text x="1177.74" y="783.5" ></text>
</g>
<g >
<title>sched_clock_cpu (10 samples, 0.04%)</title><rect x="46.3" y="709" width="0.5" height="15.0" fill="rgb(223,134,15)" rx="2" ry="2" />
<text x="49.30" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="686.9" y="597" width="0.1" height="15.0" fill="rgb(246,40,10)" rx="2" ry="2" />
<text x="689.85" y="607.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc26YBInboundConnectionContext10HandleCallERKSt10shared_ptrINS0_10ConnectionEEPNS0_8CallDataE (2 samples, 0.01%)</title><rect x="380.0" y="789" width="0.1" height="15.0" fill="rgb(244,149,24)" rx="2" ry="2" />
<text x="382.97" y="799.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream34DecrementRecursionDepthAndPopLimitEi (2 samples, 0.01%)</title><rect x="742.5" y="821" width="0.1" height="15.0" fill="rgb(226,182,17)" rx="2" ry="2" />
<text x="745.54" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus8LogCache16AppendOperationsERKSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS5_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointERKNS_8CallbackIFvRKNS_6StatusEEEE (6 samples, 0.03%)</title><rect x="536.6" y="869" width="0.3" height="15.0" fill="rgb(253,84,52)" rx="2" ry="2" />
<text x="539.56" y="879.5" ></text>
</g>
<g >
<title>x86_pmu_enable (387 samples, 1.65%)</title><rect x="502.0" y="725" width="19.5" height="15.0" fill="rgb(211,128,21)" rx="2" ry="2" />
<text x="504.97" y="735.5" ></text>
</g>
<g >
<title>cpuacct_charge (8 samples, 0.03%)</title><rect x="164.7" y="693" width="0.4" height="15.0" fill="rgb(241,117,23)" rx="2" ry="2" />
<text x="167.67" y="703.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (90 samples, 0.38%)</title><rect x="1174.9" y="741" width="4.5" height="15.0" fill="rgb(216,172,18)" rx="2" ry="2" />
<text x="1177.90" y="751.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb@plt (3 samples, 0.01%)</title><rect x="841.6" y="693" width="0.1" height="15.0" fill="rgb(236,196,53)" rx="2" ry="2" />
<text x="844.58" y="703.5" ></text>
</g>
<g >
<title>_ZThn40_N2yb9consensus13RaftConsensus24UpdateMajorityReplicatedERKNS0_22MajorityReplicatedDataEPNS_6OpIdPBE (3 samples, 0.01%)</title><rect x="554.3" y="917" width="0.2" height="15.0" fill="rgb(206,220,48)" rx="2" ry="2" />
<text x="557.33" y="927.5" ></text>
</g>
<g >
<title>_ZN7rocksdb6DBIter25FindNextUserEntryInternalEb (258 samples, 1.10%)</title><rect x="885.5" y="677" width="13.0" height="15.0" fill="rgb(213,192,29)" rx="2" ry="2" />
<text x="888.48" y="687.5" ></text>
</g>
<g >
<title>finish_task_switch (161 samples, 0.69%)</title><rect x="404.8" y="741" width="8.1" height="15.0" fill="rgb(221,65,4)" rx="2" ry="2" />
<text x="407.79" y="751.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc13YBInboundCall7RespondERKN6google8protobuf11MessageLiteEb (2 samples, 0.01%)</title><rect x="1059.3" y="837" width="0.1" height="15.0" fill="rgb(228,164,32)" rx="2" ry="2" />
<text x="1062.34" y="847.5" ></text>
</g>
<g >
<title>_ZN7rocksdb16MemTableIterator4NextEv (4 samples, 0.02%)</title><rect x="1023.0" y="741" width="0.2" height="15.0" fill="rgb(228,138,1)" rx="2" ry="2" />
<text x="1025.99" y="751.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (58 samples, 0.25%)</title><rect x="386.2" y="437" width="2.9" height="15.0" fill="rgb(254,19,54)" rx="2" ry="2" />
<text x="389.16" y="447.5" ></text>
</g>
<g >
<title>timerfd_settime (13 samples, 0.06%)</title><rect x="424.6" y="821" width="0.7" height="15.0" fill="rgb(229,25,33)" rx="2" ry="2" />
<text x="427.63" y="831.5" ></text>
</g>
<g >
<title>activate_task (4 samples, 0.02%)</title><rect x="746.8" y="501" width="0.2" height="15.0" fill="rgb(230,90,39)" rx="2" ry="2" />
<text x="749.77" y="511.5" ></text>
</g>
<g >
<title>_ZNSs4_Rep9_S_createEmmRKSaIcE (16 samples, 0.07%)</title><rect x="617.3" y="949" width="0.8" height="15.0" fill="rgb(247,150,37)" rx="2" ry="2" />
<text x="620.27" y="959.5" ></text>
</g>
<g >
<title>x86_pmu_enable (575 samples, 2.45%)</title><rect x="561.3" y="725" width="28.9" height="15.0" fill="rgb(225,138,47)" rx="2" ry="2" />
<text x="564.28" y="735.5" >x8..</text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="970.5" y="645" width="0.2" height="15.0" fill="rgb(224,196,12)" rx="2" ry="2" />
<text x="973.52" y="655.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="380.0" y="725" width="0.1" height="15.0" fill="rgb(227,175,38)" rx="2" ry="2" />
<text x="382.97" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (96 samples, 0.41%)</title><rect x="418.7" y="901" width="4.9" height="15.0" fill="rgb(221,9,27)" rx="2" ry="2" />
<text x="421.74" y="911.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (2 samples, 0.01%)</title><rect x="347.7" y="597" width="0.1" height="15.0" fill="rgb(229,50,14)" rx="2" ry="2" />
<text x="350.75" y="607.5" ></text>
</g>
<g >
<title>sys_epoll_wait (2 samples, 0.01%)</title><rect x="331.0" y="869" width="0.1" height="15.0" fill="rgb(250,3,34)" rx="2" ry="2" />
<text x="334.03" y="879.5" ></text>
</g>
<g >
<title>__fget_light (2 samples, 0.01%)</title><rect x="545.7" y="677" width="0.1" height="15.0" fill="rgb(234,2,14)" rx="2" ry="2" />
<text x="548.72" y="687.5" ></text>
</g>
<g >
<title>finish_task_switch (6 samples, 0.03%)</title><rect x="414.1" y="709" width="0.3" height="15.0" fill="rgb(217,74,43)" rx="2" ry="2" />
<text x="417.11" y="719.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (538 samples, 2.30%)</title><rect x="497.7" y="901" width="27.1" height="15.0" fill="rgb(229,155,19)" rx="2" ry="2" />
<text x="500.74" y="911.5" >e..</text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream8TryWriteEv (147 samples, 0.63%)</title><rect x="337.7" y="821" width="7.4" height="15.0" fill="rgb(234,124,45)" rx="2" ry="2" />
<text x="340.68" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb8internal9BindStateINS0_15RunnableAdapterIMNS_9consensus16PeerMessageQueueEFvRKNS3_22MajorityReplicatedDataEEEEFvPS4_S7_EFvNS0_17UnretainedWrapperIS4_EES5_EED0Ev (3 samples, 0.01%)</title><rect x="530.2" y="917" width="0.1" height="15.0" fill="rgb(212,143,52)" rx="2" ry="2" />
<text x="533.16" y="927.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (5 samples, 0.02%)</title><rect x="594.7" y="773" width="0.2" height="15.0" fill="rgb(252,199,30)" rx="2" ry="2" />
<text x="597.66" y="783.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.01%)</title><rect x="1050.1" y="741" width="0.1" height="15.0" fill="rgb(248,57,6)" rx="2" ry="2" />
<text x="1053.13" y="751.5" ></text>
</g>
<g >
<title>tcp_push (201 samples, 0.86%)</title><rect x="348.3" y="645" width="10.1" height="15.0" fill="rgb(213,29,54)" rx="2" ry="2" />
<text x="351.25" y="655.5" ></text>
</g>
<g >
<title>acct_account_cputime (2 samples, 0.01%)</title><rect x="196.7" y="581" width="0.1" height="15.0" fill="rgb(237,70,3)" rx="2" ry="2" />
<text x="199.75" y="591.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue16AppendOperationsERKSt6vectorISt10shared_ptrINS0_12ReplicateMsgEESaIS5_EERKNS_4OpIdENS_26RestartSafeCoarseTimePointE (70 samples, 0.30%)</title><rect x="492.0" y="837" width="3.5" height="15.0" fill="rgb(226,6,22)" rx="2" ry="2" />
<text x="495.00" y="847.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (20 samples, 0.09%)</title><rect x="484.6" y="757" width="1.0" height="15.0" fill="rgb(233,188,9)" rx="2" ry="2" />
<text x="487.60" y="767.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (14 samples, 0.06%)</title><rect x="1058.3" y="773" width="0.7" height="15.0" fill="rgb(254,183,17)" rx="2" ry="2" />
<text x="1061.28" y="783.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf8internal14ArenaStringPtr21CreateInstanceNoArenaEPKSs@plt (2 samples, 0.01%)</title><rect x="757.9" y="853" width="0.1" height="15.0" fill="rgb(240,65,41)" rx="2" ry="2" />
<text x="760.95" y="863.5" ></text>
</g>
<g >
<title>update_rq_clock (3 samples, 0.01%)</title><rect x="443.1" y="821" width="0.1" height="15.0" fill="rgb(246,109,39)" rx="2" ry="2" />
<text x="446.06" y="831.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9TcpStream7FillIovEP5iovec (3 samples, 0.01%)</title><rect x="361.1" y="805" width="0.1" height="15.0" fill="rgb(223,45,33)" rx="2" ry="2" />
<text x="364.09" y="815.5" ></text>
</g>
<g >
<title>get_nohz_timer_target (5 samples, 0.02%)</title><rect x="41.5" y="773" width="0.3" height="15.0" fill="rgb(229,1,49)" rx="2" ry="2" />
<text x="44.52" y="783.5" ></text>
</g>
<g >
<title>check_preempt_curr (2 samples, 0.01%)</title><rect x="492.8" y="629" width="0.1" height="15.0" fill="rgb(239,90,3)" rx="2" ry="2" />
<text x="495.75" y="639.5" ></text>
</g>
<g >
<title>sched_clock (2 samples, 0.01%)</title><rect x="614.8" y="773" width="0.1" height="15.0" fill="rgb(212,7,51)" rx="2" ry="2" />
<text x="617.75" y="783.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus16PeerMessageQueue12GetWatermarkIZNS1_13OpIdWatermarkEvE6PolicyEENT_11result_typeEv.constprop.543 (12 samples, 0.05%)</title><rect x="763.8" y="837" width="0.6" height="15.0" fill="rgb(234,2,33)" rx="2" ry="2" />
<text x="766.84" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="751.0" y="677" width="0.4" height="15.0" fill="rgb(251,94,48)" rx="2" ry="2" />
<text x="754.00" y="687.5" ></text>
</g>
<g >
<title>[unknown] (16 samples, 0.07%)</title><rect x="616.3" y="949" width="0.8" height="15.0" fill="rgb(238,84,54)" rx="2" ry="2" />
<text x="619.26" y="959.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (2 samples, 0.01%)</title><rect x="382.1" y="741" width="0.1" height="15.0" fill="rgb(226,5,52)" rx="2" ry="2" />
<text x="385.09" y="751.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (20 samples, 0.09%)</title><rect x="350.5" y="517" width="1.0" height="15.0" fill="rgb(208,189,23)" rx="2" ry="2" />
<text x="353.52" y="527.5" ></text>
</g>
<g >
<title>rb_erase (34 samples, 0.15%)</title><rect x="234.0" y="741" width="1.7" height="15.0" fill="rgb(207,221,28)" rx="2" ry="2" />
<text x="237.01" y="751.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4 samples, 0.02%)</title><rect x="399.9" y="613" width="0.2" height="15.0" fill="rgb(209,165,11)" rx="2" ry="2" />
<text x="402.86" y="623.5" ></text>
</g>
<g >
<title>tick_sched_timer (5 samples, 0.02%)</title><rect x="1046.3" y="677" width="0.3" height="15.0" fill="rgb(254,28,53)" rx="2" ry="2" />
<text x="1049.30" y="687.5" ></text>
</g>
<g >
<title>do_writepages (2 samples, 0.01%)</title><rect x="398.4" y="709" width="0.1" height="15.0" fill="rgb(254,132,3)" rx="2" ry="2" />
<text x="401.40" y="719.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="430.3" y="693" width="0.1" height="15.0" fill="rgb(205,72,26)" rx="2" ry="2" />
<text x="433.27" y="703.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (4 samples, 0.02%)</title><rect x="394.7" y="805" width="0.2" height="15.0" fill="rgb(238,38,7)" rx="2" ry="2" />
<text x="397.72" y="815.5" ></text>
</g>
<g >
<title>_ZNSs4_Rep9_S_createEmmRKSaIcE (6 samples, 0.03%)</title><rect x="216.6" y="949" width="0.3" height="15.0" fill="rgb(212,19,34)" rx="2" ry="2" />
<text x="219.64" y="959.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (2 samples, 0.01%)</title><rect x="754.0" y="709" width="0.1" height="15.0" fill="rgb(221,104,11)" rx="2" ry="2" />
<text x="756.97" y="719.5" ></text>
</g>
<g >
<title>_ZNSt23_Sp_counted_ptr_inplaceIN2yb16FunctionRunnableESaIS1_ELN9__gnu_cxx12_Lock_policyE2EE14_M_get_deleterERKSt9type_info (2 samples, 0.01%)</title><rect x="751.5" y="741" width="0.1" height="15.0" fill="rgb(239,75,20)" rx="2" ry="2" />
<text x="754.50" y="751.5" ></text>
</g>
<g >
<title>scheduler_tick (9 samples, 0.04%)</title><rect x="614.0" y="677" width="0.5" height="15.0" fill="rgb(236,188,47)" rx="2" ry="2" />
<text x="617.05" y="687.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="424.6" y="805" width="0.1" height="15.0" fill="rgb(217,142,24)" rx="2" ry="2" />
<text x="427.63" y="815.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (9 samples, 0.04%)</title><rect x="36.5" y="821" width="0.5" height="15.0" fill="rgb(253,113,25)" rx="2" ry="2" />
<text x="39.53" y="831.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (12 samples, 0.05%)</title><rect x="479.3" y="869" width="0.6" height="15.0" fill="rgb(219,22,33)" rx="2" ry="2" />
<text x="482.31" y="879.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc12CallResponse9ParseFromEPNS0_8CallDataE (11 samples, 0.05%)</title><rect x="374.1" y="757" width="0.6" height="15.0" fill="rgb(225,118,19)" rx="2" ry="2" />
<text x="377.13" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb6tablet10TabletPeer21SetPropagatedSafeTimeENS_10HybridTimeE (34 samples, 0.15%)</title><rect x="750.2" y="805" width="1.7" height="15.0" fill="rgb(254,20,47)" rx="2" ry="2" />
<text x="753.19" y="815.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc16BinaryCallParser5ParseERKSt10shared_ptrINS0_10ConnectionEERKN5boost9container12small_vectorI5iovecLm4ENS8_13new_allocatorISA_EEEENS_17StronglyTypedBoolINS0_18ReadBufferFull_TagEEE (91 samples, 0.39%)</title><rect x="368.9" y="805" width="4.6" height="15.0" fill="rgb(205,187,27)" rx="2" ry="2" />
<text x="371.94" y="815.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (22 samples, 0.09%)</title><rect x="874.9" y="645" width="1.1" height="15.0" fill="rgb(230,13,10)" rx="2" ry="2" />
<text x="877.86" y="655.5" ></text>
</g>
<g >
<title>tick_sched_timer (29 samples, 0.12%)</title><rect x="474.1" y="709" width="1.5" height="15.0" fill="rgb(219,105,38)" rx="2" ry="2" />
<text x="477.13" y="719.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (89 samples, 0.38%)</title><rect x="1174.9" y="725" width="4.5" height="15.0" fill="rgb(223,85,52)" rx="2" ry="2" />
<text x="1177.90" y="735.5" ></text>
</g>
<g >
<title>native_write_msr (42 samples, 0.18%)</title><rect x="421.2" y="693" width="2.1" height="15.0" fill="rgb(235,192,46)" rx="2" ry="2" />
<text x="424.21" y="703.5" ></text>
</g>
<g >
<title>run_timer_softirq (6 samples, 0.03%)</title><rect x="113.5" y="677" width="0.3" height="15.0" fill="rgb(215,167,0)" rx="2" ry="2" />
<text x="116.52" y="687.5" ></text>
</g>
<g >
<title>tc_newarray (2 samples, 0.01%)</title><rect x="373.2" y="773" width="0.1" height="15.0" fill="rgb(215,112,36)" rx="2" ry="2" />
<text x="376.22" y="783.5" ></text>
</g>
<g >
<title>timerqueue_add (3 samples, 0.01%)</title><rect x="1184.8" y="789" width="0.2" height="15.0" fill="rgb(237,24,28)" rx="2" ry="2" />
<text x="1187.81" y="799.5" ></text>
</g>
<g >
<title>_ZN2yb9consensus13RaftConsensus23MinRetryableRequestOpIdEv (3 samples, 0.01%)</title><rect x="483.9" y="853" width="0.1" height="15.0" fill="rgb(236,57,36)" rx="2" ry="2" />
<text x="486.89" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,205 samples, 5.14%)</title><rect x="146.3" y="885" width="60.7" height="15.0" fill="rgb(220,180,33)" rx="2" ry="2" />
<text x="149.35" y="895.5" >entry_..</text>
</g>
<g >
<title>ip_output (77 samples, 0.33%)</title><rect x="385.6" y="597" width="3.8" height="15.0" fill="rgb(229,108,22)" rx="2" ry="2" />
<text x="388.56" y="607.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.04%)</title><rect x="334.4" y="869" width="0.5" height="15.0" fill="rgb(228,121,44)" rx="2" ry="2" />
<text x="337.35" y="879.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv@plt (5 samples, 0.02%)</title><rect x="1058.0" y="773" width="0.3" height="15.0" fill="rgb(206,215,54)" rx="2" ry="2" />
<text x="1061.03" y="783.5" ></text>
</g>
<g >
<title>mark_wake_futex (4 samples, 0.02%)</title><rect x="755.2" y="757" width="0.2" height="15.0" fill="rgb(241,164,12)" rx="2" ry="2" />
<text x="758.23" y="767.5" ></text>
</g>
<g >
<title>intel_pmu_disable_all (4 samples, 0.02%)</title><rect x="44.4" y="693" width="0.2" height="15.0" fill="rgb(225,8,37)" rx="2" ry="2" />
<text x="47.39" y="703.5" ></text>
</g>
<g >
<title>ctx_sched_out (9 samples, 0.04%)</title><rect x="607.7" y="773" width="0.5" height="15.0" fill="rgb(232,163,4)" rx="2" ry="2" />
<text x="610.70" y="783.5" ></text>
</g>
<g >
<title>_ZNSt6chrono3_V212steady_clock3nowEv (2 samples, 0.01%)</title><rect x="369.2" y="757" width="0.1" height="15.0" fill="rgb(222,46,11)" rx="2" ry="2" />
<text x="372.20" y="767.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (8 samples, 0.03%)</title><rect x="753.5" y="613" width="0.4" height="15.0" fill="rgb(254,198,8)" rx="2" ry="2" />
<text x="756.52" y="623.5" ></text>
</g>
<g >
<title>_ZNK2yb5docdb22BoundedRocksDbIterator5ValidEv (55 samples, 0.23%)</title><rect x="716.5" y="693" width="2.7" height="15.0" fill="rgb(222,198,35)" rx="2" ry="2" />
<text x="719.46" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc9Messenger16QueueInboundCallESt10shared_ptrINS0_11InboundCallEE (2 samples, 0.01%)</title><rect x="380.0" y="773" width="0.1" height="15.0" fill="rgb(248,12,6)" rx="2" ry="2" />
<text x="382.97" y="783.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (11 samples, 0.05%)</title><rect x="124.6" y="837" width="0.6" height="15.0" fill="rgb(242,173,32)" rx="2" ry="2" />
<text x="127.65" y="847.5" ></text>
</g>
<g >
<title>get_futex_key_refs.isra.12 (2 samples, 0.01%)</title><rect x="434.9" y="821" width="0.1" height="15.0" fill="rgb(245,132,2)" rx="2" ry="2" />
<text x="437.90" y="831.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1,604 samples, 6.84%)</title><rect x="37.0" y="821" width="80.7" height="15.0" fill="rgb(244,165,3)" rx="2" ry="2" />
<text x="39.99" y="831.5" >schedule_..</text>
</g>
<g >
<title>x86_pmu_enable (8 samples, 0.03%)</title><rect x="599.6" y="741" width="0.5" height="15.0" fill="rgb(209,5,54)" rx="2" ry="2" />
<text x="602.65" y="751.5" ></text>
</g>
<g >
<title>_ZNK7rocksdb16MemTableIterator5ValidEv (2 samples, 0.01%)</title><rect x="713.8" y="677" width="0.1" height="15.0" fill="rgb(233,72,20)" rx="2" ry="2" />
<text x="716.79" y="687.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc14ResponseHeaderD2Ev (3 samples, 0.01%)</title><rect x="774.0" y="885" width="0.2" height="15.0" fill="rgb(210,19,9)" rx="2" ry="2" />
<text x="777.01" y="895.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3 samples, 0.01%)</title><rect x="426.5" y="693" width="0.2" height="15.0" fill="rgb(230,38,32)" rx="2" ry="2" />
<text x="429.54" y="703.5" ></text>
</g>
<g >
<title>_ZN2yb3rpc7Reactor12AsyncHandlerERN2ev5asyncEi (580 samples, 2.47%)</title><rect x="337.1" y="885" width="29.2" height="15.0" fill="rgb(248,204,50)" rx="2" ry="2" />
<text x="340.12" y="895.5" >_Z..</text>
</g>
<g >
<title>iptable_mangle_hook (3 samples, 0.01%)</title><rect x="357.3" y="517" width="0.1" height="15.0" fill="rgb(231,184,11)" rx="2" ry="2" />
<text x="360.26" y="527.5" ></text>
</g>
<g >
<title>__do_softirq (3 samples, 0.01%)</title><rect x="325.5" y="693" width="0.2" height="15.0" fill="rgb(222,16,25)" rx="2" ry="2" />
<text x="328.54" y="703.5" ></text>
</g>
<g >
<title>__raw_callee_save___pv_queued_spin_unlock (2 samples, 0.01%)</title><rect x="441.5" y="821" width="0.1" height="15.0" fill="rgb(253,93,5)" rx="2" ry="2" />
<text x="444.55" y="831.5" ></text>
</g>
<g >
<title>irq_exit (8 samples, 0.03%)</title><rect x="113.4" y="709" width="0.4" height="15.0" fill="rgb(253,180,32)" rx="2" ry="2" />
<text x="116.42" y="719.5" ></text>
</g>
<g >
<title>wake_up_q (2 samples, 0.01%)</title><rect x="399.1" y="693" width="0.1" height="15.0" fill="rgb(226,9,8)" rx="2" ry="2" />
<text x="402.05" y="703.5" ></text>
</g>
<g >
<title>update_rq_clock (4 samples, 0.02%)</title><rect x="326.3" y="757" width="0.2" height="15.0" fill="rgb(227,26,6)" rx="2" ry="2" />
<text x="329.35" y="767.5" ></text>
</g>
<g >
<title>_ZN6google8protobuf2io16CodedInputStream15ReadTagFallbackEj (4 samples, 0.02%)</title><rect x="374.3" y="693" width="0.2" height="15.0" fill="rgb(229,15,35)" rx="2" ry="2" />
<text x="377.28" y="703.5" ></text>
</g>
<g >
<title>__fget (4 samples, 0.02%)</title><rect x="359.3" y="677" width="0.2" height="15.0" fill="rgb(238,55,31)" rx="2" ry="2" />
<text x="362.28" y="687.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (45 samples, 0.19%)</title><rect x="122.0" y="837" width="2.2" height="15.0" fill="rgb(206,9,54)" rx="2" ry="2" />
<text x="124.98" y="847.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2 samples, 0.01%)</title><rect x="326.4" y="741" width="0.1" height="15.0" fill="rgb(229,62,46)" rx="2" ry="2" />
<text x="329.45" y="751.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2 samples, 0.01%)</title><rect x="976.1" y="693" width="0.1" height="15.0" fill="rgb(245,172,51)" rx="2" ry="2" />
<text x="979.11" y="703.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.01%)</title><rect x="550.6" y="805" width="0.1" height="15.0" fill="rgb(238,25,39)" rx="2" ry="2" />
<text x="553.61" y="815.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2 samples, 0.01%)</title><rect x="756.7" y="821" width="0.1" height="15.0" fill="rgb(205,83,29)" rx="2" ry="2" />
<text x="759.74" y="831.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (47 samples, 0.20%)</title><rect x="421.0" y="757" width="2.3" height="15.0" fill="rgb(221,168,0)" rx="2" ry="2" />
<text x="423.96" y="767.5" ></text>
</g>
<g >
<title>_ZN2yb6server11HybridClock8NowRangeEv (2 samples, 0.01%)</title><rect x="737.1" y="805" width="0.1" height="15.0" fill="rgb(252,99,1)" rx="2" ry="2" />
<text x="740.05" y="815.5" ></text>
</g>
<g >
<title>wake_up_q (12 samples, 0.05%)</title><rect x="766.0" y="725" width="0.6" height="15.0" fill="rgb(229,214,14)" rx="2" ry="2" />
<text x="769.00" y="735.5" ></text>
</g>
<g >
<title>_ZNK2yb3log15LogEntryBatchPB12ByteSizeLongEv (5 samples, 0.02%)</title><rect x="401.2" y="853" width="0.2" height="15.0" fill="rgb(213,42,42)" rx="2" ry="2" />
<text x="404.17" y="863.5" ></text>
</g>
<g >
<title>cpuacct_charge (3 samples, 0.01%)</title><rect x="500.6" y="709" width="0.1" height="15.0" fill="rgb(248,33,51)" rx="2" ry="2" />
<text x="503.56" y="719.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2 samples, 0.01%)</title><rect x="1020.7" y="677" width="0.1" height="15.0" fill="rgb(211,99,8)" rx="2" ry="2" />
<text x="1023.72" y="687.5" ></text>
</g>
<g >
<title>perf_pmu_enable (3 samples, 0.01%)</title><rect x="113.9" y="741" width="0.2" height="15.0" fill="rgb(219,144,26)" rx="2" ry="2" />
<text x="116.92" y="751.5" ></text>
</g>
<g >
<title>hrtimer_init (2 samples, 0.01%)</title><rect x="433.3" y="837" width="0.1" height="15.0" fill="rgb(226,19,0)" rx="2" ry="2" />
<text x="436.29" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,056 samples, 8.77%)</title><rect x="21.9" y="885" width="103.6" height="15.0" fill="rgb(216,58,26)" rx="2" ry="2" />
<text x="24.93" y="895.5" >entry_SYSCAL..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="156.4" y="773" width="0.1" height="15.0" fill="rgb(253,133,4)" rx="2" ry="2" />
<text x="159.37" y="783.5" ></text>
</g>
<g >
<title>tcp_data_queue (14 samples, 0.06%)</title><rect x="342.2" y="245" width="0.7" height="15.0" fill="rgb(208,144,44)" rx="2" ry="2" />
<text x="345.21" y="255.5" ></text>
</g>
<g >
<title>do_futex (16 samples, 0.07%)</title><rect x="482.3" y="837" width="0.8" height="15.0" fill="rgb(241,29,0)" rx="2" ry="2" />
<text x="485.33" y="847.5" ></text>
</g>
<g >
<title>_ZN2yb13DocHybridTime22CheckAndGetEncodedSizeERKNS_5SliceEPi (6 samples, 0.03%)</title><rect x="926.9" y="741" width="0.3" height="15.0" fill="rgb(253,182,11)" rx="2" ry="2" />
<text x="929.87" y="751.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.02%)</title><rect x="398.2" y="629" width="0.2" height="15.0" fill="rgb(207,218,32)" rx="2" ry="2" />
<text x="401.20" y="639.5" ></text>
</g>
<g >
<title>scheduler_tick (2 samples, 0.01%)</title><rect x="667.5" y="549" width="0.1" height="15.0" fill="rgb(214,34,54)" rx="2" ry="2" />
<text x="670.52" y="559.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment