Project

General

Profile

Bug #23853 » out.svg

Jason Dillaman, 06/20/2018 03:25 PM

 
<?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="630" onload="init(evt)" viewBox="0 0 1200 630" 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">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}

// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}

// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})

// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;

// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}

t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;

for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}

// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}

if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;

// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;

var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";

var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";

var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}

// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;

// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;

if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";

// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;

searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"

// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// 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.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="630.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="613" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="613" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="972.2" y="325" width="3.6" height="15.0" fill="rgb(217,90,21)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (2 samples, 0.62%)</title><rect x="743.4" y="517" width="7.3" height="15.0" fill="rgb(242,126,5)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 1.23%)</title><rect x="1157.3" y="389" width="14.5" height="15.0" fill="rgb(244,15,4)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15ObjectOperation6add_opEi (1 samples, 0.31%)</title><rect x="1008.5" y="341" width="3.6" height="15.0" fill="rgb(227,25,3)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN3rbd5Shell7executeERKSt6vectorIPKcSaIS3_EE (14 samples, 4.31%)</title><rect x="975.8" y="485" width="50.8" height="15.0" fill="rgb(254,53,31)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN3r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb (1 samples, 0.31%)</title><rect x="743.4" y="133" width="3.6" height="15.0" fill="rgb(211,133,46)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE16_M_insert_uniqueIRKSB_EES6_ISt17_Rb_tree_iteratorISB_EbEOT_ (18 samples, 5.54%)</title><rect x="478.4" y="517" width="65.3" height="15.0" fill="rgb(242,192,41)" rx="2" ry="2" />
<text text-anchor="" x="481.37" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZNSt8_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (8 samples, 2.46%)</title><rect x="707.1" y="437" width="29.1" height="15.0" fill="rgb(232,190,13)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.31%)</title><rect x="990.3" y="213" width="3.6" height="15.0" fill="rgb(250,222,18)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN12PerfCountersC2EP11CephContextRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii (3 samples, 0.92%)</title><rect x="594.6" y="357" width="10.8" height="15.0" fill="rgb(237,102,38)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd10cls_client8dir_listEPN8librados5IoCtxERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_mPSt3mapIS9_S9_St4lessIS9_ESaISt4pairISA_S9_EEE (1 samples, 0.31%)</title><rect x="1008.5" y="389" width="3.6" height="15.0" fill="rgb(246,168,10)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (16 samples, 4.92%)</title><rect x="819.7" y="293" width="58.1" height="15.0" fill="rgb(243,124,30)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (13 samples, 4.00%)</title><rect x="652.6" y="453" width="47.2" height="15.0" fill="rgb(247,19,15)" rx="2" ry="2" />
<text text-anchor="" x="655.65" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (4 samples, 1.23%)</title><rect x="627.2" y="325" width="14.6" height="15.0" fill="rgb(216,10,9)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="808.8" y="309" width="3.6" height="15.0" fill="rgb(211,32,41)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (2 samples, 0.62%)</title><rect x="743.4" y="357" width="7.3" height="15.0" fill="rgb(234,76,25)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (8 samples, 2.46%)</title><rect x="707.1" y="389" width="29.1" height="15.0" fill="rgb(250,85,0)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 1.54%)</title><rect x="1171.8" y="549" width="18.2" height="15.0" fill="rgb(234,104,33)" rx="2" ry="2" />
<text text-anchor="" x="1174.85" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="888.6" y="389" width="3.7" height="15.0" fill="rgb(208,163,30)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_bESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E (1 samples, 0.31%)</title><rect x="572.8" y="485" width="3.6" height="15.0" fill="rgb(214,222,49)" rx="2" ry="2" />
<text text-anchor="" x="575.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (325 samples, 100%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(213,49,1)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4listERN8librados5IoCtxERSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS9_EE (5 samples, 1.54%)</title><rect x="1008.5" y="421" width="18.1" height="15.0" fill="rgb(228,163,39)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5boost7variantINS_5blankEJNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEmldb13entity_addr_t6uuid_dEE22internal_apply_visitorINS_6detail7variant9destroyerEEENT_11result_typeERSF_ (1 samples, 0.31%)</title><rect x="333.1" y="517" width="3.7" height="15.0" fill="rgb(227,119,18)" rx="2" ry="2" />
<text text-anchor="" x="336.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace_handler (1 samples, 0.31%)</title><rect x="1004.8" y="181" width="3.7" height="15.0" fill="rgb(205,46,34)" rx="2" ry="2" />
<text text-anchor="" x="1007.83" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (12 samples, 3.69%)</title><rect x="754.3" y="437" width="43.6" height="15.0" fill="rgb(237,193,18)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >epol..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (32 samples, 9.85%)</title><rect x="1026.6" y="517" width="116.2" height="15.0" fill="rgb(243,78,17)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_tail</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE8_M_eraseEPSt13_Rb_tree_nodeISB_E (1 samples, 0.31%)</title><rect x="561.9" y="421" width="3.6" height="15.0" fill="rgb(210,211,1)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt6vectorI5OSDOpSaIS0_EE17_M_default_appendEm (1 samples, 0.31%)</title><rect x="1008.5" y="325" width="3.6" height="15.0" fill="rgb(207,29,40)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N5boost7variantIM11md_config_tlIMSA_mMSA_S5_MSA_dMSA_bMSA_13entity_addr_tMSA_6uuid_dEEEESt10_Select1stISL_ESt4lessIS5_ESaISL_EE16_M_assign_uniqueIPKSL_EEvT_SV_ (14 samples, 4.31%)</title><rect x="402.1" y="517" width="50.9" height="15.0" fill="rgb(207,17,15)" rx="2" ry="2" />
<text text-anchor="" x="405.12" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZNSt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="888.6" y="405" width="3.7" height="15.0" fill="rgb(226,46,0)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (16 samples, 4.92%)</title><rect x="819.7" y="261" width="58.1" height="15.0" fill="rgb(208,100,52)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pm..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (1 samples, 0.31%)</title><rect x="736.2" y="53" width="3.6" height="15.0" fill="rgb(245,99,45)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.31%)</title><rect x="1153.7" y="549" width="3.6" height="15.0" fill="rgb(219,88,16)" rx="2" ry="2" />
<text text-anchor="" x="1156.69" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeI4pg_tSt4pairIKS0_iESt10_Select1stIS3_ESt4lessIS0_EN7mempool14pool_allocatorILNS8_12pool_index_tE15ES3_EEE14_M_lower_boundEPSt13_Rb_tree_nodeIS3_ESF_RS2_.isra.767 (1 samples, 0.31%)</title><rect x="587.3" y="277" width="3.6" height="15.0" fill="rgb(236,93,30)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (12 samples, 3.69%)</title><rect x="754.3" y="405" width="43.6" height="15.0" fill="rgb(253,219,49)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZL17nss_aes_operationmmP13PK11SymKeyStrP10SECItemStrRKN4ceph6buffer4listERS5_PNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (2 samples, 0.62%)</title><rect x="805.1" y="389" width="7.3" height="15.0" fill="rgb(249,175,53)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_execveat_common.isra.35 (4 samples, 1.23%)</title><rect x="954.0" y="501" width="14.5" height="15.0" fill="rgb(243,188,53)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (1 samples, 0.31%)</title><rect x="736.2" y="165" width="3.6" height="15.0" fill="rgb(212,41,46)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EventCenter14process_eventsEiPNSt6chrono8durationImSt5ratioILl1ELl1000000000EEEE (19 samples, 5.85%)</title><rect x="819.7" y="469" width="68.9" height="15.0" fill="rgb(231,66,21)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN11Ev..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection13write_messageEP7MessageRN4ceph6buffer4listEb (2 samples, 0.62%)</title><rect x="932.2" y="437" width="7.3" height="15.0" fill="rgb(221,88,10)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="899.5" y="421" width="3.7" height="15.0" fill="rgb(223,84,4)" rx="2" ry="2" />
<text text-anchor="" x="902.54" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (15 samples, 4.62%)</title><rect x="899.5" y="533" width="54.5" height="15.0" fill="rgb(231,125,47)" rx="2" ry="2" />
<text text-anchor="" x="902.54" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__clone</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5boost11basic_regexIcNS_12regex_traitsIcNS_16cpp_regex_traitsIcEEEEE9do_assignEPKcS7_j (1 samples, 0.31%)</title><rect x="336.8" y="485" width="3.6" height="15.0" fill="rgb(230,149,30)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EventCenter14process_eventsEiPNSt6chrono8durationImSt5ratioILl1ELl1000000000EEEE (15 samples, 4.62%)</title><rect x="899.5" y="469" width="54.5" height="15.0" fill="rgb(244,211,7)" rx="2" ry="2" />
<text text-anchor="" x="902.54" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN11..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.31%)</title><rect x="736.2" y="405" width="3.6" height="15.0" fill="rgb(249,220,43)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados9IoCtxImpl16aio_operate_readERK8object_tP15ObjectOperationPNS_17AioCompletionImplEiPN4ceph6buffer4listEPK16blkin_trace_info (1 samples, 0.31%)</title><rect x="605.4" y="389" width="3.7" height="15.0" fill="rgb(226,20,5)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (15 samples, 4.62%)</title><rect x="278.7" y="501" width="54.4" height="15.0" fill="rgb(250,29,44)" rx="2" ry="2" />
<text text-anchor="" x="281.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>neigh_resolve_output (1 samples, 0.31%)</title><rect x="747.0" y="245" width="3.7" height="15.0" fill="rgb(251,97,22)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (4 samples, 1.23%)</title><rect x="954.0" y="485" width="14.5" height="15.0" fill="rgb(234,173,19)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 1.23%)</title><rect x="627.2" y="341" width="14.6" height="15.0" fill="rgb(244,206,14)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="972.2" y="293" width="3.6" height="15.0" fill="rgb(227,101,34)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN10ThreadPool10WorkThread5entryEv (4 samples, 1.23%)</title><rect x="1175.5" y="501" width="14.5" height="15.0" fill="rgb(214,69,43)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="808.8" y="293" width="3.6" height="15.0" fill="rgb(207,71,22)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.31%)</title><rect x="1139.2" y="421" width="3.6" height="15.0" fill="rgb(209,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1142.17" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_exit (1 samples, 0.31%)</title><rect x="736.2" y="469" width="3.6" height="15.0" fill="rgb(231,6,53)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (8 samples, 2.46%)</title><rect x="903.2" y="405" width="29.0" height="15.0" fill="rgb(219,83,30)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="336.8" y="405" width="3.6" height="15.0" fill="rgb(208,153,49)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="972.2" y="277" width="3.6" height="15.0" fill="rgb(249,167,53)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>i40e_msix_clean_rings (1 samples, 0.31%)</title><rect x="943.1" y="309" width="3.6" height="15.0" fill="rgb(246,147,13)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N5boost7variantINS8_5blankEIS5_mldb13entity_addr_t6uuid_dEEEESt10_Select1stISE_ESt4lessIS5_ESaISE_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISE_ERS7_ (1 samples, 0.31%)</title><rect x="456.6" y="501" width="3.6" height="15.0" fill="rgb(207,50,16)" rx="2" ry="2" />
<text text-anchor="" x="459.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN14AsyncMessenger9reap_deadEv (1 samples, 0.31%)</title><rect x="797.9" y="453" width="3.6" height="15.0" fill="rgb(206,180,4)" rx="2" ry="2" />
<text text-anchor="" x="800.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1 samples, 0.31%)</title><rect x="1150.1" y="533" width="3.6" height="15.0" fill="rgb(235,151,8)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.92%)</title><rect x="957.6" y="357" width="10.9" height="15.0" fill="rgb(208,171,31)" rx="2" ry="2" />
<text text-anchor="" x="960.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN12NetworkStack5startEv (4 samples, 1.23%)</title><rect x="975.8" y="357" width="14.5" height="15.0" fill="rgb(235,192,35)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection10read_untilEjPc (1 samples, 0.31%)</title><rect x="950.4" y="437" width="3.6" height="15.0" fill="rgb(208,167,28)" rx="2" ry="2" />
<text text-anchor="" x="953.37" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 1.85%)</title><rect x="906.8" y="229" width="21.8" height="15.0" fill="rgb(244,81,34)" rx="2" ry="2" />
<text text-anchor="" x="909.80" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (12 samples, 3.69%)</title><rect x="656.3" y="309" width="43.5" height="15.0" fill="rgb(247,84,5)" rx="2" ry="2" />
<text text-anchor="" x="659.28" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (13 samples, 4.00%)</title><rect x="652.6" y="469" width="47.2" height="15.0" fill="rgb(230,150,20)" rx="2" ry="2" />
<text text-anchor="" x="655.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.31%)</title><rect x="892.3" y="293" width="3.6" height="15.0" fill="rgb(224,209,23)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE8_M_eraseEPSt13_Rb_tree_nodeISB_E (1 samples, 0.31%)</title><rect x="561.9" y="453" width="3.6" height="15.0" fill="rgb(252,121,23)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (32 samples, 9.85%)</title><rect x="1026.6" y="549" width="116.2" height="15.0" fill="rgb(231,100,31)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__clone</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (8 samples, 2.46%)</title><rect x="707.1" y="405" width="29.1" height="15.0" fill="rgb(218,225,27)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.62%)</title><rect x="743.4" y="277" width="7.3" height="15.0" fill="rgb(236,131,4)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 1.23%)</title><rect x="1157.3" y="485" width="14.5" height="15.0" fill="rgb(205,177,27)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph7logging12SubsystemMap13should_gatherEji (1 samples, 0.31%)</title><rect x="950.4" y="421" width="3.6" height="15.0" fill="rgb(227,111,11)" rx="2" ry="2" />
<text text-anchor="" x="953.37" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (4 samples, 1.23%)</title><rect x="1157.3" y="533" width="14.5" height="15.0" fill="rgb(226,50,6)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ms_local (1 samples, 0.31%)</title><rect x="736.2" y="565" width="3.6" height="15.0" fill="rgb(212,205,49)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK9MonClient16build_authorizerEi (1 samples, 0.31%)</title><rect x="885.0" y="405" width="3.6" height="15.0" fill="rgb(245,222,25)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 2.46%)</title><rect x="903.2" y="245" width="29.0" height="15.0" fill="rgb(247,214,1)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5boost12shared_mutex13unlock_sharedEv (1 samples, 0.31%)</title><rect x="946.7" y="357" width="3.7" height="15.0" fill="rgb(232,182,9)" rx="2" ry="2" />
<text text-anchor="" x="949.74" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="797.9" y="405" width="3.6" height="15.0" fill="rgb(238,71,46)" rx="2" ry="2" />
<text text-anchor="" x="800.88" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 1.23%)</title><rect x="627.2" y="453" width="14.6" height="15.0" fill="rgb(227,146,19)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.31%)</title><rect x="990.3" y="261" width="3.6" height="15.0" fill="rgb(237,106,14)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image11OpenRequestINS_8ImageCtxEE19send_register_watchEv (4 samples, 1.23%)</title><rect x="590.9" y="421" width="14.5" height="15.0" fill="rgb(215,103,36)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5boost15throw_exceptionINS_16bad_lexical_castEEEvRKT_ (1 samples, 0.31%)</title><rect x="340.4" y="485" width="3.6" height="15.0" fill="rgb(222,200,2)" rx="2" ry="2" />
<text text-anchor="" x="343.40" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="972.2" y="405" width="3.6" height="15.0" fill="rgb(245,220,32)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (1 samples, 0.31%)</title><rect x="402.1" y="485" width="3.7" height="15.0" fill="rgb(210,74,3)" rx="2" ry="2" />
<text text-anchor="" x="405.12" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.31%)</title><rect x="736.2" y="373" width="3.6" height="15.0" fill="rgb(208,143,8)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 1.23%)</title><rect x="975.8" y="133" width="14.5" height="15.0" fill="rgb(253,10,42)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt6vectorIN12PerfCounters23perf_counter_data_any_dESaIS1_EE17_M_default_appendEm (3 samples, 0.92%)</title><rect x="594.6" y="341" width="10.8" height="15.0" fill="rgb(212,125,30)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="808.8" y="341" width="3.6" height="15.0" fill="rgb(241,153,15)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (12 samples, 3.69%)</title><rect x="754.3" y="277" width="43.6" height="15.0" fill="rgb(230,166,34)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN3rbd5utils4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPN8librados5RadosEPNS9_5IoCtxE (9 samples, 2.77%)</title><rect x="975.8" y="437" width="32.7" height="15.0" fill="rgb(216,78,51)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NSS_ShutdownContext (1 samples, 0.31%)</title><rect x="972.2" y="437" width="3.6" height="15.0" fill="rgb(231,102,27)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libgcc_s.so.1] (1 samples, 0.31%)</title><rect x="340.4" y="421" width="3.6" height="15.0" fill="rgb(234,37,17)" rx="2" ry="2" />
<text text-anchor="" x="343.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (2 samples, 0.62%)</title><rect x="932.2" y="325" width="7.3" height="15.0" fill="rgb(242,158,27)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf (4 samples, 1.23%)</title><rect x="954.0" y="565" width="14.5" height="15.0" fill="rgb(247,62,11)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_ (1 samples, 0.31%)</title><rect x="536.5" y="501" width="3.6" height="15.0" fill="rgb(207,164,35)" rx="2" ry="2" />
<text text-anchor="" x="539.46" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="808.8" y="325" width="3.6" height="15.0" fill="rgb(208,223,23)" rx="2" ry="2" />
<text text-anchor="" x="811.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.31%)</title><rect x="736.2" y="245" width="3.6" height="15.0" fill="rgb(244,114,4)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libstdc++.so.6.0.21] (20 samples, 6.15%)</title><rect x="819.7" y="501" width="72.6" height="15.0" fill="rgb(218,226,7)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libstdc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN24PosixConnectedSocketImpl4sendERN4ceph6buffer4listEb (1 samples, 0.31%)</title><rect x="892.3" y="533" width="3.6" height="15.0" fill="rgb(249,60,53)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK11md_config_t8_get_valERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="565.5" y="485" width="3.6" height="15.0" fill="rgb(229,172,17)" rx="2" ry="2" />
<text text-anchor="" x="568.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter12_calc_targetEPNS_11op_target_tEP10Connectionb (1 samples, 0.31%)</title><rect x="605.4" y="325" width="3.7" height="15.0" fill="rgb(207,115,44)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_bESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E (1 samples, 0.31%)</title><rect x="572.8" y="517" width="3.6" height="15.0" fill="rgb(252,216,19)" rx="2" ry="2" />
<text text-anchor="" x="575.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection7processEv (2 samples, 0.62%)</title><rect x="881.4" y="453" width="7.2" height="15.0" fill="rgb(209,99,45)" rx="2" ry="2" />
<text text-anchor="" x="884.38" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (16 samples, 4.92%)</title><rect x="819.7" y="245" width="58.1" height="15.0" fill="rgb(254,64,30)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 1.23%)</title><rect x="1175.5" y="389" width="14.5" height="15.0" fill="rgb(248,31,25)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_exit (1 samples, 0.31%)</title><rect x="736.2" y="485" width="3.6" height="15.0" fill="rgb(214,208,26)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection12handle_writeEv (1 samples, 0.31%)</title><rect x="877.8" y="453" width="3.6" height="15.0" fill="rgb(237,211,19)" rx="2" ry="2" />
<text text-anchor="" x="880.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZZN12NetworkStack10add_threadEjENKUlvE_clEv (16 samples, 4.92%)</title><rect x="754.3" y="485" width="58.1" height="15.0" fill="rgb(237,153,33)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZZN12..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="972.2" y="421" width="3.6" height="15.0" fill="rgb(248,31,35)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZL17nss_aes_operationmmP13PK11SymKeyStrP10SECItemStrRKN4ceph6buffer4listERS5_PNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (2 samples, 0.62%)</title><rect x="932.2" y="373" width="7.3" height="15.0" fill="rgb(217,225,22)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (24 samples, 7.38%)</title><rect x="1048.4" y="421" width="87.1" height="15.0" fill="rgb(248,66,40)" rx="2" ry="2" />
<text text-anchor="" x="1051.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native_wri..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11md_config_t17update_legacy_valERK6OptionN5boost7variantIMS_lIMS_mMS_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEMS_dMS_bMS_13entity_addr_tMS_6uuid_dEEE (33 samples, 10.15%)</title><rect x="213.3" y="517" width="119.8" height="15.0" fill="rgb(231,171,24)" rx="2" ry="2" />
<text text-anchor="" x="216.32" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN11md_config..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 1.23%)</title><rect x="993.9" y="389" width="14.6" height="15.0" fill="rgb(213,146,22)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (8 samples, 2.46%)</title><rect x="707.1" y="421" width="29.1" height="15.0" fill="rgb(228,14,34)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.31%)</title><rect x="1146.4" y="501" width="3.7" height="15.0" fill="rgb(207,82,45)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.92%)</title><rect x="1012.1" y="133" width="10.9" height="15.0" fill="rgb(231,117,12)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN7Context8completeEi (12 samples, 3.69%)</title><rect x="583.7" y="485" width="43.5" height="15.0" fill="rgb(238,204,5)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN7..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EpollDriver10event_waitERSt6vectorI14FiredFileEventSaIS1_EEP7timeval (9 samples, 2.77%)</title><rect x="899.5" y="453" width="32.7" height="15.0" fill="rgb(215,102,20)" rx="2" ry="2" />
<text text-anchor="" x="902.54" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.31%)</title><rect x="892.3" y="325" width="3.6" height="15.0" fill="rgb(207,109,6)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.31%)</title><rect x="736.2" y="213" width="3.6" height="15.0" fill="rgb(228,34,6)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.92%)</title><rect x="627.2" y="277" width="10.9" height="15.0" fill="rgb(211,174,29)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail22C_StateCallbackAdapterINS_5image14RefreshRequestINS_8ImageCtxEEEXadL_ZNS6_15handle_v2_applyEPiEELb1EE8completeEi (1 samples, 0.31%)</title><rect x="1171.8" y="533" width="3.7" height="15.0" fill="rgb(222,167,20)" rx="2" ry="2" />
<text text-anchor="" x="1174.85" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (1 samples, 0.31%)</title><rect x="736.2" y="85" width="3.6" height="15.0" fill="rgb(246,72,50)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.31%)</title><rect x="990.3" y="309" width="3.6" height="15.0" fill="rgb(215,159,8)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN19CephxSessionHandler15_calc_signatureEP7MessagePm (2 samples, 0.62%)</title><rect x="805.1" y="421" width="7.3" height="15.0" fill="rgb(246,165,21)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (1 samples, 0.31%)</title><rect x="699.8" y="469" width="3.7" height="15.0" fill="rgb(228,18,52)" rx="2" ry="2" />
<text text-anchor="" x="702.85" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (1 samples, 0.31%)</title><rect x="645.4" y="517" width="3.6" height="15.0" fill="rgb(221,58,29)" rx="2" ry="2" />
<text text-anchor="" x="648.38" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="885.0" y="245" width="3.6" height="15.0" fill="rgb(227,1,14)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__task_rq_lock (1 samples, 0.31%)</title><rect x="590.9" y="165" width="3.7" height="15.0" fill="rgb(222,1,7)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (8 samples, 2.46%)</title><rect x="903.2" y="277" width="29.0" height="15.0" fill="rgb(227,34,6)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="558.2" y="437" width="3.7" height="15.0" fill="rgb(251,77,5)" rx="2" ry="2" />
<text text-anchor="" x="561.25" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (4 samples, 1.23%)</title><rect x="954.0" y="517" width="14.5" height="15.0" fill="rgb(206,172,41)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd2io14ImageRequestWQINS_8ImageCtxEE14unblock_writesEv (1 samples, 0.31%)</title><rect x="583.7" y="373" width="3.6" height="15.0" fill="rgb(253,19,42)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.31%)</title><rect x="892.3" y="357" width="3.6" height="15.0" fill="rgb(241,164,33)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNKSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE4findERS7_ (15 samples, 4.62%)</title><rect x="344.0" y="517" width="54.5" height="15.0" fill="rgb(248,62,32)" rx="2" ry="2" />
<text text-anchor="" x="347.03" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZNKS..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 1.23%)</title><rect x="993.9" y="261" width="14.6" height="15.0" fill="rgb(230,144,19)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter22_op_submit_with_budgetEPNS_2OpERN4ceph13shunique_lockIN5boost12shared_mutexEEEPmPi (1 samples, 0.31%)</title><rect x="605.4" y="357" width="3.7" height="15.0" fill="rgb(229,130,54)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (22 samples, 6.77%)</title><rect x="812.4" y="549" width="79.9" height="15.0" fill="rgb(240,13,43)" rx="2" ry="2" />
<text text-anchor="" x="815.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="888.6" y="421" width="3.7" height="15.0" fill="rgb(220,56,35)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.31%)</title><rect x="1146.4" y="517" width="3.7" height="15.0" fill="rgb(217,109,28)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.31%)</title><rect x="590.9" y="133" width="3.7" height="15.0" fill="rgb(230,87,51)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="561.9" y="373" width="3.6" height="15.0" fill="rgb(248,15,45)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.31%)</title><rect x="892.3" y="229" width="3.6" height="15.0" fill="rgb(227,73,5)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.31%)</title><rect x="888.6" y="341" width="3.7" height="15.0" fill="rgb(231,97,18)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (32 samples, 9.85%)</title><rect x="1026.6" y="453" width="116.2" height="15.0" fill="rgb(214,5,13)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pmu_enable</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14RefreshRequestINS_8ImageCtxEE22handle_v2_get_metadataEPi (2 samples, 0.62%)</title><rect x="616.3" y="437" width="7.3" height="15.0" fill="rgb(239,93,32)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (174 samples, 53.54%)</title><rect x="13.6" y="549" width="631.8" height="15.0" fill="rgb(224,116,7)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 1.23%)</title><rect x="975.8" y="309" width="14.5" height="15.0" fill="rgb(216,169,4)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.31%)</title><rect x="736.2" y="421" width="3.6" height="15.0" fill="rgb(233,4,29)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N5boost7variantINS8_5blankEJS5_mldb13entity_addr_t6uuid_dEEEESt10_Select1stISE_ESt4lessIS5_ESaISE_EE8_M_eraseEPSt13_Rb_tree_nodeISE_E (1 samples, 0.31%)</title><rect x="558.2" y="485" width="3.7" height="15.0" fill="rgb(253,126,35)" rx="2" ry="2" />
<text text-anchor="" x="561.25" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.31%)</title><rect x="583.7" y="149" width="3.6" height="15.0" fill="rgb(213,210,39)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.31%)</title><rect x="561.9" y="389" width="3.6" height="15.0" fill="rgb(246,54,22)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 1.23%)</title><rect x="1012.1" y="165" width="14.5" height="15.0" fill="rgb(228,19,44)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.31%)</title><rect x="638.1" y="277" width="3.7" height="15.0" fill="rgb(221,149,19)" rx="2" ry="2" />
<text text-anchor="" x="641.12" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (16 samples, 4.92%)</title><rect x="819.7" y="341" width="58.1" height="15.0" fill="rgb(251,191,39)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.31%)</title><rect x="558.2" y="453" width="3.7" height="15.0" fill="rgb(213,143,23)" rx="2" ry="2" />
<text text-anchor="" x="561.25" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag.isra.150 (6 samples, 1.85%)</title><rect x="514.7" y="501" width="21.8" height="15.0" fill="rgb(209,127,8)" rx="2" ry="2" />
<text text-anchor="" x="517.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (10 samples, 3.08%)</title><rect x="13.6" y="533" width="36.3" height="15.0" fill="rgb(223,71,7)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[li..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph6buffer4list6appendEPKcj (1 samples, 0.31%)</title><rect x="590.9" y="325" width="3.7" height="15.0" fill="rgb(242,49,34)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="609.1" y="325" width="3.6" height="15.0" fill="rgb(252,123,20)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (6 samples, 1.85%)</title><rect x="184.3" y="485" width="21.8" height="15.0" fill="rgb(210,185,7)" rx="2" ry="2" />
<text text-anchor="" x="187.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 1.23%)</title><rect x="1175.5" y="341" width="14.5" height="15.0" fill="rgb(237,1,6)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (3 samples, 0.92%)</title><rect x="442.1" y="501" width="10.9" height="15.0" fill="rgb(218,44,18)" rx="2" ry="2" />
<text text-anchor="" x="445.06" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd3RBD4listERN8librados5IoCtxERSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISA_EE (5 samples, 1.54%)</title><rect x="1008.5" y="437" width="18.1" height="15.0" fill="rgb(241,16,48)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK11md_config_t7get_valIdEET_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="569.1" y="517" width="3.7" height="15.0" fill="rgb(211,163,39)" rx="2" ry="2" />
<text text-anchor="" x="572.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.31%)</title><rect x="892.3" y="405" width="3.6" height="15.0" fill="rgb(243,38,7)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK19CryptoAESKeyHandler7encryptERKN4ceph6buffer4listERS2_PNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (2 samples, 0.62%)</title><rect x="805.1" y="405" width="7.3" height="15.0" fill="rgb(239,153,33)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.31%)</title><rect x="892.3" y="373" width="3.6" height="15.0" fill="rgb(240,199,35)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.31%)</title><rect x="580.0" y="437" width="3.7" height="15.0" fill="rgb(239,15,26)" rx="2" ry="2" />
<text text-anchor="" x="583.03" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados15ObjectOperation4execEPKcS2_RN4ceph6buffer4listE (1 samples, 0.31%)</title><rect x="590.9" y="341" width="3.7" height="15.0" fill="rgb(219,161,47)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection7processEv (3 samples, 0.92%)</title><rect x="943.1" y="453" width="10.9" height="15.0" fill="rgb(239,114,9)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (2 samples, 0.62%)</title><rect x="616.3" y="341" width="7.3" height="15.0" fill="rgb(245,181,54)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.31%)</title><rect x="1175.5" y="261" width="3.6" height="15.0" fill="rgb(214,67,35)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.31%)</title><rect x="892.3" y="341" width="3.6" height="15.0" fill="rgb(229,36,21)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados15ObjectOperation4execEPKcS2_RN4ceph6buffer4listE (1 samples, 0.31%)</title><rect x="1008.5" y="357" width="3.6" height="15.0" fill="rgb(221,58,16)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter12_calc_targetEPNS_11op_target_tEP10Connectionb (1 samples, 0.31%)</title><rect x="587.3" y="325" width="3.6" height="15.0" fill="rgb(248,152,44)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados9IoCtxImpl12operate_readERK8object_tP15ObjectOperationPN4ceph6buffer4listEi (4 samples, 1.23%)</title><rect x="1012.1" y="373" width="14.5" height="15.0" fill="rgb(240,196,42)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 2.46%)</title><rect x="707.1" y="373" width="29.1" height="15.0" fill="rgb(231,97,25)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.31%)</title><rect x="990.3" y="165" width="3.6" height="15.0" fill="rgb(236,52,25)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (1 samples, 0.31%)</title><rect x="645.4" y="469" width="3.6" height="15.0" fill="rgb(205,194,23)" rx="2" ry="2" />
<text text-anchor="" x="648.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.31%)</title><rect x="736.2" y="229" width="3.6" height="15.0" fill="rgb(231,0,41)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>taskstats_exit (1 samples, 0.31%)</title><rect x="736.2" y="453" width="3.6" height="15.0" fill="rgb(224,82,28)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendmsg (2 samples, 0.62%)</title><rect x="743.4" y="485" width="7.3" height="15.0" fill="rgb(250,31,15)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_current (1 samples, 0.31%)</title><rect x="888.6" y="261" width="3.7" height="15.0" fill="rgb(220,71,47)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14RefreshRequestINS_8ImageCtxEE21send_v2_get_snapshotsEv (2 samples, 0.62%)</title><rect x="609.1" y="421" width="7.2" height="15.0" fill="rgb(219,222,28)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 1.23%)</title><rect x="1157.3" y="309" width="14.5" height="15.0" fill="rgb(249,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image11OpenRequestINS_8ImageCtxEE21send_v2_get_data_poolEv (1 samples, 0.31%)</title><rect x="605.4" y="421" width="3.7" height="15.0" fill="rgb(248,139,26)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (1 samples, 0.31%)</title><rect x="888.6" y="245" width="3.7" height="15.0" fill="rgb(239,176,28)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (32 samples, 9.85%)</title><rect x="1026.6" y="533" width="116.2" height="15.0" fill="rgb(206,15,21)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ret_from_fork</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="398.5" y="485" width="3.6" height="15.0" fill="rgb(218,7,6)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PR_NewLock (1 samples, 0.31%)</title><rect x="932.2" y="277" width="3.6" height="15.0" fill="rgb(214,43,12)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.31%)</title><rect x="736.2" y="261" width="3.6" height="15.0" fill="rgb(212,189,27)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="540.1" y="485" width="3.6" height="15.0" fill="rgb(243,37,48)" rx="2" ry="2" />
<text text-anchor="" x="543.09" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_start (15 samples, 4.62%)</title><rect x="972.2" y="533" width="54.4" height="15.0" fill="rgb(242,220,2)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_mmap (1 samples, 0.31%)</title><rect x="1150.1" y="405" width="3.6" height="15.0" fill="rgb(214,9,53)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_edge_irq (1 samples, 0.31%)</title><rect x="943.1" y="357" width="3.6" height="15.0" fill="rgb(222,128,14)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.31%)</title><rect x="892.3" y="261" width="3.6" height="15.0" fill="rgb(250,77,29)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.31%)</title><rect x="583.7" y="245" width="3.6" height="15.0" fill="rgb(220,137,52)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.31%)</title><rect x="888.6" y="325" width="3.7" height="15.0" fill="rgb(247,26,3)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (2 samples, 0.62%)</title><rect x="932.2" y="293" width="7.3" height="15.0" fill="rgb(230,54,4)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image11OpenRequestINS_8ImageCtxEE24handle_v2_apply_metadataEPi (4 samples, 1.23%)</title><rect x="590.9" y="437" width="14.5" height="15.0" fill="rgb(205,126,0)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail20rados_state_callbackINS_5image11OpenRequestINS_8ImageCtxEEEXadL_ZNS6_30handle_v2_get_create_timestampEPiEELb1EEEvPvS8_ (1 samples, 0.31%)</title><rect x="605.4" y="453" width="3.7" height="15.0" fill="rgb(250,15,43)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK19CryptoAESKeyHandler7encryptERKN4ceph6buffer4listERS2_PNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (2 samples, 0.62%)</title><rect x="932.2" y="389" width="7.3" height="15.0" fill="rgb(247,26,8)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.31%)</title><rect x="736.2" y="277" width="3.6" height="15.0" fill="rgb(206,108,26)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 1.23%)</title><rect x="975.8" y="229" width="14.5" height="15.0" fill="rgb(221,223,25)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE8_M_eraseEPSt13_Rb_tree_nodeISB_E (1 samples, 0.31%)</title><rect x="561.9" y="405" width="3.6" height="15.0" fill="rgb(245,174,44)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.31%)</title><rect x="580.0" y="469" width="3.7" height="15.0" fill="rgb(254,139,9)" rx="2" ry="2" />
<text text-anchor="" x="583.03" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (4 samples, 1.23%)</title><rect x="521.9" y="485" width="14.6" height="15.0" fill="rgb(217,80,38)" rx="2" ry="2" />
<text text-anchor="" x="524.94" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libstdc++.so.6.0.21] (15 samples, 4.62%)</title><rect x="899.5" y="501" width="54.5" height="15.0" fill="rgb(222,37,7)" rx="2" ry="2" />
<text text-anchor="" x="902.54" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libs..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.31%)</title><rect x="888.6" y="357" width="3.7" height="15.0" fill="rgb(237,103,36)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 1.23%)</title><rect x="1157.3" y="549" width="14.5" height="15.0" fill="rgb(231,168,29)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>return_from_SYSCALL_64 (4 samples, 1.23%)</title><rect x="954.0" y="549" width="14.5" height="15.0" fill="rgb(254,182,6)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>setup_new_exec (4 samples, 1.23%)</title><rect x="954.0" y="453" width="14.5" height="15.0" fill="rgb(239,96,13)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (4 samples, 1.23%)</title><rect x="975.8" y="213" width="14.5" height="15.0" fill="rgb(244,216,50)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.31%)</title><rect x="892.3" y="389" width="3.6" height="15.0" fill="rgb(232,100,6)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (4 samples, 1.23%)</title><rect x="521.9" y="469" width="14.6" height="15.0" fill="rgb(207,217,40)" rx="2" ry="2" />
<text text-anchor="" x="524.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 1.23%)</title><rect x="1175.5" y="293" width="14.5" height="15.0" fill="rgb(206,9,11)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.31%)</title><rect x="736.2" y="517" width="3.6" height="15.0" fill="rgb(234,104,21)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.31%)</title><rect x="754.3" y="229" width="3.6" height="15.0" fill="rgb(210,162,50)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (1 samples, 0.31%)</title><rect x="736.2" y="533" width="3.6" height="15.0" fill="rgb(242,86,31)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vlan_dev_hard_start_xmit (1 samples, 0.31%)</title><rect x="747.0" y="181" width="3.7" height="15.0" fill="rgb(224,97,26)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_state_process (1 samples, 0.31%)</title><rect x="736.2" y="149" width="3.6" height="15.0" fill="rgb(216,123,26)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 2.46%)</title><rect x="903.2" y="421" width="29.0" height="15.0" fill="rgb(226,87,38)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm (1 samples, 0.31%)</title><rect x="888.6" y="453" width="3.7" height="15.0" fill="rgb(247,47,28)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN7MessageC2Eiii (1 samples, 0.31%)</title><rect x="943.1" y="421" width="3.6" height="15.0" fill="rgb(230,15,0)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 1.23%)</title><rect x="993.9" y="357" width="14.6" height="15.0" fill="rgb(245,95,9)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14SetSnapRequestINS_8ImageCtxEE28send_finalize_refresh_parentEPi (1 samples, 0.31%)</title><rect x="583.7" y="405" width="3.6" height="15.0" fill="rgb(213,152,40)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 1.23%)</title><rect x="975.8" y="149" width="14.5" height="15.0" fill="rgb(231,209,37)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados11RadosClient7connectEv (9 samples, 2.77%)</title><rect x="975.8" y="421" width="32.7" height="15.0" fill="rgb(207,19,23)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (12 samples, 3.69%)</title><rect x="754.3" y="245" width="43.6" height="15.0" fill="rgb(214,162,18)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bond_start_xmit (1 samples, 0.31%)</title><rect x="747.0" y="117" width="3.7" height="15.0" fill="rgb(231,96,51)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph6buffer4list8iteratorC1EPS1_j (1 samples, 0.31%)</title><rect x="612.7" y="389" width="3.6" height="15.0" fill="rgb(244,114,50)" rx="2" ry="2" />
<text text-anchor="" x="615.71" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event (1 samples, 0.31%)</title><rect x="943.1" y="341" width="3.6" height="15.0" fill="rgb(218,159,0)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.31%)</title><rect x="990.3" y="229" width="3.6" height="15.0" fill="rgb(217,146,8)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14RefreshRequestINS_8ImageCtxEE17send_v2_get_flagsEv (2 samples, 0.62%)</title><rect x="616.3" y="421" width="7.3" height="15.0" fill="rgb(236,227,8)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN10ThreadPool6workerEPNS_10WorkThreadE (4 samples, 1.23%)</title><rect x="1175.5" y="485" width="14.5" height="15.0" fill="rgb(228,86,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.92%)</title><rect x="467.5" y="485" width="10.9" height="15.0" fill="rgb(246,178,21)" rx="2" ry="2" />
<text text-anchor="" x="470.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pte_alloc (1 samples, 0.31%)</title><rect x="888.6" y="293" width="3.7" height="15.0" fill="rgb(247,41,17)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK11md_config_t15get_val_genericERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="569.1" y="501" width="3.7" height="15.0" fill="rgb(228,197,25)" rx="2" ry="2" />
<text text-anchor="" x="572.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libgcc_s.so.1] (1 samples, 0.31%)</title><rect x="340.4" y="437" width="3.6" height="15.0" fill="rgb(219,27,5)" rx="2" ry="2" />
<text text-anchor="" x="343.40" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN19CephxSessionHandler15_calc_signatureEP7MessagePm (2 samples, 0.62%)</title><rect x="932.2" y="405" width="7.3" height="15.0" fill="rgb(210,138,47)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.31%)</title><rect x="590.9" y="229" width="3.7" height="15.0" fill="rgb(225,33,36)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image11OpenRequestINS_8ImageCtxEE23handle_v2_detect_headerEPi (1 samples, 0.31%)</title><rect x="587.3" y="437" width="3.6" height="15.0" fill="rgb(245,63,36)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (4 samples, 1.23%)</title><rect x="1012.1" y="229" width="14.5" height="15.0" fill="rgb(206,81,24)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (12 samples, 3.69%)</title><rect x="754.3" y="373" width="43.6" height="15.0" fill="rgb(216,161,2)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN9MonClient12authenticateEd (4 samples, 1.23%)</title><rect x="993.9" y="405" width="14.6" height="15.0" fill="rgb(236,72,19)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (17 samples, 5.23%)</title><rect x="892.3" y="549" width="61.7" height="15.0" fill="rgb(225,183,10)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unkno..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN9MonClient17_send_mon_messageEP7Message (1 samples, 0.31%)</title><rect x="990.3" y="389" width="3.6" height="15.0" fill="rgb(226,11,44)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (32 samples, 9.85%)</title><rect x="1026.6" y="501" width="116.2" height="15.0" fill="rgb(241,151,40)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_task_sw..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="518.3" y="485" width="3.6" height="15.0" fill="rgb(235,227,4)" rx="2" ry="2" />
<text text-anchor="" x="521.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.31%)</title><rect x="747.0" y="149" width="3.7" height="15.0" fill="rgb(216,176,48)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Z14decode_messageP11CephContextiR15ceph_msg_headerR15ceph_msg_footerRN4ceph6buffer4listES8_S8_P10Connection (1 samples, 0.31%)</title><rect x="943.1" y="437" width="3.6" height="15.0" fill="rgb(215,45,3)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (2 samples, 0.62%)</title><rect x="656.3" y="277" width="7.2" height="15.0" fill="rgb(251,55,54)" rx="2" ry="2" />
<text text-anchor="" x="659.28" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZZN12NetworkStack10add_threadEjENKUlvE_clEv (20 samples, 6.15%)</title><rect x="819.7" y="485" width="72.6" height="15.0" fill="rgb(224,156,9)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZZN12Ne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (16 samples, 4.92%)</title><rect x="754.3" y="533" width="58.1" height="15.0" fill="rgb(239,176,5)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__clone</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.31%)</title><rect x="990.3" y="149" width="3.6" height="15.0" fill="rgb(221,32,23)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter10_op_submitEPNS_2OpERN4ceph13shunique_lockIN5boost12shared_mutexEEEPm (1 samples, 0.31%)</title><rect x="587.3" y="341" width="3.6" height="15.0" fill="rgb(247,38,53)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>search_binary_handler (1 samples, 0.31%)</title><rect x="1150.1" y="485" width="3.6" height="15.0" fill="rgb(230,106,50)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EventCenter6wakeupEv (1 samples, 0.31%)</title><rect x="990.3" y="341" width="3.6" height="15.0" fill="rgb(208,73,37)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.31%)</title><rect x="972.2" y="229" width="3.6" height="15.0" fill="rgb(232,64,31)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 1.23%)</title><rect x="993.9" y="341" width="14.6" height="15.0" fill="rgb(211,214,54)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter10_op_submitEPNS_2OpERN4ceph13shunique_lockIN5boost12shared_mutexEEEPm (1 samples, 0.31%)</title><rect x="605.4" y="341" width="3.7" height="15.0" fill="rgb(231,187,28)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_sample_event_took (1 samples, 0.31%)</title><rect x="1135.5" y="421" width="3.7" height="15.0" fill="rgb(223,45,8)" rx="2" ry="2" />
<text text-anchor="" x="1138.54" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter9op_submitEPNS_2OpEPmPi (1 samples, 0.31%)</title><rect x="605.4" y="373" width="3.7" height="15.0" fill="rgb(245,114,22)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11CephContext3putEv (1 samples, 0.31%)</title><rect x="972.2" y="485" width="3.6" height="15.0" fill="rgb(250,130,36)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.62%)</title><rect x="743.4" y="261" width="7.3" height="15.0" fill="rgb(244,191,19)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image11OpenRequestINS_8ImageCtxEE30handle_v2_get_create_timestampEPi (1 samples, 0.31%)</title><rect x="605.4" y="437" width="3.7" height="15.0" fill="rgb(225,111,12)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PORT_Alloc_Util (1 samples, 0.31%)</title><rect x="805.1" y="341" width="3.7" height="15.0" fill="rgb(215,176,10)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_counter_try_charge (1 samples, 0.31%)</title><rect x="888.6" y="197" width="3.7" height="15.0" fill="rgb(218,33,12)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (12 samples, 3.69%)</title><rect x="656.3" y="325" width="43.5" height="15.0" fill="rgb(246,33,3)" rx="2" ry="2" />
<text text-anchor="" x="659.28" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.92%)</title><rect x="594.6" y="309" width="10.8" height="15.0" fill="rgb(234,29,18)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (12 samples, 3.69%)</title><rect x="754.3" y="389" width="43.6" height="15.0" fill="rgb(225,48,24)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK6Option12pre_validateEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_ (2 samples, 0.62%)</title><rect x="336.8" y="517" width="7.2" height="15.0" fill="rgb(214,201,51)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection12handle_writeEv (3 samples, 0.92%)</title><rect x="932.2" y="453" width="10.9" height="15.0" fill="rgb(222,39,27)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (8 samples, 2.46%)</title><rect x="903.2" y="373" width="29.0" height="15.0" fill="rgb(245,148,35)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.31%)</title><rect x="892.3" y="437" width="3.6" height="15.0" fill="rgb(240,129,23)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 1.23%)</title><rect x="627.2" y="309" width="14.6" height="15.0" fill="rgb(243,155,18)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd10cls_client14dir_list_startEPN8librados19ObjectReadOperationERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEm (1 samples, 0.31%)</title><rect x="1008.5" y="373" width="3.6" height="15.0" fill="rgb(249,205,10)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N5boost7variantINS8_5blankEJS5_mldb13entity_addr_t6uuid_dEEEESt10_Select1stISE_ESt4lessIS5_ESaISE_EE8_M_eraseEPSt13_Rb_tree_nodeISE_E (1 samples, 0.31%)</title><rect x="558.2" y="501" width="3.7" height="15.0" fill="rgb(215,127,50)" rx="2" ry="2" />
<text text-anchor="" x="561.25" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_data_queue (1 samples, 0.31%)</title><rect x="736.2" y="133" width="3.6" height="15.0" fill="rgb(254,171,27)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (12 samples, 3.69%)</title><rect x="656.3" y="341" width="43.5" height="15.0" fill="rgb(223,40,5)" rx="2" ry="2" />
<text text-anchor="" x="659.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__pe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (13 samples, 4.00%)</title><rect x="652.6" y="373" width="47.2" height="15.0" fill="rgb(248,134,23)" rx="2" ry="2" />
<text text-anchor="" x="655.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N5boost7variantINS8_5blankEJS5_mldb13entity_addr_t6uuid_dEEEESt10_Select1stISE_ESt4lessIS5_ESaISE_EE22_M_emplace_hint_uniqueIJRKSt21piecewise_construct_tSt5tupleIJRS7_EESP_IJEEEEESt17_Rb_tree_iteratorISE_ESt23_Rb_tree_const_iteratorISE_EDpOT_ (7 samples, 2.15%)</title><rect x="453.0" y="517" width="25.4" height="15.0" fill="rgb(226,67,22)" rx="2" ry="2" />
<text text-anchor="" x="455.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.31%)</title><rect x="590.9" y="181" width="3.7" height="15.0" fill="rgb(230,40,32)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN19PerfCountersBuilderC2EP11CephContextRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii (3 samples, 0.92%)</title><rect x="594.6" y="373" width="10.8" height="15.0" fill="rgb(229,101,2)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.31%)</title><rect x="1146.4" y="549" width="3.7" height="15.0" fill="rgb(206,150,38)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph7logging3Log5entryEv (15 samples, 4.62%)</title><rect x="649.0" y="501" width="54.5" height="15.0" fill="rgb(251,136,15)" rx="2" ry="2" />
<text text-anchor="" x="652.02" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN4c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 1.23%)</title><rect x="975.8" y="197" width="14.5" height="15.0" fill="rgb(239,179,46)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="885.0" y="229" width="3.6" height="15.0" fill="rgb(205,17,43)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5boost16re_detail_10660019basic_regex_creatorIcNS_12regex_traitsIcNS_16cpp_regex_traitsIcEEEEE12append_stateENS0_19syntax_element_typeEm (1 samples, 0.31%)</title><rect x="336.8" y="453" width="3.6" height="15.0" fill="rgb(205,98,19)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.31%)</title><rect x="975.8" y="117" width="3.6" height="15.0" fill="rgb(239,44,38)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (32 samples, 9.85%)</title><rect x="1026.6" y="485" width="116.2" height="15.0" fill="rgb(240,105,22)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf_event_t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 1.23%)</title><rect x="1012.1" y="213" width="14.5" height="15.0" fill="rgb(228,111,6)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>i40e_clean_rx_irq (1 samples, 0.31%)</title><rect x="736.2" y="325" width="3.6" height="15.0" fill="rgb(238,107,6)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph13shunique_lockIN5boost12shared_mutexEE6unlockEv (1 samples, 0.31%)</title><rect x="946.7" y="373" width="3.7" height="15.0" fill="rgb(212,16,45)" rx="2" ry="2" />
<text text-anchor="" x="949.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="885.0" y="261" width="3.6" height="15.0" fill="rgb(225,50,1)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11CephContextD2Ev (1 samples, 0.31%)</title><rect x="972.2" y="469" width="3.6" height="15.0" fill="rgb(223,226,3)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.31%)</title><rect x="747.0" y="197" width="3.7" height="15.0" fill="rgb(251,109,5)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>expand_downwards (1 samples, 0.31%)</title><rect x="1150.1" y="421" width="3.6" height="15.0" fill="rgb(253,92,31)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (8 samples, 2.46%)</title><rect x="903.2" y="357" width="29.0" height="15.0" fill="rgb(234,38,32)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN7mempool6pool_t12adjust_countEll (1 samples, 0.31%)</title><rect x="750.7" y="533" width="3.6" height="15.0" fill="rgb(212,196,37)" rx="2" ry="2" />
<text text-anchor="" x="753.68" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE8_M_eraseEPSt13_Rb_tree_nodeISB_E (1 samples, 0.31%)</title><rect x="561.9" y="501" width="3.6" height="15.0" fill="rgb(218,149,38)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection13write_messageEP7MessageRN4ceph6buffer4listEb (1 samples, 0.31%)</title><rect x="877.8" y="437" width="3.6" height="15.0" fill="rgb(242,216,43)" rx="2" ry="2" />
<text text-anchor="" x="880.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (16 samples, 4.92%)</title><rect x="819.7" y="405" width="58.1" height="15.0" fill="rgb(230,153,44)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_ep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK19CryptoAESKeyHandler7encryptERKN4ceph6buffer4listERS2_PNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="885.0" y="341" width="3.6" height="15.0" fill="rgb(214,57,16)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SECMOD_DestroyModule (1 samples, 0.31%)</title><rect x="972.2" y="357" width="3.6" height="15.0" fill="rgb(211,123,50)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgr-worker-1 (22 samples, 6.77%)</title><rect x="812.4" y="565" width="79.9" height="15.0" fill="rgb(228,221,49)" rx="2" ry="2" />
<text text-anchor="" x="815.40" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >msgr-work..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd10cls_client26get_mutable_metadata_startEPN8librados19ObjectReadOperationEb (1 samples, 0.31%)</title><rect x="590.9" y="373" width="3.7" height="15.0" fill="rgb(247,102,17)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (1 samples, 0.31%)</title><rect x="336.8" y="421" width="3.6" height="15.0" fill="rgb(218,201,33)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 1.23%)</title><rect x="993.9" y="213" width="14.6" height="15.0" fill="rgb(224,24,17)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (2 samples, 0.62%)</title><rect x="616.3" y="357" width="7.3" height="15.0" fill="rgb(231,124,47)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14RefreshRequestINS_8ImageCtxEE29handle_v2_get_snap_timestampsEPi (1 samples, 0.31%)</title><rect x="623.6" y="437" width="3.6" height="15.0" fill="rgb(252,99,33)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11md_config_tC2Eb (139 samples, 42.77%)</title><rect x="53.6" y="533" width="504.6" height="15.0" fill="rgb(234,168,42)" rx="2" ry="2" />
<text text-anchor="" x="56.57" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN11md_config_tC2Eb</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (4 samples, 1.23%)</title><rect x="993.9" y="277" width="14.6" height="15.0" fill="rgb(252,200,47)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_calloc (1 samples, 0.31%)</title><rect x="932.2" y="261" width="3.6" height="15.0" fill="rgb(241,146,53)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 1.23%)</title><rect x="627.2" y="405" width="14.6" height="15.0" fill="rgb(235,65,26)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (1 samples, 0.31%)</title><rect x="645.4" y="501" width="3.6" height="15.0" fill="rgb(252,62,8)" rx="2" ry="2" />
<text text-anchor="" x="648.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4Cond4WaitER5Mutex (4 samples, 1.23%)</title><rect x="1012.1" y="357" width="14.5" height="15.0" fill="rgb(226,183,12)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 1.23%)</title><rect x="954.0" y="389" width="14.5" height="15.0" fill="rgb(227,182,36)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ghes_notify_nmi (1 samples, 0.31%)</title><rect x="1026.6" y="421" width="3.6" height="15.0" fill="rgb(245,144,24)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="453.0" y="501" width="3.6" height="15.0" fill="rgb(217,106,27)" rx="2" ry="2" />
<text text-anchor="" x="455.95" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pte_alloc_one (1 samples, 0.31%)</title><rect x="888.6" y="277" width="3.7" height="15.0" fill="rgb(219,204,14)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection20prepare_send_messageEmP7MessageRN4ceph6buffer4listE (1 samples, 0.31%)</title><rect x="939.5" y="437" width="3.6" height="15.0" fill="rgb(228,212,28)" rx="2" ry="2" />
<text text-anchor="" x="942.48" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail20rados_state_callbackINS_5image11OpenRequestINS_8ImageCtxEEEXadL_ZNS6_24handle_v2_apply_metadataEPiEELb1EEEvPvS8_ (4 samples, 1.23%)</title><rect x="590.9" y="453" width="14.5" height="15.0" fill="rgb(235,7,52)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 1.23%)</title><rect x="1157.3" y="405" width="14.5" height="15.0" fill="rgb(225,50,15)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.31%)</title><rect x="732.5" y="261" width="3.7" height="15.0" fill="rgb(244,207,24)" rx="2" ry="2" />
<text text-anchor="" x="735.52" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 1.23%)</title><rect x="627.2" y="293" width="14.6" height="15.0" fill="rgb(218,41,12)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail20rados_state_callbackINS_5image14RefreshRequestINS_8ImageCtxEEEXadL_ZNS6_29handle_v2_get_snap_timestampsEPiEELb1EEEvPvS8_ (1 samples, 0.31%)</title><rect x="623.6" y="453" width="3.6" height="15.0" fill="rgb(245,169,50)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.31%)</title><rect x="892.3" y="213" width="3.6" height="15.0" fill="rgb(243,21,32)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image11OpenRequestINS_8ImageCtxEE12send_refreshEv (1 samples, 0.31%)</title><rect x="590.9" y="405" width="3.7" height="15.0" fill="rgb(237,137,46)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK11md_config_t7get_valIbEET_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="565.5" y="517" width="3.6" height="15.0" fill="rgb(226,83,22)" rx="2" ry="2" />
<text text-anchor="" x="568.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (12 samples, 3.69%)</title><rect x="656.3" y="357" width="43.5" height="15.0" fill="rgb(207,16,44)" rx="2" ry="2" />
<text text-anchor="" x="659.28" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fini..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (3 samples, 0.92%)</title><rect x="1037.5" y="421" width="10.9" height="15.0" fill="rgb(250,31,46)" rx="2" ry="2" />
<text text-anchor="" x="1040.51" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (16 samples, 4.92%)</title><rect x="819.7" y="389" width="58.1" height="15.0" fill="rgb(224,129,8)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_resched (4 samples, 1.23%)</title><rect x="954.0" y="421" width="14.5" height="15.0" fill="rgb(234,144,41)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 1.23%)</title><rect x="993.9" y="325" width="14.6" height="15.0" fill="rgb(208,79,45)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (20 samples, 6.15%)</title><rect x="819.7" y="533" width="72.6" height="15.0" fill="rgb(253,153,38)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__clone</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 1.23%)</title><rect x="1012.1" y="149" width="14.5" height="15.0" fill="rgb(223,26,33)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (12 samples, 3.69%)</title><rect x="656.3" y="293" width="43.5" height="15.0" fill="rgb(254,71,49)" rx="2" ry="2" />
<text text-anchor="" x="659.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11md_config_t15validate_schemaEv (11 samples, 3.38%)</title><rect x="173.4" y="517" width="39.9" height="15.0" fill="rgb(237,122,9)" rx="2" ry="2" />
<text text-anchor="" x="176.38" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Finisher21finisher_thread_entryEv (17 samples, 5.23%)</title><rect x="580.0" y="501" width="61.8" height="15.0" fill="rgb(209,39,49)" rx="2" ry="2" />
<text text-anchor="" x="583.03" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN8Fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 1.23%)</title><rect x="975.8" y="325" width="14.5" height="15.0" fill="rgb(229,130,39)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 1.23%)</title><rect x="993.9" y="245" width="14.6" height="15.0" fill="rgb(233,66,47)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 2.46%)</title><rect x="903.2" y="341" width="29.0" height="15.0" fill="rgb(211,127,51)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.31%)</title><rect x="572.8" y="453" width="3.6" height="15.0" fill="rgb(238,6,2)" rx="2" ry="2" />
<text text-anchor="" x="575.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (1 samples, 0.31%)</title><rect x="747.0" y="53" width="3.7" height="15.0" fill="rgb(230,210,6)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 1.23%)</title><rect x="627.2" y="437" width="14.6" height="15.0" fill="rgb(224,45,42)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection12send_messageEP7Message (1 samples, 0.31%)</title><rect x="990.3" y="373" width="3.6" height="15.0" fill="rgb(232,4,31)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libgcc_s.so.1] (1 samples, 0.31%)</title><rect x="340.4" y="405" width="3.6" height="15.0" fill="rgb(223,219,2)" rx="2" ry="2" />
<text text-anchor="" x="343.40" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (9 samples, 2.77%)</title><rect x="667.2" y="277" width="32.6" height="15.0" fill="rgb(248,196,40)" rx="2" ry="2" />
<text text-anchor="" x="670.17" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >na..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd10cls_client29snapshot_namespace_list_startEPN8librados19ObjectReadOperationERKSt6vectorI8snapid_tSaIS5_EE (1 samples, 0.31%)</title><rect x="623.6" y="405" width="3.6" height="15.0" fill="rgb(218,175,27)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.31%)</title><rect x="990.3" y="181" width="3.6" height="15.0" fill="rgb(224,186,43)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.31%)</title><rect x="590.9" y="245" width="3.7" height="15.0" fill="rgb(235,132,7)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN9MonClient11_renew_subsEv (1 samples, 0.31%)</title><rect x="990.3" y="405" width="3.6" height="15.0" fill="rgb(205,136,5)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm@plt (1 samples, 0.31%)</title><rect x="576.4" y="533" width="3.6" height="15.0" fill="rgb(232,156,8)" rx="2" ry="2" />
<text text-anchor="" x="579.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="590.9" y="293" width="3.7" height="15.0" fill="rgb(215,23,15)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>i40e_napi_poll (1 samples, 0.31%)</title><rect x="736.2" y="341" width="3.6" height="15.0" fill="rgb(213,192,31)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 1.23%)</title><rect x="1012.1" y="293" width="14.5" height="15.0" fill="rgb(231,192,34)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>main (15 samples, 4.62%)</title><rect x="972.2" y="501" width="54.4" height="15.0" fill="rgb(216,89,1)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd10cls_client19snapshot_list_startEPN8librados19ObjectReadOperationERKSt6vectorI8snapid_tSaIS5_EE (2 samples, 0.62%)</title><rect x="609.1" y="405" width="7.2" height="15.0" fill="rgb(225,159,18)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 1.23%)</title><rect x="627.2" y="357" width="14.6" height="15.0" fill="rgb(230,150,5)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.31%)</title><rect x="990.3" y="53" width="3.6" height="15.0" fill="rgb(223,227,19)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt18condition_variable4waitERSt11unique_lockISt5mutexE (4 samples, 1.23%)</title><rect x="975.8" y="341" width="14.5" height="15.0" fill="rgb(223,38,22)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd10cls_client15get_flags_startEPN8librados19ObjectReadOperationERKSt6vectorI8snapid_tSaIS5_EE (2 samples, 0.62%)</title><rect x="616.3" y="405" width="7.3" height="15.0" fill="rgb(226,19,3)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14SetSnapRequestINS_8ImageCtxEE22handle_open_object_mapEPi (1 samples, 0.31%)</title><rect x="583.7" y="421" width="3.6" height="15.0" fill="rgb(240,56,9)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (1 samples, 0.31%)</title><rect x="954.0" y="357" width="3.6" height="15.0" fill="rgb(241,107,35)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="336.8" y="373" width="3.6" height="15.0" fill="rgb(229,195,14)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prctl (1 samples, 0.31%)</title><rect x="1153.7" y="533" width="3.6" height="15.0" fill="rgb(210,67,47)" rx="2" ry="2" />
<text text-anchor="" x="1156.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd8ImageCtx4initEv (3 samples, 0.92%)</title><rect x="594.6" y="405" width="10.8" height="15.0" fill="rgb(246,221,4)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="1008.5" y="293" width="3.6" height="15.0" fill="rgb(210,202,8)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 1.23%)</title><rect x="1157.3" y="469" width="14.5" height="15.0" fill="rgb(236,151,46)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (1 samples, 0.31%)</title><rect x="398.5" y="501" width="3.6" height="15.0" fill="rgb(216,136,36)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (7 samples, 2.15%)</title><rect x="485.6" y="501" width="25.4" height="15.0" fill="rgb(208,32,30)" rx="2" ry="2" />
<text text-anchor="" x="488.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 1.85%)</title><rect x="710.7" y="261" width="21.8" height="15.0" fill="rgb(237,96,19)" rx="2" ry="2" />
<text text-anchor="" x="713.74" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="1008.5" y="277" width="3.6" height="15.0" fill="rgb(243,153,3)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (4 samples, 1.23%)</title><rect x="975.8" y="165" width="14.5" height="15.0" fill="rgb(229,139,37)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK18CephXTicketHandler16build_authorizerEm (1 samples, 0.31%)</title><rect x="885.0" y="357" width="3.6" height="15.0" fill="rgb(211,117,48)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.31%)</title><rect x="736.2" y="293" width="3.6" height="15.0" fill="rgb(222,223,53)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN19CephxSessionHandler23check_message_signatureEP7Message (2 samples, 0.62%)</title><rect x="805.1" y="437" width="7.3" height="15.0" fill="rgb(242,62,14)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_exec (4 samples, 1.23%)</title><rect x="954.0" y="437" width="14.5" height="15.0" fill="rgb(215,8,42)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 1.23%)</title><rect x="627.2" y="469" width="14.6" height="15.0" fill="rgb(212,116,46)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 1.23%)</title><rect x="1012.1" y="277" width="14.5" height="15.0" fill="rgb(234,57,51)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter11ms_dispatchEP7Message (1 samples, 0.31%)</title><rect x="881.4" y="405" width="3.6" height="15.0" fill="rgb(241,4,39)" rx="2" ry="2" />
<text text-anchor="" x="884.38" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (16 samples, 4.92%)</title><rect x="754.3" y="517" width="58.1" height="15.0" fill="rgb(241,91,6)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN13DispatchQueue14DispatchThread5entryEv (8 samples, 2.46%)</title><rect x="707.1" y="501" width="29.1" height="15.0" fill="rgb(248,121,20)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN14AsyncMessengerC2EP11CephContext13entity_name_tRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_m (4 samples, 1.23%)</title><rect x="975.8" y="373" width="14.5" height="15.0" fill="rgb(240,187,13)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 1.23%)</title><rect x="1012.1" y="245" width="14.5" height="15.0" fill="rgb(242,75,43)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.31%)</title><rect x="990.3" y="37" width="3.6" height="15.0" fill="rgb(237,220,49)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (1 samples, 0.31%)</title><rect x="888.6" y="437" width="3.7" height="15.0" fill="rgb(208,17,7)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendmsg (1 samples, 0.31%)</title><rect x="892.3" y="485" width="3.6" height="15.0" fill="rgb(225,42,32)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 2.46%)</title><rect x="707.1" y="293" width="29.1" height="15.0" fill="rgb(249,183,52)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x8..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (13 samples, 4.00%)</title><rect x="652.6" y="389" width="47.2" height="15.0" fill="rgb(208,154,8)" rx="2" ry="2" />
<text text-anchor="" x="655.65" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14RefreshRequestINS_8ImageCtxEE19handle_v2_get_groupEPi (2 samples, 0.62%)</title><rect x="609.1" y="437" width="7.2" height="15.0" fill="rgb(213,134,19)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 1.23%)</title><rect x="975.8" y="245" width="14.5" height="15.0" fill="rgb(213,22,9)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 1.23%)</title><rect x="1175.5" y="437" width="14.5" height="15.0" fill="rgb(249,126,15)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN24CephContextServiceThread5entryEv (4 samples, 1.23%)</title><rect x="1157.3" y="501" width="14.5" height="15.0" fill="rgb(208,212,13)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (1 samples, 0.31%)</title><rect x="943.1" y="373" width="3.6" height="15.0" fill="rgb(210,219,48)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (15 samples, 4.62%)</title><rect x="972.2" y="517" width="54.4" height="15.0" fill="rgb(213,45,54)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__lib..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZL17nss_aes_operationmmP13PK11SymKeyStrP10SECItemStrRKN4ceph6buffer4listERS5_PNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="885.0" y="325" width="3.6" height="15.0" fill="rgb(242,179,54)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (8 samples, 2.46%)</title><rect x="707.1" y="357" width="29.1" height="15.0" fill="rgb(227,207,42)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.31%)</title><rect x="943.1" y="389" width="3.6" height="15.0" fill="rgb(223,157,10)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK11md_config_t8_get_valERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="569.1" y="485" width="3.7" height="15.0" fill="rgb(250,55,8)" rx="2" ry="2" />
<text text-anchor="" x="572.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N5boost7variantIM11md_config_tlJMSA_mMSA_S5_MSA_dMSA_bMSA_13entity_addr_tMSA_6uuid_dEEEESt10_Select1stISL_ESt4lessIS5_ESaISL_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorISL_ERS7_ (10 samples, 3.08%)</title><rect x="405.8" y="501" width="36.3" height="15.0" fill="rgb(224,140,25)" rx="2" ry="2" />
<text text-anchor="" x="408.75" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N5boost7variantIM11md_config_tlIMSA_mMSA_S5_MSA_dMSA_bMSA_13entity_addr_tMSA_6uuid_dEEEESt10_Select1stISL_ESt4lessIS5_ESaISL_EE24_M_get_insert_unique_posERS7_ (10 samples, 3.08%)</title><rect x="405.8" y="485" width="36.3" height="15.0" fill="rgb(252,50,47)" rx="2" ry="2" />
<text text-anchor="" x="408.75" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 1.23%)</title><rect x="975.8" y="261" width="14.5" height="15.0" fill="rgb(205,177,5)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="572.8" y="437" width="3.6" height="15.0" fill="rgb(229,54,47)" rx="2" ry="2" />
<text text-anchor="" x="575.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rbd (51 samples, 15.69%)</title><rect x="968.5" y="565" width="185.2" height="15.0" fill="rgb(208,135,18)" rx="2" ry="2" />
<text text-anchor="" x="971.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >rbd</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 1.23%)</title><rect x="1175.5" y="325" width="14.5" height="15.0" fill="rgb(252,186,40)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.31%)</title><rect x="990.3" y="69" width="3.6" height="15.0" fill="rgb(221,135,47)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.92%)</title><rect x="442.1" y="485" width="10.9" height="15.0" fill="rgb(246,82,38)" rx="2" ry="2" />
<text text-anchor="" x="445.06" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.31%)</title><rect x="583.7" y="181" width="3.6" height="15.0" fill="rgb(218,32,29)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vlan_dev_hard_start_xmit (1 samples, 0.31%)</title><rect x="743.4" y="181" width="3.6" height="15.0" fill="rgb(246,96,51)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.31%)</title><rect x="990.3" y="197" width="3.6" height="15.0" fill="rgb(216,57,18)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (3 samples, 0.92%)</title><rect x="594.6" y="293" width="10.8" height="15.0" fill="rgb(246,192,32)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.31%)</title><rect x="874.1" y="229" width="3.7" height="15.0" fill="rgb(205,55,12)" rx="2" ry="2" />
<text text-anchor="" x="877.12" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (15 samples, 4.62%)</title><rect x="899.5" y="517" width="54.5" height="15.0" fill="rgb(223,74,34)" rx="2" ry="2" />
<text text-anchor="" x="902.54" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN19CephxSessionHandler12sign_messageEP7Message (2 samples, 0.62%)</title><rect x="932.2" y="421" width="7.3" height="15.0" fill="rgb(247,228,54)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt17_Function_handlerIFiPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_EZL15get_rbd_optionsvEUlS6_S6_E0_E9_M_invokeERKSt9_Any_dataOS6_SD_ (1 samples, 0.31%)</title><rect x="336.8" y="501" width="3.6" height="15.0" fill="rgb(232,145,14)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (13 samples, 4.00%)</title><rect x="652.6" y="405" width="47.2" height="15.0" fill="rgb(212,34,22)" rx="2" ry="2" />
<text text-anchor="" x="655.65" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fute..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.31%)</title><rect x="736.2" y="549" width="3.6" height="15.0" fill="rgb(250,83,28)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="540.1" y="469" width="3.6" height="15.0" fill="rgb(212,144,19)" rx="2" ry="2" />
<text text-anchor="" x="543.09" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_fin (1 samples, 0.31%)</title><rect x="736.2" y="117" width="3.6" height="15.0" fill="rgb(215,19,49)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph6buffer3ptr6appendEPKcj (1 samples, 0.31%)</title><rect x="812.4" y="533" width="3.6" height="15.0" fill="rgb(243,221,51)" rx="2" ry="2" />
<text text-anchor="" x="815.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 2.46%)</title><rect x="707.1" y="277" width="29.1" height="15.0" fill="rgb(219,16,23)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK18CephXTicketManager16build_authorizerEj (1 samples, 0.31%)</title><rect x="885.0" y="373" width="3.6" height="15.0" fill="rgb(221,44,16)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail20rados_state_callbackINS_5image14RefreshRequestINS_8ImageCtxEEEXadL_ZNS6_19handle_v2_get_groupEPiEELb1EEEvPvS8_ (2 samples, 0.62%)</title><rect x="609.1" y="453" width="7.2" height="15.0" fill="rgb(223,163,12)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>return_from_SYSCALL_64 (1 samples, 0.31%)</title><rect x="1150.1" y="549" width="3.6" height="15.0" fill="rgb(250,215,47)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.31%)</title><rect x="1146.4" y="533" width="3.7" height="15.0" fill="rgb(225,192,31)" rx="2" ry="2" />
<text text-anchor="" x="1149.43" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="805.1" y="325" width="3.7" height="15.0" fill="rgb(230,89,44)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (17 samples, 5.23%)</title><rect x="580.0" y="533" width="61.8" height="15.0" fill="rgb(205,158,54)" rx="2" ry="2" />
<text text-anchor="" x="583.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__clone</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (16 samples, 4.92%)</title><rect x="819.7" y="373" width="58.1" height="15.0" fill="rgb(237,84,4)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter16ms_fast_dispatchEP7Message (1 samples, 0.31%)</title><rect x="946.7" y="421" width="3.7" height="15.0" fill="rgb(251,106,0)" rx="2" ry="2" />
<text text-anchor="" x="949.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14RefreshRequestINS_8ImageCtxEE27send_v2_get_snap_namespacesEv (1 samples, 0.31%)</title><rect x="623.6" y="421" width="3.6" height="15.0" fill="rgb(242,228,39)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 1.23%)</title><rect x="975.8" y="277" width="14.5" height="15.0" fill="rgb(249,29,53)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE8_M_eraseEPSt13_Rb_tree_nodeISB_E (1 samples, 0.31%)</title><rect x="561.9" y="485" width="3.6" height="15.0" fill="rgb(244,113,11)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail22C_StateCallbackAdapterINS_5image14SetSnapRequestINS_8ImageCtxEEEXadL_ZNS6_22handle_open_object_mapEPiEELb1EE8completeEi (1 samples, 0.31%)</title><rect x="583.7" y="437" width="3.6" height="15.0" fill="rgb(207,136,18)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PK11_CreateContextBySymKey (2 samples, 0.62%)</title><rect x="932.2" y="357" width="7.3" height="15.0" fill="rgb(216,209,43)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter22_op_submit_with_budgetEPNS_2OpERN4ceph13shunique_lockIN5boost12shared_mutexEEEPmPi (1 samples, 0.31%)</title><rect x="587.3" y="357" width="3.6" height="15.0" fill="rgb(230,19,32)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.31%)</title><rect x="990.3" y="85" width="3.6" height="15.0" fill="rgb(244,41,44)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 2.46%)</title><rect x="707.1" y="453" width="29.1" height="15.0" fill="rgb(251,3,37)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados5IoCtx4readERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERN4ceph6buffer4listEmm (4 samples, 1.23%)</title><rect x="1012.1" y="405" width="14.5" height="15.0" fill="rgb(254,71,30)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.31%)</title><rect x="743.4" y="149" width="3.6" height="15.0" fill="rgb(218,192,24)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (1 samples, 0.31%)</title><rect x="583.7" y="277" width="3.6" height="15.0" fill="rgb(210,187,8)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (15 samples, 4.62%)</title><rect x="649.0" y="485" width="54.5" height="15.0" fill="rgb(226,22,21)" rx="2" ry="2" />
<text text-anchor="" x="652.02" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthre..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="972.2" y="309" width="3.6" height="15.0" fill="rgb(227,99,34)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgr-worker-2 (17 samples, 5.23%)</title><rect x="892.3" y="565" width="61.7" height="15.0" fill="rgb(243,148,12)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >msgr-w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.31%)</title><rect x="736.2" y="389" width="3.6" height="15.0" fill="rgb(244,42,53)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.31%)</title><rect x="583.7" y="165" width="3.6" height="15.0" fill="rgb(238,87,33)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.31%)</title><rect x="663.5" y="277" width="3.7" height="15.0" fill="rgb(241,166,34)" rx="2" ry="2" />
<text text-anchor="" x="666.54" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.31%)</title><rect x="903.2" y="229" width="3.6" height="15.0" fill="rgb(231,149,34)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd8ImageCtx10perf_startENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (3 samples, 0.92%)</title><rect x="594.6" y="389" width="10.8" height="15.0" fill="rgb(232,146,23)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 1.23%)</title><rect x="1157.3" y="341" width="14.5" height="15.0" fill="rgb(221,177,46)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 1.23%)</title><rect x="1175.5" y="421" width="14.5" height="15.0" fill="rgb(221,124,29)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N5boost7variantINS8_5blankEJS5_mldb13entity_addr_t6uuid_dEEEESt10_Select1stISE_ESt4lessIS5_ESaISE_EE8_M_eraseEPSt13_Rb_tree_nodeISE_E (1 samples, 0.31%)</title><rect x="558.2" y="469" width="3.7" height="15.0" fill="rgb(217,189,25)" rx="2" ry="2" />
<text text-anchor="" x="561.25" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.31%)</title><rect x="736.2" y="501" width="3.6" height="15.0" fill="rgb(214,93,38)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (4 samples, 1.23%)</title><rect x="521.9" y="453" width="14.6" height="15.0" fill="rgb(206,213,8)" rx="2" ry="2" />
<text text-anchor="" x="524.94" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 1.23%)</title><rect x="975.8" y="293" width="14.5" height="15.0" fill="rgb(249,147,23)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EventCenter23dispatch_event_externalEP13EventCallback (1 samples, 0.31%)</title><rect x="990.3" y="357" width="3.6" height="15.0" fill="rgb(230,215,26)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (1 samples, 0.31%)</title><rect x="990.3" y="101" width="3.6" height="15.0" fill="rgb(231,132,27)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (13 samples, 4.00%)</title><rect x="652.6" y="437" width="47.2" height="15.0" fill="rgb(229,209,25)" rx="2" ry="2" />
<text text-anchor="" x="655.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PK11_CreateContextBySymKey (2 samples, 0.62%)</title><rect x="805.1" y="373" width="7.3" height="15.0" fill="rgb(222,194,41)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.31%)</title><rect x="928.6" y="229" width="3.6" height="15.0" fill="rgb(231,117,11)" rx="2" ry="2" />
<text text-anchor="" x="931.58" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.40 (1 samples, 0.31%)</title><rect x="736.2" y="69" width="3.6" height="15.0" fill="rgb(220,63,18)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 1.23%)</title><rect x="1012.1" y="261" width="14.5" height="15.0" fill="rgb(250,113,18)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14SetSnapRequestINS_8ImageCtxEE8finalizeEv (1 samples, 0.31%)</title><rect x="583.7" y="389" width="3.6" height="15.0" fill="rgb(227,40,35)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 1.23%)</title><rect x="975.8" y="181" width="14.5" height="15.0" fill="rgb(213,49,33)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 2.46%)</title><rect x="903.2" y="309" width="29.0" height="15.0" fill="rgb(224,47,32)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (13 samples, 4.00%)</title><rect x="652.6" y="421" width="47.2" height="15.0" fill="rgb(205,16,9)" rx="2" ry="2" />
<text text-anchor="" x="655.65" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fute..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8ConfFile18normalize_key_nameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="569.1" y="469" width="3.7" height="15.0" fill="rgb(217,4,7)" rx="2" ry="2" />
<text text-anchor="" x="572.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.31%)</title><rect x="590.9" y="213" width="3.7" height="15.0" fill="rgb(232,37,34)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 1.23%)</title><rect x="1012.1" y="309" width="14.5" height="15.0" fill="rgb(208,220,28)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event_percpu (1 samples, 0.31%)</title><rect x="943.1" y="325" width="3.6" height="15.0" fill="rgb(213,72,39)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 1.23%)</title><rect x="1012.1" y="197" width="14.5" height="15.0" fill="rgb(225,227,52)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE8_M_eraseEPSt13_Rb_tree_nodeISB_E (1 samples, 0.31%)</title><rect x="561.9" y="437" width="3.6" height="15.0" fill="rgb(230,14,12)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (12 samples, 3.69%)</title><rect x="754.3" y="261" width="43.6" height="15.0" fill="rgb(249,227,45)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 1.23%)</title><rect x="627.2" y="485" width="14.6" height="15.0" fill="rgb(221,213,42)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK11md_config_t15get_val_genericERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="565.5" y="501" width="3.6" height="15.0" fill="rgb(247,125,38)" rx="2" ry="2" />
<text text-anchor="" x="568.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="885.0" y="277" width="3.6" height="15.0" fill="rgb(239,24,19)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.31%)</title><rect x="888.6" y="373" width="3.7" height="15.0" fill="rgb(245,222,11)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.62%)</title><rect x="743.4" y="325" width="7.3" height="15.0" fill="rgb(215,184,8)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_charge (1 samples, 0.31%)</title><rect x="888.6" y="229" width="3.7" height="15.0" fill="rgb(251,97,34)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (12 samples, 3.69%)</title><rect x="754.3" y="357" width="43.6" height="15.0" fill="rgb(207,135,10)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph6buffer4list8iterator7copy_inEjPKc (1 samples, 0.31%)</title><rect x="939.5" y="373" width="3.6" height="15.0" fill="rgb(227,190,23)" rx="2" ry="2" />
<text text-anchor="" x="942.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="590.9" y="277" width="3.7" height="15.0" fill="rgb(241,24,11)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (20 samples, 6.15%)</title><rect x="819.7" y="517" width="72.6" height="15.0" fill="rgb(254,156,12)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_th..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (1 samples, 0.31%)</title><rect x="1008.5" y="309" width="3.6" height="15.0" fill="rgb(233,21,0)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_bESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E (1 samples, 0.31%)</title><rect x="572.8" y="469" width="3.6" height="15.0" fill="rgb(224,198,33)" rx="2" ry="2" />
<text text-anchor="" x="575.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (8 samples, 2.46%)</title><rect x="707.1" y="309" width="29.1" height="15.0" fill="rgb(221,36,46)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph6crypto8shutdownEb (1 samples, 0.31%)</title><rect x="972.2" y="453" width="3.6" height="15.0" fill="rgb(254,33,10)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail20rados_state_callbackINS_10object_map14RefreshRequestINS_8ImageCtxEEEXadL_ZNS6_11handle_loadEPiEELb1EEEvPvS8_ (1 samples, 0.31%)</title><rect x="583.7" y="453" width="3.6" height="15.0" fill="rgb(225,225,31)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (12 samples, 3.69%)</title><rect x="754.3" y="293" width="43.6" height="15.0" fill="rgb(224,153,47)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__pe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 1.23%)</title><rect x="1012.1" y="325" width="14.5" height="15.0" fill="rgb(253,173,40)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11md_config_tD2Ev (2 samples, 0.62%)</title><rect x="558.2" y="517" width="7.3" height="15.0" fill="rgb(222,225,16)" rx="2" ry="2" />
<text text-anchor="" x="561.25" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (2 samples, 0.62%)</title><rect x="743.4" y="389" width="7.3" height="15.0" fill="rgb(240,147,43)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados5IoCtx11aio_operateERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPNS_13AioCompletionEPNS_19ObjectReadOperationEPN4ceph6buffer4listE (1 samples, 0.31%)</title><rect x="605.4" y="405" width="3.7" height="15.0" fill="rgb(211,213,31)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 4.92%)</title><rect x="645.4" y="549" width="58.1" height="15.0" fill="rgb(237,97,36)" rx="2" ry="2" />
<text text-anchor="" x="648.38" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unkno..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgr-worker-0 (20 samples, 6.15%)</title><rect x="739.8" y="565" width="72.6" height="15.0" fill="rgb(233,57,19)" rx="2" ry="2" />
<text text-anchor="" x="742.78" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >msgr-wor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (2 samples, 0.62%)</title><rect x="743.4" y="293" width="7.3" height="15.0" fill="rgb(218,188,20)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (32 samples, 9.85%)</title><rect x="1026.6" y="437" width="116.2" height="15.0" fill="rgb(235,104,43)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_pmu_enab..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.31%)</title><rect x="990.3" y="117" width="3.6" height="15.0" fill="rgb(219,11,19)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.92%)</title><rect x="979.4" y="117" width="10.9" height="15.0" fill="rgb(252,164,51)" rx="2" ry="2" />
<text text-anchor="" x="982.42" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_iterate_ctx (1 samples, 0.31%)</title><rect x="1150.1" y="373" width="3.6" height="15.0" fill="rgb(245,134,52)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.31%)</title><rect x="583.7" y="341" width="3.6" height="15.0" fill="rgb(218,123,17)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt7__cxx1110_List_baseIN4ceph6buffer3ptrESaIS3_EE8_M_clearEv (1 samples, 0.31%)</title><rect x="895.9" y="533" width="3.6" height="15.0" fill="rgb(218,193,15)" rx="2" ry="2" />
<text text-anchor="" x="898.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (6 samples, 1.85%)</title><rect x="416.6" y="469" width="21.8" height="15.0" fill="rgb(245,73,27)" rx="2" ry="2" />
<text text-anchor="" x="419.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK16RefCountedObject3putEv (1 samples, 0.31%)</title><rect x="797.9" y="437" width="3.6" height="15.0" fill="rgb(223,132,43)" rx="2" ry="2" />
<text text-anchor="" x="800.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (2 samples, 0.62%)</title><rect x="790.6" y="229" width="7.3" height="15.0" fill="rgb(251,152,20)" rx="2" ry="2" />
<text text-anchor="" x="793.62" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.31%)</title><rect x="747.0" y="165" width="3.7" height="15.0" fill="rgb(227,205,36)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>posix_memalign (1 samples, 0.31%)</title><rect x="623.6" y="373" width="3.6" height="15.0" fill="rgb(210,182,32)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libstdc++.so.6.0.21] (16 samples, 4.92%)</title><rect x="754.3" y="501" width="58.1" height="15.0" fill="rgb(251,61,17)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libst..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (16 samples, 4.92%)</title><rect x="819.7" y="421" width="58.1" height="15.0" fill="rgb(236,59,40)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail20rados_state_callbackINS_5image11OpenRequestINS_8ImageCtxEEEXadL_ZNS6_23handle_v2_detect_headerEPiEELb1EEEvPvS8_ (1 samples, 0.31%)</title><rect x="587.3" y="453" width="3.6" height="15.0" fill="rgb(207,211,34)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.92%)</title><rect x="1179.1" y="261" width="10.9" height="15.0" fill="rgb(205,102,3)" rx="2" ry="2" />
<text text-anchor="" x="1182.11" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (4 samples, 1.23%)</title><rect x="1157.3" y="325" width="14.5" height="15.0" fill="rgb(208,88,10)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 1.23%)</title><rect x="1012.1" y="341" width="14.5" height="15.0" fill="rgb(205,172,43)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5boost16re_detail_10660018basic_regex_parserIcNS_12regex_traitsIcNS_16cpp_regex_traitsIcEEEEE5parseEPKcS8_j (1 samples, 0.31%)</title><rect x="336.8" y="469" width="3.6" height="15.0" fill="rgb(236,130,4)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection7processEv (3 samples, 0.92%)</title><rect x="801.5" y="453" width="10.9" height="15.0" fill="rgb(247,163,51)" rx="2" ry="2" />
<text text-anchor="" x="804.51" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tp_librbd (5 samples, 1.54%)</title><rect x="1171.8" y="565" width="18.2" height="15.0" fill="rgb(249,33,31)" rx="2" ry="2" />
<text text-anchor="" x="1174.85" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_bESt10_Select1stIS8_ESt4lessIS5_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E (1 samples, 0.31%)</title><rect x="572.8" y="501" width="3.6" height="15.0" fill="rgb(222,178,13)" rx="2" ry="2" />
<text text-anchor="" x="575.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 1.23%)</title><rect x="1157.3" y="357" width="14.5" height="15.0" fill="rgb(237,187,23)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK18CephxClientHandler16build_authorizerEj (1 samples, 0.31%)</title><rect x="885.0" y="389" width="3.6" height="15.0" fill="rgb(237,88,21)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (8 samples, 2.46%)</title><rect x="707.1" y="517" width="29.1" height="15.0" fill="rgb(250,56,22)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (9 samples, 2.77%)</title><rect x="899.5" y="437" width="32.7" height="15.0" fill="rgb(220,207,2)" rx="2" ry="2" />
<text text-anchor="" x="902.54" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph6buffer4list6appendEPKcj (1 samples, 0.31%)</title><rect x="609.1" y="389" width="3.6" height="15.0" fill="rgb(247,29,53)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (10 samples, 3.08%)</title><rect x="362.2" y="501" width="36.3" height="15.0" fill="rgb(215,213,53)" rx="2" ry="2" />
<text text-anchor="" x="365.18" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[li..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.31%)</title><rect x="583.7" y="293" width="3.6" height="15.0" fill="rgb(215,2,39)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZZN12NetworkStack10add_threadEjENKUlvE_clEv (15 samples, 4.62%)</title><rect x="899.5" y="485" width="54.5" height="15.0" fill="rgb(220,39,24)" rx="2" ry="2" />
<text text-anchor="" x="902.54" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZZN1..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph6buffer4list6appendEPKcj (1 samples, 0.31%)</title><rect x="623.6" y="389" width="3.6" height="15.0" fill="rgb(210,28,40)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN9MonClient13handle_monmapEP7MMonMap (1 samples, 0.31%)</title><rect x="703.5" y="533" width="3.6" height="15.0" fill="rgb(241,36,34)" rx="2" ry="2" />
<text text-anchor="" x="706.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.62%)</title><rect x="743.4" y="341" width="7.3" height="15.0" fill="rgb(205,227,30)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (32 samples, 9.85%)</title><rect x="1026.6" y="469" width="116.2" height="15.0" fill="rgb(212,171,22)" rx="2" ry="2" />
<text text-anchor="" x="1029.62" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_pmu_enabl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlen (1 samples, 0.31%)</title><rect x="209.7" y="501" width="3.6" height="15.0" fill="rgb(250,127,52)" rx="2" ry="2" />
<text text-anchor="" x="212.69" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (20 samples, 6.15%)</title><rect x="739.8" y="549" width="72.6" height="15.0" fill="rgb(227,133,37)" rx="2" ry="2" />
<text text-anchor="" x="742.78" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="623.6" y="357" width="3.6" height="15.0" fill="rgb(229,171,34)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fn-radosclient (175 samples, 53.85%)</title><rect x="10.0" y="565" width="635.4" height="15.0" fill="rgb(240,70,50)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fn-radosclient</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6MOSDOpD0Ev (1 samples, 0.31%)</title><rect x="877.8" y="405" width="3.6" height="15.0" fill="rgb(227,71,36)" rx="2" ry="2" />
<text text-anchor="" x="880.75" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter19handle_osd_op_replyEP11MOSDOpReply (1 samples, 0.31%)</title><rect x="881.4" y="389" width="3.6" height="15.0" fill="rgb(222,107,51)" rx="2" ry="2" />
<text text-anchor="" x="884.38" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 1.23%)</title><rect x="627.2" y="421" width="14.6" height="15.0" fill="rgb(228,198,15)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_sendmsg (2 samples, 0.62%)</title><rect x="743.4" y="453" width="7.3" height="15.0" fill="rgb(239,227,35)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (2 samples, 0.62%)</title><rect x="805.1" y="357" width="7.3" height="15.0" fill="rgb(231,217,19)" rx="2" ry="2" />
<text text-anchor="" x="808.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados5IoCtx11aio_operateERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPNS_13AioCompletionEPNS_19ObjectReadOperationEPN4ceph6buffer4listE (1 samples, 0.31%)</title><rect x="587.3" y="405" width="3.6" height="15.0" fill="rgb(212,48,17)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNKSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE4findERS7_ (1 samples, 0.31%)</title><rect x="565.5" y="469" width="3.6" height="15.0" fill="rgb(206,116,14)" rx="2" ry="2" />
<text text-anchor="" x="568.51" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN3rbd6action4list7do_listERNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEbiPN4ceph9FormatterE (14 samples, 4.31%)</title><rect x="975.8" y="453" width="50.8" height="15.0" fill="rgb(216,191,19)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN3r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.31%)</title><rect x="747.0" y="229" width="3.7" height="15.0" fill="rgb(246,96,38)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="456.6" y="485" width="3.6" height="15.0" fill="rgb(251,203,45)" rx="2" ry="2" />
<text text-anchor="" x="459.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (16 samples, 4.92%)</title><rect x="819.7" y="325" width="58.1" height="15.0" fill="rgb(232,35,7)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.92%)</title><rect x="1157.3" y="277" width="10.9" height="15.0" fill="rgb(226,89,15)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 2.46%)</title><rect x="903.2" y="293" width="29.0" height="15.0" fill="rgb(252,216,23)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (4 samples, 1.23%)</title><rect x="1175.5" y="309" width="14.5" height="15.0" fill="rgb(232,33,43)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter10_finish_opEPNS_2OpEi (1 samples, 0.31%)</title><rect x="881.4" y="373" width="3.6" height="15.0" fill="rgb(238,64,31)" rx="2" ry="2" />
<text text-anchor="" x="884.38" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.92%)</title><rect x="993.9" y="181" width="10.9" height="15.0" fill="rgb(251,132,1)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (4 samples, 1.23%)</title><rect x="627.2" y="373" width="14.6" height="15.0" fill="rgb(252,175,54)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EventCenter14process_eventsEiPNSt6chrono8durationImSt5ratioILl1ELl1000000000EEEE (16 samples, 4.92%)</title><rect x="754.3" y="469" width="58.1" height="15.0" fill="rgb(254,144,30)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN11E..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (1 samples, 0.31%)</title><rect x="736.2" y="101" width="3.6" height="15.0" fill="rgb(237,47,1)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.31%)</title><rect x="583.7" y="213" width="3.6" height="15.0" fill="rgb(250,215,4)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN24PosixConnectedSocketImpl4sendERN4ceph6buffer4listEb (2 samples, 0.62%)</title><rect x="743.4" y="533" width="7.3" height="15.0" fill="rgb(250,204,6)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.31%)</title><rect x="747.0" y="69" width="3.7" height="15.0" fill="rgb(230,183,0)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.62%)</title><rect x="743.4" y="501" width="7.3" height="15.0" fill="rgb(237,56,2)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados9IoCtxImpl16aio_operate_readERK8object_tP15ObjectOperationPNS_17AioCompletionImplEiPN4ceph6buffer4listEPK16blkin_trace_info (1 samples, 0.31%)</title><rect x="587.3" y="389" width="3.6" height="15.0" fill="rgb(251,20,22)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libfreeblpriv3.so] (1 samples, 0.31%)</title><rect x="935.8" y="261" width="3.7" height="15.0" fill="rgb(232,168,48)" rx="2" ry="2" />
<text text-anchor="" x="938.85" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN9Messenger6createEP11CephContextRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE13entity_name_tS7_mm (4 samples, 1.23%)</title><rect x="975.8" y="389" width="14.5" height="15.0" fill="rgb(212,20,26)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.31%)</title><rect x="590.9" y="197" width="3.7" height="15.0" fill="rgb(224,59,44)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="972.2" y="389" width="3.6" height="15.0" fill="rgb(243,167,38)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.31%)</title><rect x="707.1" y="261" width="3.6" height="15.0" fill="rgb(212,33,51)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph6buffer4list6appendEPKcj (2 samples, 0.62%)</title><rect x="616.3" y="389" width="7.3" height="15.0" fill="rgb(242,180,8)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libstdc++.so.6.0.21] (1 samples, 0.31%)</title><rect x="511.0" y="501" width="3.7" height="15.0" fill="rgb(212,188,12)" rx="2" ry="2" />
<text text-anchor="" x="514.05" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11md_config_t15validate_schemaEv (1 samples, 0.31%)</title><rect x="49.9" y="533" width="3.7" height="15.0" fill="rgb(216,145,5)" rx="2" ry="2" />
<text text-anchor="" x="52.94" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 1.23%)</title><rect x="1175.5" y="277" width="14.5" height="15.0" fill="rgb(206,164,11)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxa_throw (1 samples, 0.31%)</title><rect x="340.4" y="469" width="3.6" height="15.0" fill="rgb(208,146,48)" rx="2" ry="2" />
<text text-anchor="" x="343.40" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 1.23%)</title><rect x="954.0" y="373" width="14.5" height="15.0" fill="rgb(247,216,36)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE8_M_eraseEPSt13_Rb_tree_nodeISB_E (1 samples, 0.31%)</title><rect x="561.9" y="469" width="3.6" height="15.0" fill="rgb(244,182,38)" rx="2" ry="2" />
<text text-anchor="" x="564.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EventCenter9set_ownerEv (1 samples, 0.31%)</title><rect x="888.6" y="469" width="3.7" height="15.0" fill="rgb(224,6,26)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados15ObjectOperationD2Ev@plt (1 samples, 0.31%)</title><rect x="10.0" y="533" width="3.6" height="15.0" fill="rgb(229,219,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcmp@plt (1 samples, 0.31%)</title><rect x="641.8" y="533" width="3.6" height="15.0" fill="rgb(242,50,1)" rx="2" ry="2" />
<text text-anchor="" x="644.75" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="609.1" y="341" width="3.6" height="15.0" fill="rgb(249,227,1)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK5spg_t6encodeERN4ceph6buffer4listE (1 samples, 0.31%)</title><rect x="939.5" y="389" width="3.6" height="15.0" fill="rgb(243,147,20)" rx="2" ry="2" />
<text text-anchor="" x="942.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="623.6" y="341" width="3.6" height="15.0" fill="rgb(230,107,1)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="336.8" y="389" width="3.6" height="15.0" fill="rgb(236,136,8)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.31%)</title><rect x="946.7" y="341" width="3.7" height="15.0" fill="rgb(222,176,44)" rx="2" ry="2" />
<text text-anchor="" x="949.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.31%)</title><rect x="892.3" y="421" width="3.6" height="15.0" fill="rgb(243,209,1)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_wait (16 samples, 4.92%)</title><rect x="819.7" y="437" width="58.1" height="15.0" fill="rgb(223,201,19)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >epoll_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libfreeblpriv3.so] (1 samples, 0.31%)</title><rect x="935.8" y="277" width="3.7" height="15.0" fill="rgb(245,49,1)" rx="2" ry="2" />
<text text-anchor="" x="938.85" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (12 samples, 3.69%)</title><rect x="754.3" y="325" width="43.6" height="15.0" fill="rgb(225,36,36)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN3rbd6action4list7executeERKN5boost15program_options13variables_mapE (14 samples, 4.31%)</title><rect x="975.8" y="469" width="50.8" height="15.0" fill="rgb(230,74,47)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN3r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.31%)</title><rect x="943.1" y="405" width="3.6" height="15.0" fill="rgb(205,27,27)" rx="2" ry="2" />
<text text-anchor="" x="946.11" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_sendmsg (1 samples, 0.31%)</title><rect x="892.3" y="453" width="3.6" height="15.0" fill="rgb(222,135,12)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (12 samples, 3.69%)</title><rect x="826.9" y="229" width="43.6" height="15.0" fill="rgb(218,79,41)" rx="2" ry="2" />
<text text-anchor="" x="829.92" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >nati..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 2.46%)</title><rect x="707.1" y="469" width="29.1" height="15.0" fill="rgb(246,209,27)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (8 samples, 2.46%)</title><rect x="903.2" y="389" width="29.0" height="15.0" fill="rgb(212,29,26)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (1 samples, 0.31%)</title><rect x="540.1" y="501" width="3.6" height="15.0" fill="rgb(216,43,32)" rx="2" ry="2" />
<text text-anchor="" x="543.09" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (4 samples, 1.23%)</title><rect x="993.9" y="229" width="14.6" height="15.0" fill="rgb(205,100,7)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (8 samples, 2.46%)</title><rect x="903.2" y="325" width="29.0" height="15.0" fill="rgb(228,81,24)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EpollDriver10event_waitERSt6vectorI14FiredFileEventSaIS1_EEP7timeval (16 samples, 4.92%)</title><rect x="819.7" y="453" width="58.1" height="15.0" fill="rgb(240,81,7)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN11E..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.31%)</title><rect x="990.3" y="325" width="3.6" height="15.0" fill="rgb(245,134,42)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (3 samples, 0.92%)</title><rect x="594.6" y="325" width="10.8" height="15.0" fill="rgb(239,79,38)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace_handler (1 samples, 0.31%)</title><rect x="870.5" y="229" width="3.6" height="15.0" fill="rgb(218,127,26)" rx="2" ry="2" />
<text text-anchor="" x="873.49" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter19handle_osd_op_replyEP11MOSDOpReply (1 samples, 0.31%)</title><rect x="946.7" y="389" width="3.7" height="15.0" fill="rgb(254,218,26)" rx="2" ry="2" />
<text text-anchor="" x="949.74" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_execveat_common.isra.35 (1 samples, 0.31%)</title><rect x="1150.1" y="501" width="3.6" height="15.0" fill="rgb(241,202,6)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter17ms_get_authorizerEiPP14AuthAuthorizerb (1 samples, 0.31%)</title><rect x="885.0" y="421" width="3.6" height="15.0" fill="rgb(223,14,7)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag.isra.150 (1 samples, 0.31%)</title><rect x="402.1" y="501" width="3.7" height="15.0" fill="rgb(215,184,31)" rx="2" ry="2" />
<text text-anchor="" x="405.12" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN9Messenger23create_client_messengerEP11CephContextNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (4 samples, 1.23%)</title><rect x="975.8" y="405" width="14.5" height="15.0" fill="rgb(248,136,18)" rx="2" ry="2" />
<text text-anchor="" x="978.78" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 1.23%)</title><rect x="1157.3" y="437" width="14.5" height="15.0" fill="rgb(250,2,47)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd4util6detail20rados_state_callbackINS_5image14RefreshRequestINS_8ImageCtxEEEXadL_ZNS6_22handle_v2_get_metadataEPiEELb1EEEvPvS8_ (2 samples, 0.62%)</title><rect x="616.3" y="453" width="7.3" height="15.0" fill="rgb(205,63,54)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (19 samples, 5.85%)</title><rect x="104.4" y="517" width="69.0" height="15.0" fill="rgb(254,162,48)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libc-2..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados9IoCtxImpl4readERK8object_tRN4ceph6buffer4listEmm (4 samples, 1.23%)</title><rect x="1012.1" y="389" width="14.5" height="15.0" fill="rgb(210,56,33)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.31%)</title><rect x="652.6" y="357" width="3.7" height="15.0" fill="rgb(222,0,4)" rx="2" ry="2" />
<text text-anchor="" x="655.65" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN13DispatchQueue13fast_dispatchEP7Message (1 samples, 0.31%)</title><rect x="881.4" y="437" width="3.6" height="15.0" fill="rgb(246,83,28)" rx="2" ry="2" />
<text text-anchor="" x="884.38" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (4 samples, 1.23%)</title><rect x="954.0" y="469" width="14.5" height="15.0" fill="rgb(233,119,13)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="402.1" y="469" width="3.7" height="15.0" fill="rgb(216,188,17)" rx="2" ry="2" />
<text text-anchor="" x="405.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK6OSDMap21_pg_to_up_acting_osdsERK4pg_tPSt6vectorIiSaIiEEPiS6_S7_b (1 samples, 0.31%)</title><rect x="587.3" y="309" width="3.6" height="15.0" fill="rgb(251,74,2)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="623.6" y="325" width="3.6" height="15.0" fill="rgb(239,121,47)" rx="2" ry="2" />
<text text-anchor="" x="626.60" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5boost16re_detail_10660011raw_storage6resizeEm (1 samples, 0.31%)</title><rect x="336.8" y="437" width="3.6" height="15.0" fill="rgb(243,215,30)" rx="2" ry="2" />
<text text-anchor="" x="339.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[librbd.so.1.12.0] (1 samples, 0.31%)</title><rect x="10.0" y="549" width="3.6" height="15.0" fill="rgb(241,181,24)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (15 samples, 4.62%)</title><rect x="649.0" y="517" width="54.5" height="15.0" fill="rgb(233,184,19)" rx="2" ry="2" />
<text text-anchor="" x="652.02" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="972.2" y="261" width="3.6" height="15.0" fill="rgb(224,42,37)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.31%)</title><rect x="583.7" y="197" width="3.6" height="15.0" fill="rgb(228,87,22)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Znwm (3 samples, 0.92%)</title><rect x="467.5" y="501" width="10.9" height="15.0" fill="rgb(214,28,32)" rx="2" ry="2" />
<text text-anchor="" x="470.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter11ms_dispatchEP7Message (1 samples, 0.31%)</title><rect x="946.7" y="405" width="3.7" height="15.0" fill="rgb(223,86,25)" rx="2" ry="2" />
<text text-anchor="" x="949.74" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.62%)</title><rect x="819.7" y="229" width="7.2" height="15.0" fill="rgb(246,110,50)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5Mutex6UnlockEv (1 samples, 0.31%)</title><rect x="580.0" y="485" width="3.7" height="15.0" fill="rgb(247,79,49)" rx="2" ry="2" />
<text text-anchor="" x="583.03" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="565.5" y="453" width="3.6" height="15.0" fill="rgb(240,162,52)" rx="2" ry="2" />
<text text-anchor="" x="568.51" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="972.2" y="373" width="3.6" height="15.0" fill="rgb(225,144,35)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8librados13C_AioComplete6finishEi (12 samples, 3.69%)</title><rect x="583.7" y="469" width="43.5" height="15.0" fill="rgb(207,47,3)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN8..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>setup_arg_pages (1 samples, 0.31%)</title><rect x="1150.1" y="453" width="3.6" height="15.0" fill="rgb(234,14,31)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (1 samples, 0.31%)</title><rect x="968.5" y="533" width="3.7" height="15.0" fill="rgb(207,91,29)" rx="2" ry="2" />
<text text-anchor="" x="971.52" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 2.46%)</title><rect x="707.1" y="325" width="29.1" height="15.0" fill="rgb(224,219,15)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.31%)</title><rect x="743.4" y="197" width="3.6" height="15.0" fill="rgb(215,68,52)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.62%)</title><rect x="743.4" y="405" width="7.3" height="15.0" fill="rgb(223,143,1)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (1 samples, 0.31%)</title><rect x="645.4" y="533" width="3.6" height="15.0" fill="rgb(224,197,25)" rx="2" ry="2" />
<text text-anchor="" x="648.38" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (2 samples, 0.62%)</title><rect x="932.2" y="309" width="7.3" height="15.0" fill="rgb(209,22,12)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.31%)</title><rect x="590.9" y="261" width="3.7" height="15.0" fill="rgb(218,5,17)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 1.23%)</title><rect x="993.9" y="373" width="14.6" height="15.0" fill="rgb(232,152,30)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.31%)</title><rect x="990.3" y="277" width="3.6" height="15.0" fill="rgb(211,152,36)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 1.23%)</title><rect x="993.9" y="309" width="14.6" height="15.0" fill="rgb(214,152,49)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (4 samples, 1.23%)</title><rect x="1157.3" y="373" width="14.5" height="15.0" fill="rgb(212,99,44)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN13DispatchQueue5entryEv (8 samples, 2.46%)</title><rect x="707.1" y="485" width="29.1" height="15.0" fill="rgb(231,219,10)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 1.23%)</title><rect x="1175.5" y="373" width="14.5" height="15.0" fill="rgb(251,112,6)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 1.23%)</title><rect x="1175.5" y="405" width="14.5" height="15.0" fill="rgb(230,193,16)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 2.46%)</title><rect x="707.1" y="341" width="29.1" height="15.0" fill="rgb(212,146,40)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>safe_timer (1 samples, 0.31%)</title><rect x="1153.7" y="565" width="3.6" height="15.0" fill="rgb(206,125,53)" rx="2" ry="2" />
<text text-anchor="" x="1156.69" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.31%)</title><rect x="932.2" y="245" width="3.6" height="15.0" fill="rgb(213,131,31)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.31%)</title><rect x="743.4" y="213" width="3.6" height="15.0" fill="rgb(230,148,2)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN11EpollDriver10event_waitERSt6vectorI14FiredFileEventSaIS1_EEP7timeval (12 samples, 3.69%)</title><rect x="754.3" y="453" width="43.6" height="15.0" fill="rgb(228,149,16)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN1..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.31%)</title><rect x="1153.7" y="517" width="3.6" height="15.0" fill="rgb(227,24,36)" rx="2" ry="2" />
<text text-anchor="" x="1156.69" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_sendmsg (1 samples, 0.31%)</title><rect x="892.3" y="469" width="3.6" height="15.0" fill="rgb(243,204,5)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_charge_memcg (1 samples, 0.31%)</title><rect x="888.6" y="213" width="3.7" height="15.0" fill="rgb(253,146,15)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>neigh_resolve_output (1 samples, 0.31%)</title><rect x="892.3" y="245" width="3.6" height="15.0" fill="rgb(218,130,33)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (1 samples, 0.31%)</title><rect x="1150.1" y="517" width="3.6" height="15.0" fill="rgb(211,95,14)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (4 samples, 1.23%)</title><rect x="954.0" y="533" width="14.5" height="15.0" fill="rgb(228,58,23)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (8 samples, 2.46%)</title><rect x="707.1" y="533" width="29.1" height="15.0" fill="rgb(233,20,30)" rx="2" ry="2" />
<text text-anchor="" x="710.11" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.31%)</title><rect x="736.2" y="197" width="3.6" height="15.0" fill="rgb(222,181,54)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.31%)</title><rect x="892.3" y="309" width="3.6" height="15.0" fill="rgb(223,184,3)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PK11_DigestFinal (1 samples, 0.31%)</title><rect x="739.8" y="533" width="3.6" height="15.0" fill="rgb(235,77,27)" rx="2" ry="2" />
<text text-anchor="" x="742.78" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.31%)</title><rect x="747.0" y="37" width="3.7" height="15.0" fill="rgb(211,178,5)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 1.23%)</title><rect x="1157.3" y="293" width="14.5" height="15.0" fill="rgb(241,187,26)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 1.23%)</title><rect x="1157.3" y="453" width="14.5" height="15.0" fill="rgb(248,169,26)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.31%)</title><rect x="736.2" y="181" width="3.6" height="15.0" fill="rgb(231,87,6)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.31%)</title><rect x="747.0" y="85" width="3.7" height="15.0" fill="rgb(236,36,37)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.31%)</title><rect x="736.2" y="357" width="3.6" height="15.0" fill="rgb(212,73,8)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 1.23%)</title><rect x="993.9" y="197" width="14.6" height="15.0" fill="rgb(214,228,53)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN4ceph7logging3Log12submit_entryEPNS0_5EntryE (1 samples, 0.31%)</title><rect x="583.7" y="357" width="3.6" height="15.0" fill="rgb(205,89,10)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_elf_binary (1 samples, 0.31%)</title><rect x="1150.1" y="469" width="3.6" height="15.0" fill="rgb(219,139,22)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 1.23%)</title><rect x="1157.3" y="421" width="14.5" height="15.0" fill="rgb(210,124,44)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.31%)</title><rect x="747.0" y="213" width="3.7" height="15.0" fill="rgb(240,30,0)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_Unwind_RaiseException (1 samples, 0.31%)</title><rect x="340.4" y="453" width="3.6" height="15.0" fill="rgb(221,165,40)" rx="2" ry="2" />
<text text-anchor="" x="343.40" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN5rados3cls4lock19get_lock_info_startEPN8librados19ObjectReadOperationERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE (1 samples, 0.31%)</title><rect x="590.9" y="357" width="3.7" height="15.0" fill="rgb(232,26,27)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.62%)</title><rect x="743.4" y="421" width="7.3" height="15.0" fill="rgb(238,145,32)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN15AsyncConnection19_process_connectionEv (1 samples, 0.31%)</title><rect x="885.0" y="437" width="3.6" height="15.0" fill="rgb(223,136,37)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (1 samples, 0.31%)</title><rect x="968.5" y="517" width="3.7" height="15.0" fill="rgb(244,3,8)" rx="2" ry="2" />
<text text-anchor="" x="971.52" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ms_dispatch (9 samples, 2.77%)</title><rect x="703.5" y="565" width="32.7" height="15.0" fill="rgb(238,170,46)" rx="2" ry="2" />
<text text-anchor="" x="706.48" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ms..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (2 samples, 0.62%)</title><rect x="932.2" y="341" width="7.3" height="15.0" fill="rgb(230,134,19)" rx="2" ry="2" />
<text text-anchor="" x="935.22" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9 samples, 2.77%)</title><rect x="703.5" y="549" width="32.7" height="15.0" fill="rgb(244,83,49)" rx="2" ry="2" />
<text text-anchor="" x="706.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (16 samples, 4.92%)</title><rect x="819.7" y="277" width="58.1" height="15.0" fill="rgb(220,187,28)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK6OSDMap21_pg_to_up_acting_osdsERK4pg_tPSt6vectorIiSaIiEEPiS6_S7_b (1 samples, 0.31%)</title><rect x="605.4" y="309" width="3.7" height="15.0" fill="rgb(220,52,16)" rx="2" ry="2" />
<text text-anchor="" x="608.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_ (2 samples, 0.62%)</title><rect x="460.2" y="501" width="7.3" height="15.0" fill="rgb(213,161,45)" rx="2" ry="2" />
<text text-anchor="" x="463.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN13DispatchQueue13fast_dispatchEP7Message (1 samples, 0.31%)</title><rect x="946.7" y="437" width="3.7" height="15.0" fill="rgb(216,125,44)" rx="2" ry="2" />
<text text-anchor="" x="949.74" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image11OpenRequestINS_8ImageCtxEE14send_v2_get_idEv (1 samples, 0.31%)</title><rect x="587.3" y="421" width="3.6" height="15.0" fill="rgb(240,108,30)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (1 samples, 0.31%)</title><rect x="583.7" y="229" width="3.6" height="15.0" fill="rgb(231,229,14)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (12 samples, 3.69%)</title><rect x="754.3" y="309" width="43.6" height="15.0" fill="rgb(250,177,22)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fini..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (4 samples, 1.23%)</title><rect x="954.0" y="405" width="14.5" height="15.0" fill="rgb(253,11,14)" rx="2" ry="2" />
<text text-anchor="" x="957.00" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.31%)</title><rect x="583.7" y="261" width="3.6" height="15.0" fill="rgb(210,112,9)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.62%)</title><rect x="743.4" y="309" width="7.3" height="15.0" fill="rgb(233,196,36)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.31%)</title><rect x="609.1" y="357" width="3.6" height="15.0" fill="rgb(247,11,54)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="885.0" y="293" width="3.6" height="15.0" fill="rgb(251,206,11)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag.isra.150 (1 samples, 0.31%)</title><rect x="398.5" y="517" width="3.6" height="15.0" fill="rgb(213,224,14)" rx="2" ry="2" />
<text text-anchor="" x="401.49" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 2.46%)</title><rect x="903.2" y="261" width="29.0" height="15.0" fill="rgb(208,226,32)" rx="2" ry="2" />
<text text-anchor="" x="906.17" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x8..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.31%)</title><rect x="583.7" y="325" width="3.6" height="15.0" fill="rgb(210,96,30)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (12 samples, 3.69%)</title><rect x="754.3" y="421" width="43.6" height="15.0" fill="rgb(242,58,4)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.31%)</title><rect x="990.3" y="133" width="3.6" height="15.0" fill="rgb(226,202,6)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (4 samples, 1.23%)</title><rect x="1175.5" y="517" width="14.5" height="15.0" fill="rgb(210,64,52)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK16RefCountedObject3putEv (1 samples, 0.31%)</title><rect x="877.8" y="421" width="3.6" height="15.0" fill="rgb(226,181,15)" rx="2" ry="2" />
<text text-anchor="" x="880.75" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 1.23%)</title><rect x="1175.5" y="469" width="14.5" height="15.0" fill="rgb(205,12,47)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base (4 samples, 1.23%)</title><rect x="543.7" y="517" width="14.5" height="15.0" fill="rgb(206,63,9)" rx="2" ry="2" />
<text text-anchor="" x="546.72" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (2 samples, 0.62%)</title><rect x="743.4" y="373" width="7.3" height="15.0" fill="rgb(233,94,22)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>neigh_connected_output (1 samples, 0.31%)</title><rect x="743.4" y="245" width="3.6" height="15.0" fill="rgb(223,100,22)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.62%)</title><rect x="743.4" y="437" width="7.3" height="15.0" fill="rgb(248,71,15)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.31%)</title><rect x="1168.2" y="277" width="3.6" height="15.0" fill="rgb(233,147,20)" rx="2" ry="2" />
<text text-anchor="" x="1171.22" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN7Message6encodeEmi (1 samples, 0.31%)</title><rect x="939.5" y="421" width="3.6" height="15.0" fill="rgb(208,7,44)" rx="2" ry="2" />
<text text-anchor="" x="942.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (16 samples, 4.92%)</title><rect x="819.7" y="309" width="58.1" height="15.0" fill="rgb(211,210,34)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.31%)</title><rect x="590.9" y="149" width="3.7" height="15.0" fill="rgb(252,199,46)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (9 samples, 2.77%)</title><rect x="757.9" y="229" width="32.7" height="15.0" fill="rgb(207,7,52)" rx="2" ry="2" />
<text text-anchor="" x="760.94" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >na..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libstdc++.so.6.0.21] (1 samples, 0.31%)</title><rect x="438.4" y="469" width="3.7" height="15.0" fill="rgb(211,89,51)" rx="2" ry="2" />
<text text-anchor="" x="441.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.31%)</title><rect x="1023.0" y="133" width="3.6" height="15.0" fill="rgb(217,7,14)" rx="2" ry="2" />
<text text-anchor="" x="1025.98" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.31%)</title><rect x="736.2" y="309" width="3.6" height="15.0" fill="rgb(233,89,51)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>expand_stack (1 samples, 0.31%)</title><rect x="1150.1" y="437" width="3.6" height="15.0" fill="rgb(253,95,40)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (15 samples, 4.62%)</title><rect x="649.0" y="533" width="54.5" height="15.0" fill="rgb(251,50,40)" rx="2" ry="2" />
<text text-anchor="" x="652.02" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__clone</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (4 samples, 1.23%)</title><rect x="1175.5" y="533" width="14.5" height="15.0" fill="rgb(252,31,34)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZdlPv@plt (1 samples, 0.31%)</title><rect x="816.0" y="533" width="3.7" height="15.0" fill="rgb(219,184,9)" rx="2" ry="2" />
<text text-anchor="" x="819.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.31%)</title><rect x="736.2" y="437" width="3.6" height="15.0" fill="rgb(222,188,24)" rx="2" ry="2" />
<text text-anchor="" x="739.15" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.31%)</title><rect x="990.3" y="293" width="3.6" height="15.0" fill="rgb(230,150,10)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (2 samples, 0.62%)</title><rect x="616.3" y="325" width="7.3" height="15.0" fill="rgb(251,76,32)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 4.92%)</title><rect x="968.5" y="549" width="58.1" height="15.0" fill="rgb(225,115,44)" rx="2" ry="2" />
<text text-anchor="" x="971.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unkno..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd8ImageCtx14apply_metadataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN4ceph6buffer4listESt4lessIS7_ESaISt4pairIKS7_SA_EEEb (5 samples, 1.54%)</title><rect x="558.2" y="533" width="18.2" height="15.0" fill="rgb(250,96,12)" rx="2" ry="2" />
<text text-anchor="" x="561.25" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNKSt8_Rb_treeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_RK6OptionESt10_Select1stISB_ESt4lessIS5_ESaISB_EE4findERS7_ (8 samples, 2.46%)</title><rect x="177.0" y="501" width="29.1" height="15.0" fill="rgb(219,192,5)" rx="2" ry="2" />
<text text-anchor="" x="180.02" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_Z..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.31%)</title><rect x="583.7" y="309" width="3.6" height="15.0" fill="rgb(245,22,41)" rx="2" ry="2" />
<text text-anchor="" x="586.66" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[ld-2.23.so] (1 samples, 0.31%)</title><rect x="645.4" y="485" width="3.6" height="15.0" fill="rgb(210,171,8)" rx="2" ry="2" />
<text text-anchor="" x="648.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.31%)</title><rect x="580.0" y="453" width="3.7" height="15.0" fill="rgb(217,191,21)" rx="2" ry="2" />
<text text-anchor="" x="583.03" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZNK6OSDMap14_get_temp_osdsERK9pg_pool_t4pg_tPSt6vectorIiSaIiEEPi (1 samples, 0.31%)</title><rect x="587.3" y="293" width="3.6" height="15.0" fill="rgb(223,46,4)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 1.23%)</title><rect x="1175.5" y="453" width="14.5" height="15.0" fill="rgb(244,204,7)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 1.23%)</title><rect x="627.2" y="389" width="14.6" height="15.0" fill="rgb(231,109,8)" rx="2" ry="2" />
<text text-anchor="" x="630.23" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>posix_memalign (1 samples, 0.31%)</title><rect x="609.1" y="373" width="3.6" height="15.0" fill="rgb(247,39,4)" rx="2" ry="2" />
<text text-anchor="" x="612.08" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (2 samples, 0.62%)</title><rect x="1030.2" y="421" width="7.3" height="15.0" fill="rgb(235,68,47)" rx="2" ry="2" />
<text text-anchor="" x="1033.25" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>posix_memalign (2 samples, 0.62%)</title><rect x="616.3" y="373" width="7.3" height="15.0" fill="rgb(221,31,41)" rx="2" ry="2" />
<text text-anchor="" x="619.34" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.31%)</title><rect x="747.0" y="133" width="3.7" height="15.0" fill="rgb(235,159,21)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (17 samples, 5.23%)</title><rect x="580.0" y="517" width="61.8" height="15.0" fill="rgb(248,30,28)" rx="2" ry="2" />
<text text-anchor="" x="583.03" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>log (16 samples, 4.92%)</title><rect x="645.4" y="565" width="58.1" height="15.0" fill="rgb(245,226,26)" rx="2" ry="2" />
<text text-anchor="" x="648.38" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >log</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.31%)</title><rect x="743.4" y="165" width="3.6" height="15.0" fill="rgb(232,127,47)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.31%)</title><rect x="797.9" y="421" width="3.6" height="15.0" fill="rgb(226,190,42)" rx="2" ry="2" />
<text text-anchor="" x="800.88" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd3api5ImageINS_8ImageCtxEE11list_imagesERN8librados5IoCtxEPSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESD_St4lessISD_ESaISt4pairIKSD_SD_EEE (1 samples, 0.31%)</title><rect x="1008.5" y="405" width="3.6" height="15.0" fill="rgb(254,162,3)" rx="2" ry="2" />
<text text-anchor="" x="1011.46" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6librbd5image14RefreshRequestINS_8ImageCtxEE28send_v2_get_mutable_metadataEv (1 samples, 0.31%)</title><rect x="590.9" y="389" width="3.7" height="15.0" fill="rgb(219,82,34)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.31%)</title><rect x="743.4" y="229" width="3.6" height="15.0" fill="rgb(241,108,34)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>posix_memalign (1 samples, 0.31%)</title><rect x="590.9" y="309" width="3.7" height="15.0" fill="rgb(232,152,18)" rx="2" ry="2" />
<text text-anchor="" x="593.92" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_sendmsg (2 samples, 0.62%)</title><rect x="743.4" y="469" width="7.3" height="15.0" fill="rgb(240,48,2)" rx="2" ry="2" />
<text text-anchor="" x="746.42" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (4 samples, 1.23%)</title><rect x="1157.3" y="517" width="14.5" height="15.0" fill="rgb(217,69,37)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.31%)</title><rect x="892.3" y="517" width="3.6" height="15.0" fill="rgb(206,40,21)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libsoftokn3.so] (1 samples, 0.31%)</title><rect x="972.2" y="245" width="3.6" height="15.0" fill="rgb(237,21,31)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 1.23%)</title><rect x="993.9" y="293" width="14.6" height="15.0" fill="rgb(239,146,28)" rx="2" ry="2" />
<text text-anchor="" x="996.94" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.31%)</title><rect x="1142.8" y="549" width="3.6" height="15.0" fill="rgb(248,63,0)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.31%)</title><rect x="892.3" y="501" width="3.6" height="15.0" fill="rgb(224,46,49)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>service (4 samples, 1.23%)</title><rect x="1157.3" y="565" width="14.5" height="15.0" fill="rgb(214,182,7)" rx="2" ry="2" />
<text text-anchor="" x="1160.32" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (2 samples, 0.62%)</title><rect x="471.1" y="469" width="7.3" height="15.0" fill="rgb(219,216,47)" rx="2" ry="2" />
<text text-anchor="" x="474.11" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_text_start (4 samples, 1.23%)</title><rect x="1175.5" y="357" width="14.5" height="15.0" fill="rgb(225,16,26)" rx="2" ry="2" />
<text text-anchor="" x="1178.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PK11_CreateContextBySymKey (1 samples, 0.31%)</title><rect x="885.0" y="309" width="3.6" height="15.0" fill="rgb(215,28,22)" rx="2" ry="2" />
<text text-anchor="" x="888.02" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (12 samples, 3.69%)</title><rect x="754.3" y="341" width="43.6" height="15.0" fill="rgb(225,118,54)" rx="2" ry="2" />
<text text-anchor="" x="757.31" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_iterate_sb (1 samples, 0.31%)</title><rect x="1150.1" y="389" width="3.6" height="15.0" fill="rgb(224,53,32)" rx="2" ry="2" />
<text text-anchor="" x="1153.06" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libnss3.so] (1 samples, 0.31%)</title><rect x="972.2" y="341" width="3.6" height="15.0" fill="rgb(245,88,16)" rx="2" ry="2" />
<text text-anchor="" x="975.15" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.31%)</title><rect x="892.3" y="277" width="3.6" height="15.0" fill="rgb(223,100,40)" rx="2" ry="2" />
<text text-anchor="" x="895.28" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bond_dev_queue_xmit (1 samples, 0.31%)</title><rect x="747.0" y="101" width="3.7" height="15.0" fill="rgb(249,182,17)" rx="2" ry="2" />
<text text-anchor="" x="750.05" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (16 samples, 4.92%)</title><rect x="819.7" y="357" width="58.1" height="15.0" fill="rgb(208,186,33)" rx="2" ry="2" />
<text text-anchor="" x="822.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZSt18_Rb_tree_incrementPKSt18_Rb_tree_node_base (1 samples, 0.31%)</title><rect x="206.1" y="501" width="3.6" height="15.0" fill="rgb(223,152,24)" rx="2" ry="2" />
<text text-anchor="" x="209.06" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.92 (4 samples, 1.23%)</title><rect x="1012.1" y="181" width="14.5" height="15.0" fill="rgb(240,195,20)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZZL15get_rbd_optionsvENKUlPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_E1_clES5_S5_.isra.1027 (1 samples, 0.31%)</title><rect x="340.4" y="501" width="3.6" height="15.0" fill="rgb(237,138,47)" rx="2" ry="2" />
<text text-anchor="" x="343.40" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__handle_mm_fault (1 samples, 0.31%)</title><rect x="888.6" y="309" width="3.7" height="15.0" fill="rgb(205,142,3)" rx="2" ry="2" />
<text text-anchor="" x="891.65" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.31%)</title><rect x="990.3" y="245" width="3.6" height="15.0" fill="rgb(212,97,44)" rx="2" ry="2" />
<text text-anchor="" x="993.31" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (3 samples, 0.92%)</title><rect x="594.6" y="277" width="10.8" height="15.0" fill="rgb(214,133,3)" rx="2" ry="2" />
<text text-anchor="" x="597.55" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter9op_submitEPNS_2OpEPmPi (1 samples, 0.31%)</title><rect x="587.3" y="373" width="3.6" height="15.0" fill="rgb(217,69,47)" rx="2" ry="2" />
<text text-anchor="" x="590.29" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (2 samples, 0.62%)</title><rect x="445.7" y="469" width="7.3" height="15.0" fill="rgb(243,64,38)" rx="2" ry="2" />
<text text-anchor="" x="448.69" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN6MOSDOp14encode_payloadEm (1 samples, 0.31%)</title><rect x="939.5" y="405" width="3.6" height="15.0" fill="rgb(244,212,27)" rx="2" ry="2" />
<text text-anchor="" x="942.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_ZN8Objecter16ms_fast_dispatchEP7Message (1 samples, 0.31%)</title><rect x="881.4" y="421" width="3.6" height="15.0" fill="rgb(242,110,52)" rx="2" ry="2" />
<text text-anchor="" x="884.38" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
(9-9/9)