Created
May 14, 2015 09:42
-
-
Save bobrik/969d322bb28c6a649cf7 to your computer and use it in GitHub Desktop.
marathon flamegraphs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" standalone="no"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg version="1.1" width="1200" height="2114" onload="init(evt)" viewBox="0 0 1200 2114" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<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, svg; | |
function init(evt) { | |
details = document.getElementById("details").firstChild; | |
svg = document.getElementsByTagName("svg")[0]; | |
} | |
function s(info) { details.nodeValue = "Function: " + info; } | |
function c() { details.nodeValue = ' '; } | |
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 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 = ""; | |
} | |
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]); | |
} | |
} | |
]]> | |
</script> | |
<rect x="0.0" y="0" width="1200.0" height="2114.0" fill="url(#background)" /> | |
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text> | |
<text text-anchor="" x="10.00" y="2097" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text> | |
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text> | |
<g class="func_g" onmouseover="s('play/api/libs/json/JsValueSerializer$$anonfun$serialize$2:.apply (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/JsValueSerializer$$anonfun$serialize$2:.apply (11 samples, 0.03%)</title><rect x="943.0" y="2033" width="0.3" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.98" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (118 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (118 samples, 0.33%)</title><rect x="930.7" y="1969" width="3.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.65" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ArrayBuffer:.init in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$healthCounts$1$$anonfun$8$$anonfun$apply$17:.apply (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ArrayBuffer:.init in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$healthCounts$1$$anonfun$8$$anonfun$apply$17:.apply (12 samples, 0.03%)</title><rect x="528.4" y="2017" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.40" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (29 samples, 0.08%)</title><rect x="438.0" y="1857" width="1.0" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.03" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::functionvoid (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::functionvoid (4 samples, 0.01%)</title><rect x="235.6" y="2001" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="238.61" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetFieldID (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetFieldID (7 samples, 0.02%)</title><rect x="371.5" y="1985" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.51" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ResizableArray$class:.foreach in Lscala/collection/mutable/ArrayBuffer:.foreach (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ResizableArray$class:.foreach in Lscala/collection/mutable/ArrayBuffer:.foreach (6 samples, 0.02%)</title><rect x="539.0" y="2017" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treeprocess::ProcessBase*, std::pairprocess::ProcessBase* const, Gate*, std::_Select1ststd::pairprocess::ProcessBase* const, Gate* , std::lessprocess::ProcessBase*, std::allocatorstd::pairprocess::ProcessBase* const, Gate* ::find (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treeprocess::ProcessBase*, std::pairprocess::ProcessBase* const, Gate*, std::_Select1ststd::pairprocess::ProcessBase* const, Gate* , std::lessprocess::ProcessBase*, std::allocatorstd::pairprocess::ProcessBase* const, Gate* ::find (21 samples, 0.06%)</title><rect x="1079.0" y="2033" width="0.7" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.98" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_invoke_nonstatic (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_invoke_nonstatic (12 samples, 0.03%)</title><rect x="64.5" y="1969" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.45" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/BatchingExecutor$class:.batchable in Lakka/dispatch/MessageDispatcher:.execute (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/BatchingExecutor$class:.batchable in Lakka/dispatch/MessageDispatcher:.execute (6 samples, 0.02%)</title><rect x="278.4" y="2017" width="0.2" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait_queue_me (62 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (62 samples, 0.17%)</title><rect x="972.8" y="2017" width="2.0" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="975.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="1040.6" y="2017" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="1043.58" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('WatcherThread::run (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>WatcherThread::run (6 samples, 0.02%)</title><rect x="1078.7" y="2001" width="0.2" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.68" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (61 samples, 0.17%)</title><rect x="932.2" y="1441" width="2.0" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.21" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="497.7" y="2001" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="500.73" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="1058.2" y="1969" width="0.3" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.23" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::link (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::link (4 samples, 0.01%)</title><rect x="209.4" y="2001" width="0.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_tree_iteratorstd::pairstd::string const, process::ProcessBase* std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::_M_emplace_hint_uniquestd::piecewise_construct_t const&, std::tuplestd::string const&, std::tuple (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_tree_iteratorstd::pairstd::string const, process::ProcessBase* std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::_M_emplace_hint_uniquestd::piecewise_construct_t const&, std::tuplestd::string const&, std::tuple (5 samples, 0.01%)</title><rect x="176.2" y="1985" width="0.2" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.23" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays$ArrayList:.get in Ljava/util/Arrays$ArrayList:.get (123 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays$ArrayList:.get in Ljava/util/Arrays$ArrayList:.get (123 samples, 0.34%)</title><rect x="366.5" y="2017" width="4.1" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="369.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__memcmp_sse4_1 (126 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__memcmp_sse4_1 (126 samples, 0.35%)</title><rect x="640.4" y="2033" width="4.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__fget_light (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__fget_light (5 samples, 0.01%)</title><rect x="244.5" y="2001" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (13 samples, 0.04%)</title><rect x="307.0" y="1985" width="0.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/TrieMapIterator:.next in Lscala/collection/MapLike$DefaultValuesIterable:.foreach (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/TrieMapIterator:.next in Lscala/collection/MapLike$DefaultValuesIterable:.foreach (9 samples, 0.03%)</title><rect x="1031.3" y="2033" width="0.3" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="1034.33" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (11 samples, 0.03%)</title><rect x="584.4" y="1985" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.40" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (156 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (156 samples, 0.44%)</title><rect x="471.0" y="2001" width="5.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.00" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor36:.invoke (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor36:.invoke (23 samples, 0.06%)</title><rect x="1131.2" y="2033" width="0.7" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="1134.19" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="64.5" y="1873" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.49" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator new (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator new (11 samples, 0.03%)</title><rect x="443.4" y="2017" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (13 samples, 0.04%)</title><rect x="589.0" y="1985" width="0.4" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.00" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/Descriptors$Descriptor:.getFields in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/Descriptors$Descriptor:.getFields in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (11 samples, 0.03%)</title><rect x="284.8" y="2017" width="0.4" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.84" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashSet:.contains in Lplay/api/libs/json/JsObject$$anonfun$$plus$plus$1:.apply (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashSet:.contains in Lplay/api/libs/json/JsObject$$anonfun$$plus$plus$1:.apply (8 samples, 0.02%)</title><rect x="522.5" y="2017" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="561.1" y="1921" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.08" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('check_preempt_curr (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>check_preempt_curr (40 samples, 0.11%)</title><rect x="22.5" y="1969" width="1.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.52" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CollectedHeap::fill_with_object (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CollectedHeap::fill_with_object (5 samples, 0.01%)</title><rect x="263.3" y="1937" width="0.2" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.30" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::spawn (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::spawn (5 samples, 0.01%)</title><rect x="210.6" y="2001" width="0.1" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="213.57" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treeprocess::UPID, std::pairprocess::UPID const, process::ProcessBase const*, std::_Select1ststd::pairprocess::UPID const, process::ProcessBase const* , std::lessprocess::UPID, std::allocatorstd::pairprocess::UPID const, process::ProcessBase const* ::equal_range (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treeprocess::UPID, std::pairprocess::UPID const, process::ProcessBase const*, std::_Select1ststd::pairprocess::UPID const, process::ProcessBase const* , std::lessprocess::UPID, std::allocatorstd::pairprocess::UPID const, process::ProcessBase const* ::equal_range (9 samples, 0.03%)</title><rect x="233.4" y="2001" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="236.40" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (13 samples, 0.04%)</title><rect x="240.1" y="2001" width="0.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="243.11" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (21 samples, 0.06%)</title><rect x="686.2" y="1969" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.21" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1265" width="84.9" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('rb_insert_color (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>rb_insert_color (7 samples, 0.02%)</title><rect x="113.7" y="49" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.65" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SymbolTable::lookup_only (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SymbolTable::lookup_only (5 samples, 0.01%)</title><rect x="66.5" y="1969" width="0.2" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.50" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (1,125 samples, 3.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (1,125 samples, 3.15%)</title><rect x="88.9" y="65" width="37.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="91.90" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__l..</text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$:.resolver in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$:.resolver in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (15 samples, 0.04%)</title><rect x="552.6" y="2017" width="0.5" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.62" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="272.9" y="1745" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.92" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/forkjoin/ForkJoinPool$WorkQueue:.push in Lakka/dispatch/ForkJoinExecutorConfigurator$AkkaForkJoinPool:.execute (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/forkjoin/ForkJoinPool$WorkQueue:.push in Lakka/dispatch/ForkJoinExecutorConfigurator$AkkaForkJoinPool:.execute (27 samples, 0.08%)</title><rect x="1046.5" y="2033" width="0.9" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.47" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (51 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_wait@@GLIBC_2.3.2 (51 samples, 0.14%)</title><rect x="492.2" y="2017" width="1.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.22" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::hash_value (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::hash_value (15 samples, 0.04%)</title><rect x="167.4" y="1953" width="0.5" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.41" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="706.6" y="1969" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.63" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sys_futex (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (24 samples, 0.07%)</title><rect x="638.0" y="2017" width="0.8" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (68 samples, 0.19%)</title><rect x="121.5" y="49" width="2.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="124.45" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor32:.invoke (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor32:.invoke (29 samples, 0.08%)</title><rect x="1128.6" y="2033" width="1.0" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="1131.64" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/ArrayList:.ensureExplicitCapacity in Lmesosphere/marathon/Protos$ServiceDefinition:.init (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/ArrayList:.ensureExplicitCapacity in Lmesosphere/marathon/Protos$ServiceDefinition:.init (11 samples, 0.03%)</title><rect x="783.5" y="2033" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.48" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="687.7" y="2017" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.66" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (8 samples, 0.02%)</title><rect x="574.7" y="2017" width="0.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.69" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (57 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__memcpy_sse2_unaligned (57 samples, 0.16%)</title><rect x="895.3" y="1985" width="1.8" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="898.26" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="560.9" y="2001" width="0.5" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.94" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/AbstractList$Itr:.init in Ljava/util/AbstractList$Itr:.init (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/AbstractList$Itr:.init in Ljava/util/AbstractList$Itr:.init (17 samples, 0.05%)</title><rect x="360.4" y="2017" width="0.6" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="363.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___libc_connect (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___libc_connect (5 samples, 0.01%)</title><rect x="241.7" y="2017" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.72" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/Iterator$class:.foreach in Lscala/collection/AbstractIterator:.foreach (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/Iterator$class:.foreach in Lscala/collection/AbstractIterator:.foreach (27 samples, 0.08%)</title><rect x="507.3" y="2017" width="0.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.35" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_rq_blocked_load (13 samples, 0.04%)</title><rect x="155.2" y="49" width="0.4" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.22" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="401" width="84.9" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('ia_deserialize_int (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ia_deserialize_int (4 samples, 0.01%)</title><rect x="299.1" y="2017" width="0.1" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="302.09" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__calc_delta (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__calc_delta (4 samples, 0.01%)</title><rect x="79.6" y="49" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.55" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor18:.invoke (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor18:.invoke (36 samples, 0.10%)</title><rect x="1115.0" y="2033" width="1.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="1117.96" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pipe_poll (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pipe_poll (8 samples, 0.02%)</title><rect x="204.7" y="2001" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.72" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="777.7" y="2001" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.73" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="1058.3" y="1953" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.26" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_NewByteArray (214 samples, 0.60%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_NewByteArray (214 samples, 0.60%)</title><rect x="875.1" y="1985" width="7.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.11" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::schedule (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::schedule (5 samples, 0.01%)</title><rect x="482.8" y="2017" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.80" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Vector:.$colon$plus in Lscala/collection/TraversableOnce$$anonfun$foldLeft$1:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Vector:.$colon$plus in Lscala/collection/TraversableOnce$$anonfun$foldLeft$1:.apply (4 samples, 0.01%)</title><rect x="1041.7" y="2033" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="1044.74" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections:.unmodifiableList in Lorg/apache/mesos/Protos$TaskState:.getValueDescriptor (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections:.unmodifiableList in Lorg/apache/mesos/Protos$TaskState:.getValueDescriptor (5 samples, 0.01%)</title><rect x="377.7" y="2017" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="380.69" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator new (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator new (5 samples, 0.01%)</title><rect x="423.8" y="1985" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.79" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="513.9" y="1937" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.89" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (15 samples, 0.04%)</title><rect x="588.3" y="1985" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.27" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="933.2" y="1249" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.23" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__fget_light (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__fget_light (6 samples, 0.02%)</title><rect x="620.5" y="2017" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="623.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/text/SimpleDateFormat:.format (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/text/SimpleDateFormat:.format (7 samples, 0.02%)</title><rect x="777.7" y="2033" width="0.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="441.9" y="1873" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.86" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator new (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator new (12 samples, 0.03%)</title><rect x="203.7" y="2001" width="0.4" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.69" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.02%)</title><rect x="421.4" y="2001" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.37" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/RawPipelineStage$$anon$3$$anonfun$2:.apply in Lspray/io/ConnectionTimeouts$$anon$2$$anon$1:.process (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/RawPipelineStage$$anon$3$$anonfun$2:.apply in Lspray/io/ConnectionTimeouts$$anon$2$$anon$1:.process (11 samples, 0.03%)</title><rect x="1063.4" y="2033" width="0.4" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="1066.45" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/LightArrayRevolverScheduler$$anon$8:.checkQueue in Lakka/actor/LightArrayRevolverScheduler$$anon$8:.nextTick (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/LightArrayRevolverScheduler$$anon$8:.checkQueue in Lakka/actor/LightArrayRevolverScheduler$$anon$8:.nextTick (18 samples, 0.05%)</title><rect x="685.2" y="2033" width="0.6" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="688.18" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key_refs (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key_refs (4 samples, 0.01%)</title><rect x="144.0" y="49" width="0.1" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="146.95" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/MessageDispatcher$$anonfun$1:.apply$mcV$sp in Lakka/dispatch/ForkJoinExecutorConfigurator$AkkaForkJoinTask:.exec (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/MessageDispatcher$$anonfun$1:.apply$mcV$sp in Lakka/dispatch/ForkJoinExecutorConfigurator$AkkaForkJoinTask:.exec (6 samples, 0.02%)</title><rect x="696.1" y="2033" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.09" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('cpumask_next_and (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>cpumask_next_and (7 samples, 0.02%)</title><rect x="961.3" y="2017" width="0.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.32" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized (28 samples, 0.08%)</title><rect x="723.9" y="2033" width="0.9" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="726.91" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_getspecific (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_getspecific (5 samples, 0.01%)</title><rect x="315.5" y="1969" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.54" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/LockSupport:.parkNanos in Ljava/util/concurrent/SynchronousQueue$TransferStack:.awaitFulfill (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/LockSupport:.parkNanos in Ljava/util/concurrent/SynchronousQueue$TransferStack:.awaitFulfill (6 samples, 0.02%)</title><rect x="397.2" y="2017" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (44 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (44 samples, 0.12%)</title><rect x="467.1" y="2001" width="1.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.14" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__clock_gettime (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__clock_gettime (6 samples, 0.02%)</title><rect x="395.7" y="2001" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="398.67" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="465" width="84.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Parker::park (228 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parker::park (228 samples, 0.64%)</title><rect x="328.4" y="1969" width="7.5" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="331.36" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="511.8" y="1985" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.78" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (25 samples, 0.07%)</title><rect x="1060.8" y="1905" width="0.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.84" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="225" width="84.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::Parse (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::Parse (20 samples, 0.06%)</title><rect x="1072.7" y="1889" width="0.6" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.67" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="561.4" y="2001" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ZIP_GetNextEntry (262 samples, 0.73%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZIP_GetNextEntry (262 samples, 0.73%)</title><rect x="891.9" y="2001" width="8.7" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="894.89" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator delete (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator delete (4 samples, 0.01%)</title><rect x="924.4" y="2033" width="0.1" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="927.41" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="305.0" y="1937" width="0.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.97" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="276.4" y="1969" width="0.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.39" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="453.0" y="2001" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/CodedInputStream:.readRawVarint32 in Lmesosphere/marathon/Protos$ExtendedContainerInfo:.init (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/CodedInputStream:.readRawVarint32 in Lmesosphere/marathon/Protos$ExtendedContainerInfo:.init (4 samples, 0.01%)</title><rect x="284.4" y="2017" width="0.1" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.38" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::pop_and_restore (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::pop_and_restore (6 samples, 0.02%)</title><rect x="873.8" y="1985" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="876.75" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="686.5" y="1905" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.50" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (26 samples, 0.07%)</title><rect x="940.4" y="2017" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.40" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__unqueue_futex (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__unqueue_futex (11 samples, 0.03%)</title><rect x="17.0" y="1969" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.97" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::tableboost::unordered::detail::setstd::allocatorprocess::ProcessBase*, process::ProcessBase*, boost::hashprocess::ProcessBase*, std::equal_toprocess::ProcessBase* ::begin (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::tableboost::unordered::detail::setstd::allocatorprocess::ProcessBase*, process::ProcessBase*, boost::hashprocess::ProcessBase*, std::equal_toprocess::ProcessBase* ::begin (4 samples, 0.01%)</title><rect x="165.5" y="1953" width="0.1" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.46" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_tree_rebalance_for_erase (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_tree_rebalance_for_erase (6 samples, 0.02%)</title><rect x="231.9" y="2001" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.88" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ListBuffer:.$plus$plus$eq in Lscala/collection/mutable/ListBuffer:.$plus$plus$eq (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ListBuffer:.$plus$plus$eq in Lscala/collection/mutable/ListBuffer:.$plus$plus$eq (48 samples, 0.13%)</title><rect x="536.1" y="2017" width="1.5" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="539.06" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__calc_delta (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__calc_delta (23 samples, 0.06%)</title><rect x="126.5" y="49" width="0.7" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="129.47" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/AbstractList:.iterator in Ljava/util/AbstractList:.iterator (46 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/AbstractList:.iterator in Ljava/util/AbstractList:.iterator (46 samples, 0.13%)</title><rect x="364.6" y="2017" width="1.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="367.57" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_all_blocks (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_all_blocks (19 samples, 0.05%)</title><rect x="1072.7" y="1873" width="0.6" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.70" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="537.8" y="1969" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.78" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__libc_enable_asynccancel (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__libc_enable_asynccancel (5 samples, 0.01%)</title><rect x="249.5" y="2017" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.49" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('UTF8::unicode_length (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>UTF8::unicode_length (18 samples, 0.05%)</title><rect x="70.9" y="1937" width="0.6" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="73.86" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/can/client/ResponseParsing$$anon$1$$anon$2$$anonfun$3:.apply (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/can/client/ResponseParsing$$anon$1$$anon$2$$anonfun$3:.apply (13 samples, 0.04%)</title><rect x="560.9" y="2017" width="0.5" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_rq_clock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_rq_clock (4 samples, 0.01%)</title><rect x="183.1" y="1985" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="186.14" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___libc_write (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___libc_write (6 samples, 0.02%)</title><rect x="178.6" y="2001" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.58" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ctx_sched_out (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ctx_sched_out (8 samples, 0.02%)</title><rect x="134.3" y="49" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="137.27" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeParserBucket:.saveState in Lorg/joda/time/format/DateTimeFormatterBuilder$MatchingParser:.parseInto (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeParserBucket:.saveState in Lorg/joda/time/format/DateTimeFormatterBuilder$MatchingParser:.parseInto (15 samples, 0.04%)</title><rect x="452.2" y="2017" width="0.5" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="455.20" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (14 samples, 0.04%)</title><rect x="1061.2" y="1873" width="0.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.20" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.getEntryUsingComparator in Lcom/google/protobuf/AbstractMessage:.equals (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.getEntryUsingComparator in Lcom/google/protobuf/AbstractMessage:.equals (6 samples, 0.02%)</title><rect x="381.6" y="2017" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParseGenerator::generate (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParseGenerator::generate (7 samples, 0.02%)</title><rect x="1072.9" y="1713" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('call_stub (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>call_stub (12 samples, 0.03%)</title><rect x="64.5" y="1921" width="0.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.45" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/BasicDayOfMonthDateTimeField:.getRangeDurationField in Lorg/joda/time/chrono/BasicDayOfMonthDateTimeField:.getRangeDurationField (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/BasicDayOfMonthDateTimeField:.getRangeDurationField in Lorg/joda/time/chrono/BasicDayOfMonthDateTimeField:.getRangeDurationField (5 samples, 0.01%)</title><rect x="936.1" y="2033" width="0.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.07" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Thread:.interrupted in Lscala/concurrent/forkjoin/ForkJoinPool:.scan (558 samples, 1.56%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Thread:.interrupted in Lscala/concurrent/forkjoin/ForkJoinPool:.scan (558 samples, 1.56%)</title><rect x="749.0" y="2033" width="18.4" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="751.99" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="705" width="84.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="801" width="84.9" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (18 samples, 0.05%)</title><rect x="940.6" y="1969" width="0.6" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.63" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key_refs (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key_refs (11 samples, 0.03%)</title><rect x="636.6" y="2017" width="0.4" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Unpark (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Unpark (7 samples, 0.02%)</title><rect x="383.7" y="2001" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="386.67" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/eclipse/jetty/io/BufferCache:.getOrdinal in Lorg/eclipse/jetty/http/HttpParser:.parseNext (120 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/eclipse/jetty/io/BufferCache:.getOrdinal in Lorg/eclipse/jetty/http/HttpParser:.parseNext (120 samples, 0.34%)</title><rect x="930.6" y="2033" width="4.0" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.59" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,822 samples, 7.90%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,822 samples, 7.90%)</title><rect x="75.5" y="1969" width="93.3" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.52" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('free (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>free (9 samples, 0.03%)</title><rect x="199.0" y="2001" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="202.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_tree_rebalance_for_erase (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_tree_rebalance_for_erase (27 samples, 0.08%)</title><rect x="564.3" y="2017" width="0.9" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.35" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('idle_cpu (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>idle_cpu (45 samples, 0.13%)</title><rect x="110.9" y="49" width="1.5" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="113.88" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="537.7" y="1985" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.72" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Map$Map1:.foreach (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Map$Map1:.foreach (4 samples, 0.01%)</title><rect x="523.5" y="2017" width="0.1" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.51" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1057.1" y="2001" width="0.1" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.10" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (28 samples, 0.08%)</title><rect x="275.3" y="2001" width="1.0" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.33" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::__detail::_List_node_base::_M_unhook (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::__detail::_List_node_base::_M_unhook (11 samples, 0.03%)</title><rect x="79.0" y="33" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="81.96" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="507.8" y="1937" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.81" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::_Rep::_S_create (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::_Rep::_S_create (9 samples, 0.03%)</title><rect x="574.0" y="2017" width="0.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_rt (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_rt (24 samples, 0.07%)</title><rect x="996.7" y="2017" width="0.8" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="999.67" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::find (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::find (19 samples, 0.05%)</title><rect x="233.9" y="2001" width="0.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="236.93" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::jvm_raw_unlock (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::jvm_raw_unlock (16 samples, 0.04%)</title><rect x="861.6" y="2001" width="0.5" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="864.59" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_signal@@GLIBC_2.3.2 (34 samples, 0.10%)</title><rect x="386.4" y="1969" width="1.1" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.42" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (17 samples, 0.05%)</title><rect x="686.3" y="1937" width="0.5" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.27" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="481" width="84.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('PhaseIdealLoop::build_and_optimize (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PhaseIdealLoop::build_and_optimize (6 samples, 0.02%)</title><rect x="1072.3" y="1889" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.30" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNIHandles::make_local (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNIHandles::make_local (37 samples, 0.10%)</title><rect x="68.2" y="1969" width="1.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="71.19" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="64.5" y="1905" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.45" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (64 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (64 samples, 0.18%)</title><rect x="1060.4" y="1937" width="2.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.41" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Unpark (137 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Unpark (137 samples, 0.38%)</title><rect x="385.0" y="1985" width="4.5" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="387.96" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="533.2" y="1953" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.16" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1089" width="84.9" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('PhaseChaitin::Register_Allocate (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PhaseChaitin::Register_Allocate (16 samples, 0.04%)</title><rect x="1071.7" y="1889" width="0.5" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.71" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,571 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,571 samples, 7.20%)</title><rect x="75.9" y="1553" width="85.0" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (42 samples, 0.12%)</title><rect x="123.7" y="49" width="1.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="126.70" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/AbstractQueuedSynchronizer:.shouldParkAfterFailedAcquire in Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:.doAcquireSharedNanos (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:.shouldParkAfterFailedAcquire in Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:.doAcquireSharedNanos (26 samples, 0.07%)</title><rect x="395.9" y="2017" width="0.9" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="398.90" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_ptrstd::functionvoid (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_ptrstd::functionvoid (5 samples, 0.01%)</title><rect x="571.3" y="2017" width="0.2" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.32" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::dequeue (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::dequeue (5 samples, 0.01%)</title><rect x="477.7" y="2017" width="0.1" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="480.68" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/BasicChronology:.getYearInfo in Lorg/joda/time/chrono/BasicYearDateTimeField:.set (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/BasicChronology:.getYearInfo in Lorg/joda/time/chrono/BasicYearDateTimeField:.set (4 samples, 0.01%)</title><rect x="935.4" y="2033" width="0.2" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="938.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1153" width="84.9" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="279.9" y="1969" width="0.4" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.85" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__cxxabiv1::__vmi_class_type_info::__do_dyncast (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__cxxabiv1::__vmi_class_type_info::__do_dyncast (4 samples, 0.01%)</title><rect x="249.0" y="1985" width="0.1" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.96" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/reflect/ClassTag$:.apply in Lscala/reflect/ClassTag$:.apply (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/reflect/ClassTag$:.apply in Lscala/reflect/ClassTag$:.apply (6 samples, 0.02%)</title><rect x="1052.2" y="2033" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.18" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParallelScavengeHeap::allocate_new_tlab (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParallelScavengeHeap::allocate_new_tlab (4 samples, 0.01%)</title><rect x="264.1" y="1969" width="0.1" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.09" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/pattern/PromiseActorRef:.stop in Lakka/pattern/PromiseActorRef$$anonfun$apply$1:.apply (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/pattern/PromiseActorRef:.stop in Lakka/pattern/PromiseActorRef$$anonfun$apply$1:.apply (9 samples, 0.03%)</title><rect x="281.0" y="2017" width="0.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.98" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/SynchronousQueue:.poll in Ljava/util/concurrent/ThreadPoolExecutor:.runWorker (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/SynchronousQueue:.poll in Ljava/util/concurrent/ThreadPoolExecutor:.runWorker (5 samples, 0.01%)</title><rect x="818.3" y="2033" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="821.31" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="897" width="84.9" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Park (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Park (8 samples, 0.02%)</title><rect x="321.1" y="2001" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="324.12" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Set$Set1:.contains in Lscala/collection/immutable/Set$Set1:.$plus (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Set$Set1:.contains in Lscala/collection/immutable/Set$Set1:.$plus (5 samples, 0.01%)</title><rect x="524.1" y="2017" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Promiseint::associate (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Promiseint::associate (4 samples, 0.01%)</title><rect x="456.9" y="1985" width="0.1" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.89" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="439.3" y="2001" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.32" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (10 samples, 0.03%)</title><rect x="570.1" y="1969" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.06" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (9 samples, 0.03%)</title><rect x="575.0" y="2017" width="0.3" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.95" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('memset (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>memset (19 samples, 0.05%)</title><rect x="420.3" y="2017" width="0.6" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="423.28" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/LinkedHashMap$Entry:.recordAccess in Lsun/nio/ch/EPollSelectorImpl:.updateSelectedKeys (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/LinkedHashMap$Entry:.recordAccess in Lsun/nio/ch/EPollSelectorImpl:.updateSelectedKeys (5 samples, 0.01%)</title><rect x="796.5" y="2033" width="0.2" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.50" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (968 samples, 2.71%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (968 samples, 2.71%)</title><rect x="321.4" y="2001" width="32.0" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="324.39" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text> | |
</g> | |
<g class="func_g" onmouseover="s('typeArrayKlass::allocate_common (91 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>typeArrayKlass::allocate_common (91 samples, 0.25%)</title><rect x="879.2" y="1969" width="3.0" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="882.17" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_int_malloc (538 samples, 1.51%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_int_malloc (538 samples, 1.51%)</title><rect x="662.0" y="2033" width="17.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="664.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('try_to_wake_up (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (4 samples, 0.01%)</title><rect x="488.5" y="2001" width="0.1" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.52" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetObjectClass (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetObjectClass (5 samples, 0.01%)</title><rect x="371.7" y="1985" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.75" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections$UnmodifiableCollection$1:.hasNext in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (85 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections$UnmodifiableCollection$1:.hasNext in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (85 samples, 0.24%)</title><rect x="372.6" y="2017" width="2.8" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.60" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="706.5" y="2001" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.46" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="732.0" y="1825" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ZooKeeperProcess::stringsCompletion (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZooKeeperProcess::stringsCompletion (4 samples, 0.01%)</title><rect x="75.3" y="1985" width="0.2" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.32" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (5 samples, 0.01%)</title><rect x="468.1" y="1985" width="0.1" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.06" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getNextEntry (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getNextEntry (4 samples, 0.01%)</title><rect x="902.4" y="2033" width="0.1" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="905.40" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ExceptionBlob (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ExceptionBlob (30 samples, 0.08%)</title><rect x="12.4" y="2017" width="1.0" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor16:.invoke (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor16:.invoke (9 samples, 0.03%)</title><rect x="578.6" y="2017" width="0.3" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="581.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="305" width="84.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (8 samples, 0.02%)</title><rect x="165.7" y="1937" width="0.3" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.69" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/BitSet:.expandTo in Lsun/nio/ch/EPollArrayWrapper:.poll (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/BitSet:.expandTo in Lsun/nio/ch/EPollArrayWrapper:.poll (7 samples, 0.02%)</title><rect x="789.5" y="2033" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Deque_basestd::functionvoid (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Deque_basestd::functionvoid (19 samples, 0.05%)</title><rect x="175.2" y="1985" width="0.7" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.24" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('LinkResolver::resolve_invokeinterface (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>LinkResolver::resolve_invokeinterface (5 samples, 0.01%)</title><rect x="393.0" y="1921" width="0.2" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="396.02" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/pattern/PromiseActorRef:.$bang in Lmesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/pattern/PromiseActorRef:.$bang in Lmesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (14 samples, 0.04%)</title><rect x="696.7" y="2033" width="0.5" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.75" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PSPromotionManager::drain_stacks_depth (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PSPromotionManager::drain_stacks_depth (19 samples, 0.05%)</title><rect x="1065.0" y="1953" width="0.6" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.00" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::is_interrupted (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::is_interrupted (18 samples, 0.05%)</title><rect x="342.3" y="1969" width="0.6" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.30" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays:.copyOf in Ljava/lang/AbstractStringBuilder:.append (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays:.copyOf in Ljava/lang/AbstractStringBuilder:.append (10 samples, 0.03%)</title><rect x="788.1" y="2033" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.11" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/TickGenerator$$anon$1$$anon$2$$anonfun$1:.apply in Lspray/io/ConnectionHandler$$anonfun$running$1:.applyOrElse (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/TickGenerator$$anon$1$$anon$2$$anonfun$1:.apply in Lspray/io/ConnectionHandler$$anonfun$running$1:.applyOrElse (5 samples, 0.01%)</title><rect x="1063.8" y="2033" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="1066.81" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__memcmp_sse4_1 (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__memcmp_sse4_1 (11 samples, 0.03%)</title><rect x="187.4" y="2001" width="0.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.40" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('tcp_transmit_skb (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_transmit_skb (14 samples, 0.04%)</title><rect x="630.9" y="2017" width="0.5" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="633.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('place_entity (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>place_entity (8 samples, 0.02%)</title><rect x="113.2" y="49" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.16" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('native_sched_clock (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>native_sched_clock (14 samples, 0.04%)</title><rect x="994.0" y="2017" width="0.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="996.99" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (84 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (84 samples, 0.24%)</title><rect x="931.5" y="1585" width="2.8" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.51" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="737" width="84.9" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('void std::dequestd::functionvoid (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>void std::dequestd::functionvoid (7 samples, 0.02%)</title><rect x="240.8" y="2001" width="0.2" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="243.80" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (6 samples, 0.02%)</title><rect x="584.5" y="1969" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.47" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (105 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (105 samples, 0.29%)</title><rect x="500.2" y="1953" width="3.5" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="503.25" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::initialize (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::initialize (5 samples, 0.01%)</title><rect x="62.6" y="1937" width="0.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.64" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="933.7" y="1313" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.73" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/BasicChronology:.getDayOfMonth in Lorg/joda/time/chrono/BasicDayOfMonthDateTimeField:.get (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/BasicChronology:.getDayOfMonth in Lorg/joda/time/chrono/BasicDayOfMonthDateTimeField:.get (4 samples, 0.01%)</title><rect x="934.9" y="2033" width="0.2" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="937.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/Future$InternalCallbackExecutor$:.execute in Lscala/concurrent/Future$InternalCallbackExecutor$:.execute (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/Future$InternalCallbackExecutor$:.execute in Lscala/concurrent/Future$InternalCallbackExecutor$:.execute (14 samples, 0.04%)</title><rect x="542.6" y="2017" width="0.4" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.57" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (120 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (120 samples, 0.34%)</title><rect x="930.6" y="2001" width="4.0" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.59" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="641" width="84.9" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (44 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (44 samples, 0.12%)</title><rect x="478.1" y="2001" width="1.5" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="481.14" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Promiseint::~Promise (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Promiseint::~Promise (45 samples, 0.13%)</title><rect x="478.1" y="2017" width="1.5" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="481.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (176 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (176 samples, 0.49%)</title><rect x="483.2" y="2017" width="5.8" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.20" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::allocate_objArray (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::allocate_objArray (22 samples, 0.06%)</title><rect x="259.1" y="1985" width="0.7" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.07" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1009" width="84.9" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (25 samples, 0.07%)</title><rect x="169.9" y="1969" width="0.8" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.92" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::assign (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::assign (5 samples, 0.01%)</title><rect x="424.0" y="1985" width="0.1" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.95" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('poll_schedule_timeout (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (8 samples, 0.02%)</title><rect x="205.2" y="2001" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="208.18" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="193.0" y="1969" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.02" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_one_bytecode (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_one_bytecode (4 samples, 0.01%)</title><rect x="1072.9" y="1553" width="0.2" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/TraversableLike$$anonfun$collect$1:.apply in Lscala/PartialFunction$$anonfun$runWith$1:.apply (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/TraversableLike$$anonfun$collect$1:.apply in Lscala/PartialFunction$$anonfun$runWith$1:.apply (5 samples, 0.01%)</title><rect x="509.6" y="2017" width="0.1" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="436.5" y="1921" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.51" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::GarbageCollector::~GarbageCollector (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::GarbageCollector::~GarbageCollector (5 samples, 0.01%)</title><rect x="469.2" y="2017" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.22" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_org_apache_mesos_state_AbstractState__1_1fetch (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_org_apache_mesos_state_AbstractState__1_1fetch (6 samples, 0.02%)</title><rect x="66.1" y="2001" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.11" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.access$900 in Ljava/util/jar/JarFile$1:.nextElement (325 samples, 0.91%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.access$900 in Ljava/util/jar/JarFile$1:.nextElement (325 samples, 0.91%)</title><rect x="890.1" y="2033" width="10.7" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="893.11" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::pop_and_restore (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::pop_and_restore (4 samples, 0.01%)</title><rect x="308.1" y="1985" width="0.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="311.14" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_stop (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_stop (16 samples, 0.04%)</title><rect x="150.5" y="49" width="0.6" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="153.53" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (20 samples, 0.06%)</title><rect x="507.6" y="2001" width="0.6" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.58" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('LinkResolver::resolve_method_statically (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>LinkResolver::resolve_method_statically (6 samples, 0.02%)</title><rect x="392.8" y="1921" width="0.2" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.76" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator new (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator new (7 samples, 0.02%)</title><rect x="173.0" y="1985" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="176.00" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/GeneratedMessage:.getAllFieldsMutable (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/GeneratedMessage:.getAllFieldsMutable (27 samples, 0.08%)</title><rect x="293.1" y="2017" width="0.9" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('api_epilog (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>api_epilog (12 samples, 0.03%)</title><rect x="281.4" y="2017" width="0.4" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/health/MarathonHealthCheckManager$AppVersion:.equals in Lscala/collection/immutable/HashMap$HashTrieMap:.get0 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/health/MarathonHealthCheckManager$AppVersion:.equals in Lscala/collection/immutable/HashMap$HashTrieMap:.get0 (7 samples, 0.02%)</title><rect x="439.3" y="2017" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.32" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__srcu_read_lock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__srcu_read_lock (5 samples, 0.01%)</title><rect x="245.0" y="2001" width="0.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.96" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/Option:.foreach in Lakka/actor/ActorCell:.invokeAll$1 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/Option:.foreach in Lakka/actor/ActorCell:.invokeAll$1 (5 samples, 0.01%)</title><rect x="497.7" y="2017" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="500.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PSRootsClosurefalse::do_oop (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PSRootsClosurefalse::do_oop (7 samples, 0.02%)</title><rect x="1078.3" y="1857" width="0.2" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.25" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays:.copyOfRange in Ljava/lang/StringBuffer:.toString (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays:.copyOfRange in Ljava/lang/StringBuffer:.toString (32 samples, 0.09%)</title><rect x="371.4" y="2017" width="1.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_disable_asynccancel (5 samples, 0.01%)</title><rect x="692.2" y="1969" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.22" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (38 samples, 0.11%)</title><rect x="531.8" y="1985" width="1.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.77" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (19 samples, 0.05%)</title><rect x="686.2" y="1953" width="0.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.24" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::current_park_blocker (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::current_park_blocker (12 samples, 0.03%)</title><rect x="327.3" y="1969" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="330.30" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('find_next_bit (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_next_bit (4 samples, 0.01%)</title><rect x="138.9" y="49" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="141.93" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_enable_all (65 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (65 samples, 0.18%)</title><rect x="146.2" y="49" width="2.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="149.20" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::lock_without_safepoint_check (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::lock_without_safepoint_check (34 samples, 0.10%)</title><rect x="333.4" y="1953" width="1.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.38" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/LightArrayRevolverScheduler$$anon$8:.executeBucket$1 in Lakka/actor/LightArrayRevolverScheduler$$anon$8:.nextTick (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/LightArrayRevolverScheduler$$anon$8:.executeBucket$1 in Lakka/actor/LightArrayRevolverScheduler$$anon$8:.nextTick (9 samples, 0.03%)</title><rect x="277.6" y="2017" width="0.3" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,626 samples, 7.35%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,626 samples, 7.35%)</title><rect x="75.9" y="1937" width="86.8" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('find_class_from_class_loader (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_class_from_class_loader (15 samples, 0.04%)</title><rect x="422.6" y="1953" width="0.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.60" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('skb_release_data (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>skb_release_data (7 samples, 0.02%)</title><rect x="618.3" y="2017" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="621.31" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/Option:.getOrElse in Lscala/Option:.getOrElse (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/Option:.getOrElse in Lscala/Option:.getOrElse (4 samples, 0.01%)</title><rect x="549.4" y="1985" width="0.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.41" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="435.6" y="1953" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.65" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (6 samples, 0.02%)</title><rect x="570.2" y="1953" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.16" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (22 samples, 0.06%)</title><rect x="569.3" y="2001" width="0.8" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.34" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (42 samples, 0.12%)</title><rect x="731.0" y="1937" width="1.4" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.05" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal:.get in Lscala/concurrent/BatchingExecutor$class:.execute (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal:.get in Lscala/concurrent/BatchingExecutor$class:.execute (5 samples, 0.01%)</title><rect x="201.2" y="2001" width="0.2" height="15.0" fill="rgb(51,200,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.21" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_StackTraceElement::create (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_StackTraceElement::create (10 samples, 0.03%)</title><rect x="356.1" y="1953" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.05" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hrtimer_init (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_init (4 samples, 0.01%)</title><rect x="199.5" y="2001" width="0.1" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="202.50" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/RedBlackTree$:.delLeft$1 in Lscala/collection/immutable/RedBlackTree$:.del (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/RedBlackTree$:.delLeft$1 in Lscala/collection/immutable/RedBlackTree$:.del (4 samples, 0.01%)</title><rect x="1040.9" y="2033" width="0.1" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="1043.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="448.8" y="2001" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.80" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.hashCode in Ljava/lang/String:.hashCode (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.hashCode in Ljava/lang/String:.hashCode (11 samples, 0.03%)</title><rect x="303.1" y="2017" width="0.4" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.12" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNIEnv_::NewObject (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNIEnv_::NewObject (34 samples, 0.10%)</title><rect x="64.9" y="2001" width="1.1" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.92" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (41 samples, 0.11%)</title><rect x="478.1" y="1953" width="1.4" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="481.14" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="561.0" y="1953" width="0.4" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.01" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile$1:.nextElement in Ljava/util/jar/JarFile$1:.nextElement (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile$1:.nextElement in Ljava/util/jar/JarFile$1:.nextElement (32 samples, 0.09%)</title><rect x="412.1" y="2017" width="1.1" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="415.12" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('start_thread (447 samples, 1.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>start_thread (447 samples, 1.25%)</title><rect x="1064.1" y="2033" width="14.8" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.11" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('MutableSpace::free_in_words (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>MutableSpace::free_in_words (4 samples, 0.01%)</title><rect x="263.1" y="1953" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.10" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (71 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (71 samples, 0.20%)</title><rect x="931.9" y="1473" width="2.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.91" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::locale::id::_M_id (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::locale::id::_M_id (5 samples, 0.01%)</title><rect x="1141.4" y="2001" width="0.1" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.36" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1249" width="84.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__update_entity_load_avg_contrib (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__update_entity_load_avg_contrib (6 samples, 0.02%)</title><rect x="90.2" y="49" width="0.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.16" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::array_klass_impl (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::array_klass_impl (4 samples, 0.01%)</title><rect x="259.6" y="1969" width="0.1" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.60" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_blocked_averages (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_blocked_averages (9 samples, 0.03%)</title><rect x="1025.0" y="2017" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="1027.99" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (14 samples, 0.04%)</title><rect x="507.7" y="1969" width="0.4" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.68" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::pop_and_restore (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::pop_and_restore (13 samples, 0.04%)</title><rect x="309.5" y="1969" width="0.5" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="312.53" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (3,120 samples, 8.74%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (3,120 samples, 8.74%)</title><rect x="74.8" y="2001" width="103.1" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="77.80" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::security_get_caller_class (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::security_get_caller_class (10 samples, 0.03%)</title><rect x="422.2" y="1953" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.17" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.startsWith in Lorg/eclipse/jetty/util/resource/JarFileResource:.exists (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.startsWith in Lorg/eclipse/jetty/util/resource/JarFileResource:.exists (11 samples, 0.03%)</title><rect x="304.2" y="2017" width="0.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.21" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (39 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (39 samples, 0.11%)</title><rect x="502.0" y="1921" width="1.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.03" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___libc_read (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___libc_read (6 samples, 0.02%)</title><rect x="613.9" y="2033" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="616.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (53 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (53 samples, 0.15%)</title><rect x="688.7" y="1985" width="1.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.65" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (17 samples, 0.05%)</title><rect x="584.4" y="2001" width="0.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.37" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('try_to_wake_up (104 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (104 samples, 0.29%)</title><rect x="48.5" y="1969" width="3.4" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="51.46" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="201.4" y="1937" width="0.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.45" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::_Rep::_M_clone (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::_Rep::_M_clone (6 samples, 0.02%)</title><rect x="573.5" y="2017" width="0.2" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.53" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor24:.invoke (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor24:.invoke (8 samples, 0.02%)</title><rect x="579.8" y="2017" width="0.3" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.84" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="939.9" y="2001" width="0.1" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.87" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('task_waking_fair (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>task_waking_fair (27 samples, 0.08%)</title><rect x="47.6" y="1969" width="0.9" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.57" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (36 samples, 0.10%)</title><rect x="513.1" y="1985" width="1.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.10" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__hrtimer_start_range_ns (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__hrtimer_start_range_ns (5 samples, 0.01%)</title><rect x="489.1" y="2001" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.11" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (8 samples, 0.02%)</title><rect x="1025.3" y="2017" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="1028.29" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Lscala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Lscala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (7 samples, 0.02%)</title><rect x="354.2" y="2017" width="0.3" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.23" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ArrayBuffer:.sizeHint in Lscala/collection/mutable/ArrayBuffer:.sizeHint (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ArrayBuffer:.sizeHint in Lscala/collection/mutable/ArrayBuffer:.sizeHint (13 samples, 0.04%)</title><rect x="1044.0" y="2033" width="0.4" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1047.02" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/Descriptors$FieldDescriptor:.isExtension in Lcom/google/protobuf/GeneratedMessage:.getField (71 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/Descriptors$FieldDescriptor:.isExtension in Lcom/google/protobuf/GeneratedMessage:.getField (71 samples, 0.20%)</title><rect x="717.7" y="2033" width="2.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="720.66" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/CodedInputStream:.readRawVarint32 in Lmesosphere/marathon/Protos$ServiceDefinition:.init (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/CodedInputStream:.readRawVarint32 in Lmesosphere/marathon/Protos$ServiceDefinition:.init (8 samples, 0.02%)</title><rect x="706.9" y="2033" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.86" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_getspecific (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_getspecific (5 samples, 0.01%)</title><rect x="893.8" y="1969" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="896.84" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="817.0" y="2017" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="819.95" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('find_busiest_group (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_busiest_group (5 samples, 0.01%)</title><rect x="1019.1" y="2017" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Character:.toLowerCase in Ljava/lang/String:.regionMatches (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Character:.toLowerCase in Ljava/lang/String:.regionMatches (9 samples, 0.03%)</title><rect x="732.7" y="2033" width="0.3" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.73" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::new_instance_C (116 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::new_instance_C (116 samples, 0.32%)</title><rect x="260.9" y="2001" width="3.9" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.92" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ZIP_Lock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZIP_Lock (4 samples, 0.01%)</title><rect x="865.2" y="2001" width="0.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="868.20" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (17 samples, 0.05%)</title><rect x="504.1" y="1985" width="0.6" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.14" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/BatchingExecutor$Batch:.run in Lscala/concurrent/BatchingExecutor$class:.execute (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/BatchingExecutor$Batch:.run in Lscala/concurrent/BatchingExecutor$class:.execute (9 samples, 0.03%)</title><rect x="1045.6" y="2033" width="0.3" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1048.57" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jlong_disjoint_arraycopy (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jlong_disjoint_arraycopy (6 samples, 0.02%)</title><rect x="372.0" y="2001" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.98" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (118 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (118 samples, 0.33%)</title><rect x="930.7" y="1953" width="3.9" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.65" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/DefaultSystemMessageQueue$class:.systemDrain in Lakka/dispatch/Mailbox:.processAllSystemMessages (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/DefaultSystemMessageQueue$class:.systemDrain in Lakka/dispatch/Mailbox:.processAllSystemMessages (4 samples, 0.01%)</title><rect x="693.9" y="2033" width="0.1" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="696.87" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_getspecific (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_getspecific (5 samples, 0.01%)</title><rect x="312.5" y="1953" width="0.1" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.47" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_start (447 samples, 1.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_start (447 samples, 1.25%)</title><rect x="1064.1" y="2017" width="14.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="941.0" y="1937" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.03" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParseGenerator::generate (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParseGenerator::generate (5 samples, 0.01%)</title><rect x="1072.9" y="1617" width="0.2" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (74 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (74 samples, 0.21%)</title><rect x="546.4" y="1905" width="2.5" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.44" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor47:.invoke in Lsun/reflect/GeneratedMethodAccessor47:.invoke (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor47:.invoke in Lsun/reflect/GeneratedMethodAccessor47:.invoke (22 samples, 0.06%)</title><rect x="1140.2" y="2033" width="0.7" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="1143.17" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="201.5" y="1857" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.55" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SharedRuntime::complete_monitor_locking_C (109 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SharedRuntime::complete_monitor_locking_C (109 samples, 0.31%)</title><rect x="645.8" y="2017" width="3.6" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/CodedInputStream:.readRawVarint32 in Lcom/google/protobuf/CodedInputStream:.readMessage (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/CodedInputStream:.readRawVarint32 in Lcom/google/protobuf/CodedInputStream:.readMessage (17 samples, 0.05%)</title><rect x="706.3" y="2033" width="0.5" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.26" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (26 samples, 0.07%)</title><rect x="547.5" y="1873" width="0.9" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.50" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::erase_key (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::erase_key (4 samples, 0.01%)</title><rect x="164.4" y="1953" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.44" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/apache/mesos/Protos$TaskID:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$TaskID:.internalGetFieldAccessorTable (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/apache/mesos/Protos$TaskID:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$TaskID:.internalGetFieldAccessorTable (40 samples, 0.11%)</title><rect x="928.1" y="2033" width="1.4" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="931.14" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SharedRuntime::handle_ic_miss_helper (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SharedRuntime::handle_ic_miss_helper (36 samples, 0.10%)</title><rect x="392.6" y="1969" width="1.2" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.56" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::basic_stringchar, std::char_traitschar, std::allocatorchar ::basic_string (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::basic_stringchar, std::char_traitschar, std::allocatorchar ::basic_string (5 samples, 0.01%)</title><rect x="1083.5" y="2033" width="0.2" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.54" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_dl (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_dl (9 samples, 0.03%)</title><rect x="149.1" y="49" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.11" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CollectedHeap::allocate_from_tlab_slow (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CollectedHeap::allocate_from_tlab_slow (38 samples, 0.11%)</title><rect x="262.5" y="1969" width="1.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="265.51" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/ActorSystemImpl:.deadLetters in Lakka/actor/Cell$class:.sendMessage (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/ActorSystemImpl:.deadLetters in Lakka/actor/Cell$class:.sendMessage (12 samples, 0.03%)</title><rect x="277.1" y="2017" width="0.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('wake_futex (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>wake_futex (19 samples, 0.05%)</title><rect x="125.3" y="49" width="0.6" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="128.32" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/forkjoin/ForkJoinPool:.runWorker (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/forkjoin/ForkJoinPool:.runWorker (10 samples, 0.03%)</title><rect x="1047.4" y="2033" width="0.3" height="15.0" fill="rgb(100,245,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.36" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_call (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_call (15 samples, 0.04%)</title><rect x="1072.7" y="1729" width="0.5" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.73" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor40:.invoke in Lsun/reflect/GeneratedMethodAccessor40:.invoke (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor40:.invoke in Lsun/reflect/GeneratedMethodAccessor40:.invoke (27 samples, 0.08%)</title><rect x="1134.2" y="2033" width="0.9" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.22" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (13 samples, 0.04%)</title><rect x="435.5" y="2017" width="0.4" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::initialize (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::initialize (4 samples, 0.01%)</title><rect x="263.5" y="1937" width="0.1" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.47" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="933.4" y="1233" width="0.3" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.36" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__cxxabiv1::__vmi_class_type_info::__do_find_public_src (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__cxxabiv1::__vmi_class_type_info::__do_find_public_src (5 samples, 0.01%)</title><rect x="469.2" y="1985" width="0.2" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.22" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_mutex_unlock_usercnt (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_mutex_unlock_usercnt (5 samples, 0.01%)</title><rect x="190.9" y="2001" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.91" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (59 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (59 samples, 0.17%)</title><rect x="730.5" y="1985" width="2.0" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.52" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetMethodID (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetMethodID (4 samples, 0.01%)</title><rect x="69.6" y="1985" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.64" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="933.7" y="1329" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.69" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (23 samples, 0.06%)</title><rect x="478.7" y="1937" width="0.8" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="481.74" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,574 samples, 7.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,574 samples, 7.21%)</title><rect x="75.9" y="1793" width="85.1" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/LightArrayRevolverScheduler$$anon$8:.nextTick (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/LightArrayRevolverScheduler$$anon$8:.nextTick (5 samples, 0.01%)</title><rect x="277.9" y="2017" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.91" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,610 samples, 7.31%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,610 samples, 7.31%)</title><rect x="75.9" y="1921" width="86.3" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="436.5" y="1953" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.47" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="436.2" y="1841" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.24" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::sleep (47 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::sleep (47 samples, 0.13%)</title><rect x="692.0" y="1985" width="1.5" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.96" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (7 samples, 0.02%)</title><rect x="217.0" y="1985" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="219.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wake (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wake (61 samples, 0.17%)</title><rect x="107.6" y="49" width="2.1" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="110.64" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor45:.invoke (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor45:.invoke (10 samples, 0.03%)</title><rect x="582.8" y="2017" width="0.3" height="15.0" fill="rgb(63,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="585.82" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_DoPrivileged (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_DoPrivileged (6 samples, 0.02%)</title><rect x="442.6" y="1905" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.55" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryBytes in Ljava/util/zip/ZipFile:.getEntryBytes (90 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryBytes in Ljava/util/zip/ZipFile:.getEntryBytes (90 samples, 0.25%)</title><rect x="403.2" y="2001" width="3.0" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.20" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (8 samples, 0.02%)</title><rect x="298.8" y="1985" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.82" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock_irq (15 samples, 0.04%)</title><rect x="955.3" y="2017" width="0.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.30" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_unlock_irqrestore (9 samples, 0.03%)</title><rect x="192.7" y="2001" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="195.69" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/Mailbox:.setAsScheduled in Lakka/dispatch/Dispatcher:.registerForExecution (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/Mailbox:.setAsScheduled in Lakka/dispatch/Dispatcher:.registerForExecution (9 samples, 0.03%)</title><rect x="694.9" y="2033" width="0.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.90" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lmesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable (97 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lmesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable (97 samples, 0.27%)</title><rect x="432.0" y="2017" width="3.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.01" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_String::basic_create (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_String::basic_create (35 samples, 0.10%)</title><rect x="71.5" y="1937" width="1.1" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.46" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.onComplete in Lscala/concurrent/Future$class:.map (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.onComplete in Lscala/concurrent/Future$class:.map (13 samples, 0.04%)</title><rect x="554.4" y="2017" width="0.5" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.43" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__enqueue_entity (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__enqueue_entity (4 samples, 0.01%)</title><rect x="127.2" y="49" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="130.23" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="442.0" y="1857" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.99" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('effective_load.isra.45 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>effective_load.isra.45 (6 samples, 0.02%)</title><rect x="474.1" y="1969" width="0.2" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.08" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Actor$class:.aroundReceive in Lmesosphere/marathon/health/HealthCheckActor:.aroundReceive (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Actor$class:.aroundReceive in Lmesosphere/marathon/health/HealthCheckActor:.aroundReceive (5 samples, 0.01%)</title><rect x="682.7" y="2033" width="0.2" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.74" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="193.0" y="1985" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.02" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1057.1" y="2017" width="0.1" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.10" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_Sleep (70 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_Sleep (70 samples, 0.20%)</title><rect x="691.2" y="2001" width="2.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.20" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (15 samples, 0.04%)</title><rect x="306.2" y="2001" width="0.5" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.19" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('virtual thunk to process::WaitWaiter::~WaitWaiter (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>virtual thunk to process::WaitWaiter::~WaitWaiter (68 samples, 0.19%)</title><rect x="587.2" y="2017" width="2.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.25" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (24 samples, 0.07%)</title><rect x="56.3" y="1969" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="59.26" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/regex/Pattern:.expr in Ljava/util/regex/Pattern:.compile (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/regex/Pattern:.expr in Ljava/util/regex/Pattern:.compile (11 samples, 0.03%)</title><rect x="866.9" y="2033" width="0.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="869.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CollectedHeap::allocate_from_tlab_slow (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CollectedHeap::allocate_from_tlab_slow (21 samples, 0.06%)</title><rect x="681.5" y="1985" width="0.7" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="684.51" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::pairboost::unordered::iterator_detail::iteratorboost::unordered::detail::ptr_nodeprocess::UPID , bool boost::unordered::detail::table_implboost::unordered::detail::setstd::allocatorprocess::UPID, process::UPID, boost::hashprocess::UPID, std::equal_toprocess::UPID ::emplace_implprocess::UPID const& (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::pairboost::unordered::iterator_detail::iteratorboost::unordered::detail::ptr_nodeprocess::UPID , bool boost::unordered::detail::table_implboost::unordered::detail::setstd::allocatorprocess::UPID, process::UPID, boost::hashprocess::UPID, std::equal_toprocess::UPID ::emplace_implprocess::UPID const& (8 samples, 0.02%)</title><rect x="1083.9" y="2033" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.90" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__calc_delta (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__calc_delta (8 samples, 0.02%)</title><rect x="178.8" y="2001" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.78" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ListBuffer:.$plus$eq in Lscala/collection/mutable/ListBuffer:.$plus$eq (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ListBuffer:.$plus$eq in Lscala/collection/mutable/ListBuffer:.$plus$eq (10 samples, 0.03%)</title><rect x="1045.0" y="2033" width="0.4" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="1048.04" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_signal@@GLIBC_2.3.2 (11 samples, 0.03%)</title><rect x="946.9" y="2033" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="949.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('effective_load.isra.45 (118 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>effective_load.isra.45 (118 samples, 0.33%)</title><rect x="27.1" y="1969" width="3.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.15" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SymbolTable::lookup_only (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SymbolTable::lookup_only (22 samples, 0.06%)</title><rect x="67.0" y="1953" width="0.7" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="70.00" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ip_finish_output (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_finish_output (9 samples, 0.03%)</title><rect x="624.6" y="2017" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="627.55" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (25 samples, 0.07%)</title><rect x="521.3" y="1873" width="0.8" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="524.26" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/pattern/PromiseActorRef$$anonfun$apply$1:.apply in Lakka/pattern/PromiseActorRef$$anonfun$apply$1:.apply (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/pattern/PromiseActorRef$$anonfun$apply$1:.apply in Lakka/pattern/PromiseActorRef$$anonfun$apply$1:.apply (6 samples, 0.02%)</title><rect x="696.5" y="2033" width="0.2" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.55" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__update_entity_load_avg_contrib (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__update_entity_load_avg_contrib (4 samples, 0.01%)</title><rect x="953.9" y="2017" width="0.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="956.91" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$MarathonTask:.getId in Lsun/reflect/GeneratedMethodAccessor17:.invoke (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$MarathonTask:.getId in Lsun/reflect/GeneratedMethodAccessor17:.invoke (32 samples, 0.09%)</title><rect x="918.5" y="2033" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('try_to_wake_up (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (7 samples, 0.02%)</title><rect x="475.4" y="1969" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.43" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('netdev_pick_tx (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>netdev_pick_tx (5 samples, 0.01%)</title><rect x="626.9" y="2017" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.90" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/Mailbox:.setAsIdle in Lakka/dispatch/Mailbox:.exec (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/Mailbox:.setAsIdle in Lakka/dispatch/Mailbox:.exec (5 samples, 0.01%)</title><rect x="694.7" y="2033" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.73" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::compare (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::compare (13 samples, 0.04%)</title><rect x="236.3" y="2001" width="0.5" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="239.34" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/apache/mesos/Protos$SlaveID:.getUnknownFields in Lorg/apache/mesos/Protos$SlaveID:.getUnknownFields (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/apache/mesos/Protos$SlaveID:.getUnknownFields in Lorg/apache/mesos/Protos$SlaveID:.getUnknownFields (28 samples, 0.08%)</title><rect x="924.8" y="2033" width="1.0" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="927.84" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ResizableArray$class:.$init$ in Lscala/collection/mutable/ArrayBuffer:.init (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ResizableArray$class:.$init$ in Lscala/collection/mutable/ArrayBuffer:.init (11 samples, 0.03%)</title><rect x="538.1" y="2017" width="0.4" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::handle_exception_C_helper (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::handle_exception_C_helper (16 samples, 0.04%)</title><rect x="12.6" y="1985" width="0.5" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.58" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SystemDictionary::oops_do (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SystemDictionary::oops_do (9 samples, 0.03%)</title><rect x="1066.5" y="1969" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.49" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('put_prev_task_fair (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>put_prev_task_fair (4 samples, 0.01%)</title><rect x="228.0" y="2001" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.04" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (63 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (63 samples, 0.18%)</title><rect x="1014.4" y="2017" width="2.1" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="1017.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="274.9" y="1969" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="277.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator delete (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator delete (4 samples, 0.01%)</title><rect x="203.6" y="2001" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.56" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.compare in Ljava/util/TreeMap:.put (39 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.compare in Ljava/util/TreeMap:.put (39 samples, 0.11%)</title><rect x="379.3" y="2017" width="1.3" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.34" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock_irqsave (15 samples, 0.04%)</title><rect x="98.2" y="49" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.16" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetFieldID (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetFieldID (18 samples, 0.05%)</title><rect x="72.9" y="1985" width="0.6" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="75.88" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_new_array_nozero_Java (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_new_array_nozero_Java (4 samples, 0.01%)</title><rect x="649.4" y="2001" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.43" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('cpuacct_charge (105 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>cpuacct_charge (105 samples, 0.29%)</title><rect x="957.8" y="2017" width="3.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.85" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_complete_monitor_locking_Java (94 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_complete_monitor_locking_Java (94 samples, 0.26%)</title><rect x="255.3" y="2017" width="3.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="258.30" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SpinPause (46 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SpinPause (46 samples, 0.13%)</title><rect x="1068.6" y="1969" width="1.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.60" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (4 samples, 0.01%)</title><rect x="649.4" y="2017" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.43" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="673" width="84.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('native_sched_clock (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>native_sched_clock (6 samples, 0.02%)</title><rect x="203.4" y="2001" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.36" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="593" width="84.9" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (104 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (104 samples, 0.29%)</title><rect x="931.0" y="1841" width="3.5" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.02" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/DefaultWrites$$anon$3:.writes in Lplay/api/libs/json/DefaultWrites$$anon$3:.writes (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/DefaultWrites$$anon$3:.writes in Lplay/api/libs/json/DefaultWrites$$anon$3:.writes (4 samples, 0.01%)</title><rect x="453.8" y="2017" width="0.1" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.79" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_from_native (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_from_native (11 samples, 0.03%)</title><rect x="878.2" y="1969" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="881.21" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor18:.invoke (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor18:.invoke (11 samples, 0.03%)</title><rect x="578.9" y="2017" width="0.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="581.85" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1086.1" y="2017" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.12" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (31 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (31 samples, 0.09%)</title><rect x="130.2" y="49" width="1.0" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="133.17" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::allocate_instance (81 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::allocate_instance (81 samples, 0.23%)</title><rect x="262.0" y="1985" width="2.7" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesos::internal::state::Entry::~Entry (73 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesos::internal::state::Entry::~Entry (73 samples, 0.20%)</title><rect x="421.7" y="2017" width="2.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="454.8" y="2001" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.78" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('schedule (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.01%)</title><rect x="229.3" y="2001" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.33" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('timerqueue_add (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>timerqueue_add (4 samples, 0.01%)</title><rect x="491.6" y="2001" width="0.1" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.59" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('igb_xmit_frame_ring (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>igb_xmit_frame_ring (14 samples, 0.04%)</title><rect x="624.0" y="2017" width="0.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="626.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor41:.invoke (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor41:.invoke (4 samples, 0.01%)</title><rect x="582.3" y="2017" width="0.1" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="585.29" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Function_handlervoid (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Function_handlervoid (6 samples, 0.02%)</title><rect x="466.7" y="1985" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.71" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('nf_nat_ipv4_local_fn (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>nf_nat_ipv4_local_fn (4 samples, 0.01%)</title><rect x="628.1" y="2017" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="631.09" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (26 samples, 0.07%)</title><rect x="275.4" y="1985" width="0.9" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.39" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="321" width="84.9" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call (37 samples, 0.10%)</title><rect x="62.6" y="1953" width="1.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.60" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('local_clock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>local_clock (5 samples, 0.01%)</title><rect x="993.1" y="2017" width="0.1" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="996.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/AbstractQueuedSynchronizer:.unparkSuccessor in Lscala/concurrent/impl/Promise$CompletionLatch:.apply (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:.unparkSuccessor in Lscala/concurrent/impl/Promise$CompletionLatch:.apply (10 samples, 0.03%)</title><rect x="396.8" y="2017" width="0.4" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.82" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('rb_insert_color (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>rb_insert_color (10 samples, 0.03%)</title><rect x="1000.9" y="2017" width="0.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="1003.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator delete (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator delete (4 samples, 0.01%)</title><rect x="443.3" y="2017" width="0.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.28" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::internal::acquire (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::internal::acquire (30 samples, 0.08%)</title><rect x="479.7" y="1969" width="1.0" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.69" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Nil$:.equals in Lscala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Nil$:.equals in Lscala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (10 samples, 0.03%)</title><rect x="523.7" y="2017" width="0.3" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.67" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/Descriptors$FieldDescriptor:.isExtension in Lcom/google/protobuf/GeneratedMessage:.hasField (103 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/Descriptors$FieldDescriptor:.isExtension in Lcom/google/protobuf/GeneratedMessage:.hasField (103 samples, 0.29%)</title><rect x="720.0" y="2033" width="3.4" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="723.01" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ZIP_FreeEntry (93 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZIP_FreeEntry (93 samples, 0.26%)</title><rect x="862.1" y="2001" width="3.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.12" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::jvm_raw_lock (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::jvm_raw_lock (48 samples, 0.13%)</title><rect x="892.3" y="1969" width="1.5" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="895.26" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1057.5" y="2017" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ktime_get_ts (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ktime_get_ts (5 samples, 0.01%)</title><rect x="202.3" y="2001" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.34" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (22 samples, 0.06%)</title><rect x="272.5" y="1793" width="0.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.45" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Compile::Code_Gen (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Compile::Code_Gen (36 samples, 0.10%)</title><rect x="1071.0" y="1905" width="1.2" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.05" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections:.unmodifiableList in Lorg/apache/mesos/Protos$TaskStatus$Source:.getValueDescriptor (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections:.unmodifiableList in Lorg/apache/mesos/Protos$TaskStatus$Source:.getValueDescriptor (4 samples, 0.01%)</title><rect x="377.9" y="2017" width="0.1" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="380.86" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="817" width="84.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_requeue (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_requeue (7 samples, 0.02%)</title><rect x="479.0" y="1921" width="0.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays:.copyOf in Ljava/lang/StringBuffer:.append (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays:.copyOf in Ljava/lang/StringBuffer:.append (8 samples, 0.02%)</title><rect x="788.7" y="2033" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="977" width="84.9" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (88 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (88 samples, 0.25%)</title><rect x="53.4" y="1969" width="2.9" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.35" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/CallbackRunnable:.executeWithValue in Lscala/concurrent/Future$class:.map (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/CallbackRunnable:.executeWithValue in Lscala/concurrent/Future$class:.map (16 samples, 0.04%)</title><rect x="551.1" y="2017" width="0.6" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.13" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/generic/Growable$$anonfun$$plus$plus$eq$1:.apply in Lscala/collection/generic/Growable$$anonfun$$plus$plus$eq$1:.apply (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/generic/Growable$$anonfun$$plus$plus$eq$1:.apply in Lscala/collection/generic/Growable$$anonfun$$plus$plus$eq$1:.apply (14 samples, 0.04%)</title><rect x="1033.1" y="2033" width="0.5" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="1036.15" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (59 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (59 samples, 0.17%)</title><rect x="730.5" y="2017" width="2.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('typeArrayKlass::allocate_common (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>typeArrayKlass::allocate_common (5 samples, 0.01%)</title><rect x="680.5" y="2001" width="0.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.49" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCallWrapper::JavaCallWrapper (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCallWrapper::JavaCallWrapper (9 samples, 0.03%)</title><rect x="63.0" y="1921" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.97" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/AbstractQueuedSynchronizer:.acquireQueued in Ljava/util/concurrent/ThreadPoolExecutor:.runWorker (44 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:.acquireQueued in Ljava/util/concurrent/ThreadPoolExecutor:.runWorker (44 samples, 0.12%)</title><rect x="392.4" y="2017" width="1.5" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.40" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="783.5" y="2017" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Nil$:.equals in Lakka/dispatch/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Nil$:.equals in Lakka/dispatch/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (5 samples, 0.01%)</title><rect x="1040.6" y="2033" width="0.1" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="1043.58" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_from_native (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_from_native (4 samples, 0.01%)</title><rect x="394.2" y="1985" width="0.1" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="397.21" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (24 samples, 0.07%)</title><rect x="1057.8" y="2017" width="0.8" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.77" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="721" width="84.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (10 samples, 0.03%)</title><rect x="570.1" y="1985" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.06" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (1,037 samples, 2.90%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_wait@@GLIBC_2.3.2 (1,037 samples, 2.90%)</title><rect x="126.5" y="65" width="34.2" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="129.47" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pt..</text> | |
</g> | |
<g class="func_g" onmouseover="s('vtable chunks (617 samples, 1.73%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>vtable chunks (617 samples, 1.73%)</title><rect x="590.3" y="2017" width="20.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="593.25" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_SetByteArrayRegion (89 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_SetByteArrayRegion (89 samples, 0.25%)</title><rect x="882.2" y="1985" width="2.9" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="885.18" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::oop_push_contents (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::oop_push_contents (8 samples, 0.02%)</title><rect x="1067.5" y="1937" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.51" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_task (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_task (15 samples, 0.04%)</title><rect x="35.7" y="1969" width="0.5" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="38.74" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (27 samples, 0.08%)</title><rect x="686.0" y="2017" width="0.9" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.01" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_one_block (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_one_block (19 samples, 0.05%)</title><rect x="1072.7" y="1857" width="0.6" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.70" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_base (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_base (10 samples, 0.03%)</title><rect x="569.7" y="1985" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.67" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (17 samples, 0.05%)</title><rect x="441.8" y="1889" width="0.6" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.79" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__errno_location (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__errno_location (7 samples, 0.02%)</title><rect x="615.4" y="2033" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="618.43" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (48 samples, 0.13%)</title><rect x="932.6" y="1393" width="1.6" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.57" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_from_native (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_from_native (4 samples, 0.01%)</title><rect x="312.8" y="1969" width="0.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.83" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::oops_do (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::oops_do (20 samples, 0.06%)</title><rect x="1070.2" y="1969" width="0.7" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.22" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/forkjoin/ForkJoinPool$WorkQueue:.push in Lakka/dispatch/ForkJoinExecutorConfigurator$AkkaForkJoinPool:.execute (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/forkjoin/ForkJoinPool$WorkQueue:.push in Lakka/dispatch/ForkJoinExecutorConfigurator$AkkaForkJoinPool:.execute (16 samples, 0.04%)</title><rect x="550.1" y="2017" width="0.5" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (246 samples, 0.69%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (246 samples, 0.69%)</title><rect x="632.1" y="2033" width="8.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.15" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_requeue (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_requeue (12 samples, 0.03%)</title><rect x="215.7" y="1985" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="218.65" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('tcp_poll (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_poll (11 samples, 0.03%)</title><rect x="237.2" y="2001" width="0.4" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.23" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (89 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (89 samples, 0.25%)</title><rect x="931.4" y="1649" width="3.0" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.41" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_ptrprocess::Promiseint*, (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_ptrprocess::Promiseint*, (6 samples, 0.02%)</title><rect x="571.0" y="2017" width="0.2" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/regex/Pattern:.peek in Ljava/util/regex/Pattern:.sequence (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/regex/Pattern:.peek in Ljava/util/regex/Pattern:.sequence (6 samples, 0.02%)</title><rect x="867.9" y="2033" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="870.87" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/security/AccessController:.doPrivileged (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/security/AccessController:.doPrivileged (7 samples, 0.02%)</title><rect x="442.8" y="1937" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.79" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadLocalAllocBuffer::clear_before_allocation (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocBuffer::clear_before_allocation (15 samples, 0.04%)</title><rect x="263.3" y="1953" width="0.5" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.27" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (7 samples, 0.02%)</title><rect x="88.6" y="49" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="91.64" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (23 samples, 0.06%)</title><rect x="471.8" y="1985" width="0.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.83" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('vtable chunks (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>vtable chunks (7 samples, 0.02%)</title><rect x="241.1" y="2001" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.06" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hrtimer_try_to_cancel (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_try_to_cancel (10 samples, 0.03%)</title><rect x="979.4" y="2017" width="0.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="982.39" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::equal_range (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::equal_range (13 samples, 0.04%)</title><rect x="1079.9" y="2033" width="0.4" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="1082.87" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/field/PreciseDateTimeField:.get in Lorg/joda/time/field/PreciseDateTimeField:.set (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/field/PreciseDateTimeField:.get in Lorg/joda/time/field/PreciseDateTimeField:.set (10 samples, 0.03%)</title><rect x="451.1" y="2017" width="0.3" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (10 samples, 0.03%)</title><rect x="394.9" y="1969" width="0.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="397.94" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/StringBuilder:.append in Ljava/lang/StringBuilder:.append (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/StringBuilder:.append in Ljava/lang/StringBuilder:.append (5 samples, 0.01%)</title><rect x="305.1" y="2017" width="0.2" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="308.10" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hrtimer_cancel (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_cancel (7 samples, 0.02%)</title><rect x="978.0" y="2017" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::PromiseOptionmesos::internal::state::Entry ::associate (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::PromiseOptionmesos::internal::state::Entry ::associate (7 samples, 0.02%)</title><rect x="211.1" y="2001" width="0.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="214.13" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.access$500 in Ljava/util/jar/JarFile$1:.nextElement (31 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.access$500 in Ljava/util/jar/JarFile$1:.nextElement (31 samples, 0.09%)</title><rect x="413.2" y="2017" width="1.0" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.18" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (16 samples, 0.04%)</title><rect x="482.2" y="2001" width="0.5" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.17" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__enqueue_entity (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__enqueue_entity (18 samples, 0.05%)</title><rect x="16.3" y="1969" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.34" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call (12 samples, 0.03%)</title><rect x="64.5" y="1953" width="0.3" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.45" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sysret_check (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sysret_check (5 samples, 0.01%)</title><rect x="154.1" y="49" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="157.06" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (111 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (111 samples, 0.31%)</title><rect x="545.3" y="1953" width="3.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.32" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_getspecific (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_getspecific (29 samples, 0.08%)</title><rect x="334.9" y="1953" width="1.0" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="337.90" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('do_futex (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.01%)</title><rect x="85.3" y="49" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="88.27" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_copy_from_user (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_copy_from_user (18 samples, 0.05%)</title><rect x="954.0" y="2017" width="0.6" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="957.05" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="511.8" y="2001" width="0.2" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.78" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNIHandles::make_local (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNIHandles::make_local (6 samples, 0.02%)</title><rect x="73.5" y="1969" width="0.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.47" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.02%)</title><rect x="584.9" y="1969" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.93" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CompileBroker::compiler_thread_loop (78 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CompileBroker::compiler_thread_loop (78 samples, 0.22%)</title><rect x="1071.0" y="1969" width="2.6" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.98" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (7 samples, 0.02%)</title><rect x="540.2" y="2017" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.16" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/List$:.newBuilder in Lscala/collection/generic/GenTraversableFactory$$anon$1:.apply (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/List$:.newBuilder in Lscala/collection/generic/GenTraversableFactory$$anon$1:.apply (7 samples, 0.02%)</title><rect x="522.8" y="2017" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/LinearSeqOptimized$class:.sameElements in Lscala/collection/LinearSeqOptimized$class:.sameElements (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/LinearSeqOptimized$class:.sameElements in Lscala/collection/LinearSeqOptimized$class:.sameElements (5 samples, 0.01%)</title><rect x="1029.7" y="2033" width="0.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="1032.75" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="933.7" y="1297" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.73" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/Builder$class:.sizeHint in Lscala/collection/mutable/ArrayBuffer:.sizeHint (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/Builder$class:.sizeHint in Lscala/collection/mutable/ArrayBuffer:.sizeHint (6 samples, 0.02%)</title><rect x="530.4" y="2017" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (45 samples, 0.13%)</title><rect x="828.5" y="2017" width="1.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="831.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="1055.2" y="1937" width="0.5" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.22" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java (35,712 samples, 100.00%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (35,712 samples, 100.00%)</title><rect x="10.0" y="2049" width="1180.0" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (87 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (87 samples, 0.24%)</title><rect x="931.4" y="1601" width="2.9" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.45" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (8 samples, 0.02%)</title><rect x="298.8" y="2001" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.82" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (16 samples, 0.04%)</title><rect x="933.1" y="1265" width="0.6" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.13" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeParserBucket:.compareReverse in Lorg/joda/time/format/DateTimeParserBucket$SavedField:.compareTo (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeParserBucket:.compareReverse in Lorg/joda/time/format/DateTimeParserBucket$SavedField:.compareTo (6 samples, 0.02%)</title><rect x="938.1" y="2033" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.12" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_requeue (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_requeue (33 samples, 0.09%)</title><rect x="485.6" y="2001" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.64" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.02%)</title><rect x="471.1" y="1969" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.07" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call_helper (82 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call_helper (82 samples, 0.23%)</title><rect x="1073.6" y="1937" width="2.7" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.56" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (16 samples, 0.04%)</title><rect x="272.7" y="1777" width="0.5" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.65" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::thread_main_inner (160 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::thread_main_inner (160 samples, 0.45%)</title><rect x="1071.0" y="1985" width="5.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1073" width="84.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_invoke_nonstatic (49 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_invoke_nonstatic (49 samples, 0.14%)</title><rect x="62.2" y="1969" width="1.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.24" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="453.1" y="1985" width="0.1" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.06" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/ConnectionHandler$$anonfun$baseEventPipeline$1:.apply in Lspray/can/client/ClientFrontend$$anon$1$$anon$2$$anonfun$2:.apply (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/ConnectionHandler$$anonfun$baseEventPipeline$1:.apply in Lspray/can/client/ClientFrontend$$anon$1$$anon$2$$anonfun$2:.apply (5 samples, 0.01%)</title><rect x="1058.6" y="2033" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.59" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::FutureOptionmesos::internal::state::Entry ::Data::~Data (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::FutureOptionmesos::internal::state::Entry ::Data::~Data (5 samples, 0.01%)</title><rect x="468.7" y="2017" width="0.1" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.66" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hash_futex (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hash_futex (8 samples, 0.02%)</title><rect x="86.7" y="49" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="89.72" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_timedwait@@GLIBC_2.3.2 (158 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (158 samples, 0.44%)</title><rect x="342.9" y="1969" width="5.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.90" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Integer:.toString in Ljava/lang/Integer:.toString (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Integer:.toString in Ljava/lang/Integer:.toString (7 samples, 0.02%)</title><rect x="733.8" y="2033" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.75" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::basic_stringchar, std::char_traitschar, std::allocatorchar ::basic_string (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::basic_stringchar, std::char_traitschar, std::allocatorchar ::basic_string (29 samples, 0.08%)</title><rect x="571.7" y="2017" width="1.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.75" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (51 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (51 samples, 0.14%)</title><rect x="932.5" y="1409" width="1.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.47" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::operator[] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::operator[] (4 samples, 0.01%)</title><rect x="164.6" y="1953" width="0.1" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.57" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/VectorPointer$class:.initFrom in Lscala/collection/immutable/VectorPointer$class:.initFrom (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/VectorPointer$class:.initFrom in Lscala/collection/immutable/VectorPointer$class:.initFrom (8 samples, 0.02%)</title><rect x="527.1" y="2017" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::SocketManager::link (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::SocketManager::link (11 samples, 0.03%)</title><rect x="211.4" y="2001" width="0.4" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="214.39" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('select_task_rq_fair (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_task_rq_fair (5 samples, 0.01%)</title><rect x="186.2" y="1985" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="189.18" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,573 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,573 samples, 7.20%)</title><rect x="75.9" y="1633" width="85.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('place_entity (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>place_entity (21 samples, 0.06%)</title><rect x="41.0" y="1969" width="0.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.96" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="305.0" y="1969" width="0.1" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.97" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="507.7" y="1953" width="0.4" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.71" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessBase::visit (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessBase::visit (11 samples, 0.03%)</title><rect x="456.1" y="1985" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.07" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.53 (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_rotate_start.isra.53 (16 samples, 0.04%)</title><rect x="994.8" y="2017" width="0.5" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.79" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (15 samples, 0.04%)</title><rect x="589.5" y="2001" width="0.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.49" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('read_tsc (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>read_tsc (7 samples, 0.02%)</title><rect x="228.5" y="2001" width="0.2" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.51" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="731.9" y="1841" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.87" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/Dispatcher:.dispatch in Lakka/actor/Cell$class:.sendMessage (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/Dispatcher:.dispatch in Lakka/actor/Cell$class:.sendMessage (7 samples, 0.02%)</title><rect x="278.7" y="2017" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.67" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_all_blocks (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_all_blocks (7 samples, 0.02%)</title><rect x="1072.9" y="1681" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_Thread::park_event (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_Thread::park_event (10 samples, 0.03%)</title><rect x="389.5" y="1985" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="392.49" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (245 samples, 0.69%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (245 samples, 0.69%)</title><rect x="266.5" y="2001" width="8.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="269.47" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call_after_swapgs (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call_after_swapgs (14 samples, 0.04%)</title><rect x="47.1" y="1969" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.07" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.getFirstEntry in Ljava/util/TreeMap$EntrySet:.iterator (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.getFirstEntry in Ljava/util/TreeMap$EntrySet:.iterator (14 samples, 0.04%)</title><rect x="381.8" y="2017" width="0.5" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.82" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/generic/ImmutableSetFactory:.newBuilder in Lscala/collection/generic/GenSetFactory$$anon$1:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/generic/ImmutableSetFactory:.newBuilder in Lscala/collection/generic/GenSetFactory$$anon$1:.apply (4 samples, 0.01%)</title><rect x="517.6" y="2017" width="0.1" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.59" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (37 samples, 0.10%)</title><rect x="472.6" y="1985" width="1.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.59" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (235 samples, 0.66%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (235 samples, 0.66%)</title><rect x="90.4" y="49" width="7.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.36" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/Writes$$anon$5:.writes in Lplay/api/libs/json/Writes$$anon$5:.writes (70 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/Writes$$anon$5:.writes in Lplay/api/libs/json/Writes$$anon$5:.writes (70 samples, 0.20%)</title><rect x="533.4" y="1953" width="2.3" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.39" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.entrySet in Ljava/util/TreeMap:.entrySet (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.entrySet in Ljava/util/TreeMap:.entrySet (40 samples, 0.11%)</title><rect x="797.8" y="2033" width="1.3" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.76" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::get_jmethod_id (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::get_jmethod_id (4 samples, 0.01%)</title><rect x="67.8" y="1953" width="0.1" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="70.76" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::basic_streambufchar, std::char_traitschar ::xsputn (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::basic_streambufchar, std::char_traitschar ::xsputn (4 samples, 0.01%)</title><rect x="589.8" y="1969" width="0.1" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.76" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (4 samples, 0.01%)</title><rect x="475.7" y="1969" width="0.1" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.66" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('resched_task (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>resched_task (29 samples, 0.08%)</title><rect x="113.9" y="49" width="0.9" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.88" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="193.0" y="1889" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.02" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="502.7" y="1889" width="0.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.72" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/ConcurrentLinkedQueue:.poll in Lakka/dispatch/Mailbox:.processMailbox (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/ConcurrentLinkedQueue:.poll in Lakka/dispatch/Mailbox:.processMailbox (20 samples, 0.06%)</title><rect x="817.4" y="2033" width="0.6" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="820.38" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_NewByteArray (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_NewByteArray (6 samples, 0.02%)</title><rect x="73.7" y="1985" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.67" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Futureint::await (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Futureint::await (4 samples, 0.01%)</title><rect x="944.8" y="2033" width="0.1" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.79" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_java_util_zip_ZipFile_getEntryBytes (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_java_util_zip_ZipFile_getEntryBytes (4 samples, 0.01%)</title><rect x="872.3" y="2017" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (126 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (126 samples, 0.35%)</title><rect x="269.5" y="1921" width="4.2" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="272.51" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/ISOChronology:.getInstance in Lmesosphere/marathon/state/Timestamp$:.apply (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/ISOChronology:.getInstance in Lmesosphere/marathon/state/Timestamp$:.apply (7 samples, 0.02%)</title><rect x="936.4" y="2033" width="0.3" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.43" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/ExecutionContextImpl:.prepare in Lscala/concurrent/impl/ExecutionContextImpl:.prepare (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/ExecutionContextImpl:.prepare in Lscala/concurrent/impl/ExecutionContextImpl:.prepare (14 samples, 0.04%)</title><rect x="552.1" y="2017" width="0.5" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.12" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/OWrites$$anon$2:.writes in Lplay/api/libs/json/OFormat$$anon$2:.writes (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/OWrites$$anon$2:.writes in Lplay/api/libs/json/OFormat$$anon$2:.writes (5 samples, 0.01%)</title><rect x="944.3" y="2033" width="0.2" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.30" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_blocked_averages (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_blocked_averages (5 samples, 0.01%)</title><rect x="239.1" y="2001" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.15" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_org_apache_mesos_state_AbstractState__1_1names_1get (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_org_apache_mesos_state_AbstractState__1_1names_1get (7 samples, 0.02%)</title><rect x="59.4" y="2017" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="62.36" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/generic/Growable$$anonfun$$plus$plus$eq$1:.apply in Lscala/collection/generic/Growable$$anonfun$$plus$plus$eq$1:.apply (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/generic/Growable$$anonfun$$plus$plus$eq$1:.apply in Lscala/collection/generic/Growable$$anonfun$$plus$plus$eq$1:.apply (8 samples, 0.02%)</title><rect x="515.7" y="2017" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.68" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('StringTable::intern (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringTable::intern (4 samples, 0.01%)</title><rect x="356.1" y="1937" width="0.2" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.15" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.01%)</title><rect x="585.0" y="1953" width="0.1" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.00" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (15 samples, 0.04%)</title><rect x="276.3" y="2001" width="0.5" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.29" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1058.8" y="2001" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.79" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl:.updateCheck in Lscala/collection/concurrent/INode:.copyToGen (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl:.updateCheck in Lscala/collection/concurrent/INode:.copyToGen (5 samples, 0.01%)</title><rect x="820.5" y="2033" width="0.1" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="823.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::__detail::_List_node_base::_M_hook (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::__detail::_List_node_base::_M_hook (5 samples, 0.01%)</title><rect x="78.8" y="33" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="81.79" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('lock_completion_list (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>lock_completion_list (5 samples, 0.01%)</title><rect x="419.2" y="2017" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.16" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1169" width="84.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('virtual thunk to process::GarbageCollector::~GarbageCollector (70 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>virtual thunk to process::GarbageCollector::~GarbageCollector (70 samples, 0.20%)</title><rect x="584.9" y="2017" width="2.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::javaTimeNanos (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::javaTimeNanos (28 samples, 0.08%)</title><rect x="941.3" y="2033" width="0.9" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.26" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/can/client/ResponseParsing$$anon$1$$anon$2:.handleParsingResult (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/can/client/ResponseParsing$$anon$1$$anon$2:.handleParsingResult (22 samples, 0.06%)</title><rect x="1055.0" y="2033" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.96" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/ConcurrentSkipListMap:.doPut (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/ConcurrentSkipListMap:.doPut (5 samples, 0.01%)</title><rect x="382.8" y="2017" width="0.1" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_signal@@GLIBC_2.3.2 (7 samples, 0.02%)</title><rect x="394.7" y="1969" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="397.71" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="436.5" y="1905" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.51" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (30 samples, 0.08%)</title><rect x="513.2" y="1969" width="1.0" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.23" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('flush_send_queue (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>flush_send_queue (7 samples, 0.02%)</title><rect x="729.5" y="2033" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="796.5" y="2017" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('anon_pipe_buf_release (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>anon_pipe_buf_release (5 samples, 0.01%)</title><rect x="242.5" y="2001" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="245.52" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor22:.invoke in Lsun/reflect/GeneratedMethodAccessor22:.invoke (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor22:.invoke in Lsun/reflect/GeneratedMethodAccessor22:.invoke (14 samples, 0.04%)</title><rect x="579.2" y="2017" width="0.5" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.22" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::initialize (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::initialize (7 samples, 0.02%)</title><rect x="212.5" y="2001" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="215.52" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/event/BusLogging:.notifyInfo in Lmesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/event/BusLogging:.notifyInfo in Lmesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (21 samples, 0.06%)</title><rect x="279.8" y="2017" width="0.6" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (21 samples, 0.06%)</title><rect x="1061.0" y="1889" width="0.7" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.97" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (72 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (72 samples, 0.20%)</title><rect x="1073.9" y="1825" width="2.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.86" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (37 samples, 0.10%)</title><rect x="1042.7" y="2001" width="1.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="1045.70" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_idle (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_idle (12 samples, 0.03%)</title><rect x="996.3" y="2017" width="0.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="999.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.01%)</title><rect x="492.3" y="2001" width="0.1" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.32" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularEnumFieldAccessor:.get (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularEnumFieldAccessor:.get (40 samples, 0.11%)</title><rect x="772.0" y="2033" width="1.3" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="774.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="561.0" y="1937" width="0.4" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.04" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ipv4_dst_check (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ipv4_dst_check (4 samples, 0.01%)</title><rect x="625.9" y="2017" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="628.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('oa_end_record (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>oa_end_record (4 samples, 0.01%)</title><rect x="443.0" y="2017" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.05" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="511.8" y="1969" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.81" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_one_bytecode (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_one_bytecode (7 samples, 0.02%)</title><rect x="1072.9" y="1649" width="0.3" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.link in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.link in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (10 samples, 0.03%)</title><rect x="1049.7" y="2033" width="0.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (289 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (289 samples, 0.81%)</title><rect x="307.6" y="2001" width="9.5" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="310.58" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('malloc (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>malloc (27 samples, 0.08%)</title><rect x="419.3" y="2017" width="0.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.33" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Bytecode_invoke::static_target (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Bytecode_invoke::static_target (9 samples, 0.03%)</title><rect x="392.7" y="1937" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.73" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/LinearSeqOptimized$class:.foldLeft (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/LinearSeqOptimized$class:.foldLeft (5 samples, 0.01%)</title><rect x="508.4" y="2017" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.44" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/ConnectionTimeouts$$anon$2$$anon$1$$anon$3$$anonfun$2:.apply in Lspray/io/ConnectionTimeouts$$anon$2$$anon$1:.process (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/ConnectionTimeouts$$anon$2$$anon$1$$anon$3$$anonfun$2:.apply in Lspray/io/ConnectionTimeouts$$anon$2$$anon$1:.process (8 samples, 0.02%)</title><rect x="1062.8" y="2001" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.82" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeFormatterBuilder$Composite:.parseInto in Lorg/joda/time/format/DateTimeFormatterBuilder$Composite:.parseInto (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeFormatterBuilder$Composite:.parseInto in Lorg/joda/time/format/DateTimeFormatterBuilder$Composite:.parseInto (5 samples, 0.01%)</title><rect x="451.7" y="2017" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.71" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (18 samples, 0.05%)</title><rect x="438.4" y="1841" width="0.6" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.39" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_java_util_zip_ZipFile_getEntryTime (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_java_util_zip_ZipFile_getEntryTime (6 samples, 0.02%)</title><rect x="403.0" y="2001" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.00" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (10 samples, 0.03%)</title><rect x="631.8" y="2033" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="634.79" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipCoder:.toString in Ljava/util/zip/ZipFile:.getZipEntry (363 samples, 1.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipCoder:.toString in Ljava/util/zip/ZipFile:.getZipEntry (363 samples, 1.02%)</title><rect x="400.1" y="2017" width="12.0" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.13" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (190 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (190 samples, 0.53%)</title><rect x="543.4" y="2001" width="6.2" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.37" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/Writes$$anon$5:.writes in Lplay/api/libs/json/Writes$$anon$5:.writes (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/Writes$$anon$5:.writes in Lplay/api/libs/json/Writes$$anon$5:.writes (40 samples, 0.11%)</title><rect x="534.3" y="1921" width="1.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.35" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__local_bh_enable_ip (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__local_bh_enable_ip (4 samples, 0.01%)</title><rect x="621.2" y="2017" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="624.25" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('nf_conntrack_in (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>nf_conntrack_in (10 samples, 0.03%)</title><rect x="627.1" y="2017" width="0.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="630.06" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_trylock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_trylock (7 samples, 0.02%)</title><rect x="315.7" y="1969" width="0.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.71" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/RawPipelineStage$$anon$3$$anonfun$1:.apply (115 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/RawPipelineStage$$anon$3$$anonfun$1:.apply (115 samples, 0.32%)</title><rect x="1059.3" y="2033" width="3.8" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.29" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ic_miss_stub (43 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ic_miss_stub (43 samples, 0.12%)</title><rect x="392.4" y="2001" width="1.5" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.43" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1041" width="84.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::wait (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::wait (5 samples, 0.01%)</title><rect x="946.0" y="2033" width="0.1" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="948.98" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('free (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>free (36 samples, 0.10%)</title><rect x="297.3" y="2017" width="1.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="300.30" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('is_unrecoverable (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>is_unrecoverable (12 samples, 0.03%)</title><rect x="300.6" y="2017" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="933.5" y="1201" width="0.2" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.46" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (65 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (65 samples, 0.18%)</title><rect x="1074.0" y="1809" width="2.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.99" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (16 samples, 0.04%)</title><rect x="275.7" y="1969" width="0.5" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.69" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_context_time.isra.62 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_context_time.isra.62 (8 samples, 0.02%)</title><rect x="1014.2" y="2017" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="1017.18" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/util/hashing/MurmurHash3$:.seqHash (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/util/hashing/MurmurHash3$:.seqHash (8 samples, 0.02%)</title><rect x="1053.4" y="2033" width="0.3" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1056.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/AbstractList$Itr:.next in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (108 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/AbstractList$Itr:.next in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (108 samples, 0.30%)</title><rect x="361.0" y="2017" width="3.5" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="363.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ID::generate (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ID::generate (5 samples, 0.01%)</title><rect x="469.4" y="2017" width="0.1" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.38" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNIEnv_::CallLongMethod (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNIEnv_::CallLongMethod (18 samples, 0.05%)</title><rect x="63.9" y="2001" width="0.6" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="66.86" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lsun/reflect/DelegatingMethodAccessorImpl:.invoke (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lsun/reflect/DelegatingMethodAccessorImpl:.invoke (12 samples, 0.03%)</title><rect x="933.7" y="1345" width="0.4" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.69" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_getspecific (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_getspecific (4 samples, 0.01%)</title><rect x="222.0" y="2001" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="225.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::find (57 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::find (57 samples, 0.16%)</title><rect x="1080.3" y="2033" width="1.9" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="1083.30" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (54 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (54 samples, 0.15%)</title><rect x="520.4" y="1953" width="1.8" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.43" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="448.8" y="1969" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.80" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('migrate_task_rq_fair (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>migrate_task_rq_fair (4 samples, 0.01%)</title><rect x="40.3" y="1969" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.33" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (14 samples, 0.04%)</title><rect x="521.6" y="1857" width="0.4" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="524.56" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (91 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (91 samples, 0.25%)</title><rect x="545.9" y="1921" width="3.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.91" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="193" width="84.9" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (7 samples, 0.02%)</title><rect x="468.3" y="1985" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.26" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntrySize in Ljava/util/zip/ZipFile:.getEntrySize (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntrySize in Ljava/util/zip/ZipFile:.getEntrySize (35 samples, 0.10%)</title><rect x="409.7" y="2001" width="1.2" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="412.74" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('tcp_sendmsg (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_sendmsg (13 samples, 0.04%)</title><rect x="630.4" y="2017" width="0.4" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="633.40" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_task_fair (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task_fair (37 samples, 0.10%)</title><rect x="965.7" y="2017" width="1.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.71" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (353 samples, 0.99%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (353 samples, 0.99%)</title><rect x="455.3" y="2001" width="11.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="458.28" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="778.4" y="2017" width="0.1" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.39" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('native_sched_clock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>native_sched_clock (5 samples, 0.01%)</title><rect x="148.6" y="49" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.61" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::security_get_caller_class (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::security_get_caller_class (5 samples, 0.01%)</title><rect x="275.1" y="1969" width="0.2" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.10" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.put (175 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.put (175 samples, 0.49%)</title><rect x="808.1" y="2033" width="5.7" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="811.07" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_rq_clock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_rq_clock (7 samples, 0.02%)</title><rect x="125.1" y="49" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="128.09" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (110 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (110 samples, 0.31%)</title><rect x="930.8" y="1873" width="3.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.82" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock_irqsave (18 samples, 0.05%)</title><rect x="192.1" y="2001" width="0.6" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="195.10" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('find_busiest_group (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_busiest_group (19 samples, 0.05%)</title><rect x="968.4" y="2017" width="0.6" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="971.39" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Thread:.isInterrupted in Ljava/util/concurrent/SynchronousQueue$TransferStack:.awaitFulfill (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Thread:.isInterrupted in Ljava/util/concurrent/SynchronousQueue$TransferStack:.awaitFulfill (16 samples, 0.04%)</title><rect x="767.4" y="2033" width="0.6" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="770.42" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/BasicChronology:.getZone in Lorg/joda/time/format/DateTimeFormatter:.parseDateTime (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/BasicChronology:.getZone in Lorg/joda/time/format/DateTimeFormatter:.parseDateTime (5 samples, 0.01%)</title><rect x="450.6" y="2017" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.62" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/security/AccessController:.doPrivileged (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/security/AccessController:.doPrivileged (6 samples, 0.02%)</title><rect x="442.6" y="1921" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.55" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parker::park (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parker::park (12 samples, 0.03%)</title><rect x="396.0" y="1969" width="0.4" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.03" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Deque_basestd::functionvoid (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Deque_basestd::functionvoid (15 samples, 0.04%)</title><rect x="562.4" y="2017" width="0.5" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/ConcurrentLinkedQueue:.first in Lakka/dispatch/Mailbox:.processMailbox (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/ConcurrentLinkedQueue:.first in Lakka/dispatch/Mailbox:.processMailbox (4 samples, 0.01%)</title><rect x="817.1" y="2033" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="820.12" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::tableboost::unordered::detail::mapstd::allocatorstd::pairprocess::ProcessBase* const, hashsetprocess::UPID , process::ProcessBase*, hashsetprocess::UPID, boost::hashprocess::ProcessBase*, std::equal_toprocess::ProcessBase* ::find_node (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::tableboost::unordered::detail::mapstd::allocatorstd::pairprocess::ProcessBase* const, hashsetprocess::UPID , process::ProcessBase*, hashsetprocess::UPID, boost::hashprocess::ProcessBase*, std::equal_toprocess::ProcessBase* ::find_node (10 samples, 0.03%)</title><rect x="164.9" y="1953" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.90" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/math/BigDecimal:.init in Lplay/api/libs/json/DefaultWrites$LongWrites$:.writes (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/math/BigDecimal:.init in Lplay/api/libs/json/DefaultWrites$LongWrites$:.writes (4 samples, 0.01%)</title><rect x="1052.0" y="2033" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.05" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::use (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::use (7 samples, 0.02%)</title><rect x="210.8" y="2001" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="213.83" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/SynchronousQueue:.offer in Lscala/concurrent/impl/ExecutionContextImpl$$anon$1:.execute (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/SynchronousQueue:.offer in Lscala/concurrent/impl/ExecutionContextImpl$$anon$1:.execute (40 samples, 0.11%)</title><rect x="390.2" y="2017" width="1.3" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="393.18" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('fput (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>fput (12 samples, 0.03%)</title><rect x="198.6" y="2001" width="0.4" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.64" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor21:.invoke in Lsun/reflect/GeneratedMethodAccessor21:.invoke (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor21:.invoke in Lsun/reflect/GeneratedMethodAccessor21:.invoke (29 samples, 0.08%)</title><rect x="1117.3" y="2033" width="0.9" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="1120.27" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_base (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_base (21 samples, 0.06%)</title><rect x="568.3" y="2017" width="0.7" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.28" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (44 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (44 samples, 0.12%)</title><rect x="520.7" y="1905" width="1.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.73" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/MapBuilder:.$plus$eq (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/MapBuilder:.$plus$eq (9 samples, 0.03%)</title><rect x="537.7" y="2017" width="0.3" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.72" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="777.9" y="2017" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Set$Set2:.contains in Lscala/collection/immutable/Set$Set2:.$plus (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Set$Set2:.contains in Lscala/collection/immutable/Set$Set2:.$plus (4 samples, 0.01%)</title><rect x="524.4" y="2017" width="0.1" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.40" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (27 samples, 0.08%)</title><rect x="77.8" y="33" width="0.9" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="80.80" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/CallbackRunnable:.run in Lscala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/CallbackRunnable:.run in Lscala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.processBatch$1 (7 samples, 0.02%)</title><rect x="1049.1" y="2033" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.11" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('virtual thunk to std::basic_ostreamchar, std::char_traitschar ::~basic_ostream (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>virtual thunk to std::basic_ostreamchar, std::char_traitschar ::~basic_ostream (13 samples, 0.04%)</title><rect x="1141.1" y="2033" width="0.5" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.13" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (8 samples, 0.02%)</title><rect x="163.2" y="1937" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.18" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lmesosphere/marathon/api/v2/json/EnrichedTask:.hashCode (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lmesosphere/marathon/api/v2/json/EnrichedTask:.hashCode (5 samples, 0.01%)</title><rect x="1052.5" y="2033" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.51" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="913" width="84.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('ctx_sched_out (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ctx_sched_out (19 samples, 0.05%)</title><rect x="961.5" y="2017" width="0.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.55" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor27:.invoke (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor27:.invoke (14 samples, 0.04%)</title><rect x="580.4" y="2017" width="0.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="583.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParallelScavengeHeap::unsafe_max_tlab_alloc (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParallelScavengeHeap::unsafe_max_tlab_alloc (4 samples, 0.01%)</title><rect x="682.4" y="1985" width="0.1" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.37" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.map in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.map in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (5 samples, 0.01%)</title><rect x="1050.3" y="2033" width="0.2" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="1053.30" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="686.5" y="1889" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.50" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_trylock@plt (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_trylock@plt (6 samples, 0.02%)</title><rect x="349.3" y="1969" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="352.34" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Thread:.sleep in Ljava/lang/Thread:.sleep (85 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Thread:.sleep in Ljava/lang/Thread:.sleep (85 samples, 0.24%)</title><rect x="691.0" y="2017" width="2.8" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/text/SimpleDateFormat:.zeroPaddingNumber in Ljava/text/SimpleDateFormat:.subFormat (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/text/SimpleDateFormat:.zeroPaddingNumber in Ljava/text/SimpleDateFormat:.subFormat (7 samples, 0.02%)</title><rect x="777.9" y="2033" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.90" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/ThreadPoolExecutor:.getTask in Ljava/util/concurrent/ThreadPoolExecutor:.runWorker (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/ThreadPoolExecutor:.getTask in Ljava/util/concurrent/ThreadPoolExecutor:.runWorker (41 samples, 0.11%)</title><rect x="818.5" y="2033" width="1.4" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="821.51" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.fixAfterInsertion in Ljava/util/TreeMap:.put (264 samples, 0.74%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.fixAfterInsertion in Ljava/util/TreeMap:.put (264 samples, 0.74%)</title><rect x="799.1" y="2033" width="8.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.08" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::internal::release (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::internal::release (4 samples, 0.01%)</title><rect x="212.9" y="2001" width="0.2" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="215.94" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="933.8" y="1233" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.82" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ZooKeeperProcess::get (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZooKeeperProcess::get (5 samples, 0.01%)</title><rect x="455.3" y="1985" width="0.1" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="458.28" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/parboiled/scala/package$$anon$2:.run in Lorg/parboiled/matchers/ActionMatcher:.match (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/parboiled/scala/package$$anon$2:.run in Lorg/parboiled/matchers/ActionMatcher:.match (26 samples, 0.07%)</title><rect x="940.4" y="2033" width="0.9" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.40" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call (5 samples, 0.01%)</title><rect x="442.6" y="1889" width="0.2" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.59" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (18 samples, 0.05%)</title><rect x="933.1" y="1281" width="0.6" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.06" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator delete (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator delete (4 samples, 0.01%)</title><rect x="76.9" y="33" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="79.91" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="273" width="84.9" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__dup2 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__dup2 (4 samples, 0.01%)</title><rect x="442.4" y="1889" width="0.1" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.39" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (87 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (87 samples, 0.24%)</title><rect x="214.5" y="2001" width="2.9" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="217.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('find_busiest_group (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_busiest_group (9 samples, 0.03%)</title><rect x="138.6" y="49" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="141.63" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (251 samples, 0.70%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_wait@@GLIBC_2.3.2 (251 samples, 0.70%)</title><rect x="1017.5" y="2033" width="8.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="1020.49" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (81 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (81 samples, 0.23%)</title><rect x="931.6" y="1537" width="2.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.58" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/GenSeqLike$class:.equals (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/GenSeqLike$class:.equals (4 samples, 0.01%)</title><rect x="506.1" y="2017" width="0.1" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.06" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/$colon$colon:.isEmpty in Lscala/collection/immutable/$colon$colon:.isEmpty (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/$colon$colon:.isEmpty in Lscala/collection/immutable/$colon$colon:.isEmpty (6 samples, 0.02%)</title><rect x="518.0" y="2017" width="0.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (38 samples, 0.11%)</title><rect x="513.0" y="2001" width="1.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="942.5" y="2017" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.51" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1:.init in Lcom/google/protobuf/AbstractMessage:.hashFields (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1:.init in Lcom/google/protobuf/AbstractMessage:.hashFields (14 samples, 0.04%)</title><rect x="790.0" y="2033" width="0.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.03" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (17 samples, 0.05%)</title><rect x="435.9" y="2001" width="0.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.91" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (5 samples, 0.01%)</title><rect x="15.9" y="1985" width="0.1" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.88" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/Predef$:.assert in Lscala/collection/immutable/HashSet$:.scala$collection$immutable$HashSet$$makeHashTrieSet (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/Predef$:.assert in Lscala/collection/immutable/HashSet$:.scala$collection$immutable$HashSet$$makeHashTrieSet (7 samples, 0.02%)</title><rect x="504.8" y="2017" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.77" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="201.5" y="1889" width="0.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.48" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hash_futex (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hash_futex (10 samples, 0.03%)</title><rect x="144.3" y="49" width="0.3" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.28" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="657" width="84.9" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.entrySet in Ljava/util/TreeMap:.entrySet (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.entrySet in Ljava/util/TreeMap:.entrySet (14 samples, 0.04%)</title><rect x="380.6" y="2017" width="0.5" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.63" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (60 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (60 samples, 0.17%)</title><rect x="520.2" y="2001" width="2.0" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.24" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (11 samples, 0.03%)</title><rect x="1025.9" y="2033" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="1028.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.apply$mcV$sp in Lscala/concurrent/BlockContext$:.withBlockContext (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.apply$mcV$sp in Lscala/concurrent/BlockContext$:.withBlockContext (14 samples, 0.04%)</title><rect x="228.8" y="2001" width="0.5" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.84" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (72 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (72 samples, 0.20%)</title><rect x="440.7" y="1969" width="2.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.67" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::new_instance_C (58 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::new_instance_C (58 samples, 0.16%)</title><rect x="680.7" y="2017" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.72" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/util/Success$$anonfun$map$1:.apply in Lscala/concurrent/Future$$anonfun$map$1:.apply (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/util/Success$$anonfun$map$1:.apply in Lscala/concurrent/Future$$anonfun$map$1:.apply (17 samples, 0.05%)</title><rect x="559.9" y="2017" width="0.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.89" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OopMapSet::oops_do (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OopMapSet::oops_do (4 samples, 0.01%)</title><rect x="1070.3" y="1937" width="0.1" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.29" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_invoke_nonstatic (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_invoke_nonstatic (12 samples, 0.03%)</title><rect x="64.1" y="1969" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.06" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_completion (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_completion (7 samples, 0.02%)</title><rect x="295.7" y="2017" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.68" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="508.4" y="2001" width="0.2" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::compare (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::compare (4 samples, 0.01%)</title><rect x="574.4" y="2017" width="0.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.43" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (4 samples, 0.01%)</title><rect x="466.9" y="2001" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.94" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('cpuacct_charge (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>cpuacct_charge (5 samples, 0.01%)</title><rect x="84.3" y="49" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.31" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_timedwait@@GLIBC_2.3.2 (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (41 samples, 0.11%)</title><rect x="314.2" y="1969" width="1.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="317.19" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="438.7" y="1825" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.69" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jshort_disjoint_arraycopy (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jshort_disjoint_arraycopy (9 samples, 0.03%)</title><rect x="283.5" y="2001" width="0.3" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.46" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__memcpy_sse2_unaligned (11 samples, 0.03%)</title><rect x="187.8" y="2001" width="0.3" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.77" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (109 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (109 samples, 0.31%)</title><rect x="75.9" y="65" width="3.6" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_Thread::get_thread_status (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_Thread::get_thread_status (7 samples, 0.02%)</title><rect x="352.4" y="1985" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="355.38" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::resume (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::resume (4 samples, 0.01%)</title><rect x="481.3" y="1985" width="0.1" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="484.28" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,574 samples, 7.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,574 samples, 7.21%)</title><rect x="75.9" y="1761" width="85.1" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (14 samples, 0.04%)</title><rect x="949.5" y="2017" width="0.5" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="952.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays:.copyOf in Ljava/lang/AbstractStringBuilder:.replace (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays:.copyOf in Ljava/lang/AbstractStringBuilder:.replace (11 samples, 0.03%)</title><rect x="370.7" y="2017" width="0.4" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.69" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="436.0" y="1985" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.05" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="353" width="84.9" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays:.copyOf in Lscala/StringContext:.standardInterpolator (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays:.copyOf in Lscala/StringContext:.standardInterpolator (10 samples, 0.03%)</title><rect x="789.0" y="2033" width="0.4" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.03" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_task_fair (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_task_fair (45 samples, 0.13%)</title><rect x="36.2" y="1969" width="1.5" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="39.24" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesos::internal::state::ZooKeeperStorageProcess::~ZooKeeperStorageProcess (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesos::internal::state::ZooKeeperStorageProcess::~ZooKeeperStorageProcess (18 samples, 0.05%)</title><rect x="424.1" y="2017" width="0.6" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('do_futex (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.01%)</title><rect x="484.6" y="2001" width="0.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.62" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('check_preempt_curr (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>check_preempt_curr (4 samples, 0.01%)</title><rect x="484.5" y="2001" width="0.1" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.45" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_complete_monitor_locking_Java (135 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_complete_monitor_locking_Java (135 samples, 0.38%)</title><rect x="645.1" y="2033" width="4.5" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.10" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/AbstractStringBuilder:.init in Lakka/actor/ChildActorPath:.toString (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/AbstractStringBuilder:.init in Lakka/actor/ChildActorPath:.toString (4 samples, 0.01%)</title><rect x="732.5" y="2033" width="0.1" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.47" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock_irqsave (23 samples, 0.06%)</title><rect x="955.8" y="2017" width="0.8" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.80" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/field/PreciseDateTimeField:.init in Lorg/joda/time/format/DateTimeFormatterBuilder$Fraction:.parseInto (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/field/PreciseDateTimeField:.init in Lorg/joda/time/format/DateTimeFormatterBuilder$Fraction:.parseInto (8 samples, 0.02%)</title><rect x="937.3" y="2033" width="0.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.33" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (84 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (84 samples, 0.24%)</title><rect x="931.5" y="1553" width="2.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.51" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor23:.invoke in Lsun/reflect/GeneratedMethodAccessor23:.invoke (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor23:.invoke in Lsun/reflect/GeneratedMethodAccessor23:.invoke (5 samples, 0.01%)</title><rect x="579.7" y="2017" width="0.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.68" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (21 samples, 0.06%)</title><rect x="1027.2" y="2033" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="1030.23" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="276.4" y="1937" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.39" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_java_util_zip_ZipFile_getEntrySize (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_java_util_zip_ZipFile_getEntrySize (4 samples, 0.01%)</title><rect x="402.9" y="2001" width="0.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.87" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__poll_chk (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__poll_chk (13 samples, 0.04%)</title><rect x="254.7" y="2017" width="0.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.71" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (81 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (81 samples, 0.23%)</title><rect x="1073.6" y="1873" width="2.7" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.59" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="449" width="84.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (74 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (74 samples, 0.21%)</title><rect x="1073.8" y="1841" width="2.5" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.82" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (15 samples, 0.04%)</title><rect x="585.1" y="1969" width="0.5" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.13" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_disable_all (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_disable_all (36 samples, 0.10%)</title><rect x="145.0" y="49" width="1.2" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.01" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Compile::init_buffer (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Compile::init_buffer (5 samples, 0.01%)</title><rect x="1071.1" y="1873" width="0.1" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.08" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_entity (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_entity (4 samples, 0.01%)</title><rect x="478.4" y="1921" width="0.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="481.41" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('flat_send_IPI_mask (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>flat_send_IPI_mask (5 samples, 0.01%)</title><rect x="37.8" y="1969" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="40.76" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_one_block (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_one_block (4 samples, 0.01%)</title><rect x="1072.9" y="1569" width="0.2" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CounterDecay::do_method (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CounterDecay::do_method (5 samples, 0.01%)</title><rect x="1076.4" y="1921" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.37" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeParserBucket:.saveState in Lorg/joda/time/format/DateTimeFormatterBuilder$MatchingParser:.parseInto (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeParserBucket:.saveState in Lorg/joda/time/format/DateTimeFormatterBuilder$MatchingParser:.parseInto (11 samples, 0.03%)</title><rect x="939.0" y="2033" width="0.4" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.05" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (21 samples, 0.06%)</title><rect x="1075.1" y="1745" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.11" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_entity (63 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_entity (63 samples, 0.18%)</title><rect x="134.6" y="49" width="2.1" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="137.60" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_and_fence (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_and_fence (9 samples, 0.03%)</title><rect x="324.3" y="1985" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="327.33" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="454.8" y="1985" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.81" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_RawMonitorEnter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_RawMonitorEnter (4 samples, 0.01%)</title><rect x="891.0" y="2001" width="0.1" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="893.97" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (61 samples, 0.17%)</title><rect x="226.0" y="2001" width="2.0" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.96" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/can/parsing/HttpResponsePartParser$$anonfun$parseEntity$1:.apply in Lspray/can/client/ResponseParsing$$anon$1$$anon$2:.handleParsingResult (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/can/parsing/HttpResponsePartParser$$anonfun$parseEntity$1:.apply in Lspray/can/client/ResponseParsing$$anon$1$$anon$2:.handleParsingResult (6 samples, 0.02%)</title><rect x="1057.5" y="2033" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.50" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hash_futex (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hash_futex (24 samples, 0.07%)</title><rect x="637.0" y="2017" width="0.8" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Matcher::match (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher::match (5 samples, 0.01%)</title><rect x="1071.3" y="1889" width="0.1" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.28" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (98 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (98 samples, 0.27%)</title><rect x="931.1" y="1793" width="3.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.15" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/TraversableOnce$class:.toMap (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/TraversableOnce$class:.toMap (7 samples, 0.02%)</title><rect x="511.8" y="2017" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__dynamic_cast (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__dynamic_cast (9 samples, 0.03%)</title><rect x="248.5" y="1985" width="0.3" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.50" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (101 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (101 samples, 0.28%)</title><rect x="545.6" y="1937" width="3.4" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.65" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (11 samples, 0.03%)</title><rect x="126.1" y="65" width="0.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="129.11" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (64 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (64 samples, 0.18%)</title><rect x="437.0" y="1937" width="2.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.04" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParallelTaskTerminator::offer_termination (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParallelTaskTerminator::offer_termination (23 samples, 0.06%)</title><rect x="1067.8" y="1969" width="0.8" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.84" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (82 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (82 samples, 0.23%)</title><rect x="1073.6" y="1889" width="2.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.56" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (29 samples, 0.08%)</title><rect x="251.0" y="2017" width="0.9" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.98" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('LinkResolver::resolve_invoke (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>LinkResolver::resolve_invoke (5 samples, 0.01%)</title><rect x="393.0" y="1937" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="396.02" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::Parse (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::Parse (5 samples, 0.01%)</title><rect x="1072.9" y="1601" width="0.2" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="527.8" y="2001" width="0.5" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.84" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$:.resolver in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$:.resolver in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (10 samples, 0.03%)</title><rect x="1049.3" y="2033" width="0.4" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.34" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor25:.invoke in Lsun/reflect/GeneratedMethodAccessor25:.invoke (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor25:.invoke in Lsun/reflect/GeneratedMethodAccessor25:.invoke (35 samples, 0.10%)</title><rect x="1122.7" y="2033" width="1.1" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="1125.66" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Promiseint::associate (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Promiseint::associate (5 samples, 0.01%)</title><rect x="569.4" y="1985" width="0.2" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.44" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (21 samples, 0.06%)</title><rect x="1056.2" y="1953" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.25" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('void std::dequestd::functionvoid (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>void std::dequestd::functionvoid (5 samples, 0.01%)</title><rect x="177.7" y="1985" width="0.1" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.66" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('copy_user_enhanced_fast_string (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>copy_user_enhanced_fast_string (4 samples, 0.01%)</title><rect x="623.2" y="2017" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="626.20" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('GCTaskThread::run (208 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCTaskThread::run (208 samples, 0.58%)</title><rect x="1064.1" y="2001" width="6.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.11" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom:.apply in Lmesosphere/marathon/state/AppDefinition:.mergeFromProto (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/generic/GenTraversableFactory$GenericCanBuildFrom:.apply in Lmesosphere/marathon/state/AppDefinition:.mergeFromProto (6 samples, 0.02%)</title><rect x="515.1" y="2017" width="0.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/nio/cs/UTF_8$Decoder:.decode in Lsun/nio/cs/UTF_8$Decoder:.decode (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/nio/cs/UTF_8$Decoder:.decode in Lsun/nio/cs/UTF_8$Decoder:.decode (41 samples, 0.11%)</title><rect x="575.3" y="2017" width="1.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.32" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1393" width="84.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/regex/Pattern:.peek in Ljava/util/regex/Pattern:.closure (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/regex/Pattern:.peek in Ljava/util/regex/Pattern:.closure (4 samples, 0.01%)</title><rect x="867.7" y="2033" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="870.74" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (87 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (87 samples, 0.24%)</title><rect x="931.4" y="1633" width="2.9" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.45" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/BasicChronology:.getYearInfo in Lorg/joda/time/chrono/BasicGJChronology:.getMonthOfYear (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/BasicChronology:.getYearInfo in Lorg/joda/time/chrono/BasicGJChronology:.getMonthOfYear (4 samples, 0.01%)</title><rect x="935.1" y="2033" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="938.15" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/IndexedSeqOptimized$class:.foreach in Lscala/collection/mutable/WrappedArray:.foreach (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/IndexedSeqOptimized$class:.foreach in Lscala/collection/mutable/WrappedArray:.foreach (8 samples, 0.02%)</title><rect x="506.7" y="2017" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.69" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::_Rep::_S_create (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::_Rep::_S_create (15 samples, 0.04%)</title><rect x="419.7" y="2001" width="0.5" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.72" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashMap$HashTrieMap:.updated0 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashMap$HashTrieMap:.updated0 (4 samples, 0.01%)</title><rect x="1034.9" y="2033" width="0.2" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="1037.93" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/IterableLike$class:.foreach in Lscala/collection/AbstractIterable:.foreach (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/IterableLike$class:.foreach in Lscala/collection/AbstractIterable:.foreach (4 samples, 0.01%)</title><rect x="507.1" y="2017" width="0.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.12" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="769" width="84.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::jvm_raw_lock (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::jvm_raw_lock (34 samples, 0.10%)</title><rect x="862.7" y="1969" width="1.1" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.65" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/TraversableOnce$class:.toSet in Lplay/api/libs/json/JsObject$$anonfun$$plus$plus$1:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/TraversableOnce$class:.toSet in Lplay/api/libs/json/JsObject$$anonfun$$plus$plus$1:.apply (4 samples, 0.01%)</title><rect x="512.1" y="2017" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="337" width="84.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (29 samples, 0.08%)</title><rect x="532.0" y="1969" width="1.0" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.03" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1297" width="84.9" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (7 samples, 0.02%)</title><rect x="481.7" y="1985" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="484.71" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ZooKeeperProcess::~ZooKeeperProcess (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZooKeeperProcess::~ZooKeeperProcess (5 samples, 0.01%)</title><rect x="60.0" y="2017" width="0.2" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="63.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treeprocess::ProcessBase*, std::pairprocess::ProcessBase* const, Gate*, std::_Select1ststd::pairprocess::ProcessBase* const, Gate* , std::lessprocess::ProcessBase*, std::allocatorstd::pairprocess::ProcessBase* const, Gate* ::find (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treeprocess::ProcessBase*, std::pairprocess::ProcessBase* const, Gate*, std::_Select1ststd::pairprocess::ProcessBase* const, Gate* , std::lessprocess::ProcessBase*, std::allocatorstd::pairprocess::ProcessBase* const, Gate* ::find (4 samples, 0.01%)</title><rect x="587.9" y="1969" width="0.1" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.91" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/BasicChronology:.getYearInfo in Lorg/joda/time/chrono/BasicYearDateTimeField:.roundFloor (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/BasicChronology:.getYearInfo in Lorg/joda/time/chrono/BasicYearDateTimeField:.roundFloor (4 samples, 0.01%)</title><rect x="450.3" y="2017" width="0.1" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.29" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_call (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_call (5 samples, 0.01%)</title><rect x="1072.9" y="1633" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="436.2" y="1857" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.24" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (35 samples, 0.10%)</title><rect x="731.2" y="1921" width="1.1" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.18" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___libc_connect (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___libc_connect (11 samples, 0.03%)</title><rect x="613.5" y="2033" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="616.51" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryMethod in Ljava/util/zip/ZipFile:.getEntryMethod (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryMethod in Ljava/util/zip/ZipFile:.getEntryMethod (32 samples, 0.09%)</title><rect x="408.7" y="2001" width="1.0" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="411.69" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (104 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (104 samples, 0.29%)</title><rect x="75.9" y="49" width="3.5" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/StringCoding$StringDecoder:.decode in Lsun/reflect/GeneratedMethodAccessor19:.invoke (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/StringCoding$StringDecoder:.decode in Lsun/reflect/GeneratedMethodAccessor19:.invoke (38 samples, 0.11%)</title><rect x="747.7" y="2033" width="1.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="750.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/Reflection:.getCallerClass in Lsun/reflect/Reflection:.getCallerClass (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/Reflection:.getCallerClass in Lsun/reflect/Reflection:.getCallerClass (5 samples, 0.01%)</title><rect x="275.1" y="2001" width="0.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.10" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PhaseCFG::schedule_late (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PhaseCFG::schedule_late (4 samples, 0.01%)</title><rect x="1071.5" y="1873" width="0.1" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.51" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="993" width="84.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('_new_array_nozero_Java (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_new_array_nozero_Java (9 samples, 0.03%)</title><rect x="260.3" y="2017" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.29" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="280.7" y="2001" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.71" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('cpuacct_charge (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>cpuacct_charge (5 samples, 0.01%)</title><rect x="1018.4" y="2017" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1021.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('all (35,712 samples, 100%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>all (35,712 samples, 100%)</title><rect x="10.0" y="2065" width="1180.0" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (87 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (87 samples, 0.24%)</title><rect x="931.4" y="1617" width="2.9" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.45" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (90 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (90 samples, 0.25%)</title><rect x="931.4" y="1665" width="3.0" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.38" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Ljava/lang/ThreadLocal:.set (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Ljava/lang/ThreadLocal:.set (8 samples, 0.02%)</title><rect x="353.6" y="2017" width="0.2" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.57" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('VMThread::evaluate_operation (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMThread::evaluate_operation (61 samples, 0.17%)</title><rect x="1076.7" y="1969" width="2.0" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.67" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__cxxabiv1::__si_class_type_info::__do_dyncast (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__cxxabiv1::__si_class_type_info::__do_dyncast (12 samples, 0.03%)</title><rect x="248.1" y="1985" width="0.4" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.07" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="201.5" y="1873" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.55" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="933.4" y="1217" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.39" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="280.0" y="1921" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.02" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ip_send_check (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_send_check (4 samples, 0.01%)</title><rect x="625.1" y="2017" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="628.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___libc_write (101 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___libc_write (101 samples, 0.28%)</title><rect x="244.4" y="2017" width="3.4" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.43" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/VectorIterator:.hasNext in Lscala/collection/immutable/VectorIterator:.hasNext (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/VectorIterator:.hasNext in Lscala/collection/immutable/VectorIterator:.hasNext (4 samples, 0.01%)</title><rect x="526.6" y="2017" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.65" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="436.7" y="1873" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.74" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/can/parsing/CharUtils$:.byteChar in Lspray/can/parsing/HttpHeaderParser:.parseHeaderValue (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/can/parsing/CharUtils$:.byteChar in Lspray/can/parsing/HttpHeaderParser:.parseHeaderValue (7 samples, 0.02%)</title><rect x="561.4" y="2017" width="0.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.44" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (5 samples, 0.01%)</title><rect x="163.8" y="1953" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.84" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('do_io (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_io (18 samples, 0.05%)</title><rect x="296.1" y="2017" width="0.6" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="299.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::SocketManager::link (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::SocketManager::link (8 samples, 0.02%)</title><rect x="586.8" y="1985" width="0.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.75" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_entity (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_entity (12 samples, 0.03%)</title><rect x="196.6" y="2001" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.59" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('operator new (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>operator new (4 samples, 0.01%)</title><rect x="924.5" y="2033" width="0.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="927.54" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Long:.valueOf in Lakka/actor/LightArrayRevolverScheduler:.scheduleOnce (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Long:.valueOf in Lakka/actor/LightArrayRevolverScheduler:.scheduleOnce (6 samples, 0.02%)</title><rect x="735.4" y="2033" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.41" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor50:.invoke (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor50:.invoke (7 samples, 0.02%)</title><rect x="583.8" y="2017" width="0.2" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="586.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::cleanup (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::cleanup (7 samples, 0.02%)</title><rect x="207.0" y="2001" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (18,215 samples, 51.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (18,215 samples, 51.01%)</title><rect x="11.3" y="2033" width="601.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.32" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ExitedEvent::visit (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ExitedEvent::visit (7 samples, 0.02%)</title><rect x="467.3" y="1985" width="0.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.27" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (96 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (96 samples, 0.27%)</title><rect x="270.4" y="1889" width="3.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.44" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_wait@@GLIBC_2.3.2 (10 samples, 0.03%)</title><rect x="319.4" y="1969" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="322.41" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_enable_all (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (12 samples, 0.03%)</title><rect x="12.0" y="1969" width="0.4" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.02" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('task_waking_fair (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>task_waking_fair (18 samples, 0.05%)</title><rect x="118.9" y="49" width="0.6" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="121.91" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="561.0" y="1985" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_blocked_averages (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_blocked_averages (20 samples, 0.06%)</title><rect x="1009.0" y="2017" width="0.7" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="1012.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="933.8" y="1281" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.79" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('x86_pmu_disable (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_disable (12 samples, 0.03%)</title><rect x="1017.1" y="2017" width="0.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="1020.09" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('BiasedLocking::revoke_and_rebias (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>BiasedLocking::revoke_and_rebias (12 samples, 0.03%)</title><rect x="258.0" y="1969" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="261.01" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetObjectClass (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetObjectClass (6 samples, 0.02%)</title><rect x="73.5" y="1985" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.47" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('try_to_wake_up (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (23 samples, 0.06%)</title><rect x="119.5" y="49" width="0.8" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="122.53" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1040.6" y="2001" width="0.1" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1043.58" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="289" width="84.9" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('objArrayKlass::oop_push_contents (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>objArrayKlass::oop_push_contents (8 samples, 0.02%)</title><rect x="1066.1" y="1953" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.13" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1062.0" y="1873" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.03" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::new_instance_C (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::new_instance_C (5 samples, 0.01%)</title><rect x="191.7" y="1985" width="0.2" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.70" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('do_futex (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (10 samples, 0.03%)</title><rect x="138.2" y="49" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="141.17" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('put_prev_task_fair (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>put_prev_task_fair (28 samples, 0.08%)</title><rect x="151.9" y="49" width="1.0" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="154.95" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::pop_and_restore (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::pop_and_restore (15 samples, 0.04%)</title><rect x="883.3" y="1969" width="0.5" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="886.30" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::oop_push_contents (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::oop_push_contents (11 samples, 0.03%)</title><rect x="1065.2" y="1921" width="0.4" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.23" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::deliver (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::deliver (5 samples, 0.01%)</title><rect x="207.3" y="2001" width="0.1" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.26" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor45:.invoke (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor45:.invoke (28 samples, 0.08%)</title><rect x="1138.6" y="2033" width="0.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.59" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="276.8" y="1985" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.82" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/DynamicEventPipeline$SwitchableEventPipeline:.apply in Lspray/io/DynamicEventPipeline$SwitchableEventPipeline:.apply (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/DynamicEventPipeline$SwitchableEventPipeline:.apply in Lspray/io/DynamicEventPipeline$SwitchableEventPipeline:.apply (8 samples, 0.02%)</title><rect x="1058.8" y="2033" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.76" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor46:.invoke (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor46:.invoke (20 samples, 0.06%)</title><rect x="1139.5" y="2033" width="0.7" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.51" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Actor$class:.aroundReceive in Lmesosphere/marathon/health/HealthCheckActor:.aroundReceive (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Actor$class:.aroundReceive in Lmesosphere/marathon/health/HealthCheckActor:.aroundReceive (8 samples, 0.02%)</title><rect x="274.6" y="2017" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="277.57" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PhaseCFG::GlobalCodeMotion (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PhaseCFG::GlobalCodeMotion (7 samples, 0.02%)</title><rect x="1071.5" y="1889" width="0.2" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.48" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (17 samples, 0.05%)</title><rect x="424.1" y="1985" width="0.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.15" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_task (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task (15 samples, 0.04%)</title><rect x="965.2" y="2017" width="0.5" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.21" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::javaTimeNanos (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::javaTimeNanos (5 samples, 0.01%)</title><rect x="307.4" y="2001" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="310.41" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::string, std::_Identitystd::string, std::lessstd::string, std::allocatorstd::string ::_M_get_insert_unique_pos (59 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::string, std::_Identitystd::string, std::lessstd::string, std::allocatorstd::string ::_M_get_insert_unique_pos (59 samples, 0.17%)</title><rect x="566.3" y="2017" width="2.0" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.33" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor34:.invoke (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor34:.invoke (30 samples, 0.08%)</title><rect x="1130.1" y="2033" width="1.0" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.06" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (23 samples, 0.06%)</title><rect x="1046.6" y="2017" width="0.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.60" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1057.6" y="1985" width="0.1" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.57" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_tree_iteratorstd::string std::_Rb_treestd::string, std::string, std::_Identitystd::string, std::lessstd::string, std::allocatorstd::string ::_M_insert_unique_std::string& (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_tree_iteratorstd::string std::_Rb_treestd::string, std::string, std::_Identitystd::string, std::lessstd::string, std::allocatorstd::string ::_M_insert_unique_std::string& (6 samples, 0.02%)</title><rect x="564.1" y="2017" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (24 samples, 0.07%)</title><rect x="396.0" y="2001" width="0.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="398.96" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.expungeStaleEntry in Ljava/lang/ThreadLocal$ThreadLocalMap:.access$200 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.expungeStaleEntry in Ljava/lang/ThreadLocal$ThreadLocalMap:.access$200 (5 samples, 0.01%)</title><rect x="769.1" y="2033" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="772.11" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/generic/TraversableForwarder$class:.isEmpty in Lscala/collection/mutable/ListBuffer:.result (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/generic/TraversableForwarder$class:.isEmpty in Lscala/collection/mutable/ListBuffer:.result (7 samples, 0.02%)</title><rect x="517.7" y="2017" width="0.3" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.73" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1062.3" y="1857" width="0.1" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.29" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (120 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (120 samples, 0.34%)</title><rect x="930.6" y="2017" width="4.0" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.59" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/codahale/metrics/ExponentiallyDecayingReservoir:.unlockForRegularUsage in Lcom/codahale/metrics/ExponentiallyDecayingReservoir:.update (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:.unlockForRegularUsage in Lcom/codahale/metrics/ExponentiallyDecayingReservoir:.update (11 samples, 0.03%)</title><rect x="282.5" y="2017" width="0.4" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.53" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::basic_ostreamchar, std::char_traitschar ::~basic_ostream (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::basic_ostreamchar, std::char_traitschar ::~basic_ostream (32 samples, 0.09%)</title><rect x="1082.4" y="2033" width="1.0" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.38" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryCrc (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryCrc (26 samples, 0.07%)</title><rect x="407.8" y="2001" width="0.9" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="410.83" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1329" width="84.9" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="436.1" y="1953" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.08" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call_helper (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call_helper (5 samples, 0.01%)</title><rect x="64.2" y="1937" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.22" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (22 samples, 0.06%)</title><rect x="250.2" y="2017" width="0.8" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.25" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="545" width="84.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('UTF8::convert_to_unicode (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>UTF8::convert_to_unicode (19 samples, 0.05%)</title><rect x="70.2" y="1937" width="0.7" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="73.24" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Actor$$anonfun$aroundReceive$1:.init in Lakka/actor/Actor$class:.aroundReceive (247 samples, 0.69%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Actor$$anonfun$aroundReceive$1:.init in Lakka/actor/Actor$class:.aroundReceive (247 samples, 0.69%)</title><rect x="266.4" y="2017" width="8.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="269.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1105" width="84.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_GetCallerClass (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_GetCallerClass (5 samples, 0.01%)</title><rect x="275.1" y="1985" width="0.2" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.10" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('try_to_wake_up (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (7 samples, 0.02%)</title><rect x="216.7" y="1985" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="219.71" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/INode:.GCAS_READ in Lscala/collection/concurrent/INode:.rec_lookup (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/INode:.GCAS_READ in Lscala/collection/concurrent/INode:.rec_lookup (4 samples, 0.01%)</title><rect x="1030.8" y="2033" width="0.1" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="1033.77" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/regex/Pattern:.init in Lmesosphere/marathon/state/MarathonStore$$anonfun$names$1$$anonfun$apply$2:.applyOrElse (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/regex/Pattern:.init in Lmesosphere/marathon/state/MarathonStore$$anonfun$names$1$$anonfun$apply$2:.applyOrElse (5 samples, 0.01%)</title><rect x="867.2" y="2033" width="0.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="870.24" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('wake_futex (43 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>wake_futex (43 samples, 0.12%)</title><rect x="57.7" y="1969" width="1.4" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="60.71" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::ILock (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::ILock (8 samples, 0.02%)</title><rect x="312.1" y="1937" width="0.3" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.14" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1233" width="84.9" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (14 samples, 0.04%)</title><rect x="686.4" y="1921" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.37" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.scala$concurrent$impl$Promise$DefaultPromise$$dispatchOrAddCallback in Lscala/concurrent/Future$class:.map (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.scala$concurrent$impl$Promise$DefaultPromise$$dispatchOrAddCallback in Lscala/concurrent/Future$class:.map (6 samples, 0.02%)</title><rect x="555.6" y="2017" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1062.0" y="1889" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.96" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key (18 samples, 0.05%)</title><rect x="109.7" y="49" width="0.5" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="112.66" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetObjectClass (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetObjectClass (40 samples, 0.11%)</title><rect x="68.2" y="1985" width="1.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="71.15" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Actor$class:.aroundReceive in Lspray/can/client/HttpClientConnection:.aroundReceive (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Actor$class:.aroundReceive in Lspray/can/client/HttpClientConnection:.aroundReceive (8 samples, 0.02%)</title><rect x="274.8" y="2017" width="0.3" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="277.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (13 samples, 0.04%)</title><rect x="1141.1" y="2017" width="0.5" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.13" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (283 samples, 0.79%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (283 samples, 0.79%)</title><rect x="79.6" y="65" width="9.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.55" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('cpuacct_charge (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>cpuacct_charge (9 samples, 0.03%)</title><rect x="99.9" y="49" width="0.3" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="102.87" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (82 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (82 samples, 0.23%)</title><rect x="1073.6" y="1905" width="2.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.56" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PSScavenge::invoke (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PSScavenge::invoke (61 samples, 0.17%)</title><rect x="1076.7" y="1905" width="2.0" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.67" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/ThreadPoolExecutor:.runWorker (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/ThreadPoolExecutor:.runWorker (18 samples, 0.05%)</title><rect x="391.5" y="2017" width="0.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="394.54" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1025" width="84.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/VectorIterator:.next in Lscala/collection/immutable/VectorIterator:.next (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/VectorIterator:.next in Lscala/collection/immutable/VectorIterator:.next (5 samples, 0.01%)</title><rect x="526.9" y="2017" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PhaseChaitin::gather_lrg_masks (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PhaseChaitin::gather_lrg_masks (4 samples, 0.01%)</title><rect x="1071.9" y="1873" width="0.1" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.91" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.successor in Lcom/google/protobuf/AbstractMessage:.hashFields (91 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.successor in Lcom/google/protobuf/AbstractMessage:.hashFields (91 samples, 0.25%)</title><rect x="813.8" y="2033" width="3.1" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.85" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (34 samples, 0.10%)</title><rect x="272.2" y="1825" width="1.1" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.16" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('perf_event_context_sched_in (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_event_context_sched_in (7 samples, 0.02%)</title><rect x="994.5" y="2017" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.49" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('vtable chunks (1,461 samples, 4.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>vtable chunks (1,461 samples, 4.09%)</title><rect x="1141.7" y="2033" width="48.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.66" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >vtab..</text> | |
</g> | |
<g class="func_g" onmouseover="s('__cxxabiv1::__si_class_type_info::~__si_class_type_info (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__cxxabiv1::__si_class_type_info::~__si_class_type_info (22 samples, 0.06%)</title><rect x="248.1" y="2017" width="0.7" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal:.get in Lscala/concurrent/BlockContext$:.withBlockContext (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal:.get in Lscala/concurrent/BlockContext$:.withBlockContext (5 samples, 0.01%)</title><rect x="355.6" y="2017" width="0.2" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="358.62" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Thread:.isInterrupted in Lscala/concurrent/forkjoin/ForkJoinPool:.tryTerminate (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Thread:.isInterrupted in Lscala/concurrent/forkjoin/ForkJoinPool:.tryTerminate (6 samples, 0.02%)</title><rect x="353.4" y="2017" width="0.2" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (39 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (39 samples, 0.11%)</title><rect x="534.4" y="1905" width="1.3" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.38" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__clock_gettime (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__clock_gettime (4 samples, 0.01%)</title><rect x="691.7" y="1985" width="0.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.69" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="1061.7" y="1889" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.73" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="505.5" y="1985" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.53" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadRootsTask::do_it (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadRootsTask::do_it (24 samples, 0.07%)</title><rect x="1070.2" y="1985" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.19" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ktime_add_safe (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ktime_add_safe (5 samples, 0.01%)</title><rect x="992.8" y="2017" width="0.2" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="995.80" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_and_fence (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_and_fence (13 samples, 0.04%)</title><rect x="336.3" y="1969" width="0.4" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.29" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,573 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,573 samples, 7.20%)</title><rect x="75.9" y="1681" width="85.0" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.fixAfterInsertion in Ljava/util/TreeMap:.put (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.fixAfterInsertion in Ljava/util/TreeMap:.put (6 samples, 0.02%)</title><rect x="381.1" y="2017" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.10" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/apache/mesos/Protos$TaskStatus:.getUnknownFields in Lorg/apache/mesos/Protos$TaskStatus:.getUnknownFields (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/apache/mesos/Protos$TaskStatus:.getUnknownFields in Lorg/apache/mesos/Protos$TaskStatus:.getUnknownFields (11 samples, 0.03%)</title><rect x="929.5" y="2033" width="0.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="932.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (20 samples, 0.06%)</title><rect x="502.6" y="1905" width="0.6" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.56" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_one_bytecode (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_one_bytecode (19 samples, 0.05%)</title><rect x="1072.7" y="1841" width="0.6" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.70" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (14 samples, 0.04%)</title><rect x="1055.2" y="1969" width="0.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.19" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Compile::Compile (73 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Compile::Compile (73 samples, 0.20%)</title><rect x="1071.0" y="1921" width="2.4" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.02" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/AbstractList$Itr:.hasNext in Ljava/util/AbstractList$Itr:.hasNext (81 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/AbstractList$Itr:.hasNext in Ljava/util/AbstractList$Itr:.hasNext (81 samples, 0.23%)</title><rect x="778.5" y="2033" width="2.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.53" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (25 samples, 0.07%)</title><rect x="513.4" y="1953" width="0.8" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.40" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('effective_load.isra.45 (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>effective_load.isra.45 (10 samples, 0.03%)</title><rect x="245.6" y="2001" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="248.56" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('touch_atime (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>touch_atime (8 samples, 0.02%)</title><rect x="244.1" y="2001" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.07" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (25 samples, 0.07%)</title><rect x="533.5" y="1921" width="0.8" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.49" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="521.8" y="1841" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="524.79" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/apache/mesos/Protos$TaskID:.getUnknownFields (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/apache/mesos/Protos$TaskID:.getUnknownFields (35 samples, 0.10%)</title><rect x="927.0" y="2033" width="1.1" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="929.98" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesos::internal::SchedulerProcess::~SchedulerProcess (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesos::internal::SchedulerProcess::~SchedulerProcess (6 samples, 0.02%)</title><rect x="421.4" y="2017" width="0.2" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Character:.toLowerCase in Lorg/joda/time/format/DateTimeFormatterBuilder$CharacterLiteral:.parseInto (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Character:.toLowerCase in Lorg/joda/time/format/DateTimeFormatterBuilder$CharacterLiteral:.parseInto (7 samples, 0.02%)</title><rect x="733.1" y="2033" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.09" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor41:.invoke (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor41:.invoke (23 samples, 0.06%)</title><rect x="1135.1" y="2033" width="0.8" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.12" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor25:.invoke in Lsun/reflect/GeneratedMethodAccessor25:.invoke (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor25:.invoke in Lsun/reflect/GeneratedMethodAccessor25:.invoke (8 samples, 0.02%)</title><rect x="580.1" y="2017" width="0.3" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="583.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('rb_insert_color (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>rb_insert_color (10 samples, 0.03%)</title><rect x="41.7" y="1969" width="0.4" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.72" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('cpuacct_charge (63 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>cpuacct_charge (63 samples, 0.18%)</title><rect x="132.2" y="49" width="2.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="135.19" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__errno_location (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__errno_location (6 samples, 0.02%)</title><rect x="585.9" y="1985" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.86" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/ActorLogging$class:.log (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/ActorLogging$class:.log (15 samples, 0.04%)</title><rect x="276.3" y="2017" width="0.5" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.29" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (108 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (108 samples, 0.30%)</title><rect x="930.9" y="1857" width="3.6" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.88" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (57 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (57 samples, 0.16%)</title><rect x="520.3" y="1969" width="1.9" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.34" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_new_instance_Java (131 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_new_instance_Java (131 samples, 0.37%)</title><rect x="260.6" y="2017" width="4.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.59" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_mutex_cond_lock (24 samples, 0.07%)</title><rect x="190.1" y="2001" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.11" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (17 samples, 0.05%)</title><rect x="507.7" y="1985" width="0.5" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.68" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('VMThread::loop (73 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMThread::loop (73 samples, 0.20%)</title><rect x="1076.3" y="1985" width="2.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.27" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="275.0" y="1953" width="0.1" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="277.96" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (5 samples, 0.01%)</title><rect x="469.2" y="2001" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.22" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::SocketManager::exited (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::SocketManager::exited (17 samples, 0.05%)</title><rect x="166.8" y="1953" width="0.5" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.75" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (4 samples, 0.01%)</title><rect x="611.6" y="2001" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="614.63" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/Predef$:.assert in Lscala/collection/immutable/HashSet$:.scala$collection$immutable$HashSet$$makeHashTrieSet (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/Predef$:.assert in Lscala/collection/immutable/HashSet$:.scala$collection$immutable$HashSet$$makeHashTrieSet (4 samples, 0.01%)</title><rect x="1028.7" y="2033" width="0.1" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.66" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="436.1" y="1969" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.08" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('rw_verify_area (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>rw_verify_area (4 samples, 0.01%)</title><rect x="243.8" y="2001" width="0.1" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.77" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1062.2" y="1873" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.23" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNIHandles::make_local (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNIHandles::make_local (5 samples, 0.01%)</title><rect x="371.7" y="1969" width="0.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.75" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/TraversableLike$class:.to in Lscala/concurrent/BatchingExecutor$class:.execute (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/TraversableLike$class:.to in Lscala/concurrent/BatchingExecutor$class:.execute (16 samples, 0.04%)</title><rect x="510.8" y="2017" width="0.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="513.82" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('I2C/C2I adapters (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>I2C/C2I adapters (16 samples, 0.04%)</title><rect x="15.0" y="2017" width="0.5" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.99" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor31:.invoke (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor31:.invoke (19 samples, 0.05%)</title><rect x="1128.0" y="2033" width="0.6" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="1131.01" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__hrtimer_start_range_ns (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__hrtimer_start_range_ns (35 samples, 0.10%)</title><rect x="948.3" y="2017" width="1.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="951.33" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/TraversableLike$$anonfun$filterImpl$1:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/TraversableLike$$anonfun$filterImpl$1:.apply (4 samples, 0.01%)</title><rect x="509.7" y="2017" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.73" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$RepeatedFieldAccessor:.get (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$RepeatedFieldAccessor:.get (4 samples, 0.01%)</title><rect x="356.5" y="2017" width="0.1" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.48" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/CodedInputStream:.readMessage in Lmesosphere/marathon/Protos$ServiceDefinition:.init (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/CodedInputStream:.readMessage in Lmesosphere/marathon/Protos$ServiceDefinition:.init (5 samples, 0.01%)</title><rect x="706.0" y="2033" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.03" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/SynchronousQueue$TransferStack:.transfer (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/SynchronousQueue$TransferStack:.transfer (4 samples, 0.01%)</title><rect x="818.2" y="2033" width="0.1" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="821.18" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__enqueue_entity (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__enqueue_entity (5 samples, 0.01%)</title><rect x="89.0" y="49" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.00" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (9 samples, 0.03%)</title><rect x="466.4" y="1985" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.41" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/CodedInputStream:.readRawVarint32 in Lmesosphere/marathon/Protos$HealthCheckDefinition:.init (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/CodedInputStream:.readRawVarint32 in Lmesosphere/marathon/Protos$HealthCheckDefinition:.init (6 samples, 0.02%)</title><rect x="284.5" y="2017" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.51" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections:.unmodifiableList in Ljava/util/Collections:.unmodifiableList (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections:.unmodifiableList in Ljava/util/Collections:.unmodifiableList (10 samples, 0.03%)</title><rect x="793.3" y="2033" width="0.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.30" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call (9 samples, 0.03%)</title><rect x="154.2" y="49" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="157.23" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/ActorCell:.receiveMessage in Lakka/dispatch/Mailbox:.processMailbox (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/ActorCell:.receiveMessage in Lakka/dispatch/Mailbox:.processMailbox (22 samples, 0.06%)</title><rect x="683.9" y="2033" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="686.93" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor31:.invoke (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor31:.invoke (16 samples, 0.04%)</title><rect x="581.1" y="2017" width="0.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="584.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:._writeString2 in Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator:._writeString (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:._writeString2 in Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator:._writeString (23 samples, 0.06%)</title><rect x="283.0" y="2017" width="0.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.99" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor33:.invoke (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor33:.invoke (14 samples, 0.04%)</title><rect x="1129.6" y="2033" width="0.5" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.60" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/nio/cs/UTF_8$Decoder:.decode in Lsun/nio/cs/UTF_8$Decoder:.decode (208 samples, 0.58%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/nio/cs/UTF_8$Decoder:.decode in Lsun/nio/cs/UTF_8$Decoder:.decode (208 samples, 0.58%)</title><rect x="1086.5" y="2033" width="6.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.48" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_task (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task (9 samples, 0.03%)</title><rect x="136.7" y="49" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="139.68" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__schedule (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (9 samples, 0.03%)</title><rect x="191.1" y="2001" width="0.3" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.07" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('select_task_rq_fair (80 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_task_rq_fair (80 samples, 0.22%)</title><rect x="43.6" y="1969" width="2.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="46.64" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="274.9" y="2001" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="277.87" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="687.8" y="2001" width="0.1" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.76" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SymbolTable::lookup_only (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SymbolTable::lookup_only (11 samples, 0.03%)</title><rect x="72.9" y="1969" width="0.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="75.95" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="940.9" y="1953" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.86" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="528.0" y="1985" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.97" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (63 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (63 samples, 0.18%)</title><rect x="437.0" y="1921" width="2.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.04" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Dictionary::find (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Dictionary::find (7 samples, 0.02%)</title><rect x="422.6" y="1905" width="0.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.60" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/state/AppDefinition:.portMappings in Lmesosphere/marathon/state/AppDefinition:.init (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/state/AppDefinition:.portMappings in Lmesosphere/marathon/state/AppDefinition:.init (5 samples, 0.01%)</title><rect x="439.9" y="2017" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.91" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('api_prolog (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>api_prolog (11 samples, 0.03%)</title><rect x="281.8" y="2017" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.80" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/DateTime:.parse in Lmesosphere/marathon/tasks/TaskTracker$$anonfun$getVersion$1:.applyOrElse (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/DateTime:.parse in Lmesosphere/marathon/tasks/TaskTracker$$anonfun$getVersion$1:.applyOrElse (4 samples, 0.01%)</title><rect x="934.7" y="2033" width="0.1" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="937.72" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__memcmp_sse4_1 (81 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__memcmp_sse4_1 (81 samples, 0.23%)</title><rect x="252.0" y="2017" width="2.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="254.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (100 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (100 samples, 0.28%)</title><rect x="931.1" y="1809" width="3.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.15" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait_setup (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_setup (45 samples, 0.13%)</title><rect x="142.1" y="49" width="1.5" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.14" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Ljava/lang/ThreadLocal:.setInitialValue (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Ljava/lang/ThreadLocal:.setInitialValue (17 samples, 0.05%)</title><rect x="768.3" y="2033" width="0.6" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="771.32" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/TimeUnit$7:.toNanos in Ljava/util/concurrent/TimeUnit$7:.toNanos (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/TimeUnit$7:.toNanos in Ljava/util/concurrent/TimeUnit$7:.toNanos (4 samples, 0.01%)</title><rect x="820.3" y="2033" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="823.29" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="275.9" y="1905" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.92" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lcom/google/protobuf/AbstractMessage:.equals (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lcom/google/protobuf/AbstractMessage:.equals (4 samples, 0.01%)</title><rect x="922.9" y="2033" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="925.92" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Latch::Latch (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Latch::Latch (6 samples, 0.02%)</title><rect x="469.5" y="2017" width="0.2" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.55" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_CallObjectMethodV (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_CallObjectMethodV (12 samples, 0.03%)</title><rect x="64.5" y="1985" width="0.3" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.45" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_int_free (375 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_int_free (375 samples, 1.05%)</title><rect x="649.6" y="2033" width="12.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.56" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (15 samples, 0.04%)</title><rect x="398.7" y="2001" width="0.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.67" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections:.unmodifiableList in Ljava/util/Collections:.unmodifiableList (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections:.unmodifiableList in Ljava/util/Collections:.unmodifiableList (36 samples, 0.10%)</title><rect x="376.3" y="2017" width="1.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.34" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_java_util_zip_ZipFile_getEntryBytes (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_java_util_zip_ZipFile_getEntryBytes (24 samples, 0.07%)</title><rect x="405.4" y="1985" width="0.8" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.38" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (4 samples, 0.01%)</title><rect x="1047.8" y="2017" width="0.1" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.79" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (20 samples, 0.06%)</title><rect x="943.6" y="2017" width="0.7" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.64" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="64.7" y="1841" width="0.1" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.72" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/TimeUnit$3:.convert in Lscala/concurrent/duration/FiniteDuration:.add (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/TimeUnit$3:.convert in Lscala/concurrent/duration/FiniteDuration:.add (8 samples, 0.02%)</title><rect x="820.0" y="2033" width="0.2" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="822.96" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashMap$HashMap1:.get0 in Lscala/collection/immutable/HashMap$HashTrieMap:.get0 (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashMap$HashMap1:.get0 in Lscala/collection/immutable/HashMap$HashTrieMap:.get0 (35 samples, 0.10%)</title><rect x="1033.6" y="2033" width="1.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="1036.64" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/Mailbox:.run in Lakka/dispatch/Mailbox:.exec (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/Mailbox:.run in Lakka/dispatch/Mailbox:.exec (13 samples, 0.04%)</title><rect x="694.3" y="2033" width="0.4" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.30" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="833" width="84.9" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__schedule (51 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (51 samples, 0.14%)</title><rect x="128.4" y="49" width="1.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="131.42" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (4 samples, 0.01%)</title><rect x="488.7" y="2001" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.75" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNI_ArgumentPusherVaArg::JNI_ArgumentPusherVaArg (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNI_ArgumentPusherVaArg::JNI_ArgumentPusherVaArg (6 samples, 0.02%)</title><rect x="61.9" y="1969" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="64.91" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_tree_iteratorstd::pairstd::string const, process::ProcessBase* std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::_M_emplace_hint_uniquestd::piecewise_construct_t const&, std::tuplestd::string const&, std::tuple (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_tree_iteratorstd::pairstd::string const, process::ProcessBase* std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::_M_emplace_hint_uniquestd::piecewise_construct_t const&, std::tuplestd::string const&, std::tuple (4 samples, 0.01%)</title><rect x="231.7" y="2001" width="0.2" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.75" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('memset (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>memset (17 samples, 0.05%)</title><rect x="878.6" y="1969" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="881.58" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (60 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (60 samples, 0.17%)</title><rect x="494.0" y="2017" width="2.0" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CollectedHeap::new_store_pre_barrier (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CollectedHeap::new_store_pre_barrier (4 samples, 0.01%)</title><rect x="260.8" y="2001" width="0.1" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.79" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (15 samples, 0.04%)</title><rect x="550.1" y="2001" width="0.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.14" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ip_queue_xmit (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_queue_xmit (5 samples, 0.01%)</title><rect x="624.9" y="2017" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="627.91" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (43 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (43 samples, 0.12%)</title><rect x="158.7" y="49" width="1.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="161.72" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::run (160 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::run (160 samples, 0.45%)</title><rect x="1071.0" y="2001" width="5.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.98" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.98 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ttwu_do_activate.constprop.98 (6 samples, 0.02%)</title><rect x="120.3" y="49" width="0.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="123.29" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_ptrprocess::FutureOptionmesos::internal::state::Entry ::Data*, (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_ptrprocess::FutureOptionmesos::internal::state::Entry ::Data*, (7 samples, 0.02%)</title><rect x="569.0" y="2017" width="0.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_entity (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_entity (4 samples, 0.01%)</title><rect x="245.9" y="2001" width="0.1" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="248.89" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('void process::GarbageCollector::manageprocess::ProcessBase (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>void process::GarbageCollector::manageprocess::ProcessBase (5 samples, 0.01%)</title><rect x="240.6" y="2001" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="243.63" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('copy_user_enhanced_fast_string (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>copy_user_enhanced_fast_string (25 samples, 0.07%)</title><rect x="957.0" y="2017" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.02" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sys_futex (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (9 samples, 0.03%)</title><rect x="46.4" y="1969" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.38" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getNextEntry (317 samples, 0.89%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getNextEntry (317 samples, 0.89%)</title><rect x="890.4" y="2017" width="10.4" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="893.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (7 samples, 0.02%)</title><rect x="337.4" y="1937" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.45" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/apache/mesos/Protos$SlaveID:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$SlaveID:.internalGetFieldAccessorTable (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/apache/mesos/Protos$SlaveID:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$SlaveID:.internalGetFieldAccessorTable (32 samples, 0.09%)</title><rect x="443.9" y="2017" width="1.0" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.88" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="696.1" y="2017" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.09" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/SNode:.kvPair in Lscala/collection/MapLike$DefaultValuesIterable:.foreach (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/SNode:.kvPair in Lscala/collection/MapLike$DefaultValuesIterable:.foreach (5 samples, 0.01%)</title><rect x="1030.9" y="2033" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="1033.90" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/ExecutorServiceDelegate$class:.execute in Lakka/dispatch/Dispatcher:.registerForExecution (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/ExecutorServiceDelegate$class:.execute in Lakka/dispatch/Dispatcher:.registerForExecution (4 samples, 0.01%)</title><rect x="279.0" y="2017" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/apache/mesos/Protos$SlaveID:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$SlaveID:.internalGetFieldAccessorTable (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/apache/mesos/Protos$SlaveID:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$SlaveID:.internalGetFieldAccessorTable (36 samples, 0.10%)</title><rect x="925.8" y="2033" width="1.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="928.76" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('effective_load.isra.45 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>effective_load.isra.45 (8 samples, 0.02%)</title><rect x="484.7" y="2001" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.75" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="201.5" y="1841" width="0.3" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.55" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="280.0" y="1937" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.02" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::lock_without_safepoint_check (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::lock_without_safepoint_check (14 samples, 0.04%)</title><rect x="327.7" y="1969" width="0.5" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="330.70" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (6 samples, 0.02%)</title><rect x="587.3" y="1969" width="0.2" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.34" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Compile::Output (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Compile::Output (6 samples, 0.02%)</title><rect x="1071.0" y="1889" width="0.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="1074.05" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1457" width="84.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__unqueue_futex (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__unqueue_futex (28 samples, 0.08%)</title><rect x="89.2" y="49" width="1.0" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.23" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/dungeon/Children$class:.isTerminating in Lakka/actor/ActorCell:.invokeAll$1 (72 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/dungeon/Children$class:.isTerminating in Lakka/actor/ActorCell:.invokeAll$1 (72 samples, 0.20%)</title><rect x="688.2" y="2033" width="2.3" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="691.16" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/http/Rendering$class:.$tilde$tilde in Lspray/http/HttpDataRendering:.$tilde$tilde (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/http/Rendering$class:.$tilde$tilde in Lspray/http/HttpDataRendering:.$tilde$tilde (6 samples, 0.02%)</title><rect x="1062.2" y="1889" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.23" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jlong_disjoint_arraycopy (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jlong_disjoint_arraycopy (19 samples, 0.05%)</title><rect x="418.2" y="2001" width="0.6" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="421.20" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="548.2" y="1841" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.19" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::swap (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::swap (4 samples, 0.01%)</title><rect x="236.8" y="2001" width="0.1" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="239.77" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_tree_insert_and_rebalance (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_tree_insert_and_rebalance (17 samples, 0.05%)</title><rect x="563.6" y="2017" width="0.5" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.59" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_and_fence (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_and_fence (20 samples, 0.06%)</title><rect x="877.6" y="1969" width="0.6" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="880.55" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (18 samples, 0.05%)</title><rect x="1043.2" y="1969" width="0.6" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="1046.23" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__errno_location (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__errno_location (8 samples, 0.02%)</title><rect x="471.5" y="1985" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.53" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sock_poll (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sock_poll (6 samples, 0.02%)</title><rect x="230.0" y="2001" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor24:.invoke (47 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor24:.invoke (47 samples, 0.13%)</title><rect x="1121.1" y="2033" width="1.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="1124.11" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (28 samples, 0.08%)</title><rect x="1042.9" y="1985" width="0.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="1045.90" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_timedwait@@GLIBC_2.3.2 (94 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (94 samples, 0.26%)</title><rect x="489.1" y="2017" width="3.1" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_FindClass (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_FindClass (4 samples, 0.01%)</title><rect x="59.4" y="2001" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="62.43" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::append (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::append (4 samples, 0.01%)</title><rect x="1084.4" y="2033" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1087.40" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('C2Compiler::compile_method (74 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>C2Compiler::compile_method (74 samples, 0.21%)</title><rect x="1071.0" y="1937" width="2.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.98" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1057.6" y="1969" width="0.1" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.57" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="939.8" y="2017" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.81" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="454.9" y="1953" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.88" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (78 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (78 samples, 0.22%)</title><rect x="1073.7" y="1857" width="2.6" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$ExtendedContainerInfo:.getVolumesCount in Lmesosphere/marathon/Protos$ServiceDefinition:.isInitialized (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$ExtendedContainerInfo:.getVolumesCount in Lmesosphere/marathon/Protos$ServiceDefinition:.isInitialized (6 samples, 0.02%)</title><rect x="918.3" y="2033" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.26" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor38:.invoke (31 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor38:.invoke (31 samples, 0.09%)</title><rect x="1132.7" y="2033" width="1.0" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.70" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (120 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (120 samples, 0.34%)</title><rect x="17.7" y="1969" width="4.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.73" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::WaitWaiter::~WaitWaiter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::WaitWaiter::~WaitWaiter (16 samples, 0.04%)</title><rect x="482.2" y="2017" width="0.5" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.17" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessBase::~ProcessBase (174 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessBase::~ProcessBase (174 samples, 0.49%)</title><rect x="470.4" y="2017" width="5.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (22 samples, 0.06%)</title><rect x="248.1" y="2001" width="0.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.07" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="193.0" y="1953" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.02" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::table_implboost::unordered::detail::setstd::allocatorprocess::UPID, process::UPID, boost::hashprocess::UPID, std::equal_toprocess::UPID ::erase_key (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::table_implboost::unordered::detail::setstd::allocatorprocess::UPID, process::UPID, boost::hashprocess::UPID, std::equal_toprocess::UPID ::erase_key (9 samples, 0.03%)</title><rect x="193.6" y="2001" width="0.3" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.62" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_getspecific (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_getspecific (5 samples, 0.01%)</title><rect x="263.6" y="1937" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.60" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_org_apache_mesos_state_AbstractState__1_1fetch_1get_1timeout (96 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_org_apache_mesos_state_AbstractState__1_1fetch_1get_1timeout (96 samples, 0.27%)</title><rect x="66.3" y="2001" width="3.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.30" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_rq_blocked_load (21 samples, 0.06%)</title><rect x="120.8" y="49" width="0.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="123.76" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call (13 samples, 0.04%)</title><rect x="265.3" y="1969" width="0.4" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.25" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('select_task_rq_fair (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_task_rq_fair (68 samples, 0.19%)</title><rect x="114.9" y="49" width="2.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.94" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1055.5" y="1905" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.52" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key (5 samples, 0.01%)</title><rect x="86.6" y="49" width="0.1" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="89.56" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Deque_iteratorprocess::Event*, process::Event*&, process::Event** std::copyprocess::Event* (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Deque_iteratorprocess::Event*, process::Event*&, process::Event** std::copyprocess::Event* (8 samples, 0.02%)</title><rect x="175.9" y="1985" width="0.2" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.87" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashSet$HashSet1:.updated0 in Lscala/collection/immutable/HashSet$HashTrieSet:.updated0 (115 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashSet$HashSet1:.updated0 in Lscala/collection/immutable/HashSet$HashTrieSet:.updated0 (115 samples, 0.32%)</title><rect x="1035.1" y="2033" width="3.8" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1038.07" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::node_constructorstd::allocatorboost::unordered::detail::ptr_nodeprocess::UPID ::~node_constructor (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::node_constructorstd::allocatorboost::unordered::detail::ptr_nodeprocess::UPID ::~node_constructor (7 samples, 0.02%)</title><rect x="697.4" y="2033" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Thread::is_interrupted (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Thread::is_interrupted (12 samples, 0.03%)</title><rect x="335.9" y="1969" width="0.4" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.89" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="785" width="84.9" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('_new_instance_Java (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_new_instance_Java (6 samples, 0.02%)</title><rect x="191.7" y="2001" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.70" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (68 samples, 0.19%)</title><rect x="436.9" y="1969" width="2.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.90" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::allocate_instance (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::allocate_instance (11 samples, 0.03%)</title><rect x="71.6" y="1921" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.62" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::string, std::_Identitystd::string, std::lessstd::string, std::allocatorstd::string ::_M_copy (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::string, std::_Identitystd::string, std::lessstd::string, std::allocatorstd::string ::_M_copy (5 samples, 0.01%)</title><rect x="565.8" y="2017" width="0.2" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (45 samples, 0.13%)</title><rect x="1074.4" y="1793" width="1.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="1077.42" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call_helper (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call_helper (12 samples, 0.03%)</title><rect x="65.5" y="1937" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="68.51" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (24 samples, 0.07%)</title><rect x="932.9" y="1329" width="0.8" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.87" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/BasicChronology:.getZone in Lmesosphere/marathon/state/Timestamp:.toString (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/BasicChronology:.getZone in Lmesosphere/marathon/state/Timestamp:.toString (5 samples, 0.01%)</title><rect x="935.7" y="2033" width="0.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="938.74" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('call_stub (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>call_stub (4 samples, 0.01%)</title><rect x="63.4" y="1921" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="66.36" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::pairstd::string const, std::functionvoid (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::pairstd::string const, std::functionvoid (6 samples, 0.02%)</title><rect x="565.6" y="2017" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.64" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1281" width="84.9" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (73 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (73 samples, 0.20%)</title><rect x="931.8" y="1489" width="2.5" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.84" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_all_blocks (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_all_blocks (15 samples, 0.04%)</title><rect x="1072.7" y="1777" width="0.5" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.73" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::javaTimeNanos (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::javaTimeNanos (11 samples, 0.03%)</title><rect x="453.2" y="2017" width="0.4" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.23" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (4 samples, 0.01%)</title><rect x="170.6" y="1953" width="0.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="173.55" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::oop_push_contents (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::oop_push_contents (15 samples, 0.04%)</title><rect x="1065.6" y="1953" width="0.5" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.63" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::ostream& std::ostream::_M_insertlong (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::ostream& std::ostream::_M_insertlong (4 samples, 0.01%)</title><rect x="1082.9" y="2017" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.01%)</title><rect x="161.6" y="1889" width="0.1" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.60" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap$EntrySet:.iterator (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap$EntrySet:.iterator (13 samples, 0.04%)</title><rect x="378.9" y="2017" width="0.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.92" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ArrayBuffer:.sizeHint in Lscala/collection/mutable/ArrayBuffer:.sizeHint (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ArrayBuffer:.sizeHint in Lscala/collection/mutable/ArrayBuffer:.sizeHint (14 samples, 0.04%)</title><rect x="529.4" y="2017" width="0.5" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_destroy@@GLIBC_2.3.2 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_destroy@@GLIBC_2.3.2 (5 samples, 0.01%)</title><rect x="946.7" y="2033" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="949.71" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__update_entity_load_avg_contrib (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__update_entity_load_avg_contrib (12 samples, 0.03%)</title><rect x="17.3" y="1969" width="0.4" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.34" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeFormatter:.parseDateTime (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeFormatter:.parseDateTime (5 samples, 0.01%)</title><rect x="937.6" y="2033" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.62" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.equals in Ljava/lang/String:.equals (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.equals in Ljava/lang/String:.equals (7 samples, 0.02%)</title><rect x="736.1" y="2033" width="0.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.13" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="201.4" y="1953" width="0.4" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.45" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,572 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,572 samples, 7.20%)</title><rect x="75.9" y="1585" width="85.0" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor44:.invoke (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor44:.invoke (6 samples, 0.02%)</title><rect x="582.6" y="2017" width="0.2" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="585.62" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (94 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (94 samples, 0.26%)</title><rect x="931.2" y="1713" width="3.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.25" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="961" width="84.9" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('frame::oops_do_internal (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>frame::oops_do_internal (7 samples, 0.02%)</title><rect x="1070.3" y="1953" width="0.2" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.29" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/Promise$class:.complete in Lscala/concurrent/Future$$anonfun$map$1:.apply (199 samples, 0.56%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/Promise$class:.complete in Lscala/concurrent/Future$$anonfun$map$1:.apply (199 samples, 0.56%)</title><rect x="543.1" y="2017" width="6.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (38 samples, 0.11%)</title><rect x="1055.7" y="2017" width="1.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.72" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (5 samples, 0.01%)</title><rect x="473.9" y="1969" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.91" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__calc_delta (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__calc_delta (33 samples, 0.09%)</title><rect x="947.2" y="2017" width="1.1" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.24" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__fget (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__fget (15 samples, 0.04%)</title><rect x="179.0" y="2001" width="0.5" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.04" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="1075.4" y="1713" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.44" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/ConcurrentLinkedQueue:.offer in Lakka/actor/Cell$class:.sendMessage (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/ConcurrentLinkedQueue:.offer in Lakka/actor/Cell$class:.sendMessage (12 samples, 0.03%)</title><rect x="382.4" y="2017" width="0.4" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.38" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('copy_user_enhanced_fast_string (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>copy_user_enhanced_fast_string (26 samples, 0.07%)</title><rect x="616.9" y="2017" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="619.88" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_fair (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_fair (13 samples, 0.04%)</title><rect x="995.8" y="2017" width="0.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="998.84" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (8 samples, 0.02%)</title><rect x="167.9" y="1953" width="0.3" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="170.91" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="181.4" y="1985" width="0.1" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="184.39" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_from_native (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_from_native (9 samples, 0.03%)</title><rect x="384.7" y="1985" width="0.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="387.66" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/runtime/ScalaRunTime$:._hashCode (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/runtime/ScalaRunTime$:._hashCode (5 samples, 0.01%)</title><rect x="1053.1" y="2033" width="0.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="1056.14" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1050.1" y="2001" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="1053.07" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call (10 samples, 0.03%)</title><rect x="638.9" y="2017" width="0.4" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.92" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__libc_calloc (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__libc_calloc (20 samples, 0.06%)</title><rect x="615.7" y="2033" width="0.6" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="618.66" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__libc_disable_asynccancel (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__libc_disable_asynccancel (6 samples, 0.02%)</title><rect x="616.3" y="2033" width="0.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="619.32" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.hashCode in Ljava/lang/String:.hashCode (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.hashCode in Ljava/lang/String:.hashCode (40 samples, 0.11%)</title><rect x="736.5" y="2033" width="1.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('poll_select_set_timeout (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_select_set_timeout (6 samples, 0.02%)</title><rect x="205.4" y="2001" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="208.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="193.0" y="1921" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.02" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_Thread::park_blocker (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_Thread::park_blocker (25 samples, 0.07%)</title><rect x="341.4" y="1969" width="0.8" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.41" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('nf_iterate (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>nf_iterate (14 samples, 0.04%)</title><rect x="627.5" y="2017" width="0.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="630.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_ptrprocess::Futureint::Data*, (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_ptrprocess::Futureint::Data*, (26 samples, 0.07%)</title><rect x="569.2" y="2017" width="0.9" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.20" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (75 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (75 samples, 0.21%)</title><rect x="1060.1" y="1953" width="2.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.14" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('InterpreterRuntime::anewarray (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>InterpreterRuntime::anewarray (5 samples, 0.01%)</title><rect x="535.1" y="1873" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="538.11" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (216 samples, 0.60%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (216 samples, 0.60%)</title><rect x="424.9" y="2017" width="7.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.88" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="436.1" y="1921" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.14" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('call_stub (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>call_stub (4 samples, 0.01%)</title><rect x="442.6" y="1857" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.62" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="918.3" y="2017" width="0.2" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.29" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal:.get in Lscala/concurrent/BatchingExecutor$class:.execute (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal:.get in Lscala/concurrent/BatchingExecutor$class:.execute (18 samples, 0.05%)</title><rect x="355.0" y="2017" width="0.6" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="358.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('select_task_rq_fair (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_task_rq_fair (7 samples, 0.02%)</title><rect x="246.8" y="2001" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="249.81" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (15 samples, 0.04%)</title><rect x="1061.9" y="1905" width="0.5" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.93" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Lscala/concurrent/BlockContext$:.current (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Lscala/concurrent/BlockContext$:.current (6 samples, 0.02%)</title><rect x="768.9" y="2033" width="0.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="771.91" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/UnknownFieldSet:.hashCode in Lcom/google/protobuf/AbstractMessage:.hashCode (105 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/UnknownFieldSet:.hashCode in Lcom/google/protobuf/AbstractMessage:.hashCode (105 samples, 0.29%)</title><rect x="725.2" y="2033" width="3.5" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.23" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('GCTaskThread::~GCTaskThread (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCTaskThread::~GCTaskThread (48 samples, 0.13%)</title><rect x="13.4" y="2017" width="1.6" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.40" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/duration/FiniteDuration:.init in Lakka/actor/LightArrayRevolverScheduler:.scheduleOnce (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/duration/FiniteDuration:.init in Lakka/actor/LightArrayRevolverScheduler:.scheduleOnce (6 samples, 0.02%)</title><rect x="1046.1" y="2033" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.07" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (21 samples, 0.06%)</title><rect x="168.8" y="1969" width="0.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.77" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.valueOf (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.valueOf (9 samples, 0.03%)</title><rect x="280.0" y="1953" width="0.3" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.99" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="945" width="84.9" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_setspecific (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_setspecific (7 samples, 0.02%)</title><rect x="587.0" y="1985" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.01" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (52 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (52 samples, 0.15%)</title><rect x="271.7" y="1841" width="1.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.69" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/forkjoin/ForkJoinPool:.signalWork in Lscala/concurrent/forkjoin/ForkJoinPool:.signalWork (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/forkjoin/ForkJoinPool:.signalWork in Lscala/concurrent/forkjoin/ForkJoinPool:.signalWork (5 samples, 0.01%)</title><rect x="1047.8" y="2033" width="0.1" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.75" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call_helper (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call_helper (12 samples, 0.03%)</title><rect x="64.5" y="1937" width="0.3" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.45" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNIEnv_::CallBooleanMethod (69 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNIEnv_::CallBooleanMethod (69 samples, 0.19%)</title><rect x="61.6" y="2001" width="2.3" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="64.58" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (121 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (121 samples, 0.34%)</title><rect x="1010.2" y="2017" width="4.0" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="1013.18" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$MarathonTask:.getUnknownFields (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$MarathonTask:.getUnknownFields (42 samples, 0.12%)</title><rect x="919.5" y="2033" width="1.4" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="922.52" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PSScavenge::invoke_no_policy (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PSScavenge::invoke_no_policy (61 samples, 0.17%)</title><rect x="1076.7" y="1889" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.67" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treeprocess::UPID, std::pairprocess::UPID const, process::ProcessBase const*, std::_Select1ststd::pairprocess::UPID const, process::ProcessBase const* , std::lessprocess::UPID, std::allocatorstd::pairprocess::UPID const, process::ProcessBase const* ::_M_insert_node (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treeprocess::UPID, std::pairprocess::UPID const, process::ProcessBase const*, std::_Select1ststd::pairprocess::UPID const, process::ProcessBase const* , std::lessprocess::UPID, std::allocatorstd::pairprocess::UPID const, process::ProcessBase const* ::_M_insert_node (8 samples, 0.02%)</title><rect x="232.2" y="2001" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.21" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="1052.9" y="2017" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.91" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections$UnmodifiableCollection$1:.hasNext in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections$UnmodifiableCollection$1:.hasNext in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (6 samples, 0.02%)</title><rect x="789.7" y="2033" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.69" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::pop_and_restore (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::pop_and_restore (14 samples, 0.04%)</title><rect x="322.9" y="1985" width="0.4" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="325.88" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ObjectSynchronizer::fast_enter (65 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ObjectSynchronizer::fast_enter (65 samples, 0.18%)</title><rect x="647.3" y="2001" width="2.1" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.28" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string stringifyint (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string stringifyint (6 samples, 0.02%)</title><rect x="420.0" y="1985" width="0.2" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="423.02" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (1,318 samples, 3.69%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (1,318 samples, 3.69%)</title><rect x="15.8" y="2001" width="43.6" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.82" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::handle_exception_C (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::handle_exception_C (26 samples, 0.07%)</title><rect x="12.4" y="2001" width="0.9" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.41" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="881" width="84.9" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('do_sys_poll (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_sys_poll (25 samples, 0.07%)</title><rect x="197.2" y="2001" width="0.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="200.25" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_stop (31 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_stop (31 samples, 0.09%)</title><rect x="997.5" y="2017" width="1.0" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1000.46" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor47:.invoke in Lsun/reflect/GeneratedMethodAccessor47:.invoke (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor47:.invoke in Lsun/reflect/GeneratedMethodAccessor47:.invoke (8 samples, 0.02%)</title><rect x="583.4" y="2017" width="0.3" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="586.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="15.5" y="2017" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="731.8" y="1857" width="0.4" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.80" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('finish_task_switch (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (20 samples, 0.06%)</title><rect x="139.1" y="49" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="142.06" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (7 samples, 0.02%)</title><rect x="466.2" y="1985" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.18" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections$UnmodifiableCollection$1:.init in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections$UnmodifiableCollection$1:.init in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (7 samples, 0.02%)</title><rect x="375.4" y="2017" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="378.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('GCTaskManager::get_task (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCTaskManager::get_task (4 samples, 0.01%)</title><rect x="1064.1" y="1985" width="0.1" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.11" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor16:.invoke (39 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor16:.invoke (39 samples, 0.11%)</title><rect x="1113.7" y="2033" width="1.3" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="1116.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_out (4 samples, 0.01%)</title><rect x="1017.8" y="2017" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="1020.82" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1505" width="84.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Class:.cast in Lscala/concurrent/Future$$anonfun$mapTo$1:.apply (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Class:.cast in Lscala/concurrent/Future$$anonfun$mapTo$1:.apply (16 samples, 0.04%)</title><rect x="301.9" y="2017" width="0.5" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="304.86" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call_after_swapgs (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call_after_swapgs (26 samples, 0.07%)</title><rect x="639.3" y="2017" width="0.8" height="15.0" fill="rgb(241,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.25" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.02%)</title><rect x="693.0" y="1969" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="696.05" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/Format$$anon$3:.writes (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/Format$$anon$3:.writes (5 samples, 0.01%)</title><rect x="942.5" y="2033" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.51" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (84 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (84 samples, 0.24%)</title><rect x="1059.9" y="1969" width="2.8" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.95" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parker::park (73 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parker::park (73 samples, 0.20%)</title><rect x="310.3" y="1969" width="2.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="313.25" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (7 samples, 0.02%)</title><rect x="585.6" y="1969" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.63" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pollwait (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pollwait (4 samples, 0.01%)</title><rect x="188.4" y="2001" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="191.39" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Synchronizable::release (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Synchronizable::release (7 samples, 0.02%)</title><rect x="10.9" y="2033" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.93" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('memset (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>memset (5 samples, 0.01%)</title><rect x="72.0" y="1921" width="0.2" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="74.99" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (29 samples, 0.08%)</title><rect x="337.7" y="1969" width="0.9" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.68" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (162 samples, 0.45%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (162 samples, 0.45%)</title><rect x="543.8" y="1985" width="5.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.80" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesos::internal::state::Entry::SharedDtor (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesos::internal::state::Entry::SharedDtor (9 samples, 0.03%)</title><rect x="203.0" y="2001" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (107 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (107 samples, 0.30%)</title><rect x="270.1" y="1905" width="3.5" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.11" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__schedule (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.01%)</title><rect x="489.4" y="2001" width="0.1" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.38" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (6 samples, 0.02%)</title><rect x="484.2" y="2001" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.15" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SafepointSynchronize::do_cleanup_tasks (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SafepointSynchronize::do_cleanup_tasks (7 samples, 0.02%)</title><rect x="1076.4" y="1953" width="0.2" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.37" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('UTF8::unicode_length (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>UTF8::unicode_length (7 samples, 0.02%)</title><rect x="69.9" y="1953" width="0.2" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.87" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('perf_pmu_rotate_start.isra.53 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_rotate_start.isra.53 (7 samples, 0.02%)</title><rect x="148.9" y="49" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.88" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (4 samples, 0.01%)</title><rect x="470.0" y="1985" width="0.1" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParseGenerator::generate (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParseGenerator::generate (15 samples, 0.04%)</title><rect x="1072.7" y="1809" width="0.5" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.73" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.access$1000 in Ljava/util/jar/JarFile$1:.nextElement (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.access$1000 in Ljava/util/jar/JarFile$1:.nextElement (16 samples, 0.04%)</title><rect x="889.6" y="2033" width="0.5" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="892.58" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized (89 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized (89 samples, 0.25%)</title><rect x="290.0" y="2017" width="3.0" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__schedule (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (8 samples, 0.02%)</title><rect x="79.8" y="49" width="0.3" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.82" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::Parse (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::Parse (15 samples, 0.04%)</title><rect x="1072.7" y="1793" width="0.5" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.73" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_entity (85 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_entity (85 samples, 0.24%)</title><rect x="962.4" y="2017" width="2.8" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (36 samples, 0.10%)</title><rect x="479.6" y="1985" width="1.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.59" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (29 samples, 0.08%)</title><rect x="1056.0" y="1985" width="1.0" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.01" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::dequeprocess::Event*, std::allocatorprocess::Event* ::operator= (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::dequeprocess::Event*, std::allocatorprocess::Event* ::operator= (5 samples, 0.01%)</title><rect x="176.6" y="1985" width="0.2" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.63" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('MutableSpace::cas_allocate (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>MutableSpace::cas_allocate (5 samples, 0.01%)</title><rect x="263.8" y="1969" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.83" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__libc_recv (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__libc_recv (15 samples, 0.04%)</title><rect x="249.7" y="2017" width="0.5" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.65" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (84 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (84 samples, 0.24%)</title><rect x="931.5" y="1569" width="2.8" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.51" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SYSC_sendto (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SYSC_sendto (5 samples, 0.01%)</title><rect x="619.7" y="2017" width="0.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.66" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parker::unpark (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parker::unpark (6 samples, 0.02%)</title><rect x="385.4" y="1969" width="0.2" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="388.36" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('effective_load.isra.45 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>effective_load.isra.45 (6 samples, 0.02%)</title><rect x="185.3" y="1985" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="188.32" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('put_page (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>put_page (5 samples, 0.01%)</title><rect x="618.0" y="2017" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="621.04" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesos::internal::state::Entry::MergePartialFromCodedStream (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesos::internal::state::Entry::MergePartialFromCodedStream (4 samples, 0.01%)</title><rect x="423.7" y="1985" width="0.1" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.65" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor23:.invoke in Lsun/reflect/GeneratedMethodAccessor23:.invoke (39 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor23:.invoke in Lsun/reflect/GeneratedMethodAccessor23:.invoke (39 samples, 0.11%)</title><rect x="1119.8" y="2033" width="1.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="1122.82" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_blocked_averages (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_blocked_averages (8 samples, 0.02%)</title><rect x="155.0" y="49" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="157.96" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/Predef$:.assert in Lscala/collection/immutable/HashSet$HashTrieSet:.updated0 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/Predef$:.assert in Lscala/collection/immutable/HashSet$HashTrieSet:.updated0 (4 samples, 0.01%)</title><rect x="505.0" y="2017" width="0.1" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__cxxabiv1::__vmi_class_type_info::~__vmi_class_type_info (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__cxxabiv1::__vmi_class_type_info::~__vmi_class_type_info (6 samples, 0.02%)</title><rect x="249.0" y="2017" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor42:.invoke in Lsun/reflect/GeneratedMethodAccessor42:.invoke (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor42:.invoke in Lsun/reflect/GeneratedMethodAccessor42:.invoke (24 samples, 0.07%)</title><rect x="1135.9" y="2033" width="0.8" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::allocate_objArray (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::allocate_objArray (5 samples, 0.01%)</title><rect x="679.9" y="2001" width="0.2" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.90" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::ILock (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::ILock (25 samples, 0.07%)</title><rect x="333.7" y="1937" width="0.8" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.68" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call (16 samples, 0.04%)</title><rect x="65.4" y="1953" width="0.5" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="68.41" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pipe_write (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pipe_write (5 samples, 0.01%)</title><rect x="246.5" y="2001" width="0.1" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="249.48" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/forkjoin/ForkJoinTask:.doExec in Lscala/concurrent/forkjoin/ForkJoinPool:.runWorker (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/forkjoin/ForkJoinTask:.doExec in Lscala/concurrent/forkjoin/ForkJoinPool:.runWorker (5 samples, 0.01%)</title><rect x="1047.9" y="2033" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="1050.92" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::TerminateEvent::~TerminateEvent (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::TerminateEvent::~TerminateEvent (41 samples, 0.11%)</title><rect x="480.8" y="2017" width="1.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.82" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('VMThread::run (73 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMThread::run (73 samples, 0.20%)</title><rect x="1076.3" y="2001" width="2.4" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.27" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (4 samples, 0.01%)</title><rect x="313.0" y="1969" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.03" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/ActorCell:.sendMessage in Lakka/dispatch/ForkJoinExecutorConfigurator$AkkaForkJoinTask:.exec (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/ActorCell:.sendMessage in Lakka/dispatch/ForkJoinExecutorConfigurator$AkkaForkJoinTask:.exec (10 samples, 0.03%)</title><rect x="684.7" y="2033" width="0.3" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.65" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::tableboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::find_node (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::tableboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::find_node (8 samples, 0.02%)</title><rect x="698.1" y="2033" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.14" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ArrayBuffer:.$plus$eq in Lscala/collection/TraversableLike$$anonfun$map$1:.apply (46 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ArrayBuffer:.$plus$eq in Lscala/collection/TraversableLike$$anonfun$map$1:.apply (46 samples, 0.13%)</title><rect x="1042.4" y="2033" width="1.5" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="1045.40" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (40 samples, 0.11%)</title><rect x="437.7" y="1873" width="1.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.70" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.02%)</title><rect x="569.0" y="1985" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.01" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_entity (71 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_entity (71 samples, 0.20%)</title><rect x="103.6" y="49" width="2.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.58" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (8 samples, 0.02%)</title><rect x="173.7" y="1969" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="176.72" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.map in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.map in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (28 samples, 0.08%)</title><rect x="553.4" y="2017" width="0.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::link (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::link (5 samples, 0.01%)</title><rect x="586.4" y="1985" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.42" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_getspecific (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_getspecific (8 samples, 0.02%)</title><rect x="863.8" y="1969" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="866.78" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (5,482 samples, 15.35%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (5,482 samples, 15.35%)</title><rect x="60.2" y="2017" width="181.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="63.19" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('rb_erase (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>rb_erase (7 samples, 0.02%)</title><rect x="152.9" y="49" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="155.87" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/JsValueSerializer:.serialize (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/JsValueSerializer:.serialize (4 samples, 0.01%)</title><rect x="943.3" y="2033" width="0.2" height="15.0" fill="rgb(87,233,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.34" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_rt (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_rt (12 samples, 0.03%)</title><rect x="150.1" y="49" width="0.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="153.13" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="398.7" y="1985" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.74" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Unpark (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Unpark (28 samples, 0.08%)</title><rect x="394.3" y="1985" width="1.0" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="397.35" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/GeneratedMessage$FieldAccessorTable:.access$000 in Lcom/google/protobuf/GeneratedMessage:.getDescriptorForType (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/GeneratedMessage$FieldAccessorTable:.access$000 in Lcom/google/protobuf/GeneratedMessage:.getDescriptorForType (4 samples, 0.01%)</title><rect x="289.9" y="2017" width="0.1" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="292.90" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_FindClass (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_FindClass (33 samples, 0.09%)</title><rect x="422.1" y="1969" width="1.1" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.07" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1062.9" y="1969" width="0.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.89" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('BiasedLocking::revoke_and_rebias (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>BiasedLocking::revoke_and_rebias (8 samples, 0.02%)</title><rect x="649.1" y="1985" width="0.3" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.13" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_org_apache_mesos_state_AbstractState__1_1names_1get (93 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_org_apache_mesos_state_AbstractState__1_1names_1get (93 samples, 0.26%)</title><rect x="69.6" y="2001" width="3.0" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.57" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Ljava/lang/ThreadLocal:.setInitialValue (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Ljava/lang/ThreadLocal:.setInitialValue (12 samples, 0.03%)</title><rect x="353.8" y="2017" width="0.4" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.84" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1201" width="84.9" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor36:.invoke (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor36:.invoke (4 samples, 0.01%)</title><rect x="581.8" y="2017" width="0.1" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="584.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ttwu_do_wakeup (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ttwu_do_wakeup (8 samples, 0.02%)</title><rect x="120.5" y="49" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="123.49" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_out (27 samples, 0.08%)</title><rect x="127.5" y="49" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="130.53" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/util/Success$$anonfun$map$1:.apply in Lscala/concurrent/Future$$anonfun$map$1:.apply (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/util/Success$$anonfun$map$1:.apply in Lscala/concurrent/Future$$anonfun$map$1:.apply (9 samples, 0.03%)</title><rect x="1054.3" y="2033" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.33" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (40 samples, 0.11%)</title><rect x="394.0" y="2001" width="1.3" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="397.02" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (14 samples, 0.04%)</title><rect x="471.1" y="1985" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.07" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('find_busiest_group (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_busiest_group (4 samples, 0.01%)</title><rect x="489.9" y="2001" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.94" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (18 samples, 0.05%)</title><rect x="424.1" y="2001" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.15" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (70 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (70 samples, 0.20%)</title><rect x="533.4" y="1937" width="2.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.39" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (64 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.park in Lsun/misc/Unsafe:.park (64 samples, 0.18%)</title><rect x="317.9" y="2001" width="2.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.85" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('zoo_htonll (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>zoo_htonll (4 samples, 0.01%)</title><rect x="610.6" y="2017" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="613.64" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,578 samples, 7.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,578 samples, 7.22%)</title><rect x="75.9" y="1841" width="85.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::lock_without_safepoint_check (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::lock_without_safepoint_check (4 samples, 0.01%)</title><rect x="310.1" y="1969" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="313.06" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="276.8" y="2001" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.78" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="561.0" y="1969" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.98" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call_after_swapgs (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call_after_swapgs (10 samples, 0.03%)</title><rect x="154.5" y="49" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="157.53" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_rq_clock (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_rq_clock (20 samples, 0.06%)</title><rect x="57.1" y="1969" width="0.6" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="60.05" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="385" width="84.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_disable_all (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_disable_all (4 samples, 0.01%)</title><rect x="182.3" y="1985" width="0.1" height="15.0" fill="rgb(241,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="185.28" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_out (32 samples, 0.09%)</title><rect x="950.0" y="2017" width="1.0" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="952.98" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.02%)</title><rect x="569.0" y="2001" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.01" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.getEntryAfterMiss in Lscala/concurrent/BlockContext$:.current (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.getEntryAfterMiss in Lscala/concurrent/BlockContext$:.current (24 samples, 0.07%)</title><rect x="769.4" y="2033" width="0.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="772.37" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="283.3" y="1985" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.32" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/generic/Growable$class:.$plus$plus$eq in Lscala/collection/mutable/ArrayBuffer:.$plus$plus$eq (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/generic/Growable$class:.$plus$plus$eq in Lscala/collection/mutable/ArrayBuffer:.$plus$plus$eq (5 samples, 0.01%)</title><rect x="516.1" y="2017" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (56 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (56 samples, 0.16%)</title><rect x="546.9" y="1889" width="1.9" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.90" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Vector$:.newBuilder in Lscala/LowPriorityImplicits$$anon$4:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Vector$:.newBuilder in Lscala/LowPriorityImplicits$$anon$4:.apply (4 samples, 0.01%)</title><rect x="525.4" y="2017" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="436.1" y="1889" width="0.3" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.14" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('find_next_bit (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_next_bit (5 samples, 0.01%)</title><rect x="969.0" y="2017" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.01" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_mutex_cond_lock (5 samples, 0.01%)</title><rect x="692.4" y="1969" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.39" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesos::OfferID::~OfferID (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesos::OfferID::~OfferID (4 samples, 0.01%)</title><rect x="421.1" y="2017" width="0.1" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_enable_all (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (11 samples, 0.03%)</title><rect x="492.9" y="2001" width="0.4" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.94" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_one_bytecode (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_one_bytecode (15 samples, 0.04%)</title><rect x="1072.7" y="1745" width="0.5" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.73" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('StringTable::buckets_unlink (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringTable::buckets_unlink (26 samples, 0.07%)</title><rect x="1077.0" y="1873" width="0.9" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="1080.00" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (28 samples, 0.08%)</title><rect x="584.9" y="1985" width="1.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.getEntry in Lcom/google/protobuf/AbstractMessage:.equals (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.getEntry in Lcom/google/protobuf/AbstractMessage:.equals (8 samples, 0.02%)</title><rect x="381.3" y="2017" width="0.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.29" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="448.8" y="1937" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.80" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hash_futex (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hash_futex (13 samples, 0.04%)</title><rect x="110.3" y="49" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="113.35" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="1056.6" y="1905" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.61" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CollectedHeap::allocate_from_tlab_slow (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CollectedHeap::allocate_from_tlab_slow (5 samples, 0.01%)</title><rect x="259.3" y="1969" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.30" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__cxxabiv1::__vmi_class_type_info::__do_dyncast (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__cxxabiv1::__vmi_class_type_info::__do_dyncast (5 samples, 0.01%)</title><rect x="248.8" y="2017" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.80" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_timedwait@@GLIBC_2.3.2 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (6 samples, 0.02%)</title><rect x="59.1" y="1985" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="62.13" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/DynamicPipelines$$anonfun$eventPipeline$1:.apply in Lspray/io/DynamicPipelines$$anonfun$eventPipeline$1:.apply (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/DynamicPipelines$$anonfun$eventPipeline$1:.apply in Lspray/io/DynamicPipelines$$anonfun$eventPipeline$1:.apply (7 samples, 0.02%)</title><rect x="1059.0" y="2033" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.02" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/WrappedArray$ofRef:.length in Lscala/collection/mutable/WrappedArray$ofRef:.length (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/WrappedArray$ofRef:.length in Lscala/collection/mutable/WrappedArray$ofRef:.length (12 samples, 0.03%)</title><rect x="539.5" y="2017" width="0.4" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.47" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/net/URL:.init in Lorg/eclipse/jetty/util/resource/JarFileResource:.exists (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/net/URL:.init in Lorg/eclipse/jetty/util/resource/JarFileResource:.exists (12 samples, 0.03%)</title><rect x="201.4" y="2001" width="0.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.45" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('resched_task (47 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>resched_task (47 samples, 0.13%)</title><rect x="42.1" y="1969" width="1.5" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.05" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (596 samples, 1.67%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (596 samples, 1.67%)</title><rect x="832.4" y="2001" width="19.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="835.42" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.freeEntry in Ljava/util/zip/ZipFile:.freeEntry (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.freeEntry in Ljava/util/zip/ZipFile:.freeEntry (5 samples, 0.01%)</title><rect x="901.9" y="2033" width="0.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="904.94" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="436.1" y="1905" width="0.3" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.14" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (20 samples, 0.06%)</title><rect x="1055.0" y="2001" width="0.7" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.99" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__hrtimer_start_range_ns (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__hrtimer_start_range_ns (4 samples, 0.01%)</title><rect x="179.9" y="2001" width="0.1" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.90" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_disable_asynccancel (27 samples, 0.08%)</title><rect x="338.6" y="1969" width="0.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.64" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call_after_swapgs (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call_after_swapgs (15 samples, 0.04%)</title><rect x="1003.5" y="2017" width="0.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="1006.54" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::DispatchEvent::visit (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::DispatchEvent::visit (6 samples, 0.02%)</title><rect x="455.6" y="1985" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="458.64" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (5 samples, 0.01%)</title><rect x="168.2" y="1953" width="0.1" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.17" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::operator[] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::operator[] (4 samples, 0.01%)</title><rect x="193.5" y="2001" width="0.1" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.48" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetMethodID (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetMethodID (42 samples, 0.12%)</title><rect x="66.8" y="1985" width="1.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.77" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,573 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,573 samples, 7.20%)</title><rect x="75.9" y="1649" width="85.0" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::tableboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::find_node (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::tableboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::find_node (7 samples, 0.02%)</title><rect x="165.2" y="1953" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.23" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('idle_cpu (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>idle_cpu (4 samples, 0.01%)</title><rect x="174.4" y="1969" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.38" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (20 samples, 0.06%)</title><rect x="731.6" y="1889" width="0.6" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.57" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/Descriptors$FieldDescriptor:.compareTo in Lcom/google/protobuf/Descriptors$FieldDescriptor:.compareTo (158 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/Descriptors$FieldDescriptor:.compareTo in Lcom/google/protobuf/Descriptors$FieldDescriptor:.compareTo (158 samples, 0.44%)</title><rect x="712.4" y="2033" width="5.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (115 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (115 samples, 0.32%)</title><rect x="1059.3" y="2017" width="3.8" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.29" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (17 samples, 0.05%)</title><rect x="1044.5" y="2017" width="0.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="1047.48" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/Descriptors$Descriptor:.getFields in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (158 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/Descriptors$Descriptor:.getFields in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (158 samples, 0.44%)</title><rect x="707.2" y="2033" width="5.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="710.22" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::DispatchEvent::~DispatchEvent (354 samples, 0.99%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::DispatchEvent::~DispatchEvent (354 samples, 0.99%)</title><rect x="455.2" y="2017" width="11.7" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="458.24" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (5 samples, 0.01%)</title><rect x="613.0" y="2001" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="616.02" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (21 samples, 0.06%)</title><rect x="933.0" y="1313" width="0.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.97" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PSPromotionManager::drain_stacks_depth (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PSPromotionManager::drain_stacks_depth (19 samples, 0.05%)</title><rect x="1067.2" y="1969" width="0.6" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.22" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/Array$:.copy in Lscala/collection/mutable/ResizableArray$class:.copyToArray (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/Array$:.copy in Lscala/collection/mutable/ResizableArray$class:.copyToArray (4 samples, 0.01%)</title><rect x="1028.3" y="2033" width="0.2" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.32" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_rq_clock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_rq_clock (7 samples, 0.02%)</title><rect x="160.2" y="49" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.18" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/regex/Matcher:.init in Ljava/util/regex/Pattern:.matcher (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/regex/Matcher:.init in Ljava/util/regex/Pattern:.matcher (6 samples, 0.02%)</title><rect x="399.2" y="2017" width="0.2" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.24" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParseGenerator::generate (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParseGenerator::generate (20 samples, 0.06%)</title><rect x="1072.7" y="1905" width="0.6" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.67" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="1058.4" y="1937" width="0.1" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.36" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_from_native (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_from_native (6 samples, 0.02%)</title><rect x="874.2" y="1985" width="0.1" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="877.15" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (190 samples, 0.53%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/misc/Unsafe:.unpark in Lsun/misc/Unsafe:.unpark (190 samples, 0.53%)</title><rect x="383.9" y="2001" width="6.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="386.90" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('oop_disjoint_arraycopy (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>oop_disjoint_arraycopy (16 samples, 0.04%)</title><rect x="1038.3" y="2017" width="0.6" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1041.34" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_enable_asynccancel (10 samples, 0.03%)</title><rect x="189.8" y="2001" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="192.78" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Thread:.interrupted in Lscala/concurrent/forkjoin/ForkJoinPool:.scan (87 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Thread:.interrupted in Lscala/concurrent/forkjoin/ForkJoinPool:.scan (87 samples, 0.24%)</title><rect x="317.1" y="2017" width="2.9" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.13" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('inc_ref_counter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>inc_ref_counter (8 samples, 0.02%)</title><rect x="299.4" y="2017" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="302.38" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$RepeatedFieldAccessor:.get (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$RepeatedFieldAccessor:.get (32 samples, 0.09%)</title><rect x="770.9" y="2033" width="1.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="773.89" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_NewObjectV (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_NewObjectV (33 samples, 0.09%)</title><rect x="64.9" y="1985" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.95" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call_helper (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call_helper (5 samples, 0.01%)</title><rect x="442.6" y="1873" width="0.2" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.59" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="442.6" y="1841" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.62" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (5 samples, 0.01%)</title><rect x="60.0" y="2001" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="63.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::ILock (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::ILock (8 samples, 0.02%)</title><rect x="333.1" y="1953" width="0.3" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.12" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (42 samples, 0.12%)</title><rect x="173.7" y="1985" width="1.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="176.69" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::register_finalizer (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::register_finalizer (21 samples, 0.06%)</title><rect x="265.1" y="1985" width="0.6" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.05" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/TrieMap:.RDCSS_Complete in Lscala/collection/concurrent/TrieMap:.RDCSS_ROOT (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/TrieMap:.RDCSS_Complete in Lscala/collection/concurrent/TrieMap:.RDCSS_ROOT (5 samples, 0.01%)</title><rect x="512.9" y="2017" width="0.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.87" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_tree_increment (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_tree_increment (23 samples, 0.06%)</title><rect x="230.8" y="2001" width="0.8" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.82" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,573 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,573 samples, 7.20%)</title><rect x="75.9" y="1617" width="85.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_tree_increment (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_tree_increment (14 samples, 0.04%)</title><rect x="563.1" y="2017" width="0.5" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.12" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/jar/JarFile$1:.nextElement in Ljava/util/jar/JarFile$1:.nextElement (212 samples, 0.59%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/jar/JarFile$1:.nextElement in Ljava/util/jar/JarFile$1:.nextElement (212 samples, 0.59%)</title><rect x="859.1" y="2033" width="7.0" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="862.08" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Ownedprocess::Latch::get (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Ownedprocess::Latch::get (4 samples, 0.01%)</title><rect x="470.1" y="2017" width="0.1" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('StringTable::oops_do (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringTable::oops_do (19 samples, 0.05%)</title><rect x="1077.9" y="1873" width="0.6" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1080.86" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (111 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (111 samples, 0.31%)</title><rect x="930.8" y="1889" width="3.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.78" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('schedule (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (13 samples, 0.04%)</title><rect x="1001.5" y="2017" width="0.4" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="1004.49" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="283.3" y="2001" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.29" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_Thread::park_blocker (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_Thread::park_blocker (9 samples, 0.03%)</title><rect x="313.7" y="1969" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.66" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (59 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (59 samples, 0.17%)</title><rect x="437.2" y="1905" width="1.9" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.17" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ksize (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ksize (6 samples, 0.02%)</title><rect x="626.5" y="2017" width="0.2" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.47" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="502.9" y="1873" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.89" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (16 samples, 0.04%)</title><rect x="731.7" y="1873" width="0.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.67" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (52 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (52 samples, 0.15%)</title><rect x="520.5" y="1921" width="1.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.50" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('oop_disjoint_arraycopy (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>oop_disjoint_arraycopy (6 samples, 0.02%)</title><rect x="1040.0" y="2017" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="1042.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::GarbageCollector::exited (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::GarbageCollector::exited (10 samples, 0.03%)</title><rect x="206.2" y="2001" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.24" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadLocalAllocBuffer::clear_before_allocation (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocBuffer::clear_before_allocation (8 samples, 0.02%)</title><rect x="681.9" y="1969" width="0.3" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="684.94" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="436.1" y="1937" width="0.3" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.14" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (11 samples, 0.03%)</title><rect x="389.8" y="1985" width="0.4" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="392.82" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="201.4" y="1969" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.45" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (13 samples, 0.04%)</title><rect x="162.7" y="1937" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.69" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Clock::now (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Clock::now (10 samples, 0.03%)</title><rect x="166.1" y="1953" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.06" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="276.4" y="1921" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.42" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Promisemesos::internal::state::Variable::~Promise (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Promisemesos::internal::state::Variable::~Promise (36 samples, 0.10%)</title><rect x="479.6" y="2017" width="1.2" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.59" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (29 samples, 0.08%)</title><rect x="1074.9" y="1761" width="1.0" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="1077.91" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Latch::~Latch (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Latch::~Latch (10 samples, 0.03%)</title><rect x="469.8" y="2017" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::dequestd::functionvoid (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::dequestd::functionvoid (14 samples, 0.04%)</title><rect x="572.9" y="2017" width="0.5" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/io/FileOutputStream:.write in Lsun/nio/cs/StreamEncoder:.implWrite (59 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/io/FileOutputStream:.write in Lsun/nio/cs/StreamEncoder:.implWrite (59 samples, 0.17%)</title><rect x="730.5" y="2033" width="2.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.52" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="193.0" y="1937" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.02" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::UPID::UPID (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::UPID::UPID (8 samples, 0.02%)</title><rect x="211.8" y="2001" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="214.82" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="169.9" y="1953" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.92" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Character:.toLowerCase in Lorg/joda/time/format/DateTimeFormatterBuilder$CharacterLiteral:.parseInto (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Character:.toLowerCase in Lorg/joda/time/format/DateTimeFormatterBuilder$CharacterLiteral:.parseInto (14 samples, 0.04%)</title><rect x="301.4" y="2017" width="0.4" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="304.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('task_waking_fair (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>task_waking_fair (4 samples, 0.01%)</title><rect x="216.6" y="1985" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="219.58" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_org_apache_mesos_state_AbstractState__1_1fetch (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_org_apache_mesos_state_AbstractState__1_1fetch (13 samples, 0.04%)</title><rect x="371.5" y="2001" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.51" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/VectorBuilder:.$plus$plus$eq in Lscala/collection/immutable/VectorBuilder:.$plus$plus$eq (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/VectorBuilder:.$plus$plus$eq in Lscala/collection/immutable/VectorBuilder:.$plus$plus$eq (14 samples, 0.04%)</title><rect x="526.1" y="2017" width="0.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('put_prev_task_fair (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>put_prev_task_fair (27 samples, 0.08%)</title><rect x="999.0" y="2017" width="0.9" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="1002.05" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('VM_ParallelGCFailedAllocation::doit (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>VM_ParallelGCFailedAllocation::doit (61 samples, 0.17%)</title><rect x="1076.7" y="1937" width="2.0" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.67" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('free (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>free (16 samples, 0.04%)</title><rect x="729.7" y="2033" width="0.5" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.69" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('MutableSpace::cas_allocate (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>MutableSpace::cas_allocate (4 samples, 0.01%)</title><rect x="263.0" y="1953" width="0.1" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="265.97" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.expungeStaleEntry in Ljava/lang/ThreadLocal$ThreadLocalMap:.access$200 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.expungeStaleEntry in Ljava/lang/ThreadLocal$ThreadLocalMap:.access$200 (5 samples, 0.01%)</title><rect x="354.6" y="2017" width="0.1" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/AbstractNodeQueue:.pollNode in Lakka/actor/LightArrayRevolverScheduler$$anon$8:.nextTick (97 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/AbstractNodeQueue:.pollNode in Lakka/actor/LightArrayRevolverScheduler$$anon$8:.nextTick (97 samples, 0.27%)</title><rect x="690.6" y="2033" width="3.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.60" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipCoder:.toString in Ljava/util/zip/ZipFile:.getZipEntry (607 samples, 1.70%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipCoder:.toString in Ljava/util/zip/ZipFile:.getZipEntry (607 samples, 1.70%)</title><rect x="868.1" y="2033" width="20.0" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="871.07" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('epoll_ctl (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>epoll_ctl (8 samples, 0.02%)</title><rect x="198.2" y="2001" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.17" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1217" width="84.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (136 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_wait@@GLIBC_2.3.2 (136 samples, 0.38%)</title><rect x="217.5" y="2001" width="4.5" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="220.50" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1057" width="84.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$listActive$2:.apply (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$listActive$2:.apply (6 samples, 0.02%)</title><rect x="1052.7" y="2033" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.68" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="201.5" y="1905" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.48" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$RepeatedFieldAccessor:.get (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$RepeatedFieldAccessor:.get (45 samples, 0.13%)</title><rect x="577.1" y="2017" width="1.5" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays:.copyOf in Ljava/lang/StringBuffer:.append (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays:.copyOf in Ljava/lang/StringBuffer:.append (5 samples, 0.01%)</title><rect x="371.1" y="2017" width="0.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections:.unmodifiableList in Lorg/apache/mesos/Protos$TaskStatus$Source:.getValueDescriptor (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections:.unmodifiableList in Lorg/apache/mesos/Protos$TaskStatus$Source:.getValueDescriptor (37 samples, 0.10%)</title><rect x="794.9" y="2033" width="1.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key (17 samples, 0.05%)</title><rect x="37.9" y="1969" width="0.6" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="40.92" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="929" width="84.9" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/Descriptors$FieldDescriptor:.isExtension in Lcom/google/protobuf/GeneratedMessage:.getField (74 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/Descriptors$FieldDescriptor:.isExtension in Lcom/google/protobuf/GeneratedMessage:.getField (74 samples, 0.21%)</title><rect x="285.2" y="2017" width="2.5" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="288.21" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_RawMonitorEnter (56 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_RawMonitorEnter (56 samples, 0.16%)</title><rect x="892.2" y="1985" width="1.8" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="895.16" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryBytes in Ljava/util/zip/ZipFile:.getEntryBytes (443 samples, 1.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryBytes in Ljava/util/zip/ZipFile:.getEntryBytes (443 samples, 1.24%)</title><rect x="872.5" y="2017" width="14.6" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="875.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.init in Lsun/reflect/GeneratedMethodAccessor51:.invoke (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.init in Lsun/reflect/GeneratedMethodAccessor51:.invoke (17 samples, 0.05%)</title><rect x="738.8" y="2033" width="0.5" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="741.78" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="865" width="84.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="505.5" y="2001" width="0.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_Throwable::get_stack_trace_element (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_Throwable::get_stack_trace_element (10 samples, 0.03%)</title><rect x="356.1" y="1969" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.05" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (16 samples, 0.04%)</title><rect x="1055.1" y="1985" width="0.6" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.12" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('virtual thunk to ZooKeeperProcess::~ZooKeeperProcess (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>virtual thunk to ZooKeeperProcess::~ZooKeeperProcess (17 samples, 0.05%)</title><rect x="584.4" y="2017" width="0.5" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (158 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (158 samples, 0.44%)</title><rect x="498.8" y="1985" width="5.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.76" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="436.2" y="1873" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.18" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularEnumFieldAccessor:.get (62 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularEnumFieldAccessor:.get (62 samples, 0.17%)</title><rect x="1094.3" y="2033" width="2.0" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="1097.28" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$MarathonTask:.getVersion in Lsun/reflect/GeneratedMethodAccessor28:.invoke (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$MarathonTask:.getVersion in Lsun/reflect/GeneratedMethodAccessor28:.invoke (61 samples, 0.17%)</title><rect x="920.9" y="2033" width="2.0" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="923.91" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1137" width="84.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('plist_add (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>plist_add (17 samples, 0.05%)</title><rect x="998.5" y="2017" width="0.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="1001.49" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/SynchronousQueue$TransferStack:.transfer (219 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/SynchronousQueue$TransferStack:.transfer (219 samples, 0.61%)</title><rect x="382.9" y="2017" width="7.3" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.95" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (36 samples, 0.10%)</title><rect x="479.6" y="2001" width="1.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.59" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_trylock (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_trylock (27 samples, 0.08%)</title><rect x="348.5" y="1969" width="0.8" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="351.45" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::schedule (40 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::schedule (40 samples, 0.11%)</title><rect x="213.1" y="2001" width="1.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="216.08" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.tryCompleteAndGetListeners in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.tryCompleteAndGetListeners in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (27 samples, 0.08%)</title><rect x="1051.0" y="2033" width="0.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="1054.02" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,573 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,573 samples, 7.20%)</title><rect x="75.9" y="1665" width="85.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.init in Lsun/reflect/GeneratedMethodAccessor49:.invoke (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.init in Lsun/reflect/GeneratedMethodAccessor49:.invoke (26 samples, 0.07%)</title><rect x="737.9" y="2033" width="0.9" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="740.92" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('alloc_object (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc_object (4 samples, 0.01%)</title><rect x="65.0" y="1969" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="68.05" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (9 samples, 0.03%)</title><rect x="1047.0" y="1985" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.99" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_disable_asynccancel (4 samples, 0.01%)</title><rect x="644.7" y="2033" width="0.1" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.71" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_setspecific (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_setspecific (5 samples, 0.01%)</title><rect x="584.8" y="1985" width="0.1" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.77" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,574 samples, 7.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,574 samples, 7.21%)</title><rect x="75.9" y="1745" width="85.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="514.0" y="1921" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.99" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.freeEntry in Ljava/util/zip/ZipFile:.freeEntry (169 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.freeEntry in Ljava/util/zip/ZipFile:.freeEntry (169 samples, 0.47%)</title><rect x="860.5" y="2017" width="5.6" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="863.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ArrayBuffer:.$plus$eq in Lscala/concurrent/Future$$anonfun$sequence$1$$anonfun$apply$10$$anonfun$apply$11:.apply (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ArrayBuffer:.$plus$eq in Lscala/concurrent/Future$$anonfun$sequence$1$$anonfun$apply$10$$anonfun$apply$11:.apply (13 samples, 0.04%)</title><rect x="527.8" y="2017" width="0.5" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.84" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (135 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (135 samples, 0.38%)</title><rect x="499.4" y="1969" width="4.4" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.39" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('frame::sender (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>frame::sender (10 samples, 0.03%)</title><rect x="393.3" y="1937" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="396.29" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryCSize in Ljava/util/zip/ZipFile:.getEntryCSize (50 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryCSize in Ljava/util/zip/ZipFile:.getEntryCSize (50 samples, 0.14%)</title><rect x="406.2" y="2001" width="1.6" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="409.17" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('wake_futex (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>wake_futex (4 samples, 0.01%)</title><rect x="217.3" y="1985" width="0.1" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="220.27" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/nio/ch/EPollSelectorImpl:.doSelect in Lorg/eclipse/jetty/io/nio/SelectorManager$SelectSet:.doSelect (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/nio/ch/EPollSelectorImpl:.doSelect in Lorg/eclipse/jetty/io/nio/SelectorManager$SelectSet:.doSelect (8 samples, 0.02%)</title><rect x="1086.1" y="2033" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.08" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sys_futex (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (4 samples, 0.01%)</title><rect x="947.1" y="2017" width="0.1" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('skb_push (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>skb_push (4 samples, 0.01%)</title><rect x="628.6" y="2017" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="631.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/ArrayList:.isEmpty (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/ArrayList:.isEmpty (6 samples, 0.02%)</title><rect x="366.3" y="2017" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="369.26" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="448.8" y="1921" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.83" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$RepeatedFieldAccessor:.get (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$RepeatedFieldAccessor:.get (28 samples, 0.08%)</title><rect x="1093.4" y="2033" width="0.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="1096.35" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1345" width="84.9" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::_Rep::_M_dispose (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::_Rep::_M_dispose (5 samples, 0.01%)</title><rect x="482.0" y="1985" width="0.2" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.01" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_method_id (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_method_id (34 samples, 0.10%)</title><rect x="66.8" y="1969" width="1.1" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.80" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/ReentrantReadWriteLock$Sync:.tryAcquireShared in Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:.acquireShared (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/ReentrantReadWriteLock$Sync:.tryAcquireShared in Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:.acquireShared (6 samples, 0.02%)</title><rect x="858.9" y="2033" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="861.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wake (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wake (10 samples, 0.03%)</title><rect x="251.2" y="2001" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="254.21" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_signal@@GLIBC_2.3.2 (1,296 samples, 3.63%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_signal@@GLIBC_2.3.2 (1,296 samples, 3.63%)</title><rect x="16.3" y="1985" width="42.8" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.31" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthr..</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,584 samples, 7.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,584 samples, 7.24%)</title><rect x="75.9" y="1873" width="85.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (52 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (52 samples, 0.15%)</title><rect x="437.4" y="1889" width="1.7" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.37" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (13 samples, 0.04%)</title><rect x="337.2" y="1953" width="0.5" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.25" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/Future$$anonfun$sequence$2:.apply in Lscala/concurrent/Future$$anonfun$sequence$2:.apply (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/Future$$anonfun$sequence$2:.apply in Lscala/concurrent/Future$$anonfun$sequence$2:.apply (33 samples, 0.09%)</title><rect x="541.4" y="2017" width="1.1" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections$UnmodifiableMap:.entrySet in Lcom/google/protobuf/AbstractMessage:.hashFields (85 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections$UnmodifiableMap:.entrySet in Lcom/google/protobuf/AbstractMessage:.hashFields (85 samples, 0.24%)</title><rect x="790.5" y="2033" width="2.8" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.49" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (6 samples, 0.02%)</title><rect x="1025.5" y="2017" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="1028.55" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('typeArrayKlass::allocate_common (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>typeArrayKlass::allocate_common (4 samples, 0.01%)</title><rect x="680.1" y="2001" width="0.1" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.06" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_requeue (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_requeue (13 samples, 0.04%)</title><rect x="474.4" y="1969" width="0.4" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.37" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="1050.0" y="2017" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="1053.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait_setup (54 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_setup (54 samples, 0.15%)</title><rect x="974.8" y="2017" width="1.8" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (95 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (95 samples, 0.27%)</title><rect x="931.2" y="1729" width="3.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.21" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('do_futex (85 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (85 samples, 0.24%)</title><rect x="24.3" y="1969" width="2.8" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.34" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="436.6" y="1889" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.64" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/OWrites$$anon$2:.writes in Lplay/api/libs/json/OWrites$$anon$2:.writes (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/OWrites$$anon$2:.writes in Lplay/api/libs/json/OWrites$$anon$2:.writes (12 samples, 0.03%)</title><rect x="454.8" y="2017" width="0.4" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_rq_blocked_load (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_rq_blocked_load (24 samples, 0.07%)</title><rect x="52.6" y="1969" width="0.8" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.56" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="209" width="84.9" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('migrate_task_rq_fair (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>migrate_task_rq_fair (16 samples, 0.04%)</title><rect x="112.5" y="49" width="0.5" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.46" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (28 samples, 0.08%)</title><rect x="315.9" y="1969" width="1.0" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.94" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call_helper (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call_helper (28 samples, 0.08%)</title><rect x="62.8" y="1937" width="0.9" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.80" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_and_fence (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_and_fence (12 samples, 0.03%)</title><rect x="883.8" y="1969" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="886.80" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_L_cond_lock_886 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_L_cond_lock_886 (5 samples, 0.01%)</title><rect x="177.9" y="2001" width="0.2" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.92" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="1056.5" y="1921" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.51" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (70 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (70 samples, 0.20%)</title><rect x="421.8" y="2001" width="2.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.80" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays:.copyOf in Ljava/lang/AbstractStringBuilder:.ensureCapacityInternal (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays:.copyOf in Ljava/lang/AbstractStringBuilder:.ensureCapacityInternal (4 samples, 0.01%)</title><rect x="788.4" y="2033" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/AbstractQueuedSynchronizer:.setHeadAndPropagate in Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:.doAcquireSharedNanos (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:.setHeadAndPropagate in Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:.doAcquireSharedNanos (9 samples, 0.03%)</title><rect x="395.6" y="2017" width="0.3" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="398.60" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashMap$HashMap1:.get0 in Lscala/collection/immutable/HashMap$HashTrieMap:.get0 (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashMap$HashMap1:.get0 in Lscala/collection/immutable/HashMap$HashTrieMap:.get0 (9 samples, 0.03%)</title><rect x="518.2" y="2017" width="0.3" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('memset (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>memset (4 samples, 0.01%)</title><rect x="259.8" y="1985" width="0.1" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.80" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (5 samples, 0.01%)</title><rect x="245.2" y="2001" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="248.23" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="561.5" y="1985" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.47" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="777.7" y="2017" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.67" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetFieldID (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetFieldID (9 samples, 0.03%)</title><rect x="66.5" y="1985" width="0.3" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.47" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::pairstd::string const, std::functionprocess::Futureprocess::http::Response (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::pairstd::string const, std::functionprocess::Futureprocess::http::Response (4 samples, 0.01%)</title><rect x="565.5" y="2017" width="0.1" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('select_task_rq_fair (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_task_rq_fair (4 samples, 0.01%)</title><rect x="475.1" y="1969" width="0.1" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.10" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_ptrprocess::Ownedprocess::Latch::Data*, (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_ptrprocess::Ownedprocess::Latch::Data*, (4 samples, 0.01%)</title><rect x="570.8" y="2017" width="0.1" height="15.0" fill="rgb(183,183,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParallelScavengeHeap::unsafe_max_tlab_alloc (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParallelScavengeHeap::unsafe_max_tlab_alloc (7 samples, 0.02%)</title><rect x="264.2" y="1969" width="0.3" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.23" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="282.5" y="2001" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="561.2" y="1905" width="0.2" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.18" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (5 samples, 0.01%)</title><rect x="622.9" y="2017" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="625.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('inet_sendmsg (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>inet_sendmsg (4 samples, 0.01%)</title><rect x="624.4" y="2017" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="627.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/apache/mesos/Protos$TaskID:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$TaskID:.internalGetFieldAccessorTable (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/apache/mesos/Protos$TaskID:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$TaskID:.internalGetFieldAccessorTable (26 samples, 0.07%)</title><rect x="444.9" y="2017" width="0.9" height="15.0" fill="rgb(96,243,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/http/HttpMessage$:.connectionCloseExpected in Lspray/can/parsing/HttpMessagePartParser:.parseHeaderLines (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/http/HttpMessage$:.connectionCloseExpected in Lspray/can/parsing/HttpMessagePartParser:.parseHeaderLines (25 samples, 0.07%)</title><rect x="1057.7" y="2033" width="0.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.73" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_one_block (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_one_block (7 samples, 0.02%)</title><rect x="1072.9" y="1665" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__schedule (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (8 samples, 0.02%)</title><rect x="1017.9" y="2017" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="1020.95" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor26:.invoke in Lsun/reflect/GeneratedMethodAccessor26:.invoke (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor26:.invoke in Lsun/reflect/GeneratedMethodAccessor26:.invoke (38 samples, 0.11%)</title><rect x="1123.8" y="2033" width="1.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.82" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,590 samples, 7.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,590 samples, 7.25%)</title><rect x="75.9" y="1889" width="85.6" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Park (244 samples, 0.68%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Park (244 samples, 0.68%)</title><rect x="308.8" y="1985" width="8.1" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="311.80" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="275.8" y="1937" width="0.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.79" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/CallbackRunnable:.executeWithValue in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/CallbackRunnable:.executeWithValue in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (9 samples, 0.03%)</title><rect x="551.7" y="2017" width="0.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.66" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/Some:.hashCode (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/Some:.hashCode (4 samples, 0.01%)</title><rect x="558.0" y="2017" width="0.1" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('do_futex (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (24 samples, 0.07%)</title><rect x="966.9" y="2017" width="0.8" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="969.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/ActorCell:.lookupAndSetField (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/ActorCell:.lookupAndSetField (5 samples, 0.01%)</title><rect x="275.1" y="2017" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.10" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/generic/Growable$class:.$plus$plus$eq in Lscala/collection/mutable/ListBuffer:.$plus$plus$eq (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/generic/Growable$class:.$plus$plus$eq in Lscala/collection/mutable/ListBuffer:.$plus$plus$eq (9 samples, 0.03%)</title><rect x="516.3" y="2017" width="0.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::string, std::_Identitystd::string, std::lessstd::string, std::allocatorstd::string ::_M_erase (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::string, std::_Identitystd::string, std::lessstd::string, std::allocatorstd::string ::_M_erase (9 samples, 0.03%)</title><rect x="566.0" y="2017" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor44:.invoke (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor44:.invoke (24 samples, 0.07%)</title><rect x="1137.8" y="2033" width="0.8" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="1140.79" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="1058.8" y="2017" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1054.1" y="1985" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.13" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:.writeNumber in Lplay/api/libs/json/JsValueSerializer:.serialize (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:.writeNumber in Lplay/api/libs/json/JsValueSerializer:.serialize (5 samples, 0.01%)</title><rect x="699.1" y="2033" width="0.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="702.13" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ResizableArray$class:.$init$ in Lscala/collection/mutable/ResizableArray$class:.$init$ (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ResizableArray$class:.$init$ in Lscala/collection/mutable/ResizableArray$class:.$init$ (7 samples, 0.02%)</title><rect x="538.5" y="2017" width="0.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.51" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_context_time.isra.62 (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_context_time.isra.62 (8 samples, 0.02%)</title><rect x="158.5" y="49" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="161.46" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (13 samples, 0.04%)</title><rect x="472.6" y="1969" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.62" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNIHandles::make_local (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNIHandles::make_local (34 samples, 0.10%)</title><rect x="876.4" y="1969" width="1.2" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="879.43" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (67 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (67 samples, 0.19%)</title><rect x="501.2" y="1937" width="2.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.20" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="532.6" y="1937" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.59" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sysret_check (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sysret_check (12 samples, 0.03%)</title><rect x="1002.8" y="2017" width="0.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1005.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('finish_task_switch (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (29 samples, 0.08%)</title><rect x="969.2" y="2017" width="0.9" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.18" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (14 samples, 0.04%)</title><rect x="1055.2" y="1953" width="0.5" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.19" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::allocate_instance (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::allocate_instance (38 samples, 0.11%)</title><rect x="681.3" y="2001" width="1.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="684.25" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_disable_asynccancel (7 samples, 0.02%)</title><rect x="313.2" y="1969" width="0.2" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.16" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/INode:.GCAS_READ in Lscala/collection/concurrent/INode:.rec_lookup (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/INode:.GCAS_READ in Lscala/collection/concurrent/INode:.rec_lookup (8 samples, 0.02%)</title><rect x="512.3" y="2017" width="0.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.31" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/TraversableLike$$anonfun$map$1:.apply in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$healthCounts$1$$anonfun$8$$anonfun$apply$17:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/TraversableLike$$anonfun$map$1:.apply in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$healthCounts$1$$anonfun$8$$anonfun$apply$17:.apply (4 samples, 0.01%)</title><rect x="1030.0" y="2033" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="1033.04" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/StringBuffer:.capacity in Lorg/apache/log4j/PatternLayout:.format (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/StringBuffer:.capacity in Lorg/apache/log4j/PatternLayout:.format (4 samples, 0.01%)</title><rect x="305.0" y="2017" width="0.1" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.97" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/nio/ByteBuffer:.arrayOffset in Lsun/nio/cs/US_ASCII$Encoder:.encodeArrayLoop (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/nio/ByteBuffer:.arrayOffset in Lsun/nio/cs/US_ASCII$Encoder:.encodeArrayLoop (6 samples, 0.02%)</title><rect x="356.7" y="2017" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.68" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (129 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (129 samples, 0.36%)</title><rect x="544.8" y="1969" width="4.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.82" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_entity (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_entity (16 samples, 0.04%)</title><rect x="485.0" y="2001" width="0.5" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.01" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/pattern/PromiseActorRef:.$bang in Lmesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/pattern/PromiseActorRef:.$bang in Lmesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (13 samples, 0.04%)</title><rect x="280.4" y="2017" width="0.5" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularFieldAccessor:.get (54 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularFieldAccessor:.get (54 samples, 0.15%)</title><rect x="773.3" y="2033" width="1.8" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="776.27" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::Parse (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::Parse (7 samples, 0.02%)</title><rect x="1072.9" y="1697" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___libc_read (74 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___libc_read (74 samples, 0.21%)</title><rect x="242.0" y="2017" width="2.4" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.99" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('typeArrayKlass::allocate_common (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>typeArrayKlass::allocate_common (5 samples, 0.01%)</title><rect x="260.0" y="1985" width="0.2" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.03" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/collection/immutable/HashMap:.get (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/collection/immutable/HashMap:.get (17 samples, 0.05%)</title><rect x="558.1" y="2017" width="0.6" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_int_free (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_int_free (9 samples, 0.03%)</title><rect x="860.0" y="2017" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="862.98" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/eclipse/jetty/util/log/Slf4jLog:.debug in Lorg/eclipse/jetty/http/HttpParser:.parseNext (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/eclipse/jetty/util/log/Slf4jLog:.debug in Lorg/eclipse/jetty/http/HttpParser:.parseNext (5 samples, 0.01%)</title><rect x="448.8" y="2017" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.80" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (329 samples, 0.92%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (329 samples, 0.92%)</title><rect x="841.2" y="1985" width="10.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="844.24" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('schedule_hrtimeout_range_clock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (5 samples, 0.01%)</title><rect x="229.5" y="2001" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.50" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call_helper (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call_helper (9 samples, 0.03%)</title><rect x="265.4" y="1953" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.38" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="97" width="84.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (77 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (77 samples, 0.22%)</title><rect x="533.2" y="1969" width="2.5" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.16" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/Statics:.anyHash in Lscala/runtime/Statics:.anyHash (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/Statics:.anyHash in Lscala/runtime/Statics:.anyHash (19 samples, 0.05%)</title><rect x="1053.7" y="2033" width="0.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="1056.70" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,571 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,571 samples, 7.20%)</title><rect x="75.9" y="1569" width="85.0" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1056.7" y="1889" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.74" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (36 samples, 0.10%)</title><rect x="496.0" y="2017" width="1.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.98" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_and_fence (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_and_fence (5 samples, 0.01%)</title><rect x="874.0" y="1985" width="0.2" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="876.99" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/apache/mesos/Protos$TaskStatus:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$TaskStatus:.internalGetFieldAccessorTable (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/apache/mesos/Protos$TaskStatus:.internalGetFieldAccessorTable in Lorg/apache/mesos/Protos$TaskStatus:.internalGetFieldAccessorTable (13 samples, 0.04%)</title><rect x="929.8" y="2033" width="0.5" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="932.83" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_destroy@@GLIBC_2.3.2 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_destroy@@GLIBC_2.3.2 (6 samples, 0.02%)</title><rect x="692.8" y="1969" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.78" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:.lock in Lmesosphere/marathon/health/MarathonHealthCheckManager:.withReadLock (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:.lock in Lmesosphere/marathon/health/MarathonHealthCheckManager:.withReadLock (15 samples, 0.04%)</title><rect x="398.7" y="2017" width="0.5" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.67" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/field/PreciseDateTimeField:.get (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/field/PreciseDateTimeField:.get (4 samples, 0.01%)</title><rect x="450.9" y="2017" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.95" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/field/PreciseDateTimeField:.get in Lorg/joda/time/field/PreciseDateTimeField:.set (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/field/PreciseDateTimeField:.get in Lorg/joda/time/field/PreciseDateTimeField:.set (9 samples, 0.03%)</title><rect x="937.0" y="2033" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('malloc (358 samples, 1.00%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>malloc (358 samples, 1.00%)</title><rect x="902.9" y="2033" width="11.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="905.86" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::dequeprocess::Event*, std::allocatorprocess::Event* ::operator= (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::dequeprocess::Event*, std::allocatorprocess::Event* ::operator= (7 samples, 0.02%)</title><rect x="572.7" y="2017" width="0.2" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.71" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock_irqsave (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock_irqsave (21 samples, 0.06%)</title><rect x="21.7" y="1969" width="0.7" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.70" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (34 samples, 0.10%)</title><rect x="521.0" y="1889" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="524.00" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (26 samples, 0.07%)</title><rect x="940.4" y="2001" width="0.9" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.40" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (14 samples, 0.04%)</title><rect x="943.7" y="2001" width="0.5" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.70" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JNIEnv_::CallObjectMethod (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JNIEnv_::CallObjectMethod (12 samples, 0.03%)</title><rect x="64.5" y="2001" width="0.3" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.45" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Set$Set1:.foreach in Lscala/collection/immutable/Set$Set1:.foreach (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Set$Set1:.foreach in Lscala/collection/immutable/Set$Set1:.foreach (68 samples, 0.19%)</title><rect x="436.9" y="2001" width="2.3" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.90" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="561.5" y="1969" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.51" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashSet$HashTrieSet:.foreach (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashSet$HashTrieSet:.foreach (13 samples, 0.04%)</title><rect x="436.5" y="2001" width="0.4" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.47" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('deactivate_task (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>deactivate_task (7 samples, 0.02%)</title><rect x="962.2" y="2017" width="0.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.17" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::register_finalizer (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::register_finalizer (24 samples, 0.07%)</title><rect x="265.0" y="2001" width="0.7" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.95" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1061.8" y="1873" width="0.1" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.76" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Park (53 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Park (53 samples, 0.15%)</title><rect x="318.2" y="1985" width="1.7" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.18" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__kmalloc_node_track_caller (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__kmalloc_node_track_caller (12 samples, 0.03%)</title><rect x="620.8" y="2017" width="0.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="623.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (5 samples, 0.01%)</title><rect x="587.5" y="1969" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.54" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::resume (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::resume (12 samples, 0.03%)</title><rect x="456.5" y="1985" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.47" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="505.5" y="1969" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.53" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="1058.4" y="1921" width="0.1" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.36" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('zookeeper_process (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>zookeeper_process (41 samples, 0.11%)</title><rect x="611.8" y="2017" width="1.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="614.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="1053.1" y="2017" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="1056.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/regex/Pattern$BnM:.optimize in Ljava/util/regex/Pattern$BnM:.optimize (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/regex/Pattern$BnM:.optimize in Ljava/util/regex/Pattern$BnM:.optimize (6 samples, 0.02%)</title><rect x="399.7" y="2017" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.73" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/ActorCell:.shouldStash$1 in Lakka/actor/ActorCell:.invokeAll$1 (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/ActorCell:.shouldStash$1 in Lakka/actor/ActorCell:.invokeAll$1 (28 samples, 0.08%)</title><rect x="275.3" y="2017" width="1.0" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.33" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Scheduler$class:.scheduleOnce in Lakka/pattern/PromiseActorRef$:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Scheduler$class:.scheduleOnce in Lakka/pattern/PromiseActorRef$:.apply (4 samples, 0.01%)</title><rect x="193.2" y="2001" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.22" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/reflect/ClassTag$:.apply in Lscala/reflect/ClassTag$:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/reflect/ClassTag$:.apply in Lscala/reflect/ClassTag$:.apply (4 samples, 0.01%)</title><rect x="557.7" y="2017" width="0.1" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.67" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::pop_and_restore (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::pop_and_restore (17 samples, 0.05%)</title><rect x="875.9" y="1969" width="0.5" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="878.87" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('tcp_push (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_push (5 samples, 0.01%)</title><rect x="630.0" y="2017" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="633.04" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/http/Renderer$RenderableRenderer$:.render in Lspray/http/HttpDataRendering:.$tilde$tilde (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/http/Renderer$RenderableRenderer$:.render in Lspray/http/HttpDataRendering:.$tilde$tilde (18 samples, 0.05%)</title><rect x="1061.9" y="1921" width="0.6" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.93" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/Future$$anonfun$sequence$1$$anonfun$apply$10$$anonfun$apply$11:.apply in Lscala/concurrent/Future$$anonfun$sequence$1$$anonfun$apply$10$$anonfun$apply$11:.apply (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/Future$$anonfun$sequence$1$$anonfun$apply$10$$anonfun$apply$11:.apply in Lscala/concurrent/Future$$anonfun$sequence$1$$anonfun$apply$10$$anonfun$apply$11:.apply (17 samples, 0.05%)</title><rect x="540.7" y="2017" width="0.5" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.66" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Throwable:.getStackTraceElement (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Throwable:.getStackTraceElement (10 samples, 0.03%)</title><rect x="356.1" y="2001" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.05" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('newEntry.isra.4 (99 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>newEntry.isra.4 (99 samples, 0.28%)</title><rect x="897.3" y="1985" width="3.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="900.28" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hash_futex (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hash_futex (20 samples, 0.06%)</title><rect x="38.6" y="1969" width="0.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="41.65" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (21 samples, 0.06%)</title><rect x="184.5" y="1985" width="0.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="187.53" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessBase::link (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessBase::link (5 samples, 0.01%)</title><rect x="206.8" y="2001" width="0.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.83" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1313" width="84.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ResizableArray$class:.$init$ in Lscala/collection/mutable/ArrayBuffer$:.newBuilder (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ResizableArray$class:.$init$ in Lscala/collection/mutable/ArrayBuffer$:.newBuilder (4 samples, 0.01%)</title><rect x="538.0" y="2017" width="0.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.01" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections:.unmodifiableMap in Lcom/google/protobuf/GeneratedMessage:.getAllFields (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections:.unmodifiableMap in Lcom/google/protobuf/GeneratedMessage:.getAllFields (6 samples, 0.02%)</title><rect x="796.1" y="2033" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.10" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (97 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (97 samples, 0.27%)</title><rect x="931.1" y="1777" width="3.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.15" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="1061.4" y="1857" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.40" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="282.7" y="1985" width="0.2" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.73" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="161" width="84.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::jvm_raw_unlock (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::jvm_raw_unlock (22 samples, 0.06%)</title><rect x="891.2" y="2001" width="0.7" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="894.17" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_rethrow_Java (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_rethrow_Java (10 samples, 0.03%)</title><rect x="265.7" y="2017" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.75" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('clear_buddies (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>clear_buddies (9 samples, 0.03%)</title><rect x="131.9" y="49" width="0.3" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="134.89" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Unpark (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Unpark (15 samples, 0.04%)</title><rect x="1046.8" y="2001" width="0.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.80" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/field/PreciseDurationDateTimeField:.roundFloor in Lorg/joda/time/field/PreciseDurationDateTimeField:.roundFloor (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/field/PreciseDurationDateTimeField:.roundFloor in Lorg/joda/time/field/PreciseDurationDateTimeField:.roundFloor (5 samples, 0.01%)</title><rect x="451.4" y="2017" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('free (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>free (4 samples, 0.01%)</title><rect x="169.6" y="1969" width="0.1" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.56" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SharedRuntime::complete_monitor_locking_C (89 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SharedRuntime::complete_monitor_locking_C (89 samples, 0.25%)</title><rect x="255.5" y="2001" width="2.9" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="258.47" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('rb_erase (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>rb_erase (4 samples, 0.01%)</title><rect x="228.2" y="2001" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.21" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (79 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (79 samples, 0.22%)</title><rect x="440.4" y="2001" width="2.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.44" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_method_id (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_method_id (4 samples, 0.01%)</title><rect x="69.6" y="1969" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.64" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/collection/mutable/SetBuilder:.$plus$eq (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/collection/mutable/SetBuilder:.$plus$eq (17 samples, 0.05%)</title><rect x="559.2" y="2017" width="0.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.19" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::find_field (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::find_field (4 samples, 0.01%)</title><rect x="73.3" y="1969" width="0.2" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.34" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="201.4" y="1985" width="0.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.45" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="10.5" y="2033" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.53" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::jvm_raw_unlock (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::jvm_raw_unlock (32 samples, 0.09%)</title><rect x="894.1" y="1985" width="1.1" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="897.14" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('tcp_recvmsg (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_recvmsg (13 samples, 0.04%)</title><rect x="619.1" y="2017" width="0.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.07" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="442.6" y="1825" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.62" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/collection/mutable/MapLike$class:.getOrElseUpdate (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/collection/mutable/MapLike$class:.getOrElseUpdate (5 samples, 0.01%)</title><rect x="559.0" y="2017" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/regex/Pattern$GroupHead:.match in Ljava/util/regex/Pattern$Branch:.match (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/regex/Pattern$GroupHead:.match in Ljava/util/regex/Pattern$Branch:.match (9 samples, 0.03%)</title><rect x="866.2" y="2033" width="0.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="869.22" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (33 samples, 0.09%)</title><rect x="689.1" y="1969" width="1.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="692.08" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor22:.invoke in Lsun/reflect/GeneratedMethodAccessor22:.invoke (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor22:.invoke in Lsun/reflect/GeneratedMethodAccessor22:.invoke (48 samples, 0.13%)</title><rect x="1118.2" y="2033" width="1.6" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="1121.23" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_call (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_call (4 samples, 0.01%)</title><rect x="1072.9" y="1537" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('idle_balance (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>idle_balance (21 samples, 0.06%)</title><rect x="979.7" y="2017" width="0.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="982.72" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('zookeeper_interest (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>zookeeper_interest (30 samples, 0.08%)</title><rect x="610.8" y="2017" width="1.0" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="613.77" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (16 samples, 0.04%)</title><rect x="706.3" y="2017" width="0.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.30" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('resched_task (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>resched_task (4 samples, 0.01%)</title><rect x="637.8" y="2017" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (70 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (70 samples, 0.20%)</title><rect x="271.2" y="1857" width="2.3" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.23" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_NewStringUTF (87 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_NewStringUTF (87 samples, 0.24%)</title><rect x="69.8" y="1985" width="2.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.77" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="1028.9" y="2017" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.89" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Timer::create (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Timer::create (10 samples, 0.03%)</title><rect x="946.1" y="2033" width="0.4" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="949.15" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Dictionary::oops_do (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Dictionary::oops_do (9 samples, 0.03%)</title><rect x="1066.5" y="1953" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.49" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::pop_and_restore (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::pop_and_restore (19 samples, 0.05%)</title><rect x="326.7" y="1969" width="0.6" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="329.68" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (58 samples, 0.16%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (58 samples, 0.16%)</title><rect x="730.5" y="1969" width="2.0" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.55" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="849" width="84.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (7 samples, 0.02%)</title><rect x="550.3" y="1969" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.34" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call (13 samples, 0.04%)</title><rect x="117.9" y="49" width="0.4" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.92" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Deque_baseprocess::Event*, std::allocatorprocess::Event* ::_M_initialize_map (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Deque_baseprocess::Event*, std::allocatorprocess::Event* ::_M_initialize_map (5 samples, 0.01%)</title><rect x="561.9" y="2017" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="504.4" y="1953" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.44" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parker::unpark (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parker::unpark (5 samples, 0.01%)</title><rect x="384.4" y="1985" width="0.1" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="387.37" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___socket (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___socket (4 samples, 0.01%)</title><rect x="615.1" y="2033" width="0.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="618.13" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ExitedEvent::~ExitedEvent (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ExitedEvent::~ExitedEvent (45 samples, 0.13%)</title><rect x="467.1" y="2017" width="1.5" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="276.4" y="1985" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.35" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.root in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.root in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (8 samples, 0.02%)</title><rect x="1050.7" y="2033" width="0.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1053.66" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait_queue_me (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (7 samples, 0.02%)</title><rect x="85.9" y="49" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="88.86" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/security/AccessController:.doPrivileged (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/security/AccessController:.doPrivileged (6 samples, 0.02%)</title><rect x="201.6" y="1809" width="0.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.61" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (55 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (55 samples, 0.15%)</title><rect x="932.4" y="1425" width="1.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.40" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('typeArrayKlass::allocate_common (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>typeArrayKlass::allocate_common (12 samples, 0.03%)</title><rect x="72.2" y="1921" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="75.22" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('frame::oops_interpreted_do (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>frame::oops_interpreted_do (4 samples, 0.01%)</title><rect x="1070.6" y="1953" width="0.1" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.55" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('timerqueue_add (31 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>timerqueue_add (31 samples, 0.09%)</title><rect x="237.9" y="2001" width="1.0" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.92" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="777.1" y="2001" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.14" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key (8 samples, 0.02%)</title><rect x="486.7" y="2001" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.73" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/parboiled/scala/rules/Rule$$anonfun$push$1:.apply in Lorg/parboiled/matchers/ActionMatcher:.match (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/parboiled/scala/rules/Rule$$anonfun$push$1:.apply in Lorg/parboiled/matchers/ActionMatcher:.match (6 samples, 0.02%)</title><rect x="453.0" y="2017" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="272.9" y="1761" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.85" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/util/Timestamp$:.$plus$extension in Lspray/io/ConnectionTimeouts$$anon$2$$anon$1:.process (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/util/Timestamp$:.$plus$extension in Lspray/io/ConnectionTimeouts$$anon$2$$anon$1:.process (4 samples, 0.01%)</title><rect x="1064.0" y="2033" width="0.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="1066.98" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (54 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (54 samples, 0.15%)</title><rect x="730.7" y="1953" width="1.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.68" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_new_instance_Java (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_new_instance_Java (61 samples, 0.17%)</title><rect x="680.7" y="2033" width="2.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.69" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_entity (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_entity (16 samples, 0.04%)</title><rect x="84.5" y="49" width="0.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.51" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__schedule (81 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (81 samples, 0.23%)</title><rect x="951.2" y="2017" width="2.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="954.24" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (7 samples, 0.02%)</title><rect x="588.0" y="1985" width="0.3" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.04" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="1055.4" y="1921" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.39" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (21 samples, 0.06%)</title><rect x="504.0" y="2001" width="0.7" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.01" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::current_park_blocker (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::current_park_blocker (9 samples, 0.03%)</title><rect x="308.3" y="1985" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="311.27" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::use (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::use (5 samples, 0.01%)</title><rect x="586.6" y="1985" width="0.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.58" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('check_preempt_wakeup (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>check_preempt_wakeup (4 samples, 0.01%)</title><rect x="23.8" y="1969" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.84" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Integer:.toString in Lorg/joda/time/format/FormatUtils:.appendPaddedInteger (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Integer:.toString in Lorg/joda/time/format/FormatUtils:.appendPaddedInteger (4 samples, 0.01%)</title><rect x="734.0" y="2033" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="737.02" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_java_util_zip_ZipFile_getEntryBytes (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_java_util_zip_ZipFile_getEntryBytes (11 samples, 0.03%)</title><rect x="402.0" y="2001" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.01" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (7 samples, 0.02%)</title><rect x="632.3" y="2017" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.32" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('strlen (51 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>strlen (51 samples, 0.14%)</title><rect x="885.5" y="2001" width="1.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="888.45" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashSet$HashSet1:.updated0 in Lscala/collection/immutable/HashSet$HashTrieSet:.updated0 (50 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashSet$HashSet1:.updated0 in Lscala/collection/immutable/HashSet$HashTrieSet:.updated0 (50 samples, 0.14%)</title><rect x="518.5" y="2017" width="1.7" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.52" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="1061.4" y="1841" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.43" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/nio/cs/UTF_8:.updatePositions in Lsun/nio/cs/UTF_8$Encoder:.encodeArrayLoop (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/nio/cs/UTF_8:.updatePositions in Lsun/nio/cs/UTF_8$Encoder:.encodeArrayLoop (12 samples, 0.03%)</title><rect x="576.7" y="2017" width="0.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.67" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/ArrayList$Itr:.next in Ljava/util/Collections$UnmodifiableList:.hashCode (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/ArrayList$Itr:.next in Ljava/util/Collections$UnmodifiableList:.hashCode (9 samples, 0.03%)</title><rect x="782.7" y="2033" width="0.3" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="785.72" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1489" width="84.9" height="15.0" fill="rgb(224,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/LockSupport:.unpark in Ljava/util/concurrent/SynchronousQueue$TransferStack:.transfer (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/LockSupport:.unpark in Ljava/util/concurrent/SynchronousQueue$TransferStack:.transfer (37 samples, 0.10%)</title><rect x="397.4" y="2017" width="1.2" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.35" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('select_task_rq_fair (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_task_rq_fair (9 samples, 0.03%)</title><rect x="487.8" y="2001" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.76" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_String::create_from_str (76 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_String::create_from_str (76 samples, 0.21%)</title><rect x="70.1" y="1953" width="2.5" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="73.14" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (9 samples, 0.03%)</title><rect x="85.6" y="49" width="0.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="88.57" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::jvm_raw_lock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::jvm_raw_lock (4 samples, 0.01%)</title><rect x="894.0" y="1985" width="0.1" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="897.01" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SharedRuntime::raw_exception_handler_for_return_address (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SharedRuntime::raw_exception_handler_for_return_address (9 samples, 0.03%)</title><rect x="265.8" y="2001" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.78" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (25 samples, 0.07%)</title><rect x="534.5" y="1889" width="0.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="537.48" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (93 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (93 samples, 0.26%)</title><rect x="931.3" y="1697" width="3.1" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.28" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('idle_balance (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>idle_balance (7 samples, 0.02%)</title><rect x="144.8" y="49" width="0.2" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.78" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.tryCompleteAndGetListeners in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (49 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.tryCompleteAndGetListeners in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (49 samples, 0.14%)</title><rect x="555.8" y="2017" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="448.8" y="1985" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.80" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.getFirstEntry in Ljava/util/TreeMap$EntrySet:.iterator (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.getFirstEntry in Ljava/util/TreeMap$EntrySet:.iterator (6 samples, 0.02%)</title><rect x="807.9" y="2033" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="810.87" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ArrayBuffer:.$plus$eq in Lscala/collection/mutable/ArrayBuffer:.$plus$eq (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ArrayBuffer:.$plus$eq in Lscala/collection/mutable/ArrayBuffer:.$plus$eq (4 samples, 0.01%)</title><rect x="527.7" y="2017" width="0.1" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_Thread::park_event (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_Thread::park_event (19 samples, 0.05%)</title><rect x="385.8" y="1969" width="0.6" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="388.79" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="783.7" y="2001" width="0.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.68" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.charAt in Lorg/joda/time/format/DateTimeFormatterBuilder$NumberFormatter:.parseInto (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.charAt in Lorg/joda/time/format/DateTimeFormatterBuilder$NumberFormatter:.parseInto (8 samples, 0.02%)</title><rect x="735.8" y="2033" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.80" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (5 samples, 0.01%)</title><rect x="1019.4" y="2017" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.37" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1425" width="84.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('ttwu_do_activate.constprop.98 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ttwu_do_activate.constprop.98 (6 samples, 0.02%)</title><rect x="51.9" y="1969" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.90" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ipt_do_table (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ipt_do_table (18 samples, 0.05%)</title><rect x="625.2" y="2017" width="0.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="628.21" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_int_free (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_int_free (8 samples, 0.02%)</title><rect x="865.4" y="2001" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="868.43" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (197 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (197 samples, 0.55%)</title><rect x="267.7" y="1969" width="6.5" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.70" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait (80 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (80 samples, 0.22%)</title><rect x="970.1" y="2017" width="2.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/GeneratedMessage$FieldAccessorTable:.access$000 in Lcom/google/protobuf/GeneratedMessage:.getDescriptorForType (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/GeneratedMessage$FieldAccessorTable:.access$000 in Lcom/google/protobuf/GeneratedMessage:.getDescriptorForType (15 samples, 0.04%)</title><rect x="723.4" y="2033" width="0.5" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="726.41" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (14 samples, 0.04%)</title><rect x="1053.9" y="2001" width="0.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="1056.87" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,571 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,571 samples, 7.20%)</title><rect x="75.9" y="1521" width="85.0" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,574 samples, 7.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,574 samples, 7.21%)</title><rect x="75.9" y="1729" width="85.1" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__perf_event_task_sched_in (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.01%)</title><rect x="127.4" y="49" width="0.1" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="130.40" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/net/URL:.init (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/net/URL:.init (4 samples, 0.01%)</title><rect x="777.4" y="2033" width="0.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (4 samples, 0.01%)</title><rect x="571.2" y="2001" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.19" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1028.9" y="2001" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.92" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_setspecific (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_setspecific (8 samples, 0.02%)</title><rect x="475.9" y="1985" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.89" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="1075.6" y="1697" width="0.1" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.58" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="777.0" y="2017" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.01" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CompileBroker::invoke_compiler_on_method (78 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CompileBroker::invoke_compiler_on_method (78 samples, 0.22%)</title><rect x="1071.0" y="1953" width="2.6" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1073.98" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/OWrites$$anon$2:.writes in Lplay/api/libs/json/OFormat$$anon$1:.writes (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/OWrites$$anon$2:.writes in Lplay/api/libs/json/OFormat$$anon$1:.writes (20 samples, 0.06%)</title><rect x="943.6" y="2033" width="0.7" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.64" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1058.4" y="1905" width="0.1" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.39" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/LockSupport:.unpark in Ljava/util/concurrent/SynchronousQueue$TransferStack:.transfer (133 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/LockSupport:.unpark in Ljava/util/concurrent/SynchronousQueue$TransferStack:.transfer (133 samples, 0.37%)</title><rect x="854.4" y="2033" width="4.4" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.39" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_lock_wait (98 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_lock_wait (98 samples, 0.27%)</title><rect x="180.0" y="2001" width="3.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="183.03" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryFlag (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryFlag (6 samples, 0.02%)</title><rect x="902.2" y="2033" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="905.20" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('hrtick_update (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtick_update (4 samples, 0.01%)</title><rect x="144.6" y="49" width="0.1" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.61" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_value_locked (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_value_locked (5 samples, 0.01%)</title><rect x="144.1" y="49" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.08" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/Builder$class:.sizeHint in Lscala/collection/immutable/VectorBuilder:.sizeHint (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/Builder$class:.sizeHint in Lscala/collection/immutable/VectorBuilder:.sizeHint (12 samples, 0.03%)</title><rect x="530.0" y="2017" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.02" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,573 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,573 samples, 7.20%)</title><rect x="75.9" y="1697" width="85.0" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('StealTask::do_it (93 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>StealTask::do_it (93 samples, 0.26%)</title><rect x="1067.1" y="1985" width="3.1" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.12" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('tcp_stream_memory_free (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_stream_memory_free (9 samples, 0.03%)</title><rect x="237.6" y="2001" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.59" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SystemDictionary::resolve_instance_class_or_null (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SystemDictionary::resolve_instance_class_or_null (12 samples, 0.03%)</title><rect x="422.6" y="1921" width="0.4" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.60" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.valueOf in Lscala/StringContext:.standardInterpolator (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.valueOf in Lscala/StringContext:.standardInterpolator (6 samples, 0.02%)</title><rect x="304.7" y="2017" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (103 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (103 samples, 0.29%)</title><rect x="931.0" y="1825" width="3.5" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.05" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (15 samples, 0.04%)</title><rect x="171.6" y="1985" width="0.5" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.61" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Unpark (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Unpark (13 samples, 0.04%)</title><rect x="550.1" y="1985" width="0.5" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.14" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (36 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (36 samples, 0.10%)</title><rect x="1055.8" y="2001" width="1.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.78" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (16 samples, 0.04%)</title><rect x="478.2" y="1937" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="481.21" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="193.0" y="1905" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.02" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (23 samples, 0.06%)</title><rect x="940.5" y="1985" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.47" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor46:.invoke (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor46:.invoke (8 samples, 0.02%)</title><rect x="583.1" y="2017" width="0.3" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="586.15" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized (52 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable:.ensureFieldAccessorsInitialized (52 samples, 0.15%)</title><rect x="194.2" y="2001" width="1.7" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.21" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('lock_sock_nested (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>lock_sock_nested (4 samples, 0.01%)</title><rect x="626.7" y="2017" width="0.1" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.66" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (5 samples, 0.01%)</title><rect x="336.9" y="1969" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.89" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/CodedInputStream:.readRawByte in Lcom/google/protobuf/CodedInputStream:.readRawLittleEndian64 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/CodedInputStream:.readRawByte in Lcom/google/protobuf/CodedInputStream:.readRawLittleEndian64 (5 samples, 0.01%)</title><rect x="283.9" y="2017" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.92" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/Envelope$:.apply in Lakka/actor/Cell$class:.sendMessage (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/Envelope$:.apply in Lakka/actor/Cell$class:.sendMessage (4 samples, 0.01%)</title><rect x="278.9" y="2017" width="0.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.90" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('timerqueue_add (144 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>timerqueue_add (144 samples, 0.40%)</title><rect x="1004.2" y="2017" width="4.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1007.17" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::dequeue (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::dequeue (11 samples, 0.03%)</title><rect x="77.2" y="33" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="80.21" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::resume (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::resume (30 samples, 0.08%)</title><rect x="209.6" y="2001" width="1.0" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.57" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('nmethod::handler_for_exception_and_pc (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>nmethod::handler_for_exception_and_pc (6 samples, 0.02%)</title><rect x="12.8" y="1969" width="0.2" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.81" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_from_native (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_from_native (5 samples, 0.01%)</title><rect x="336.7" y="1969" width="0.2" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.72" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/Future$$anonfun$sequence$1$$anonfun$apply$10:.apply in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/Future$$anonfun$sequence$1$$anonfun$apply$10:.apply in Lscala/concurrent/Future$$anonfun$flatMap$1:.apply (7 samples, 0.02%)</title><rect x="541.2" y="2017" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.22" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__dev_queue_xmit (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__dev_queue_xmit (7 samples, 0.02%)</title><rect x="620.3" y="2017" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="623.25" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_GetFieldID (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_GetFieldID (4 samples, 0.01%)</title><rect x="66.1" y="1985" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.14" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CollectedHeap::fill_with_object (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CollectedHeap::fill_with_object (5 samples, 0.01%)</title><rect x="682.0" y="1953" width="0.1" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="684.98" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/ArrayList$Itr:.next in Lscala/collection/Iterator$$anon$14:.skip (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/ArrayList$Itr:.next in Lscala/collection/Iterator$$anon$14:.skip (13 samples, 0.04%)</title><rect x="783.0" y="2033" width="0.4" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.02" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/SNode:.kvPair in Lscala/collection/MapLike$DefaultValuesIterable:.foreach (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/SNode:.kvPair in Lscala/collection/MapLike$DefaultValuesIterable:.foreach (9 samples, 0.03%)</title><rect x="512.6" y="2017" width="0.3" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.57" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_entity (142 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_entity (142 samples, 0.40%)</title><rect x="31.0" y="1969" width="4.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.05" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ScavengeRootsTask::do_it (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ScavengeRootsTask::do_it (10 samples, 0.03%)</title><rect x="1066.5" y="1985" width="0.3" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.46" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('native_sched_clock (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>native_sched_clock (14 samples, 0.04%)</title><rect x="40.5" y="1969" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.46" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (4 samples, 0.01%)</title><rect x="470.0" y="2001" width="0.1" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.98" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,599 samples, 7.28%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,599 samples, 7.28%)</title><rect x="75.9" y="1905" width="85.9" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/LockSupport:.parkNanos in Ljava/util/concurrent/SynchronousQueue$TransferStack:.awaitFulfill (1,010 samples, 2.83%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/LockSupport:.parkNanos in Ljava/util/concurrent/SynchronousQueue$TransferStack:.awaitFulfill (1,010 samples, 2.83%)</title><rect x="821.0" y="2033" width="33.4" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="824.02" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text> | |
</g> | |
<g class="func_g" onmouseover="s('ZIP_Unlock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZIP_Unlock (5 samples, 0.01%)</title><rect x="900.6" y="2001" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="903.62" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_task (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_task (11 samples, 0.03%)</title><rect x="105.9" y="49" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="108.92" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/Builder$class:.sizeHint in Lscala/collection/mutable/ListBuffer:.sizeHint (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/Builder$class:.sizeHint in Lscala/collection/mutable/ListBuffer:.sizeHint (19 samples, 0.05%)</title><rect x="530.6" y="2017" width="0.6" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::is_interrupted (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::is_interrupted (4 samples, 0.01%)</title><rect x="334.8" y="1953" width="0.1" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="337.77" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_disable_all (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_disable_all (11 samples, 0.03%)</title><rect x="87.0" y="49" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="89.99" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lmesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lmesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable (6 samples, 0.02%)</title><rect x="923.5" y="2033" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.52" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="435.5" y="1985" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.45" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/util/hashing/MurmurHash3$$anonfun$orderedHash$1:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/util/hashing/MurmurHash3$$anonfun$orderedHash$1:.apply (4 samples, 0.01%)</title><rect x="1053.3" y="2033" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="1056.30" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Scheduler$class:.scheduleOnce in Lakka/actor/ActorCell:.invokeAll$1 (31 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Scheduler$class:.scheduleOnce in Lakka/actor/ActorCell:.invokeAll$1 (31 samples, 0.09%)</title><rect x="686.0" y="2033" width="1.0" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" /> | |
<text text-anchor="" x="688.98" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/AbstractList$Itr:.hasNext in Ljava/util/AbstractList$Itr:.hasNext (103 samples, 0.29%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/AbstractList$Itr:.hasNext in Ljava/util/AbstractList$Itr:.hasNext (103 samples, 0.29%)</title><rect x="356.9" y="2017" width="3.4" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pipe_read (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pipe_read (16 samples, 0.04%)</title><rect x="243.2" y="2001" width="0.6" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.24" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OopMapSet::update_register_map (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OopMapSet::update_register_map (5 samples, 0.01%)</title><rect x="393.4" y="1921" width="0.2" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="396.39" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="177" width="84.9" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('oopDesc* PSPromotionManager::copy_to_survivor_spacefalse (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>oopDesc* PSPromotionManager::copy_to_survivor_spacefalse (17 samples, 0.05%)</title><rect x="1067.3" y="1953" width="0.5" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.28" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="305.0" y="1985" width="0.1" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.97" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::ProcessBase* const, hashsetprocess::UPID , process::ProcessBase*, hashsetprocess::UPID, boost::hashprocess::ProcessBase*, std::equal_toprocess::ProcessBase* ::operator[] (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::ProcessBase* const, hashsetprocess::UPID , process::ProcessBase*, hashsetprocess::UPID, boost::hashprocess::ProcessBase*, std::equal_toprocess::ProcessBase* ::operator[] (8 samples, 0.02%)</title><rect x="164.2" y="1953" width="0.2" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.17" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_task_fair (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task_fair (5 samples, 0.01%)</title><rect x="85.1" y="49" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="88.10" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('resched_task (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>resched_task (4 samples, 0.01%)</title><rect x="487.6" y="2001" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.62" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sys_futex (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (4 samples, 0.01%)</title><rect x="59.1" y="1969" width="0.2" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="62.13" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (96 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (96 samples, 0.27%)</title><rect x="1059.6" y="1985" width="3.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.62" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('virtual thunk to std::basic_ostringstreamchar, std::char_traitschar, std::allocatorchar ::~basic_ostringstream (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>virtual thunk to std::basic_ostringstreamchar, std::char_traitschar, std::allocatorchar ::~basic_ostringstream (15 samples, 0.04%)</title><rect x="589.5" y="2017" width="0.5" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.49" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___strcmp_ssse3 (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___strcmp_ssse3 (5 samples, 0.01%)</title><rect x="247.9" y="2017" width="0.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.87" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="548.0" y="1857" width="0.4" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.99" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor33:.invoke (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor33:.invoke (5 samples, 0.01%)</title><rect x="581.6" y="2017" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="584.60" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (53 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (53 samples, 0.15%)</title><rect x="441.0" y="1937" width="1.8" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.03" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="201.5" y="1825" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.55" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (37 samples, 0.10%)</title><rect x="1074.6" y="1777" width="1.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="1077.65" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.valueOf in Lscala/StringContext:.standardInterpolator (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.valueOf in Lscala/StringContext:.standardInterpolator (7 samples, 0.02%)</title><rect x="747.4" y="2033" width="0.3" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="750.43" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('InterpreterRuntime::anewarray (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>InterpreterRuntime::anewarray (12 samples, 0.03%)</title><rect x="548.4" y="1873" width="0.4" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.36" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::new_array_nozero_C (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::new_array_nozero_C (13 samples, 0.04%)</title><rect x="680.2" y="2017" width="0.5" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.23" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1121" width="84.9" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (4 samples, 0.01%)</title><rect x="421.1" y="2001" width="0.1" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.08" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Futureint::Data::Data (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Futureint::Data::Data (5 samples, 0.01%)</title><rect x="173.3" y="1985" width="0.1" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="176.26" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_all_blocks (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_all_blocks (4 samples, 0.01%)</title><rect x="1072.9" y="1585" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.93" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (59 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (59 samples, 0.17%)</title><rect x="730.5" y="2001" width="2.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.52" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call (7 samples, 0.02%)</title><rect x="46.8" y="1969" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.84" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="753" width="84.9" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="497.7" y="1985" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="500.73" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="933.8" y="1265" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.79" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_trylock (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_trylock (28 samples, 0.08%)</title><rect x="1026.3" y="2033" width="0.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="1029.31" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (77 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (77 samples, 0.22%)</title><rect x="931.7" y="1521" width="2.6" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.71" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ArrayBuffer:.length in Lscala/collection/mutable/ArrayBuffer:.length (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ArrayBuffer:.length in Lscala/collection/mutable/ArrayBuffer:.length (6 samples, 0.02%)</title><rect x="529.0" y="2017" width="0.2" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/SeqLike$class:.size in Lscala/collection/AbstractSeq:.size (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/SeqLike$class:.size in Lscala/collection/AbstractSeq:.size (17 samples, 0.05%)</title><rect x="508.8" y="2017" width="0.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.77" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('select_task_rq_fair (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_task_rq_fair (6 samples, 0.02%)</title><rect x="174.5" y="1969" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.55" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,575 samples, 7.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,575 samples, 7.21%)</title><rect x="75.9" y="1809" width="85.1" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (44 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (44 samples, 0.12%)</title><rect x="1060.4" y="1921" width="1.5" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.44" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (18 samples, 0.05%)</title><rect x="279.8" y="1985" width="0.6" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.76" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('idle_cpu (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>idle_cpu (4 samples, 0.01%)</title><rect x="185.9" y="1985" width="0.1" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="188.88" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryBytes in Ljava/util/zip/ZipFile:.getEntryBytes (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryBytes in Ljava/util/zip/ZipFile:.getEntryBytes (20 samples, 0.06%)</title><rect x="414.3" y="2017" width="0.6" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::_Rep::_M_dispose (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::_Rep::_M_dispose (11 samples, 0.03%)</title><rect x="235.9" y="2001" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="238.91" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (119 samples, 0.33%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (119 samples, 0.33%)</title><rect x="930.6" y="1985" width="4.0" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.62" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (66 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (66 samples, 0.18%)</title><rect x="932.1" y="1457" width="2.2" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.07" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_org_apache_mesos_state_Variable_value (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_org_apache_mesos_state_Variable_value (35 samples, 0.10%)</title><rect x="72.7" y="2001" width="1.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="75.75" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__libc_send (369 samples, 1.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__libc_send (369 samples, 1.03%)</title><rect x="619.5" y="2033" width="12.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.53" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,576 samples, 7.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,576 samples, 7.21%)</title><rect x="75.9" y="1825" width="85.1" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadLocalprocess::ProcessBase::operator= (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalprocess::ProcessBase::operator= (22 samples, 0.06%)</title><rect x="73.9" y="2001" width="0.8" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="76.94" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::wait (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::wait (4 samples, 0.01%)</title><rect x="1078.7" y="1969" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.75" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('poll_freewait (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_freewait (6 samples, 0.02%)</title><rect x="205.0" y="2001" width="0.2" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="207.98" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal:.get in Lcom/codahale/metrics/Histogram:.update (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal:.get in Lcom/codahale/metrics/Histogram:.update (4 samples, 0.01%)</title><rect x="549.2" y="1985" width="0.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.18" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock_irq (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock_irq (20 samples, 0.06%)</title><rect x="131.2" y="49" width="0.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="134.20" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::dequestd::functionvoid (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::dequestd::functionvoid (5 samples, 0.01%)</title><rect x="163.5" y="1937" width="0.2" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.51" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/DateTime:.parse in Lmesosphere/marathon/tasks/TaskTracker$$anonfun$getVersion$1:.applyOrElse (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/DateTime:.parse in Lmesosphere/marathon/tasks/TaskTracker$$anonfun$getVersion$1:.applyOrElse (19 samples, 0.05%)</title><rect x="449.0" y="2017" width="0.6" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_curr (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_curr (5 samples, 0.01%)</title><rect x="187.1" y="1985" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.11" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/AbstractIterable:.init in Lmesosphere/marathon/state/AppDefinition:.mergeFromProto (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/AbstractIterable:.init in Lmesosphere/marathon/state/AppDefinition:.mergeFromProto (7 samples, 0.02%)</title><rect x="505.5" y="2017" width="0.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="355.6" y="2001" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="358.62" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (33 samples, 0.09%)</title><rect x="441.5" y="1921" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.46" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake_private (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake_private (5 samples, 0.01%)</title><rect x="640.3" y="2033" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.28" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeParserBucket:.saveField in Lorg/joda/time/format/DateTimeFormatterBuilder$NumberFormatter:.parseInto (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeParserBucket:.saveField in Lorg/joda/time/format/DateTimeFormatterBuilder$NumberFormatter:.parseInto (14 samples, 0.04%)</title><rect x="938.5" y="2033" width="0.4" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.48" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,573 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,573 samples, 7.20%)</title><rect x="75.9" y="1601" width="85.0" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,573 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,573 samples, 7.20%)</title><rect x="75.9" y="1713" width="85.0" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_mutex_unlock_usercnt (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_mutex_unlock_usercnt (12 samples, 0.03%)</title><rect x="341.0" y="1969" width="0.4" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.98" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_int_free (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_int_free (5 samples, 0.01%)</title><rect x="258.4" y="2017" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="261.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1409" width="84.9" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait_queue_me (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (34 samples, 0.10%)</title><rect x="141.0" y="49" width="1.1" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="144.01" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('activateWatcher (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>activateWatcher (6 samples, 0.02%)</title><rect x="266.1" y="2017" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="269.08" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_java_util_zip_ZipFile_getEntryMethod (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_java_util_zip_ZipFile_getEntryMethod (8 samples, 0.02%)</title><rect x="402.6" y="2001" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.61" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/Protos$MarathonTask:.internalGetFieldAccessorTable in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (14 samples, 0.04%)</title><rect x="923.1" y="2033" width="0.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.05" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::dequeue (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::dequeue (61 samples, 0.17%)</title><rect x="207.4" y="2001" width="2.0" height="15.0" fill="rgb(183,183,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="210.43" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Long:.hashCode in Ljava/lang/Long:.hashCode (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Long:.hashCode in Ljava/lang/Long:.hashCode (28 samples, 0.08%)</title><rect x="734.4" y="2033" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="737.38" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_requeue (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_requeue (4 samples, 0.01%)</title><rect x="170.2" y="1953" width="0.1" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="173.19" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_out (4 samples, 0.01%)</title><rect x="79.7" y="49" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="82.69" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (27 samples, 0.08%)</title><rect x="441.7" y="1905" width="0.9" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.66" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1377" width="84.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="689" width="84.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1057.5" y="2001" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.50" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="609" width="84.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/locks/AbstractQueuedSynchronizer:.enq in Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:.enq (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:.enq in Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:.enq (8 samples, 0.02%)</title><rect x="395.3" y="2017" width="0.3" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="398.34" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string stringifyint (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string stringifyint (6 samples, 0.02%)</title><rect x="1083.1" y="2017" width="0.2" height="15.0" fill="rgb(183,183,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::num_putchar, std::ostreambuf_iteratorchar, std::char_traitschar ::do_put (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::num_putchar, std::ostreambuf_iteratorchar, std::char_traitschar ::do_put (11 samples, 0.03%)</title><rect x="589.6" y="1985" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="592.59" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Scheduler$class:.scheduleOnce in Lspray/io/ConnectionHandler$$anonfun$running$1:.applyOrElse (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Scheduler$class:.scheduleOnce in Lspray/io/ConnectionHandler$$anonfun$running$1:.applyOrElse (7 samples, 0.02%)</title><rect x="687.9" y="2033" width="0.3" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.93" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/TrieMapIterator:.readin in Lscala/collection/concurrent/TrieMapIterator:.advance (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/TrieMapIterator:.readin in Lscala/collection/concurrent/TrieMapIterator:.advance (10 samples, 0.03%)</title><rect x="514.5" y="2017" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_Thread::park_blocker (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_Thread::park_blocker (21 samples, 0.06%)</title><rect x="352.6" y="1985" width="0.7" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="355.61" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="1062.8" y="1985" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.82" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('thread_entry (82 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>thread_entry (82 samples, 0.23%)</title><rect x="1073.6" y="1969" width="2.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.56" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.getEntryAfterMiss in Lscala/concurrent/BlockContext$:.current (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.getEntryAfterMiss in Lscala/concurrent/BlockContext$:.current (5 samples, 0.01%)</title><rect x="354.8" y="2017" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.79" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ObjectSynchronizer::fast_enter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ObjectSynchronizer::fast_enter (16 samples, 0.04%)</title><rect x="645.3" y="2017" width="0.5" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.30" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections:.unmodifiableList in Lorg/apache/mesos/Protos$TaskState:.getValueDescriptor (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections:.unmodifiableList in Lorg/apache/mesos/Protos$TaskState:.getValueDescriptor (38 samples, 0.11%)</title><rect x="793.6" y="2033" width="1.3" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.63" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashSet$HashTrieSet:.updated0 (35 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashSet$HashTrieSet:.updated0 (35 samples, 0.10%)</title><rect x="1039.0" y="2033" width="1.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="1042.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1058.4" y="1889" width="0.1" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.39" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait (39 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (39 samples, 0.11%)</title><rect x="139.7" y="49" width="1.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="142.72" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="454.9" y="1937" width="0.2" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.91" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/TickGenerator$$anon$1$$anon$2$$anonfun$1:.apply in Lspray/io/ConnectionHandler$$anonfun$running$1:.applyOrElse (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/TickGenerator$$anon$1$$anon$2$$anonfun$1:.apply in Lspray/io/ConnectionHandler$$anonfun$running$1:.applyOrElse (6 samples, 0.02%)</title><rect x="561.7" y="2017" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.74" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor30:.invoke in Lsun/reflect/GeneratedMethodAccessor30:.invoke (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor30:.invoke in Lsun/reflect/GeneratedMethodAccessor30:.invoke (37 samples, 0.10%)</title><rect x="1126.8" y="2033" width="1.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="1129.79" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/TraversableLike$$anonfun$map$1:.apply in Lplay/api/libs/json/JsObject$$anonfun$$plus$plus$1:.apply (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/TraversableLike$$anonfun$map$1:.apply in Lplay/api/libs/json/JsObject$$anonfun$$plus$plus$1:.apply (5 samples, 0.01%)</title><rect x="510.0" y="2017" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.99" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parse::do_call (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parse::do_call (16 samples, 0.04%)</title><rect x="1072.7" y="1825" width="0.5" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.70" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treeprocess::Time, std::pairprocess::Time const, std::listprocess::Timer, std::allocatorprocess::Timer , std::_Select1ststd::pairprocess::Time const, std::listprocess::Timer, std::allocatorprocess::Timer , std::lessprocess::Time, std::allocatorstd::pairprocess::Time const, std::listprocess::Timer, std::allocatorprocess::Timer ::_M_get_insert_hint_unique_pos (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treeprocess::Time, std::pairprocess::Time const, std::listprocess::Timer, std::allocatorprocess::Timer , std::_Select1ststd::pairprocess::Time const, std::listprocess::Timer, std::allocatorprocess::Timer , std::lessprocess::Time, std::allocatorstd::pairprocess::Time const, std::listprocess::Timer, std::allocatorprocess::Timer ::_M_get_insert_hint_unique_pos (4 samples, 0.01%)</title><rect x="1079.7" y="2033" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="1082.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="533.9" y="1905" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.95" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Double:.hashCode in Ljava/lang/Double:.hashCode (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Double:.hashCode in Ljava/lang/Double:.hashCode (5 samples, 0.01%)</title><rect x="733.3" y="2033" width="0.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.32" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1473" width="84.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (93 samples, 0.26%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (93 samples, 0.26%)</title><rect x="931.3" y="1681" width="3.1" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.28" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (83 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (83 samples, 0.23%)</title><rect x="349.5" y="1969" width="2.8" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="352.54" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor20:.invoke (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor20:.invoke (34 samples, 0.10%)</title><rect x="1116.2" y="2033" width="1.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="1119.15" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (9 samples, 0.03%)</title><rect x="537.7" y="2001" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.72" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('I2C/C2I adapters (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>I2C/C2I adapters (16 samples, 0.04%)</title><rect x="10.0" y="2033" width="0.5" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treeprocess::UPID, std::pairprocess::UPID const, process::ProcessBase const*, std::_Select1ststd::pairprocess::UPID const, process::ProcessBase const* , std::lessprocess::UPID, std::allocatorstd::pairprocess::UPID const, process::ProcessBase const* ::_M_lower_bound (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treeprocess::UPID, std::pairprocess::UPID const, process::ProcessBase const*, std::_Select1ststd::pairprocess::UPID const, process::ProcessBase const* , std::lessprocess::UPID, std::allocatorstd::pairprocess::UPID const, process::ProcessBase const* ::_M_lower_bound (28 samples, 0.08%)</title><rect x="232.5" y="2001" width="0.9" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.47" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/duration/FiniteDuration:.init in Lakka/actor/LightArrayRevolverScheduler:.scheduleOnce (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/duration/FiniteDuration:.init in Lakka/actor/LightArrayRevolverScheduler:.scheduleOnce (4 samples, 0.01%)</title><rect x="549.7" y="2017" width="0.1" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.68" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="305.0" y="2001" width="0.1" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.97" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('cpuacct_charge (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>cpuacct_charge (9 samples, 0.03%)</title><rect x="24.0" y="1969" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.98" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularFieldAccessor:.has (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/reflect/Method:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularFieldAccessor:.has (68 samples, 0.19%)</title><rect x="775.1" y="2033" width="2.2" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="778.06" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="145" width="84.9" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="64.7" y="1857" width="0.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.72" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="436.5" y="1985" width="0.4" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.47" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::tableboost::unordered::detail::setstd::allocatorprocess::UPID, process::UPID, boost::hashprocess::UPID, std::equal_toprocess::UPID ::delete_buckets (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::tableboost::unordered::detail::setstd::allocatorprocess::UPID, process::UPID, boost::hashprocess::UPID, std::equal_toprocess::UPID ::delete_buckets (4 samples, 0.01%)</title><rect x="282.2" y="2017" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.23" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/TrieMapIterator:.readin in Lscala/collection/concurrent/TrieMapIterator:.advance (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/TrieMapIterator:.readin in Lscala/collection/concurrent/TrieMapIterator:.advance (42 samples, 0.12%)</title><rect x="1031.6" y="2033" width="1.4" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="1034.63" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_and_fence (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_and_fence (4 samples, 0.01%)</title><rect x="308.6" y="1985" width="0.2" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="311.63" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__remove_hrtimer (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__remove_hrtimer (6 samples, 0.02%)</title><rect x="951.0" y="2017" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="954.04" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="689.8" y="1937" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="692.84" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CardTableExtension::scavenge_contents (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CardTableExtension::scavenge_contents (10 samples, 0.03%)</title><rect x="1066.8" y="1969" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.79" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor43:.invoke (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor43:.invoke (34 samples, 0.10%)</title><rect x="1136.7" y="2033" width="1.1" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Park (835 samples, 2.34%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Park (835 samples, 2.34%)</title><rect x="324.7" y="1985" width="27.6" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="327.73" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >U..</text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (19 samples, 0.05%)</title><rect x="239.4" y="2001" width="0.6" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.41" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.root in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.root in Lscala/concurrent/impl/Promise$DefaultPromise:.tryComplete (18 samples, 0.05%)</title><rect x="554.9" y="2017" width="0.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.86" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/parboiled/matchers/SequenceMatcher:.match (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/parboiled/matchers/SequenceMatcher:.match (5 samples, 0.01%)</title><rect x="940.1" y="2033" width="0.1" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.07" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sysret_check (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sysret_check (5 samples, 0.01%)</title><rect x="46.7" y="1969" width="0.1" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.68" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_enable_asynccancel (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_enable_asynccancel (11 samples, 0.03%)</title><rect x="339.5" y="1969" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.53" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/parboiled/parserunners/BasicParseRunner:.match in Lorg/parboiled/matchers/SequenceMatcher:.match (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/parboiled/parserunners/BasicParseRunner:.match in Lorg/parboiled/matchers/SequenceMatcher:.match (4 samples, 0.01%)</title><rect x="940.2" y="2033" width="0.2" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.23" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_unlock_irqrestore (13 samples, 0.04%)</title><rect x="956.6" y="2017" width="0.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="959.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_and_fence (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_and_fence (5 samples, 0.01%)</title><rect x="383.5" y="2001" width="0.2" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="386.51" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_base (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_base (4 samples, 0.01%)</title><rect x="570.6" y="1985" width="0.1" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.59" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/TreeMap:.compare in Ljava/util/TreeMap:.put (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/TreeMap:.compare in Ljava/util/TreeMap:.put (33 samples, 0.09%)</title><rect x="796.7" y="2033" width="1.1" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryTime (37 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryTime (37 samples, 0.10%)</title><rect x="410.9" y="2001" width="1.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="413.90" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/CodedInputStream:.readRawVarint32 in Lcom/google/protobuf/CodedInputStream:.readBytes (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/CodedInputStream:.readRawVarint32 in Lcom/google/protobuf/CodedInputStream:.readBytes (5 samples, 0.01%)</title><rect x="284.2" y="2017" width="0.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.18" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/UnknownFieldSet:.hashCode in Lcom/google/protobuf/AbstractMessage:.hashCode (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/UnknownFieldSet:.hashCode in Lcom/google/protobuf/AbstractMessage:.hashCode (6 samples, 0.02%)</title><rect x="295.2" y="2017" width="0.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.19" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::new_array_nozero_C (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::new_array_nozero_C (4 samples, 0.01%)</title><rect x="649.4" y="1985" width="0.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.43" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SharedRuntime::handle_wrong_method_ic_miss (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SharedRuntime::handle_wrong_method_ic_miss (42 samples, 0.12%)</title><rect x="392.5" y="1985" width="1.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.46" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_unlock_irqrestore (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_unlock_irqrestore (8 samples, 0.02%)</title><rect x="98.7" y="49" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.65" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::is_interrupted (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::is_interrupted (7 samples, 0.02%)</title><rect x="314.0" y="1969" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.95" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (85 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (85 samples, 0.24%)</title><rect x="155.6" y="49" width="2.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.65" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('tcp_write_xmit (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_write_xmit (8 samples, 0.02%)</title><rect x="631.5" y="2017" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="634.46" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_entity (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_entity (6 samples, 0.02%)</title><rect x="1018.6" y="2017" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="1021.64" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::lock_without_safepoint_check (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::lock_without_safepoint_check (14 samples, 0.04%)</title><rect x="311.9" y="1953" width="0.5" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.94" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeParserBucket:.sort in Lorg/joda/time/format/DateTimeParserBucket:.computeMillis (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeParserBucket:.sort in Lorg/joda/time/format/DateTimeParserBucket:.computeMillis (4 samples, 0.01%)</title><rect x="452.7" y="2017" width="0.1" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="455.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__clock_gettime (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__clock_gettime (17 samples, 0.05%)</title><rect x="337.1" y="1969" width="0.6" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.12" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="193.1" y="1873" width="0.1" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.05" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_task_fair (34 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task_fair (34 samples, 0.10%)</title><rect x="137.0" y="49" width="1.1" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="139.98" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('plist_del (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>plist_del (7 samples, 0.02%)</title><rect x="113.4" y="49" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.42" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (68 samples, 0.19%)</title><rect x="436.9" y="1985" width="2.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.90" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor42:.invoke in Lsun/reflect/GeneratedMethodAccessor42:.invoke (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor42:.invoke in Lsun/reflect/GeneratedMethodAccessor42:.invoke (6 samples, 0.02%)</title><rect x="582.4" y="2017" width="0.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="585.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__alloc_skb (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__alloc_skb (8 samples, 0.02%)</title><rect x="619.8" y="2017" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/PartialFunction$OrElse:.applyOrElse in Lscala/PartialFunction$OrElse:.applyOrElse (179 samples, 0.50%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/PartialFunction$OrElse:.applyOrElse in Lscala/PartialFunction$OrElse:.applyOrElse (179 samples, 0.50%)</title><rect x="498.1" y="2017" width="5.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.10" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (15 samples, 0.04%)</title><rect x="275.7" y="1953" width="0.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.72" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ResizableArray$class:.foreach in Lscala/collection/mutable/ArrayBuffer:.foreach (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ResizableArray$class:.foreach in Lscala/collection/mutable/ArrayBuffer:.foreach (4 samples, 0.01%)</title><rect x="1045.4" y="2033" width="0.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="1048.44" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__memcpy_sse2_unaligned (23 samples, 0.06%)</title><rect x="874.3" y="1985" width="0.8" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="877.35" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__GI___libc_write (31 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__GI___libc_write (31 samples, 0.09%)</title><rect x="614.1" y="2033" width="1.0" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="617.08" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::jvm_raw_unlock (32 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::jvm_raw_unlock (32 samples, 0.09%)</title><rect x="864.1" y="1985" width="1.0" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="867.07" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Handle::Handle (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Handle::Handle (4 samples, 0.01%)</title><rect x="261.8" y="1985" width="0.1" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.81" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('lock_hrtimer_base.isra.34 (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>lock_hrtimer_base.isra.34 (23 samples, 0.06%)</title><rect x="993.2" y="2017" width="0.8" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="996.23" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (7 samples, 0.02%)</title><rect x="247.3" y="2001" width="0.3" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.34" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/GeneratedMessage:.getField in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/GeneratedMessage:.getField in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (21 samples, 0.06%)</title><rect x="294.0" y="2017" width="0.7" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (26 samples, 0.07%)</title><rect x="731.4" y="1905" width="0.9" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.44" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:._writeString2 in Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator:._writeString (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:._writeString2 in Lcom/fasterxml/jackson/core/json/WriterBasedJsonGenerator:._writeString (15 samples, 0.04%)</title><rect x="698.6" y="2033" width="0.5" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.63" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_new_array_Java (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_new_array_Java (15 samples, 0.04%)</title><rect x="679.7" y="2033" width="0.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.73" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SerialOldToYoungRootsTask::do_it (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SerialOldToYoungRootsTask::do_it (10 samples, 0.03%)</title><rect x="1066.8" y="1985" width="0.3" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.79" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (5 samples, 0.01%)</title><rect x="171.6" y="1969" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.61" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (64 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (64 samples, 0.18%)</title><rect x="440.9" y="1953" width="2.1" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.90" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__perf_event_task_sched_out (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_out (7 samples, 0.02%)</title><rect x="188.2" y="2001" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="191.16" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('PSRootsClosurefalse::do_oop (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>PSRootsClosurefalse::do_oop (7 samples, 0.02%)</title><rect x="1066.6" y="1937" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.55" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/ISOChronology:.getInstance in Lorg/joda/time/format/DateTimeFormatter:.parseDateTime (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/ISOChronology:.getInstance in Lorg/joda/time/format/DateTimeFormatter:.parseDateTime (6 samples, 0.02%)</title><rect x="936.7" y="2033" width="0.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.67" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/nio/ch/EPollArrayWrapper:.epollWait in Lsun/nio/ch/EPollArrayWrapper:.epollWait (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/nio/ch/EPollArrayWrapper:.epollWait in Lsun/nio/ch/EPollArrayWrapper:.epollWait (7 samples, 0.02%)</title><rect x="789.5" y="2017" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.46" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.map in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$healthCounts$1$$anonfun$8:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.map in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$healthCounts$1$$anonfun$8:.apply (4 samples, 0.01%)</title><rect x="553.2" y="2017" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.25" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.01%)</title><rect x="492.6" y="2001" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.65" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_enable_all (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (42 samples, 0.12%)</title><rect x="13.6" y="1969" width="1.4" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.57" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (68 samples, 0.19%)</title><rect x="587.2" y="2001" width="2.3" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.25" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ArrayBuffer:.result (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ArrayBuffer:.result (6 samples, 0.02%)</title><rect x="529.2" y="2017" width="0.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.22" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,570 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,570 samples, 7.20%)</title><rect x="75.9" y="1361" width="84.9" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (4 samples, 0.01%)</title><rect x="693.4" y="1969" width="0.1" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="696.38" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeFormatterBuilder$Composite:.parseInto in Lorg/joda/time/format/DateTimeFormatterBuilder$Composite:.parseInto (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeFormatterBuilder$Composite:.parseInto in Lorg/joda/time/format/DateTimeFormatterBuilder$Composite:.parseInto (6 samples, 0.02%)</title><rect x="937.8" y="2033" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.79" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Clock::paused (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Clock::paused (5 samples, 0.01%)</title><rect x="166.4" y="1953" width="0.2" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.39" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="81" width="84.9" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_disable_asynccancel (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_disable_asynccancel (38 samples, 0.11%)</title><rect x="188.5" y="2001" width="1.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="191.53" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__memcpy_sse2_unaligned (4 samples, 0.01%)</title><rect x="443.0" y="2001" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.05" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/AbstractList:.hashCode in Ljava/util/Collections$UnmodifiableList:.hashCode (44 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/AbstractList:.hashCode in Ljava/util/Collections$UnmodifiableList:.hashCode (44 samples, 0.12%)</title><rect x="781.2" y="2033" width="1.5" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="784.20" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashSet$HashTrieSet:.foreach (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashSet$HashTrieSet:.foreach (61 samples, 0.17%)</title><rect x="520.2" y="2017" width="2.0" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.20" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_enable_all (136 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (136 samples, 0.38%)</title><rect x="1019.7" y="2017" width="4.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="1022.73" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('memset (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>memset (4 samples, 0.01%)</title><rect x="682.5" y="2001" width="0.1" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.51" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_new_array_Java (51 samples, 0.14%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_new_array_Java (51 samples, 0.14%)</title><rect x="258.6" y="2017" width="1.7" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" /> | |
<text text-anchor="" x="261.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_java_util_zip_ZipFile_getEntryCrc (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_java_util_zip_ZipFile_getEntryCrc (4 samples, 0.01%)</title><rect x="402.5" y="2001" width="0.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.47" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.replace in Ljava/lang/String:.replace (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.replace in Ljava/lang/String:.replace (19 samples, 0.05%)</title><rect x="303.6" y="2017" width="0.6" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.58" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/io/RawPipelineStage$$anon$3$$anonfun$2:.apply in Lspray/io/ConnectionHandler$$anonfun$running$1:.applyOrElse (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/io/RawPipelineStage$$anon$3$$anonfun$2:.apply in Lspray/io/ConnectionHandler$$anonfun$running$1:.applyOrElse (5 samples, 0.01%)</title><rect x="1063.3" y="2033" width="0.1" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="1066.28" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/format/DateTimeParserBucket:.sort in Lorg/joda/time/format/DateTimeParserBucket:.computeMillis (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/format/DateTimeParserBucket:.sort in Lorg/joda/time/format/DateTimeParserBucket:.computeMillis (8 samples, 0.02%)</title><rect x="939.4" y="2033" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.41" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_blocked_averages (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_blocked_averages (9 samples, 0.03%)</title><rect x="491.7" y="2001" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.72" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (229 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (229 samples, 0.64%)</title><rect x="266.9" y="1985" width="7.5" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="269.87" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="436.5" y="1937" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.51" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::javaTimeNanos (69 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::javaTimeNanos (69 samples, 0.19%)</title><rect x="852.1" y="2017" width="2.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::dequestd::functionvoid (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::dequestd::functionvoid (4 samples, 0.01%)</title><rect x="235.5" y="2001" width="0.1" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="238.48" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/DateTimeFieldType$StandardDateTimeFieldType:.getField (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/DateTimeFieldType$StandardDateTimeFieldType:.getField (10 samples, 0.03%)</title><rect x="449.6" y="2017" width="0.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.63" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__ceil_sse41 (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__ceil_sse41 (4 samples, 0.01%)</title><rect x="615.3" y="2033" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> | |
<text text-anchor="" x="618.27" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__schedule (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (7 samples, 0.02%)</title><rect x="181.1" y="1985" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="184.13" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('tcp_packet (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_packet (19 samples, 0.05%)</title><rect x="629.3" y="2017" width="0.7" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="632.34" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CollectedHeap::new_store_pre_barrier (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CollectedHeap::new_store_pre_barrier (4 samples, 0.01%)</title><rect x="261.7" y="1985" width="0.1" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.68" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/String:.startsWith in Lorg/eclipse/jetty/util/resource/JarFileResource:.exists (99 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/String:.startsWith in Lorg/eclipse/jetty/util/resource/JarFileResource:.exists (99 samples, 0.28%)</title><rect x="744.1" y="2033" width="3.3" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.13" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_enable_all (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (22 samples, 0.06%)</title><rect x="200.0" y="2001" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="202.96" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/Vector:.initFrom in Lscala/collection/immutable/VectorBuilder:.result (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/Vector:.initFrom in Lscala/collection/immutable/VectorBuilder:.result (8 samples, 0.02%)</title><rect x="525.6" y="2017" width="0.3" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.59" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/concurrent/TrieMap:.RDCSS_READ_ROOT in Lscala/collection/mutable/MapLike$class:.getOrElseUpdate (38 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/concurrent/TrieMap:.RDCSS_READ_ROOT in Lscala/collection/mutable/MapLike$class:.getOrElseUpdate (38 samples, 0.11%)</title><rect x="513.0" y="2017" width="1.3" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.03" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dev_hard_start_xmit (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dev_hard_start_xmit (6 samples, 0.02%)</title><rect x="623.3" y="2017" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="626.33" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::hash_value (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::hash_value (11 samples, 0.03%)</title><rect x="212.2" y="2001" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="215.15" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (165 samples, 0.46%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (165 samples, 0.46%)</title><rect x="268.4" y="1953" width="5.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.42" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (8 samples, 0.02%)</title><rect x="186.8" y="1985" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="189.84" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('void std::dequestd::functionvoid (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>void std::dequestd::functionvoid (5 samples, 0.01%)</title><rect x="590.1" y="2017" width="0.1" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="593.05" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (22 samples, 0.06%)</title><rect x="1056.2" y="1969" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.21" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_DoPrivileged (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_DoPrivileged (4 samples, 0.01%)</title><rect x="442.8" y="1921" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.82" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="433" width="84.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('x86_pmu_disable (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_disable (9 samples, 0.03%)</title><rect x="160.4" y="49" width="0.3" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.44" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('google::protobuf::MessageLite::~MessageLite (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>google::protobuf::MessageLite::~MessageLite (4 samples, 0.01%)</title><rect x="298.6" y="2017" width="0.1" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.56" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('free (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>free (24 samples, 0.07%)</title><rect x="76.1" y="33" width="0.8" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="79.12" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,569 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,569 samples, 7.19%)</title><rect x="75.9" y="1185" width="84.9" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_from_native (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_from_native (28 samples, 0.08%)</title><rect x="884.2" y="1969" width="0.9" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="887.20" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (70 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (70 samples, 0.20%)</title><rect x="584.9" y="2001" width="2.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.93" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryCSize in Ljava/util/zip/ZipFile:.getEntryCSize (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryCSize in Ljava/util/zip/ZipFile:.getEntryCSize (10 samples, 0.03%)</title><rect x="414.9" y="2017" width="0.4" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.93" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="454.9" y="1921" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.95" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (21 samples, 0.06%)</title><rect x="570.1" y="2001" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.06" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jlong_disjoint_arraycopy (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jlong_disjoint_arraycopy (5 samples, 0.01%)</title><rect x="418.9" y="2017" width="0.1" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="421.86" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/HashTable$class:.foreachEntry (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/HashTable$class:.foreachEntry (17 samples, 0.05%)</title><rect x="1044.5" y="2033" width="0.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="1047.48" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('NonTieredCompPolicy::do_safepoint_work (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>NonTieredCompPolicy::do_safepoint_work (5 samples, 0.01%)</title><rect x="1076.4" y="1937" width="0.1" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.37" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/Option:.exists in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$healthCounts$1$$anonfun$8$$anonfun$apply$17$$anonfun$9:.apply (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/Option:.exists in Lmesosphere/marathon/health/MarathonHealthCheckManager$$anonfun$healthCounts$1$$anonfun$8$$anonfun$apply$17$$anonfun$9:.apply (5 samples, 0.01%)</title><rect x="1028.5" y="2033" width="0.1" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.46" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (21 samples, 0.06%)</title><rect x="1055.0" y="2017" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.96" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('task_waking_fair (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>task_waking_fair (6 samples, 0.02%)</title><rect x="488.3" y="2001" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.32" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('frame::sender (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>frame::sender (4 samples, 0.01%)</title><rect x="260.4" y="1969" width="0.1" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.36" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::is_deoptimized_caller_frame (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::is_deoptimized_caller_frame (6 samples, 0.02%)</title><rect x="260.3" y="1985" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.29" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="497" width="84.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('sys_futex (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (11 samples, 0.03%)</title><rect x="153.7" y="49" width="0.4" height="15.0" fill="rgb(224,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="156.70" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularFieldAccessor:.has (321 samples, 0.90%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularFieldAccessor:.has (321 samples, 0.90%)</title><rect x="1103.1" y="2033" width="10.6" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" /> | |
<text text-anchor="" x="1106.07" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile$1:.hasMoreElements in Lorg/eclipse/jetty/util/resource/JarFileResource:.exists (44 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile$1:.hasMoreElements in Lorg/eclipse/jetty/util/resource/JarFileResource:.exists (44 samples, 0.12%)</title><rect x="888.1" y="2033" width="1.5" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="891.13" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Futureint::Data::~Data (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Futureint::Data::~Data (5 samples, 0.01%)</title><rect x="468.9" y="2017" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.92" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_dl (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_dl (16 samples, 0.04%)</title><rect x="995.3" y="2017" width="0.5" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="998.32" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (115 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (115 samples, 0.32%)</title><rect x="930.7" y="1921" width="3.8" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.69" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_rq_clock (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_rq_clock (17 samples, 0.05%)</title><rect x="1016.5" y="2017" width="0.6" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1019.53" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor37:.invoke (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor37:.invoke (9 samples, 0.03%)</title><rect x="581.9" y="2017" width="0.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="584.89" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('idle_cpu (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>idle_cpu (27 samples, 0.08%)</title><rect x="39.4" y="1969" width="0.9" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="42.41" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="369" width="84.9" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/AbstractCollection:.toArray in Ljava/lang/String:.split (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/AbstractCollection:.toArray in Ljava/lang/String:.split (12 samples, 0.03%)</title><rect x="778.1" y="2033" width="0.4" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.13" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call (11 samples, 0.03%)</title><rect x="1003.2" y="2017" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="1006.18" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call (7 samples, 0.02%)</title><rect x="64.2" y="1953" width="0.2" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.19" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::internal::acquire (274 samples, 0.77%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::internal::acquire (274 samples, 0.77%)</title><rect x="457.0" y="1985" width="9.1" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.03" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Integer:.valueOf in Lscala/runtime/BoxesRunTime:.boxToInteger (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Integer:.valueOf in Lscala/runtime/BoxesRunTime:.boxToInteger (4 samples, 0.01%)</title><rect x="734.2" y="2033" width="0.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="737.22" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_hrtimer (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_hrtimer (19 samples, 0.05%)</title><rect x="967.8" y="2017" width="0.6" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="970.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (23 samples, 0.06%)</title><rect x="686.1" y="2001" width="0.8" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.14" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="241" width="84.9" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (22 samples, 0.06%)</title><rect x="686.2" y="1985" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.17" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (19 samples, 0.05%)</title><rect x="1053.7" y="2017" width="0.6" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1056.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.ensureOpen in Ljava/util/jar/JarFile$1:.nextElement (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.ensureOpen in Ljava/util/jar/JarFile$1:.nextElement (33 samples, 0.09%)</title><rect x="900.8" y="2033" width="1.1" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="903.85" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('dequeue_task_fair (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task_fair (7 samples, 0.02%)</title><rect x="197.0" y="2001" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="200.02" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/regex/Pattern:.newSingle in Ljava/util/regex/Pattern:.atom (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/regex/Pattern:.newSingle in Ljava/util/regex/Pattern:.atom (10 samples, 0.03%)</title><rect x="867.4" y="2033" width="0.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="870.41" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ParallelScavengeHeap::failed_mem_allocate (61 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ParallelScavengeHeap::failed_mem_allocate (61 samples, 0.17%)</title><rect x="1076.7" y="1921" width="2.0" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="1079.67" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/joda/time/chrono/BasicMonthOfYearDateTimeField:.getRangeDurationField in Lorg/joda/time/chrono/BasicMonthOfYearDateTimeField:.getRangeDurationField (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/joda/time/chrono/BasicMonthOfYearDateTimeField:.getRangeDurationField in Lorg/joda/time/chrono/BasicMonthOfYearDateTimeField:.getRangeDurationField (5 samples, 0.01%)</title><rect x="936.2" y="2033" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.24" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (76 samples, 0.21%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (76 samples, 0.21%)</title><rect x="931.7" y="1505" width="2.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.74" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor35:.invoke (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor35:.invoke (4 samples, 0.01%)</title><rect x="1131.1" y="2033" width="0.1" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="1134.05" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="417" width="84.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor29:.invoke in Lsun/reflect/GeneratedMethodAccessor29:.invoke (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor29:.invoke in Lsun/reflect/GeneratedMethodAccessor29:.invoke (23 samples, 0.06%)</title><rect x="1126.0" y="2033" width="0.8" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="1129.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor29:.invoke in Lsun/reflect/GeneratedMethodAccessor29:.invoke (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor29:.invoke in Lsun/reflect/GeneratedMethodAccessor29:.invoke (7 samples, 0.02%)</title><rect x="580.8" y="2017" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="583.84" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (21 samples, 0.06%)</title><rect x="279.8" y="2001" width="0.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.76" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="257" width="84.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/IndexedSeqLike$Elements:.next in Lscala/collection/TraversableOnce$class:.collectFirst (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/IndexedSeqLike$Elements:.next in Lscala/collection/TraversableOnce$class:.collectFirst (8 samples, 0.02%)</title><rect x="506.4" y="2017" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.36" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_getspecific (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_getspecific (9 samples, 0.03%)</title><rect x="348.2" y="1969" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="351.15" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key (13 samples, 0.04%)</title><rect x="976.6" y="2017" width="0.4" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" /> | |
<text text-anchor="" x="979.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (113 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (113 samples, 0.32%)</title><rect x="930.7" y="1905" width="3.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.72" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::new_array_nozero_C (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::new_array_nozero_C (9 samples, 0.03%)</title><rect x="260.3" y="2001" width="0.3" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.29" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_raw_spin_lock (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="191.9" y="2001" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.90" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Arrays$ArrayList:.size in Ljava/util/Arrays$ArrayList:.size (127 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Arrays$ArrayList:.size in Ljava/util/Arrays$ArrayList:.size (127 samples, 0.36%)</title><rect x="783.9" y="2033" width="4.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.91" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key (20 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key (20 samples, 0.06%)</title><rect x="635.9" y="2017" width="0.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="638.95" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_enable_all (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (26 samples, 0.07%)</title><rect x="299.7" y="2017" width="0.9" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="302.71" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/Mailbox:.systemQueueGet in Lakka/dispatch/Mailbox:.processAllSystemMessages (26 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/Mailbox:.systemQueueGet in Lakka/dispatch/Mailbox:.processAllSystemMessages (26 samples, 0.07%)</title><rect x="695.2" y="2033" width="0.9" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.23" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__copy_skb_header (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__copy_skb_header (5 samples, 0.01%)</title><rect x="620.1" y="2017" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> | |
<text text-anchor="" x="623.09" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::basic_ioschar, std::char_traitschar ::init (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::basic_ioschar, std::char_traitschar ::init (5 samples, 0.01%)</title><rect x="1082.4" y="2017" width="0.2" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.45" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__clock_gettime (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__clock_gettime (22 samples, 0.06%)</title><rect x="306.7" y="2001" width="0.7" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.69" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="774.8" y="2017" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="777.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="1058.2" y="1985" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.20" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_RawMonitorEnter (47 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_RawMonitorEnter (47 samples, 0.13%)</title><rect x="862.5" y="1985" width="1.5" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="865.49" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('oop_disjoint_arraycopy (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>oop_disjoint_arraycopy (10 samples, 0.03%)</title><rect x="519.8" y="2001" width="0.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.84" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="777.4" y="2017" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.44" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/marathon/health/HealthCheckActor:.log in Lmesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (99 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/marathon/health/HealthCheckActor:.log in Lmesosphere/marathon/health/HealthCheckActor$$anonfun$receive$1:.applyOrElse (99 samples, 0.28%)</title><rect x="435.9" y="2017" width="3.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.88" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (116 samples, 0.32%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (116 samples, 0.32%)</title><rect x="930.7" y="1937" width="3.8" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.65" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="625" width="84.9" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::_Rep::_M_dispose (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::_Rep::_M_dispose (6 samples, 0.02%)</title><rect x="573.8" y="2017" width="0.2" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.76" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ttwu_do_wakeup (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ttwu_do_wakeup (14 samples, 0.04%)</title><rect x="52.1" y="1969" width="0.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.10" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Monitor::unlock (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Monitor::unlock (8 samples, 0.02%)</title><rect x="334.5" y="1953" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="337.51" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::dequestd::functionvoid (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::dequestd::functionvoid (23 samples, 0.06%)</title><rect x="176.8" y="1985" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.80" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_setspecific (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_setspecific (9 samples, 0.03%)</title><rect x="1028.0" y="2033" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="1030.96" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::_M_get_insert_hint_unique_pos (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Rb_treestd::string, std::pairstd::string const, process::ProcessBase*, std::_Select1ststd::pairstd::string const, process::ProcessBase* , std::lessstd::string, std::allocatorstd::pairstd::string const, process::ProcessBase* ::_M_get_insert_hint_unique_pos (6 samples, 0.02%)</title><rect x="233.7" y="2001" width="0.2" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="236.70" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryFlag (29 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryFlag (29 samples, 0.08%)</title><rect x="887.1" y="2017" width="1.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="890.14" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('CardTableExtension::scavenge_contents_parallel (65 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>CardTableExtension::scavenge_contents_parallel (65 samples, 0.18%)</title><rect x="1064.2" y="1969" width="2.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.24" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (19 samples, 0.05%)</title><rect x="933.0" y="1297" width="0.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.03" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/ListBuffer:.$plus$eq in Lscala/collection/mutable/ListBuffer:.$plus$eq (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/ListBuffer:.$plus$eq in Lscala/collection/mutable/ListBuffer:.$plus$eq (10 samples, 0.03%)</title><rect x="535.7" y="2017" width="0.4" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="538.73" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_org_apache_mesos_state_AbstractState__1_1fetch_1get_1timeout (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_org_apache_mesos_state_AbstractState__1_1fetch_1get_1timeout (41 samples, 0.11%)</title><rect x="421.8" y="1985" width="1.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.80" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Parker::park (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Parker::park (13 samples, 0.04%)</title><rect x="318.7" y="1969" width="0.4" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.68" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wake (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wake (68 samples, 0.19%)</title><rect x="633.7" y="2017" width="2.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="636.70" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaCalls::call_virtual (82 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaCalls::call_virtual (82 samples, 0.23%)</title><rect x="1073.6" y="1953" width="2.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.56" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::allocate_instance (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::allocate_instance (4 samples, 0.01%)</title><rect x="191.7" y="1969" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.73" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::table_implboost::unordered::detail::setstd::allocatorprocess::UPID, process::UPID, boost::hashprocess::UPID, std::equal_toprocess::UPID ::erase_key (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::table_implboost::unordered::detail::setstd::allocatorprocess::UPID, process::UPID, boost::hashprocess::UPID, std::equal_toprocess::UPID ::erase_key (6 samples, 0.02%)</title><rect x="164.7" y="1953" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.70" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.apply$mcV$sp in Lscala/concurrent/BlockContext$:.withBlockContext (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/BatchingExecutor$Batch$$anonfun$run$1:.apply$mcV$sp in Lscala/concurrent/BlockContext$:.withBlockContext (8 samples, 0.02%)</title><rect x="539.9" y="2017" width="0.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.90" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_CallBooleanMethodV (66 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_CallBooleanMethodV (66 samples, 0.18%)</title><rect x="61.7" y="1985" width="2.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="64.68" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('idle_cpu (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>idle_cpu (23 samples, 0.06%)</title><rect x="980.4" y="2017" width="0.8" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="983.41" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="275.9" y="1921" width="0.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.89" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (78 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (78 samples, 0.22%)</title><rect x="440.5" y="1985" width="2.5" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.47" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.02%)</title><rect x="569.0" y="1969" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.01" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (42 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (42 samples, 0.12%)</title><rect x="478.1" y="1969" width="1.4" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="481.14" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('malloc (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>malloc (7 samples, 0.02%)</title><rect x="202.7" y="2001" width="0.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.67" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (86 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (86 samples, 0.24%)</title><rect x="270.7" y="1873" width="2.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.74" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::Event::~Event (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::Event::~Event (4 samples, 0.01%)</title><rect x="466.9" y="2017" width="0.2" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('intel_pmu_disable_all (71 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_disable_all (71 samples, 0.20%)</title><rect x="981.2" y="2017" width="2.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="984.21" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('call_stub (82 samples, 0.23%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>call_stub (82 samples, 0.23%)</title><rect x="1073.6" y="1921" width="2.7" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.56" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Ljava/lang/ThreadLocal:.set (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/ThreadLocal$ThreadLocalMap:.cleanSomeSlots in Ljava/lang/ThreadLocal:.set (10 samples, 0.03%)</title><rect x="200.8" y="2001" width="0.3" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.82" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (48 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (48 samples, 0.13%)</title><rect x="13.4" y="2001" width="1.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.40" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('malloc_consolidate (99 samples, 0.28%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>malloc_consolidate (99 samples, 0.28%)</title><rect x="914.7" y="2033" width="3.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="917.69" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::ProcessBase* const, hashsetprocess::UPID , process::ProcessBase*, hashsetprocess::UPID, boost::hashprocess::ProcessBase*, std::equal_toprocess::ProcessBase* ::operator[] (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::ProcessBase* const, hashsetprocess::UPID , process::ProcessBase*, hashsetprocess::UPID, boost::hashprocess::ProcessBase*, std::equal_toprocess::ProcessBase* ::operator[] (10 samples, 0.03%)</title><rect x="586.1" y="1985" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.06" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::~JavaThread (1,318 samples, 3.69%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::~JavaThread (1,318 samples, 3.69%)</title><rect x="15.8" y="2017" width="43.6" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.82" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Java..</text> | |
</g> | |
<g class="func_g" onmouseover="s('create_buffer_iarchive (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>create_buffer_iarchive (5 samples, 0.01%)</title><rect x="295.4" y="2017" width="0.1" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.38" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::cleanup (46 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::cleanup (46 samples, 0.13%)</title><rect x="476.2" y="2017" width="1.5" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="479.16" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (24 samples, 0.07%)</title><rect x="587.2" y="1985" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.25" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Thread:.interrupted in Lscala/concurrent/forkjoin/ForkJoinPool:.idleAwaitWork (352 samples, 0.99%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Thread:.interrupted in Lscala/concurrent/forkjoin/ForkJoinPool:.idleAwaitWork (352 samples, 0.99%)</title><rect x="305.5" y="2017" width="11.6" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="308.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (8 samples, 0.02%)</title><rect x="686.5" y="1873" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.54" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="933.8" y="1249" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" /> | |
<text text-anchor="" x="936.82" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('instanceKlass::allocate_objArray (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>instanceKlass::allocate_objArray (4 samples, 0.01%)</title><rect x="548.6" y="1857" width="0.1" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.55" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('select_estimate_accuracy (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_estimate_accuracy (7 samples, 0.02%)</title><rect x="229.7" y="2001" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.66" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="504.3" y="1969" width="0.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.31" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (11 samples, 0.03%)</title><rect x="276.4" y="1953" width="0.3" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.39" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SystemDictionary::resolve_or_fail (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SystemDictionary::resolve_or_fail (14 samples, 0.04%)</title><rect x="422.6" y="1937" width="0.5" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.60" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getZipEntry (91 samples, 0.25%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getZipEntry (91 samples, 0.25%)</title><rect x="415.8" y="2017" width="3.0" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.82" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (63 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (63 samples, 0.18%)</title><rect x="473.8" y="1985" width="2.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.81" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sysret_check (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sysret_check (5 samples, 0.01%)</title><rect x="117.8" y="49" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.75" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (17 samples, 0.05%)</title><rect x="532.4" y="1953" width="0.6" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.43" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_broadcast@@GLIBC_2.3.2 (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (7 samples, 0.02%)</title><rect x="946.5" y="2033" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="949.48" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('spray/can/parsing/CharUtils$:.byteChar in Lspray/can/parsing/HttpHeaderParser:.parseHeaderLine (39 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>spray/can/parsing/CharUtils$:.byteChar in Lspray/can/parsing/HttpHeaderParser:.parseHeaderLine (39 samples, 0.11%)</title><rect x="1055.7" y="2033" width="1.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.72" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('SharedRuntime::find_callee_info_helper (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>SharedRuntime::find_callee_info_helper (27 samples, 0.08%)</title><rect x="392.7" y="1953" width="0.9" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="395.73" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_new_array_nozero_Java (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_new_array_nozero_Java (14 samples, 0.04%)</title><rect x="680.2" y="2033" width="0.5" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.23" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessBase::serve (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessBase::serve (5 samples, 0.01%)</title><rect x="467.7" y="1985" width="0.1" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.67" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('kmem_cache_alloc_node (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>kmem_cache_alloc_node (4 samples, 0.01%)</title><rect x="626.3" y="2017" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.33" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/Descriptors$FieldDescriptor:.isExtension in Lcom/google/protobuf/GeneratedMessage:.hasField (68 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/Descriptors$FieldDescriptor:.isExtension in Lcom/google/protobuf/GeneratedMessage:.hasField (68 samples, 0.19%)</title><rect x="287.7" y="2017" width="2.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="290.65" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (53 samples, 0.15%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (53 samples, 0.15%)</title><rect x="520.5" y="1937" width="1.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.47" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('find_next_bit (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_next_bit (9 samples, 0.03%)</title><rect x="107.3" y="49" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> | |
<text text-anchor="" x="110.28" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,905 samples, 8.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,905 samples, 8.13%)</title><rect x="75.5" y="1985" width="95.9" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.46" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Java_java_util_zip_ZipFile_getEntryBytes (360 samples, 1.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Java_java_util_zip_ZipFile_getEntryBytes (360 samples, 1.01%)</title><rect x="873.3" y="2001" width="11.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="876.29" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntrySize in Ljava/util/zip/ZipFile:.getEntrySize (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntrySize in Ljava/util/zip/ZipFile:.getEntrySize (5 samples, 0.01%)</title><rect x="415.6" y="2017" width="0.2" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.59" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularFieldAccessor:.get (204 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/DelegatingMethodAccessorImpl:.invoke in Lcom/google/protobuf/GeneratedMessage$FieldAccessorTable$SingularFieldAccessor:.get (204 samples, 0.57%)</title><rect x="1096.3" y="2033" width="6.8" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="1099.33" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('plist_add (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>plist_add (6 samples, 0.02%)</title><rect x="87.6" y="49" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="90.58" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/TrieIterator:.next0 in Lscala/collection/TraversableOnce$class:.collectFirst (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/TrieIterator:.next0 in Lscala/collection/TraversableOnce$class:.collectFirst (18 samples, 0.05%)</title><rect x="524.8" y="2017" width="0.6" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.83" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/util/hashing/MurmurHash3:.listHash in Lscala/util/hashing/MurmurHash3$:.seqHash (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/util/hashing/MurmurHash3:.listHash in Lscala/util/hashing/MurmurHash3$:.seqHash (7 samples, 0.02%)</title><rect x="560.5" y="2017" width="0.3" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.55" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key (10 samples, 0.03%)</title><rect x="143.6" y="49" width="0.4" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" /> | |
<text text-anchor="" x="146.62" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/mutable/LazyBuilder:.init in Lscala/collection/immutable/Stream$$anonfun$map$1:.apply (127 samples, 0.36%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/mutable/LazyBuilder:.init in Lscala/collection/immutable/Stream$$anonfun$map$1:.apply (127 samples, 0.36%)</title><rect x="531.5" y="2017" width="4.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.54" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('oopDesc* PSPromotionManager::copy_to_survivor_spacefalse (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>oopDesc* PSPromotionManager::copy_to_survivor_spacefalse (16 samples, 0.04%)</title><rect x="1065.1" y="1937" width="0.5" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.07" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (66 samples, 0.18%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (66 samples, 0.18%)</title><rect x="437.0" y="1953" width="2.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.97" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('system_call_after_swapgs (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>system_call_after_swapgs (17 samples, 0.05%)</title><rect x="118.3" y="49" width="0.6" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="121.35" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Thread:.isInterrupted in Ljava/util/concurrent/SynchronousQueue$TransferStack:.awaitFulfill (1,010 samples, 2.83%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Thread:.isInterrupted in Ljava/util/concurrent/SynchronousQueue$TransferStack:.awaitFulfill (1,010 samples, 2.83%)</title><rect x="320.0" y="2017" width="33.4" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="323.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text> | |
</g> | |
<g class="func_g" onmouseover="s('Unsafe_Park (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_Park (22 samples, 0.06%)</title><rect x="396.0" y="1985" width="0.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.00" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (6 samples, 0.02%)</title><rect x="1062.9" y="1953" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.89" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Function_handlervoid (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Function_handlervoid (7 samples, 0.02%)</title><rect x="230.6" y="2001" width="0.2" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.59" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Collections$UnmodifiableCollection:.isEmpty in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (18 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Collections$UnmodifiableCollection:.isEmpty in Lcom/google/protobuf/GeneratedMessage:.getAllFieldsMutable (18 samples, 0.05%)</title><rect x="375.7" y="2017" width="0.6" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="378.74" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::new_array_C (14 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::new_array_C (14 samples, 0.04%)</title><rect x="679.7" y="2017" width="0.5" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.73" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="448.8" y="1953" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.80" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::basic_stringchar, std::char_traitschar, std::allocatorchar ::basic_string (22 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::basic_stringchar, std::char_traitschar, std::allocatorchar ::basic_string (22 samples, 0.06%)</title><rect x="234.7" y="2001" width="0.7" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="237.69" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_unlock (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_unlock (6 samples, 0.02%)</title><rect x="168.3" y="1953" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.34" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor39:.invoke (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor39:.invoke (15 samples, 0.04%)</title><rect x="1133.7" y="2033" width="0.5" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="1136.73" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/zip/ZipFile:.getEntryMethod in Ljava/util/zip/ZipFile:.getEntryMethod (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/zip/ZipFile:.getEntryMethod in Ljava/util/zip/ZipFile:.getEntryMethod (4 samples, 0.01%)</title><rect x="415.5" y="2017" width="0.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.46" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (25 samples, 0.07%)</title><rect x="932.9" y="1345" width="0.8" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.87" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/Writes$$anon$5:.writes in Lplay/api/libs/json/Writes$$anon$5:.writes (80 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/Writes$$anon$5:.writes in Lplay/api/libs/json/Writes$$anon$5:.writes (80 samples, 0.22%)</title><rect x="533.1" y="1985" width="2.6" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.06" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (41 samples, 0.11%)</title><rect x="480.8" y="2001" width="1.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.82" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/ActorRef:.hashCode in Lakka/actor/ActorRef:.hashCode (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/ActorRef:.hashCode in Lakka/actor/ActorRef:.hashCode (9 samples, 0.03%)</title><rect x="276.8" y="2017" width="0.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.78" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessBase::enqueue (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessBase::enqueue (5 samples, 0.01%)</title><rect x="481.0" y="1985" width="0.1" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (45 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (45 samples, 0.13%)</title><rect x="932.6" y="1377" width="1.5" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.60" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('plist_add (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>plist_add (27 samples, 0.08%)</title><rect x="151.1" y="49" width="0.8" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="154.06" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="577" width="84.9" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="689.6" y="1953" width="0.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="692.61" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/concurrent/ConcurrentHashMap:.get (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/concurrent/ConcurrentHashMap:.get (5 samples, 0.01%)</title><rect x="817.0" y="2033" width="0.1" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="819.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadLocalprocess::ProcessBase::operator= (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalprocess::ProcessBase::operator= (5 samples, 0.01%)</title><rect x="11.2" y="2033" width="0.1" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.16" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="687.8" y="1985" width="0.1" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.79" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('flush_send_queue (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>flush_send_queue (6 samples, 0.02%)</title><rect x="297.1" y="2017" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="300.10" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="378.8" y="2001" width="0.1" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.75" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_CallLongMethodV (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_CallLongMethodV (17 samples, 0.05%)</title><rect x="63.9" y="1985" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="66.89" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('check_preempt_wakeup (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>check_preempt_wakeup (5 samples, 0.01%)</title><rect x="99.7" y="49" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="102.71" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Scheduler$class:.scheduleOnce in Lakka/dispatch/Mailbox:.processMailbox (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Scheduler$class:.scheduleOnce in Lakka/dispatch/Mailbox:.processMailbox (28 samples, 0.08%)</title><rect x="687.0" y="2033" width="0.9" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="690.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('jni_invoke_nonstatic (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>jni_invoke_nonstatic (25 samples, 0.07%)</title><rect x="65.2" y="1969" width="0.8" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> | |
<text text-anchor="" x="68.18" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="305.0" y="1953" width="0.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.97" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string constructstd::string (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string constructstd::string (6 samples, 0.02%)</title><rect x="372.3" y="2001" width="0.2" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.27" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('os::PlatformEvent::park (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>os::PlatformEvent::park (5 samples, 0.01%)</title><rect x="692.6" y="1969" width="0.2" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.62" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (6 samples, 0.02%)</title><rect x="249.0" y="2001" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.96" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_and_fence (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_and_fence (4 samples, 0.01%)</title><rect x="384.5" y="1985" width="0.2" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="387.53" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::WaitWaiter::exited (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::WaitWaiter::exited (5 samples, 0.01%)</title><rect x="482.4" y="1985" width="0.1" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.37" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (5 samples, 0.01%)</title><rect x="276.6" y="1905" width="0.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.58" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('HandleMark::pop_and_restore (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>HandleMark::pop_and_restore (5 samples, 0.01%)</title><rect x="318.4" y="1969" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.45" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (16 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (16 samples, 0.04%)</title><rect x="1075.3" y="1729" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.28" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/lang/Integer:.getChars in Ljava/lang/Integer:.getChars (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/lang/Integer:.getChars in Ljava/lang/Integer:.getChars (6 samples, 0.02%)</title><rect x="302.4" y="2017" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="305.42" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('free (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>free (5 samples, 0.01%)</title><rect x="860.3" y="2017" width="0.1" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="863.27" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (96 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (96 samples, 0.27%)</title><rect x="931.2" y="1761" width="3.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.18" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::dequestd::functionvoid (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::dequestd::functionvoid (7 samples, 0.02%)</title><rect x="171.1" y="1969" width="0.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.11" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__fget_light (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__fget_light (10 samples, 0.03%)</title><rect x="179.5" y="2001" width="0.4" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.54" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/collection/immutable/Set$Set4:.$plus (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/collection/immutable/Set$Set4:.$plus (4 samples, 0.01%)</title><rect x="558.9" y="2017" width="0.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.90" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/PartialFunction$Unlifted:.applyOrElse (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/PartialFunction$Unlifted:.applyOrElse (21 samples, 0.06%)</title><rect x="504.0" y="2017" width="0.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.01" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_cond_wait@@GLIBC_2.3.2 (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_cond_wait@@GLIBC_2.3.2 (12 samples, 0.03%)</title><rect x="12.0" y="1985" width="0.4" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.02" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java/util/Formatter:.format (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java/util/Formatter:.format (6 samples, 0.02%)</title><rect x="378.7" y="2017" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.72" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('update_cfs_shares (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_cfs_shares (5 samples, 0.01%)</title><rect x="182.8" y="1985" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="185.78" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_GetStackTraceElement (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_GetStackTraceElement (10 samples, 0.03%)</title><rect x="356.1" y="1985" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.05" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/dispatch/Mailbox:.systemQueueGet in Lakka/dispatch/DefaultSystemMessageQueue$class:.hasSystemMessages (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/dispatch/Mailbox:.systemQueueGet in Lakka/dispatch/DefaultSystemMessageQueue$class:.hasSystemMessages (7 samples, 0.02%)</title><rect x="279.3" y="2017" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.26" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('memset (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>memset (5 samples, 0.01%)</title><rect x="918.1" y="2033" width="0.1" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.06" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('fetch_and_add (11 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>fetch_and_add (11 samples, 0.03%)</title><rect x="296.7" y="2017" width="0.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" /> | |
<text text-anchor="" x="299.74" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('java_lang_String::create_oop_from_str (84 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>java_lang_String::create_oop_from_str (84 samples, 0.24%)</title><rect x="69.9" y="1969" width="2.7" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="72.87" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('effective_load.isra.45 (77 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>effective_load.isra.45 (77 samples, 0.22%)</title><rect x="101.0" y="49" width="2.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.03" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="1054.2" y="1969" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.20" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (60 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (60 samples, 0.17%)</title><rect x="520.2" y="1985" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.24" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (174 samples, 0.49%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (174 samples, 0.49%)</title><rect x="498.3" y="2001" width="5.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.26" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Compile::Optimize (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Compile::Optimize (13 samples, 0.04%)</title><rect x="1072.2" y="1905" width="0.5" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.24" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('try_to_wake_up (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (6 samples, 0.02%)</title><rect x="186.6" y="1985" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="189.58" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('do_futex (31 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (31 samples, 0.09%)</title><rect x="632.6" y="2017" width="1.0" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.61" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (109 samples, 0.31%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (109 samples, 0.31%)</title><rect x="222.3" y="2001" width="3.6" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="225.26" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('vframeStreamCommon::security_get_caller_frame (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>vframeStreamCommon::security_get_caller_frame (5 samples, 0.01%)</title><rect x="422.3" y="1937" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.33" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_RawMonitorEnter (9 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_RawMonitorEnter (9 samples, 0.03%)</title><rect x="861.1" y="2001" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> | |
<text text-anchor="" x="864.07" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (19 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (19 samples, 0.05%)</title><rect x="1057.9" y="2001" width="0.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.93" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/runtime/ScalaRunTime$:.hash in Lscala/collection/immutable/HashMap:.$plus (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/runtime/ScalaRunTime$:.hash in Lscala/collection/immutable/HashMap:.$plus (7 samples, 0.02%)</title><rect x="1052.9" y="2033" width="0.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.88" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::wait (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::wait (5 samples, 0.01%)</title><rect x="477.9" y="2017" width="0.1" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" /> | |
<text text-anchor="" x="480.88" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/BatchingExecutor$Batch:.run in Lscala/concurrent/BatchingExecutor$class:.execute (8 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/BatchingExecutor$Batch:.run in Lscala/concurrent/BatchingExecutor$class:.execute (8 samples, 0.02%)</title><rect x="540.4" y="2017" width="0.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.39" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::_Sp_counted_ptrprocess::Futuremesos::internal::state::Variable::Data*, (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::_Sp_counted_ptrprocess::Futuremesos::internal::state::Variable::Data*, (21 samples, 0.06%)</title><rect x="570.1" y="2017" width="0.7" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.06" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('WatcherThread::sleep (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>WatcherThread::sleep (4 samples, 0.01%)</title><rect x="1078.7" y="1985" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.75" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/ActorCell:.invoke in Lakka/dispatch/Mailbox:.processMailbox (28 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/ActorCell:.invoke in Lakka/dispatch/Mailbox:.processMailbox (28 samples, 0.08%)</title><rect x="682.9" y="2033" width="1.0" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.94" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::operator[] (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>boost::unordered::detail::table_implboost::unordered::detail::mapstd::allocatorstd::pairprocess::UPID const, hashsetprocess::ProcessBase* , process::UPID, hashsetprocess::ProcessBase*, boost::hashprocess::UPID, std::equal_toprocess::UPID ::operator[] (13 samples, 0.04%)</title><rect x="697.7" y="2033" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.71" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="129" width="84.9" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('schedule (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.01%)</title><rect x="153.4" y="49" width="0.2" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="156.40" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('play/api/libs/json/JsObject$$anonfun$$plus$plus$1:.apply in Lscala/collection/TraversableLike$$anonfun$filterImpl$1:.apply (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>play/api/libs/json/JsObject$$anonfun$$plus$plus$1:.apply in Lscala/collection/TraversableLike$$anonfun$filterImpl$1:.apply (4 samples, 0.01%)</title><rect x="454.1" y="2017" width="0.1" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.09" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('com/google/protobuf/AbstractMessage:.hashFields (197 samples, 0.55%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>com/google/protobuf/AbstractMessage:.hashFields (197 samples, 0.55%)</title><rect x="699.4" y="2033" width="6.5" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" /> | |
<text text-anchor="" x="702.36" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sys_futex (15 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (15 samples, 0.04%)</title><rect x="117.3" y="49" width="0.5" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.25" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="113" width="84.9" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('__pthread_mutex_cond_lock (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__pthread_mutex_cond_lock (33 samples, 0.09%)</title><rect x="339.9" y="1969" width="1.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.89" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (43 samples, 0.12%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (43 samples, 0.12%)</title><rect x="1042.5" y="2017" width="1.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" /> | |
<text text-anchor="" x="1045.50" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pthread_mutex_lock (59 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pthread_mutex_lock (59 samples, 0.17%)</title><rect x="387.5" y="1969" width="2.0" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" /> | |
<text text-anchor="" x="390.54" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,571 samples, 7.20%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,571 samples, 7.20%)</title><rect x="75.9" y="1537" width="85.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="941.1" y="1921" width="0.1" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.09" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('std::string::compare (33 samples, 0.09%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>std::string::compare (33 samples, 0.09%)</title><rect x="1084.6" y="2033" width="1.1" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="1087.56" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::resume (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::resume (4 samples, 0.01%)</title><rect x="467.9" y="1985" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.93" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (96 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (96 samples, 0.27%)</title><rect x="931.2" y="1745" width="3.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.18" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('effective_load.isra.45 (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>effective_load.isra.45 (6 samples, 0.02%)</title><rect x="215.3" y="1985" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> | |
<text text-anchor="" x="218.26" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/concurrent/impl/Promise$DefaultPromise:.flatMap in Lscala/concurrent/Future$:.sequence (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/concurrent/impl/Promise$DefaultPromise:.flatMap in Lscala/concurrent/Future$:.sequence (4 samples, 0.01%)</title><rect x="553.1" y="2017" width="0.1" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.11" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (10 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (10 samples, 0.03%)</title><rect x="454.8" y="1969" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.85" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('get_futex_key_refs (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>get_futex_key_refs (5 samples, 0.01%)</title><rect x="38.5" y="1969" width="0.1" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" /> | |
<text text-anchor="" x="41.48" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('futex_wait_queue_me (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.01%)</title><rect x="182.0" y="1985" width="0.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> | |
<text text-anchor="" x="184.98" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (13 samples, 0.04%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (13 samples, 0.04%)</title><rect x="435.5" y="2001" width="0.4" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.45" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('scala/collection/immutable/HashSet$HashTrieSet:.foreach (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala/collection/immutable/HashSet$HashTrieSet:.foreach (4 samples, 0.01%)</title><rect x="1038.9" y="2033" width="0.1" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" /> | |
<text text-anchor="" x="1041.87" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__lll_unlock_wake (125 samples, 0.35%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lll_unlock_wake (125 samples, 0.35%)</title><rect x="183.3" y="2001" width="4.1" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" /> | |
<text text-anchor="" x="186.27" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (7 samples, 0.02%)</title><rect x="276.0" y="1889" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.96" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('_register_finalizer_Java (25 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>_register_finalizer_Java (25 samples, 0.07%)</title><rect x="264.9" y="2017" width="0.8" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.92" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OptoRuntime::is_deoptimized_caller_frame (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OptoRuntime::is_deoptimized_caller_frame (6 samples, 0.02%)</title><rect x="680.3" y="2001" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" /> | |
<text text-anchor="" x="683.26" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (2,568 samples, 7.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (2,568 samples, 7.19%)</title><rect x="75.9" y="513" width="84.9" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" /> | |
<text text-anchor="" x="78.92" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s('process::ProcessManager::use (24 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>process::ProcessManager::use (24 samples, 0.07%)</title><rect x="945.2" y="2033" width="0.8" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" /> | |
<text text-anchor="" x="948.19" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('OldToYoungRootsTask::do_it (67 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldToYoungRootsTask::do_it (67 samples, 0.19%)</title><rect x="1064.2" y="1985" width="2.3" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.24" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="201.4" y="1921" width="0.4" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.45" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('BiasedLocking::revoke_and_rebias (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>BiasedLocking::revoke_and_rebias (4 samples, 0.01%)</title><rect x="647.2" y="2001" width="0.1" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.15" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (17 samples, 0.05%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (17 samples, 0.05%)</title><rect x="1056.4" y="1937" width="0.5" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" /> | |
<text text-anchor="" x="1059.38" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('org/parboiled/buffers/DefaultInputBuffer:.extract in Lorg/parboiled/scala/rules/Rule$$anonfun$exec$1:.apply (7 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>org/parboiled/buffers/DefaultInputBuffer:.extract in Lorg/parboiled/scala/rules/Rule$$anonfun$exec$1:.apply (7 samples, 0.02%)</title><rect x="939.8" y="2033" width="0.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.81" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('sun/reflect/GeneratedMethodAccessor37:.invoke (23 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>sun/reflect/GeneratedMethodAccessor37:.invoke (23 samples, 0.06%)</title><rect x="1131.9" y="2033" width="0.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1134.95" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('ThreadStateTransition::transition_from_native (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadStateTransition::transition_from_native (6 samples, 0.02%)</title><rect x="385.6" y="1969" width="0.2" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" /> | |
<text text-anchor="" x="388.56" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JVM_DoPrivileged (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JVM_DoPrivileged (6 samples, 0.02%)</title><rect x="201.6" y="1793" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.61" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('[unknown] (5 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (5 samples, 0.01%)</title><rect x="395.7" y="1985" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="398.70" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (41 samples, 0.11%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (41 samples, 0.11%)</title><rect x="932.7" y="1361" width="1.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" /> | |
<text text-anchor="" x="935.73" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('pick_next_task_fair (21 samples, 0.06%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_fair (21 samples, 0.06%)</title><rect x="149.4" y="49" width="0.7" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.40" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (4 samples, 0.01%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (4 samples, 0.01%)</title><rect x="712.3" y="2017" width="0.1" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" /> | |
<text text-anchor="" x="715.31" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('JavaThread::current_park_blocker (27 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaThread::current_park_blocker (27 samples, 0.08%)</title><rect x="323.3" y="1985" width="0.9" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="326.34" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('Interpreter (12 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>Interpreter (12 samples, 0.03%)</title><rect x="64.5" y="1889" width="0.3" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.45" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('enqueue_task_fair (30 samples, 0.08%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_task_fair (30 samples, 0.08%)</title><rect x="106.3" y="49" width="1.0" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" /> | |
<text text-anchor="" x="109.28" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('akka/actor/Actor$$anonfun$aroundReceive$1:.init in Lakka/actor/Actor$class:.aroundReceive (6 samples, 0.02%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>akka/actor/Actor$$anonfun$aroundReceive$1:.init in Lakka/actor/Actor$class:.aroundReceive (6 samples, 0.02%)</title><rect x="193.0" y="2001" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.02" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s('__clock_gettime (671 samples, 1.88%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>__clock_gettime (671 samples, 1.88%)</title><rect x="829.9" y="2017" width="22.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> | |
<text text-anchor="" x="832.94" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
</g> | |
<g class="func_g" onmouseover="s('mesosphere/util/BackToTheFuture$$anonfun$futureToFutureOption$1:.apply in Lscala/concurrent/impl/Future$PromiseCompletingRunnable:.run (79 samples, 0.22%)')" onmouseout="c()" onclick="zoom(this)"> | |
<title>mesosphere/util/BackToTheFuture$$anonfun$futureToFutureOption$1:.apply in Lscala/concu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment