wikijs/cpu-perf-mirror-orgarea-rb_100018672300qps.svg

17895 lines
1.5 MiB

<?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="1574" onload="init(evt)" viewBox="0 0 1200 1574" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1574.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="1557" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="1557" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (270 samples, 0.44%)</title><rect x="545.5" y="1157" width="5.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="548.46" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/BeanDeserializer:::deserialize (426 samples, 0.69%)</title><rect x="1120.8" y="645" width="8.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1123.81" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::get (8 samples, 0.01%)</title><rect x="85.6" y="1269" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="88.60" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (16,817 samples, 27.41%)</title><rect x="105.0" y="1221" width="323.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="108.03" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (737 samples, 1.20%)</title><rect x="1030.8" y="325" width="14.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1033.78" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (9 samples, 0.01%)</title><rect x="521.3" y="1077" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioWorker:::process (19 samples, 0.03%)</title><rect x="30.3" y="1237" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/type/TypeFactory:::_fromAny (9 samples, 0.01%)</title><rect x="738.9" y="629" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="741.86" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::&lt;init&gt; (13 samples, 0.02%)</title><rect x="573.8" y="1317" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="576.83" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (22 samples, 0.04%)</title><rect x="468.6" y="1061" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="471.61" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (18 samples, 0.03%)</title><rect x="832.2" y="389" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="835.21" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (13 samples, 0.02%)</title><rect x="95.1" y="629" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="98.08" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (21 samples, 0.03%)</title><rect x="523.3" y="1269" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (11 samples, 0.02%)</title><rect x="557.0" y="1189" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (226 samples, 0.37%)</title><rect x="39.6" y="1173" width="4.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="42.59" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (6 samples, 0.01%)</title><rect x="535.0" y="1093" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="538.01" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (6 samples, 0.01%)</title><rect x="1075.1" y="325" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1078.14" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioBlockingSelector$BlockPoller:::run (403 samples, 0.66%)</title><rect x="1167.3" y="1365" width="7.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1170.32" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_swevent_start_hrtimer.part.70 (6 samples, 0.01%)</title><rect x="1170.9" y="1013" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1173.88" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (57 samples, 0.09%)</title><rect x="563.3" y="1189" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (49 samples, 0.08%)</title><rect x="1139.8" y="757" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1142.79" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (206 samples, 0.34%)</title><rect x="1055.7" y="565" width="4.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1058.73" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (60,852 samples, 99.20%)</title><rect x="19.0" y="1477" width="1170.5" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="21.96" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (35 samples, 0.06%)</title><rect x="576.3" y="1109" width="0.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="579.27" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (337 samples, 0.55%)</title><rect x="600.5" y="1221" width="6.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="603.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder:::&lt;init&gt; (10 samples, 0.02%)</title><rect x="495.7" y="1253" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="498.69" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (13 samples, 0.02%)</title><rect x="895.9" y="485" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="898.94" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_rcv (16 samples, 0.03%)</title><rect x="73.3" y="773" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="76.34" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (81 samples, 0.13%)</title><rect x="19.0" y="1317" width="1.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="22.00" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/Transport:::serviceCall (12 samples, 0.02%)</title><rect x="44.4" y="1173" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (17 samples, 0.03%)</title><rect x="1163.4" y="1077" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1166.38" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (6 samples, 0.01%)</title><rect x="84.3" y="869" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/DefaultConnectionReuseStrategy:::keepAlive (54 samples, 0.09%)</title><rect x="48.6" y="1253" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="51.65" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (37 samples, 0.06%)</title><rect x="567.4" y="1109" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="570.42" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/channel/AbstractChannel$AbstractUnsafe:::flush0 (129 samples, 0.21%)</title><rect x="518.3" y="1301" width="2.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="521.33" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (43 samples, 0.07%)</title><rect x="885.9" y="469" width="0.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="888.92" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (308 samples, 0.50%)</title><rect x="1113.6" y="565" width="5.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1116.61" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getEnclosingMethod0 (7 samples, 0.01%)</title><rect x="1155.5" y="1093" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1158.45" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BmpCharProperty:::match (13 samples, 0.02%)</title><rect x="1149.4" y="773" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.39" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (19 samples, 0.03%)</title><rect x="499.8" y="1077" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="502.79" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient$1:::completed (238 samples, 0.39%)</title><rect x="85.8" y="1269" width="4.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="88.85" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (168 samples, 0.27%)</title><rect x="608.2" y="1061" width="3.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="611.24" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (6 samples, 0.01%)</title><rect x="573.5" y="1173" width="0.1" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="576.48" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle (9 samples, 0.01%)</title><rect x="112.8" y="997" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="115.80" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeField (16 samples, 0.03%)</title><rect x="703.8" y="629" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="706.85" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (7 samples, 0.01%)</title><rect x="640.1" y="1029" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (12 samples, 0.02%)</title><rect x="44.4" y="1109" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/execchain/MainClientExec:::execute (6 samples, 0.01%)</title><rect x="522.2" y="1109" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (36 samples, 0.06%)</title><rect x="1164.4" y="1173" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1167.42" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_start (6 samples, 0.01%)</title><rect x="473.0" y="1013" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="476.03" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VM_G1IncCollectionPause::doit (38 samples, 0.06%)</title><rect x="1177.9" y="1397" width="0.8" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="1180.94" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (9 samples, 0.01%)</title><rect x="896.3" y="421" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="899.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/JsonSerializer:::serialize (320 samples, 0.52%)</title><rect x="1142.5" y="773" width="6.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1145.49" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (14 samples, 0.02%)</title><rect x="1158.8" y="949" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="1161.84" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (9 samples, 0.01%)</title><rect x="972.4" y="565" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="975.40" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.01%)</title><rect x="87.1" y="1125" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (9 samples, 0.01%)</title><rect x="1178.0" y="1301" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/util/RequestUtil:::getRequestObj (171 samples, 0.28%)</title><rect x="1138.4" y="821" width="3.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1141.35" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="552.9" y="1221" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (19 samples, 0.03%)</title><rect x="599.5" y="1221" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.01%)</title><rect x="523.0" y="1189" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (8 samples, 0.01%)</title><rect x="432.7" y="1173" width="0.1" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text text-anchor="" x="435.69" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (67 samples, 0.11%)</title><rect x="519.4" y="1045" width="1.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="522.45" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/IOSessionImpl:::setEvent (65 samples, 0.11%)</title><rect x="778.5" y="485" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="781.52" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_task (7 samples, 0.01%)</title><rect x="637.8" y="1173" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="640.83" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (21 samples, 0.03%)</title><rect x="523.3" y="1253" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/ratelimiter/OperationIPRateLimiterPlugin:::getRateLimiter (6 samples, 0.01%)</title><rect x="694.0" y="789" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="697.04" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (14 samples, 0.02%)</title><rect x="18.3" y="1381" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (9 samples, 0.01%)</title><rect x="773.7" y="421" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="776.69" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/CollectionTypeAdapterFactory:::create (229 samples, 0.37%)</title><rect x="704.8" y="597" width="4.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="707.79" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeToken (11 samples, 0.02%)</title><rect x="497.7" y="1253" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="500.73" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (197 samples, 0.32%)</title><rect x="705.3" y="501" width="3.8" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="708.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/specific/SpecificJsonReader:::readRecord (38 samples, 0.06%)</title><rect x="1139.0" y="789" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1142.04" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_poll (6 samples, 0.01%)</title><rect x="102.4" y="1157" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="105.37" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (8 samples, 0.01%)</title><rect x="18.6" y="1317" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,465 samples, 2.39%)</title><rect x="740.2" y="517" width="28.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="743.22" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (9 samples, 0.01%)</title><rect x="798.3" y="309" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="801.28" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CLoggingLogger$FreewayLogSender:::send (16 samples, 0.03%)</title><rect x="1028.0" y="661" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1030.99" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (1,350 samples, 2.20%)</title><rect x="798.6" y="293" width="26.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="801.62" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/connector/Request:::setAttribute (7 samples, 0.01%)</title><rect x="1155.7" y="1109" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1158.68" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (9 samples, 0.01%)</title><rect x="681.2" y="853" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="684.22" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (14,888 samples, 24.27%)</title><rect x="136.7" y="1045" width="286.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="139.73" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pmu_enable</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (54 samples, 0.09%)</title><rect x="1060.5" y="629" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1063.46" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (198 samples, 0.32%)</title><rect x="705.3" y="549" width="3.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="708.27" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (7 samples, 0.01%)</title><rect x="638.0" y="1269" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (17 samples, 0.03%)</title><rect x="467.4" y="1237" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (252 samples, 0.41%)</title><rect x="545.8" y="1093" width="4.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="548.78" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (16 samples, 0.03%)</title><rect x="1073.6" y="341" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1076.60" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (476 samples, 0.78%)</title><rect x="856.5" y="501" width="9.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="859.50" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (392 samples, 0.64%)</title><rect x="68.0" y="1125" width="7.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="71.04" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/MessageSender:::sendChunk (19 samples, 0.03%)</title><rect x="550.7" y="1333" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="553.67" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (52 samples, 0.08%)</title><rect x="16.5" y="1237" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="19.52" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (23 samples, 0.04%)</title><rect x="554.7" y="1253" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (24 samples, 0.04%)</title><rect x="720.2" y="517" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="723.22" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (8 samples, 0.01%)</title><rect x="866.3" y="501" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="869.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (6 samples, 0.01%)</title><rect x="1176.7" y="1317" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbyte_disjoint_arraycopy (9 samples, 0.01%)</title><rect x="839.9" y="581" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="842.94" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (29 samples, 0.05%)</title><rect x="17.7" y="1461" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (6 samples, 0.01%)</title><rect x="1162.7" y="1093" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1165.72" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (15 samples, 0.02%)</title><rect x="521.5" y="1269" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Field:::getGenericType (31 samples, 0.05%)</title><rect x="716.6" y="469" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="719.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (90 samples, 0.15%)</title><rect x="26.1" y="1365" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="29.06" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (212 samples, 0.35%)</title><rect x="92.6" y="1141" width="4.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="95.56" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (34 samples, 0.06%)</title><rect x="1123.6" y="613" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1126.60" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (401 samples, 0.65%)</title><rect x="535.6" y="1253" width="7.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="538.63" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (7 samples, 0.01%)</title><rect x="68.8" y="997" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="71.82" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (16,090 samples, 26.23%)</title><rect x="114.0" y="1077" width="309.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="116.99" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf_event_task_sched_in</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.01%)</title><rect x="469.8" y="1093" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Curly:::match (11 samples, 0.02%)</title><rect x="1023.3" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (20 samples, 0.03%)</title><rect x="44.0" y="885" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="47.01" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (53 samples, 0.09%)</title><rect x="108.9" y="1125" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="111.85" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (13 samples, 0.02%)</title><rect x="580.2" y="1125" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="583.20" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (29 samples, 0.05%)</title><rect x="1164.5" y="1109" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1167.45" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (12 samples, 0.02%)</title><rect x="435.9" y="1061" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="438.93" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (140 samples, 0.23%)</title><rect x="1024.3" y="565" width="2.7" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1027.32" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (8 samples, 0.01%)</title><rect x="617.5" y="949" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="620.53" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (24 samples, 0.04%)</title><rect x="641.6" y="1045" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="644.62" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (85 samples, 0.14%)</title><rect x="553.0" y="1141" width="1.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="556.02" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_sun_nio_ch_EPollArrayWrapper_epollWait (10 samples, 0.02%)</title><rect x="104.2" y="1237" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="107.22" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (10 samples, 0.02%)</title><rect x="426.2" y="981" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="429.21" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler:::connectionAllocated (64 samples, 0.10%)</title><rect x="834.9" y="485" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="837.86" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (6 samples, 0.01%)</title><rect x="467.2" y="997" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (18 samples, 0.03%)</title><rect x="467.8" y="1205" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::newNode (9 samples, 0.01%)</title><rect x="430.3" y="1253" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="433.29" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ReflectiveOperationException:::&lt;init&gt; (106 samples, 0.17%)</title><rect x="717.8" y="501" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="720.85" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1,593 samples, 2.60%)</title><rect x="435.2" y="1077" width="30.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="438.19" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (12 samples, 0.02%)</title><rect x="473.0" y="1061" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="475.97" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (23 samples, 0.04%)</title><rect x="554.7" y="1221" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_slow_exit_work (8 samples, 0.01%)</title><rect x="75.7" y="1173" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="78.73" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/base/ParserBase:::_parseNumericValue (6 samples, 0.01%)</title><rect x="1115.0" y="517" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1118.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (26 samples, 0.04%)</title><rect x="94.8" y="661" width="0.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="97.83" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (95 samples, 0.15%)</title><rect x="501.4" y="1125" width="1.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (39 samples, 0.06%)</title><rect x="1145.3" y="613" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1148.30" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::drain (15 samples, 0.02%)</title><rect x="517.8" y="1269" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="520.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (7 samples, 0.01%)</title><rect x="426.1" y="933" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="429.06" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (21 samples, 0.03%)</title><rect x="523.3" y="1173" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (36 samples, 0.06%)</title><rect x="638.1" y="1285" width="0.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="641.10" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::drain (24 samples, 0.04%)</title><rect x="598.5" y="1301" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="601.49" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (11 samples, 0.02%)</title><rect x="30.4" y="1029" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parker::park (14 samples, 0.02%)</title><rect x="614.1" y="1237" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="617.13" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFBody (11 samples, 0.02%)</title><rect x="1049.9" y="421" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.90" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/BeanSerializer:::serialize (80 samples, 0.13%)</title><rect x="1134.2" y="645" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1137.22" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (121 samples, 0.20%)</title><rect x="615.5" y="1061" width="2.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="618.46" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/AbstractObjectParser$$Lambda$236/1201768972:::apply (9 samples, 0.01%)</title><rect x="788.2" y="565" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="791.16" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor66:::invoke (95 samples, 0.15%)</title><rect x="775.0" y="485" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="778.02" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (6 samples, 0.01%)</title><rect x="1160.0" y="821" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1163.03" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (90 samples, 0.15%)</title><rect x="26.1" y="1381" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="29.06" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::nextNode (7 samples, 0.01%)</title><rect x="770.2" y="597" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="773.17" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectMapper:::readValue (2,923 samples, 4.77%)</title><rect x="903.1" y="645" width="56.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="906.13" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (52 samples, 0.08%)</title><rect x="1159.3" y="1141" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1162.28" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (105 samples, 0.17%)</title><rect x="561.2" y="1077" width="2.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="564.21" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (23 samples, 0.04%)</title><rect x="17.8" y="1285" width="0.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="20.81" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (976 samples, 1.59%)</title><rect x="579.2" y="1269" width="18.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="582.23" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (13 samples, 0.02%)</title><rect x="576.6" y="1061" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="579.62" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (44 samples, 0.07%)</title><rect x="1159.3" y="1045" width="0.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1162.34" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,481 samples, 2.41%)</title><rect x="796.2" y="405" width="28.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="799.18" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (27 samples, 0.04%)</title><rect x="425.9" y="1029" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="428.88" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentEvent (37 samples, 0.06%)</title><rect x="1055.9" y="549" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1058.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/web/filter/OncePerRequestFilter:::skipDispatch (42 samples, 0.07%)</title><rect x="1155.2" y="1125" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1158.16" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern:::compile (12 samples, 0.02%)</title><rect x="781.3" y="581" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="784.27" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (21 samples, 0.03%)</title><rect x="523.3" y="1189" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (46 samples, 0.07%)</title><rect x="975.4" y="565" width="0.8" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="978.36" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (7 samples, 0.01%)</title><rect x="467.2" y="1269" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (7 samples, 0.01%)</title><rect x="742.2" y="309" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="745.18" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (9 samples, 0.01%)</title><rect x="521.6" y="1013" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="524.64" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_receive (31 samples, 0.05%)</title><rect x="1147.0" y="181" width="0.6" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1150.01" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (6 samples, 0.01%)</title><rect x="1022.4" y="389" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (10 samples, 0.02%)</title><rect x="12.7" y="1413" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="15.71" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::exit (6 samples, 0.01%)</title><rect x="29.9" y="1445" width="0.1" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (7 samples, 0.01%)</title><rect x="735.9" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="738.85" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (45 samples, 0.07%)</title><rect x="735.0" y="597" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (16,536 samples, 26.96%)</title><rect x="108.6" y="1157" width="318.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="111.64" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_hrtimeout_range</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (79 samples, 0.13%)</title><rect x="555.2" y="1237" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (405 samples, 0.66%)</title><rect x="67.9" y="1157" width="7.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="70.94" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetDeclaringClass (6 samples, 0.01%)</title><rect x="709.9" y="517" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="712.94" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (6 samples, 0.01%)</title><rect x="841.5" y="565" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="844.46" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (14 samples, 0.02%)</title><rect x="521.5" y="1077" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::parseEntity (3,270 samples, 5.33%)</title><rect x="839.3" y="597" width="62.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="842.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/el..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/common/value/StringValues:::trim (8 samples, 0.01%)</title><rect x="686.2" y="869" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="689.23" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::defaultReadFields (68 samples, 0.11%)</title><rect x="1103.5" y="485" width="1.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1106.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/IOException:::&lt;init&gt; (26 samples, 0.04%)</title><rect x="1162.4" y="1221" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1165.36" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (43 samples, 0.07%)</title><rect x="103.4" y="1093" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (17 samples, 0.03%)</title><rect x="96.1" y="901" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="99.14" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory$1:::write (14 samples, 0.02%)</title><rect x="727.1" y="661" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="730.10" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_nextAfterName (66 samples, 0.11%)</title><rect x="928.8" y="517" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="931.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/configuration/messagelog/MsgLogManager:::getMsgLogSerializer (8 samples, 0.01%)</title><rect x="686.7" y="821" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="689.71" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (7 samples, 0.01%)</title><rect x="1167.2" y="1093" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (45 samples, 0.07%)</title><rect x="1159.3" y="1061" width="0.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1162.32" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1,430 samples, 2.33%)</title><rect x="994.5" y="389" width="27.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="997.50" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.01%)</title><rect x="10.1" y="1253" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="13.12" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (63 samples, 0.10%)</title><rect x="26.5" y="1189" width="1.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="29.50" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.01%)</title><rect x="429.0" y="1141" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor:::getTask (1,279 samples, 2.08%)</title><rect x="612.5" y="1317" width="24.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="615.47" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (16,850 samples, 27.47%)</title><rect x="104.5" y="1237" width="324.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="107.53" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_recv</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/protocol/HttpAsyncRequestExecutor:::requestReady (511 samples, 0.83%)</title><rect x="54.9" y="1253" width="9.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="57.94" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readSerialData (15 samples, 0.02%)</title><rect x="832.8" y="421" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="835.80" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/Gson:::getAdapter (560 samples, 0.91%)</title><rect x="710.4" y="549" width="10.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.41" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (1,148 samples, 1.87%)</title><rect x="144.2" y="1013" width="22.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="147.23" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (19 samples, 0.03%)</title><rect x="599.5" y="1045" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer:::serialize (13 samples, 0.02%)</title><rect x="1135.8" y="629" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1138.79" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (86 samples, 0.14%)</title><rect x="1146.5" y="565" width="1.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1149.49" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultTransactionAggregator$TransactionData:::add (12 samples, 0.02%)</title><rect x="682.7" y="869" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="685.74" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (1,193 samples, 1.94%)</title><rect x="614.1" y="1253" width="22.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="617.09" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >U..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (257 samples, 0.42%)</title><rect x="69.7" y="965" width="4.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="72.69" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (7 samples, 0.01%)</title><rect x="1130.0" y="565" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1133.02" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/ServerSocketChannelImpl:::accept (436 samples, 0.71%)</title><rect x="565.7" y="1333" width="8.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="568.69" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (6 samples, 0.01%)</title><rect x="523.7" y="1061" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="526.68" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (331 samples, 0.54%)</title><rect x="600.6" y="1173" width="6.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="603.64" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::check_special_condition_for_native_trans (44 samples, 0.07%)</title><rect x="103.4" y="1237" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="106.37" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/cat/ServiceCatUtils:::continueCatTransaction (57 samples, 0.09%)</title><rect x="689.2" y="821" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="692.21" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (7 samples, 0.01%)</title><rect x="1022.1" y="485" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1025.15" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1,091 samples, 1.78%)</title><rect x="1075.3" y="341" width="21.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1078.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (85 samples, 0.14%)</title><rect x="14.2" y="1301" width="1.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (6 samples, 0.01%)</title><rect x="1104.2" y="357" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1107.19" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getClassDataLayout0 (8 samples, 0.01%)</title><rect x="1103.2" y="501" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1106.17" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (10 samples, 0.02%)</title><rect x="684.2" y="709" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="687.17" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (7 samples, 0.01%)</title><rect x="638.0" y="1157" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6$Context:::encodeTokens (78 samples, 0.13%)</title><rect x="495.0" y="1285" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="497.96" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::regionMatches (13 samples, 0.02%)</title><rect x="85.0" y="1269" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="88.00" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (10 samples, 0.02%)</title><rect x="535.0" y="1157" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (25 samples, 0.04%)</title><rect x="43.9" y="997" width="0.5" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (19 samples, 0.03%)</title><rect x="599.5" y="1077" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::initNonProxy (11 samples, 0.02%)</title><rect x="1047.8" y="501" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1050.83" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (12 samples, 0.02%)</title><rect x="725.2" y="517" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="728.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (19 samples, 0.03%)</title><rect x="1158.8" y="1061" width="0.4" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1161.80" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (19 samples, 0.03%)</title><rect x="599.5" y="1237" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_ctx_sched_out (11 samples, 0.02%)</title><rect x="110.7" y="1077" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="113.70" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (25 samples, 0.04%)</title><rect x="43.9" y="1141" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (22,823 samples, 37.21%)</title><rect x="698.8" y="773" width="439.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="701.81" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/aop/framework/ReflectiveMethodInvocation..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/http/mapper/Mapper:::internalMap (16 samples, 0.03%)</title><rect x="675.5" y="1221" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="678.47" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultTransaction:::complete (12 samples, 0.02%)</title><rect x="696.7" y="805" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="699.73" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (159 samples, 0.26%)</title><rect x="608.4" y="1029" width="3.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="611.42" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/tree/ClassTypeSignature:::accept (30 samples, 0.05%)</title><rect x="722.7" y="533" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="725.68" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>credis/java/client/sync/config/SyncRedisServer:::execute (1,801 samples, 2.94%)</title><rect x="988.2" y="645" width="34.6" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="991.17" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream:::read (8 samples, 0.01%)</title><rect x="500.9" y="1205" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/BasicLineParser:::parseProtocolVersion (12 samples, 0.02%)</title><rect x="52.7" y="1253" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="55.67" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1157:::invoke (6 samples, 0.01%)</title><rect x="955.8" y="533" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="958.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (65 samples, 0.11%)</title><rect x="1146.8" y="437" width="1.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1149.81" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (264 samples, 0.43%)</title><rect x="568.1" y="1109" width="5.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="571.14" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (36 samples, 0.06%)</title><rect x="523.7" y="1221" width="0.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (6 samples, 0.01%)</title><rect x="431.2" y="1189" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="434.16" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (1,377 samples, 2.24%)</title><rect x="995.5" y="325" width="26.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="998.52" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (224 samples, 0.37%)</title><rect x="39.6" y="1029" width="4.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="42.62" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (9 samples, 0.01%)</title><rect x="830.3" y="421" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="833.32" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (98 samples, 0.16%)</title><rect x="1172.5" y="1061" width="1.9" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1175.48" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (6 samples, 0.01%)</title><rect x="29.9" y="1365" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultEventAggregator:::sendEventData (20 samples, 0.03%)</title><rect x="467.3" y="1301" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="470.32" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupTail:::match (9 samples, 0.01%)</title><rect x="695.9" y="677" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.88" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::write (58 samples, 0.09%)</title><rect x="1159.2" y="1173" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1162.20" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (18 samples, 0.03%)</title><rect x="468.2" y="1173" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (11 samples, 0.02%)</title><rect x="1098.1" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1101.11" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$EntrySpliterator:::forEachRemaining (68 samples, 0.11%)</title><rect x="982.5" y="613" width="1.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="985.48" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (7 samples, 0.01%)</title><rect x="524.7" y="1061" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="527.68" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (88 samples, 0.14%)</title><rect x="26.1" y="1317" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="29.08" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::poll (735 samples, 1.20%)</title><rect x="503.6" y="1269" width="14.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="506.64" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (6 samples, 0.01%)</title><rect x="87.1" y="1061" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/LinkedBlockingQueue:::take (37 samples, 0.06%)</title><rect x="523.7" y="1301" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (23 samples, 0.04%)</title><rect x="554.7" y="1285" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (13 samples, 0.02%)</title><rect x="92.1" y="1157" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="95.14" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (49 samples, 0.08%)</title><rect x="576.1" y="1173" width="0.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="579.06" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbyte_disjoint_arraycopy (7 samples, 0.01%)</title><rect x="550.9" y="1285" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="553.88" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::slowParseName (9 samples, 0.01%)</title><rect x="894.3" y="469" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="897.28" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.01%)</title><rect x="607.2" y="1125" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (7 samples, 0.01%)</title><rect x="1029.6" y="373" width="0.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1032.61" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (7 samples, 0.01%)</title><rect x="607.2" y="1045" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readObject0 (49 samples, 0.08%)</title><rect x="1049.7" y="469" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.67" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::get (7 samples, 0.01%)</title><rect x="783.9" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="786.89" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (27 samples, 0.04%)</title><rect x="1145.4" y="549" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1148.37" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (706 samples, 1.15%)</title><rect x="120.5" y="1061" width="13.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="123.55" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,152 samples, 1.88%)</title><rect x="614.8" y="1205" width="22.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="617.80" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectedHeap::do_collection_pause_at_safepoint (38 samples, 0.06%)</title><rect x="1177.9" y="1381" width="0.8" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="1180.94" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/TermsQueryBuilder:::doXContent (139 samples, 0.23%)</title><rect x="782.3" y="517" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="785.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6$Context:::addEncodedTokens (105 samples, 0.17%)</title><rect x="492.9" y="1285" width="2.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="495.94" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (93 samples, 0.15%)</title><rect x="519.0" y="1189" width="1.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="522.03" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (34 samples, 0.06%)</title><rect x="835.2" y="341" width="0.7" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="838.25" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (33 samples, 0.05%)</title><rect x="1159.5" y="965" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.53" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (53 samples, 0.09%)</title><rect x="89.0" y="1093" width="1.0" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="91.96" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/action/search/SearchResponse:::innerFromXContent (304 samples, 0.50%)</title><rect x="786.0" y="597" width="5.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="789.02" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/BeanDeserializer:::deserialize (2,847 samples, 4.64%)</title><rect x="904.4" y="613" width="54.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="907.36" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (53 samples, 0.09%)</title><rect x="559.9" y="1077" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="562.88" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1,516 samples, 2.47%)</title><rect x="795.8" y="517" width="29.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="798.76" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (6 samples, 0.01%)</title><rect x="535.0" y="1061" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="538.01" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (29 samples, 0.05%)</title><rect x="683.9" y="789" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="686.86" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (10 samples, 0.02%)</title><rect x="426.2" y="965" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="429.21" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qunar/tc/qconfig/client/staticswitch/StaticSwitcher:::run (8 samples, 0.01%)</title><rect x="523.0" y="1269" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_execute_actions (12 samples, 0.02%)</title><rect x="519.8" y="741" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="522.78" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (40 samples, 0.07%)</title><rect x="778.9" y="373" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="781.89" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_NewObject (16 samples, 0.03%)</title><rect x="566.6" y="1285" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="569.56" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/LinkedBlockingQueue:::offer (76 samples, 0.12%)</title><rect x="575.6" y="1269" width="1.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="578.60" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/tcp/TCPTransport:::handleMessages (38 samples, 0.06%)</title><rect x="43.9" y="1189" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFBody (9 samples, 0.01%)</title><rect x="772.9" y="469" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="775.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAddCookies:::process (17 samples, 0.03%)</title><rect x="1047.1" y="565" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1050.06" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (29 samples, 0.05%)</title><rect x="10.6" y="1413" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (11 samples, 0.02%)</title><rect x="30.4" y="933" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (71 samples, 0.12%)</title><rect x="101.4" y="1205" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="104.41" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeString (7 samples, 0.01%)</title><rect x="497.6" y="1253" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="500.60" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (43 samples, 0.07%)</title><rect x="109.0" y="1109" width="0.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="112.01" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (23 samples, 0.04%)</title><rect x="68.7" y="1029" width="0.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="71.75" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (7 samples, 0.01%)</title><rect x="1167.2" y="1061" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1,100 samples, 1.79%)</title><rect x="615.4" y="1077" width="21.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="618.44" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$943/1074833845:::test (8 samples, 0.01%)</title><rect x="984.7" y="613" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="987.65" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (7 samples, 0.01%)</title><rect x="432.2" y="1125" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="435.21" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getEnclosingMethod0 (7 samples, 0.01%)</title><rect x="711.1" y="453" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="714.08" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="607.2" y="1221" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (7 samples, 0.01%)</title><rect x="565.3" y="1109" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="568.33" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1,610 samples, 2.62%)</title><rect x="640.8" y="1173" width="30.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="643.75" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::iterator (7 samples, 0.01%)</title><rect x="97.6" y="1285" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="100.62" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (38 samples, 0.06%)</title><rect x="10.5" y="1461" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="13.52" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (7 samples, 0.01%)</title><rect x="864.9" y="469" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="867.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::format (49 samples, 0.08%)</title><rect x="990.7" y="629" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="993.69" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_execute_actions (72 samples, 0.12%)</title><rect x="70.8" y="709" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="73.79" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (114 samples, 0.19%)</title><rect x="642.2" y="1045" width="2.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="645.19" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/ConstructorConstructor:::get (8 samples, 0.01%)</title><rect x="702.2" y="645" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="705.23" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (54 samples, 0.09%)</title><rect x="612.7" y="1173" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::oops_do_internal (29 samples, 0.05%)</title><rect x="23.8" y="1381" width="0.5" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="26.77" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1,091 samples, 1.78%)</title><rect x="1075.3" y="357" width="21.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1078.28" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::write (105 samples, 0.17%)</title><rect x="518.8" y="1285" width="2.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="521.79" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (9 samples, 0.01%)</title><rect x="717.2" y="469" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="720.18" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (88 samples, 0.14%)</title><rect x="553.0" y="1237" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="555.98" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_frame_hook (32 samples, 0.05%)</title><rect x="1147.0" y="197" width="0.6" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1149.99" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (11 samples, 0.02%)</title><rect x="796.3" y="373" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="799.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/StandardContext:::fireRequestInitEvent (6 samples, 0.01%)</title><rect x="1156.7" y="1221" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1159.66" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (85 samples, 0.14%)</title><rect x="14.2" y="1397" width="1.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/UNIXProcess$$Lambda$548/670995344:::run (23 samples, 0.04%)</title><rect x="637.5" y="1333" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.52" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/parser/SignatureParser:::parseClassTypeSignature (34 samples, 0.06%)</title><rect x="721.6" y="549" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="724.56" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (10 samples, 0.02%)</title><rect x="1147.2" y="53" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1150.18" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (42 samples, 0.07%)</title><rect x="519.6" y="869" width="0.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="522.64" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (13 samples, 0.02%)</title><rect x="741.0" y="341" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="743.99" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (40 samples, 0.07%)</title><rect x="838.5" y="533" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="841.50" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (41 samples, 0.07%)</title><rect x="519.7" y="853" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="522.66" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (18 samples, 0.03%)</title><rect x="467.8" y="1109" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (10 samples, 0.02%)</title><rect x="1112.6" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1115.61" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (21 samples, 0.03%)</title><rect x="523.3" y="1061" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (15 samples, 0.02%)</title><rect x="709.9" y="549" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="712.89" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (9 samples, 0.01%)</title><rect x="134.0" y="1029" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="136.96" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint:::processSocket (93 samples, 0.15%)</title><rect x="575.3" y="1317" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="578.27" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/VM:::latestUserDefinedLoader0 (25 samples, 0.04%)</title><rect x="774.3" y="485" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="777.25" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/File:::exists (9 samples, 0.01%)</title><rect x="521.9" y="1285" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="524.91" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (13 samples, 0.02%)</title><rect x="725.2" y="549" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="728.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (78 samples, 0.13%)</title><rect x="28.4" y="1381" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="31.37" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (16 samples, 0.03%)</title><rect x="1163.4" y="1029" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1166.40" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc (7 samples, 0.01%)</title><rect x="573.3" y="1221" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="576.35" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (2,970 samples, 4.84%)</title><rect x="843.1" y="533" width="57.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="846.12" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ct..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (52 samples, 0.08%)</title><rect x="1159.3" y="1109" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1162.28" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_trylock (6 samples, 0.01%)</title><rect x="18.8" y="1493" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="21.79" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::performRequest (5,586 samples, 9.11%)</title><rect x="794.7" y="613" width="107.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="797.74" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/elasticse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/HttpRequestWrapperBase:::clientIp (7 samples, 0.01%)</title><rect x="689.7" y="805" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="692.71" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (19 samples, 0.03%)</title><rect x="599.5" y="1285" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (7 samples, 0.01%)</title><rect x="68.5" y="1045" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="71.52" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/StatusInfoCollector:::getBashCommandInfo (10 samples, 0.02%)</title><rect x="500.7" y="1269" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="503.67" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/MainClientExec:::responseCompleted (163 samples, 0.27%)</title><rect x="48.1" y="1269" width="3.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="51.15" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.02%)</title><rect x="637.3" y="1269" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (15 samples, 0.02%)</title><rect x="64.3" y="1141" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="67.30" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (25 samples, 0.04%)</title><rect x="111.8" y="1029" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="114.76" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConcurrentG1RefineThread::run_young_rs_sampling (158 samples, 0.26%)</title><rect x="19.0" y="1445" width="3.0" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="21.96" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (14 samples, 0.02%)</title><rect x="598.6" y="1205" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="601.62" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (7 samples, 0.01%)</title><rect x="1189.6" y="1477" width="0.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1192.60" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (6 samples, 0.01%)</title><rect x="29.9" y="1285" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="638.0" y="1205" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (46 samples, 0.07%)</title><rect x="1159.3" y="1077" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1162.30" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultLocalAggregatorManager:::sendData (46 samples, 0.07%)</title><rect x="467.3" y="1317" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="470.32" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (62 samples, 0.10%)</title><rect x="1175.3" y="1205" width="1.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1178.34" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory:::createParser (14 samples, 0.02%)</title><rect x="1120.4" y="661" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1123.37" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (9 samples, 0.01%)</title><rect x="896.3" y="453" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="899.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (8 samples, 0.01%)</title><rect x="722.9" y="437" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="725.93" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (6 samples, 0.01%)</title><rect x="905.2" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="908.19" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::createBoundField (1,032 samples, 1.68%)</title><rect x="704.2" y="629" width="19.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="707.15" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (49 samples, 0.08%)</title><rect x="576.1" y="1189" width="0.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="579.06" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (42 samples, 0.07%)</title><rect x="1146.9" y="309" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1149.91" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (17 samples, 0.03%)</title><rect x="1068.9" y="629" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1071.89" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (23 samples, 0.04%)</title><rect x="1026.3" y="517" width="0.5" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1029.34" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_pick_tx (10 samples, 0.02%)</title><rect x="71.2" y="629" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="74.23" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.02%)</title><rect x="535.0" y="1253" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (25 samples, 0.04%)</title><rect x="23.8" y="1205" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.01%)</title><rect x="637.7" y="1173" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (106 samples, 0.17%)</title><rect x="717.8" y="453" width="2.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="720.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::unpark (187 samples, 0.30%)</title><rect x="86.8" y="1237" width="3.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="89.83" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qunar/tc/qconfig/client/staticswitch/StaticSwitcher:::queryStatus (8 samples, 0.01%)</title><rect x="523.0" y="1253" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (7 samples, 0.01%)</title><rect x="429.0" y="1093" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/http/MimeHeaders:::getValue (9 samples, 0.01%)</title><rect x="690.1" y="805" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="693.13" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (11 samples, 0.02%)</title><rect x="719.5" y="389" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="722.49" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>masked_flow_lookup (6 samples, 0.01%)</title><rect x="1159.8" y="629" width="0.1" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="1162.78" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/aop/aspectj/AbstractAspectJAdvice:::invokeAdviceMethodWithGivenArgs (22,791 samples, 37.15%)</title><rect x="699.1" y="741" width="438.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="702.13" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/aop/aspectj/AbstractAspectJAdvice:::inv..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (58 samples, 0.09%)</title><rect x="1117.3" y="533" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1120.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_flow_tbl_lookup_stats (38 samples, 0.06%)</title><rect x="72.2" y="725" width="0.8" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="75.23" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (6 samples, 0.01%)</title><rect x="565.3" y="1093" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="568.35" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (91 samples, 0.15%)</title><rect x="26.1" y="1413" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="29.06" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (454 samples, 0.74%)</title><rect x="30.7" y="1093" width="8.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (8 samples, 0.01%)</title><rect x="838.2" y="549" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="841.19" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/hystrix/DefaultExecutionContext:::tryStartExecution (32 samples, 0.05%)</title><rect x="687.6" y="837" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="690.61" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::nmethods_do (10 samples, 0.02%)</title><rect x="1176.8" y="1365" width="0.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1179.84" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (7 samples, 0.01%)</title><rect x="555.3" y="1109" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="558.34" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/SessionOutputBufferImpl:::writeLine (21 samples, 0.03%)</title><rect x="61.8" y="1221" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="64.82" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (12 samples, 0.02%)</title><rect x="1073.7" y="309" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1076.66" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (25 samples, 0.04%)</title><rect x="23.8" y="1253" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (160 samples, 0.26%)</title><rect x="87.1" y="1189" width="3.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (8 samples, 0.01%)</title><rect x="1147.2" y="37" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1150.18" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (17 samples, 0.03%)</title><rect x="467.4" y="1205" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultTransactionAggregator$TransactionData:::add (30 samples, 0.05%)</title><rect x="682.4" y="885" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="685.40" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (399 samples, 0.65%)</title><rect x="535.7" y="1157" width="7.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="538.66" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (222 samples, 0.36%)</title><rect x="39.7" y="1013" width="4.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="42.66" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/connector/CoyoteAdapter:::postParseRequest (64 samples, 0.10%)</title><rect x="674.6" y="1237" width="1.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="677.57" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_dp_process_packet (121 samples, 0.20%)</title><rect x="70.6" y="741" width="2.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="73.63" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (80 samples, 0.13%)</title><rect x="26.2" y="1253" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="29.18" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (40 samples, 0.07%)</title><rect x="63.1" y="1221" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="66.09" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.01%)</title><rect x="10.1" y="1365" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_xmit (8 samples, 0.01%)</title><rect x="95.2" y="613" width="0.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="98.18" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::afterNodeInsertion (11 samples, 0.02%)</title><rect x="882.1" y="453" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="885.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/action/search/SearchResponse:::innerFromXContent (3,211 samples, 5.23%)</title><rect x="840.2" y="581" width="61.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="843.21" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/el..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/codehaus/jackson/impl/Utf8StreamParser:::nextToken (8 samples, 0.01%)</title><rect x="1139.6" y="773" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1142.62" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (9 samples, 0.01%)</title><rect x="1178.0" y="1317" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (6 samples, 0.01%)</title><rect x="483.4" y="1173" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="486.38" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/commons/beanutils/PropertyUtilsBean:::getNestedProperty (21 samples, 0.03%)</title><rect x="730.3" y="693" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="733.33" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (7 samples, 0.01%)</title><rect x="1167.2" y="1077" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringCoding:::encode (31 samples, 0.05%)</title><rect x="59.7" y="1205" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="62.71" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (188 samples, 0.31%)</title><rect x="607.9" y="1173" width="3.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="610.88" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (39 samples, 0.06%)</title><rect x="16.6" y="1141" width="0.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="19.56" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (37 samples, 0.06%)</title><rect x="1052.0" y="437" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1054.96" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (717 samples, 1.17%)</title><rect x="30.1" y="1301" width="13.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="33.14" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (23 samples, 0.04%)</title><rect x="905.8" y="581" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="908.79" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (31 samples, 0.05%)</title><rect x="1107.2" y="309" width="0.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1110.19" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="434.4" y="1205" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (10 samples, 0.02%)</title><rect x="796.6" y="277" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="799.62" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (249 samples, 0.41%)</title><rect x="69.8" y="933" width="4.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="72.84" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (540 samples, 0.88%)</title><rect x="586.8" y="1061" width="10.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="589.83" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (8 samples, 0.01%)</title><rect x="682.2" y="869" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="685.24" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/NumberDeserializers$ShortDeserializer:::deserialize (6 samples, 0.01%)</title><rect x="1126.1" y="613" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1129.14" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (11 samples, 0.02%)</title><rect x="1166.5" y="1189" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_nextTokenNotInObject (39 samples, 0.06%)</title><rect x="898.9" y="501" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="901.90" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.01%)</title><rect x="523.0" y="1077" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/DateFormatSymbols:::initializeData (11 samples, 0.02%)</title><rect x="728.5" y="677" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="731.53" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,249 samples, 2.04%)</title><rect x="1072.7" y="517" width="24.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1075.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find (7 samples, 0.01%)</title><rect x="832.3" y="309" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="835.32" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamField:::&lt;init&gt; (9 samples, 0.01%)</title><rect x="775.7" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.73" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readObject0 (159 samples, 0.26%)</title><rect x="1047.6" y="533" width="3.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1050.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::oops_do (40 samples, 0.07%)</title><rect x="23.7" y="1397" width="0.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="26.66" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_send (11 samples, 0.02%)</title><rect x="519.8" y="709" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="522.80" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (20 samples, 0.03%)</title><rect x="994.1" y="389" width="0.4" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="997.12" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BiasedLocking::revoke_and_rebias (6 samples, 0.01%)</title><rect x="29.9" y="1413" width="0.1" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/stats/StatsRecorder:::lambda$static$0 (13 samples, 0.02%)</title><rect x="1138.1" y="821" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1141.10" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kernel_wait4 (13 samples, 0.02%)</title><rect x="637.7" y="1221" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/buf/StringCache:::toString (6 samples, 0.01%)</title><rect x="1157.9" y="1205" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1160.88" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/ObjectParser:::parse (359 samples, 0.59%)</title><rect x="1113.0" y="597" width="6.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1115.96" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/util/HashedWheelTimer$Worker:::run (430 samples, 0.70%)</title><rect x="535.2" y="1333" width="8.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="538.18" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (19 samples, 0.03%)</title><rect x="23.9" y="1125" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="26.93" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/Http11NioProtocol$Http11ConnectionHandler:::release (7 samples, 0.01%)</title><rect x="1164.2" y="1269" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1167.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (7 samples, 0.01%)</title><rect x="1167.2" y="1237" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (21 samples, 0.03%)</title><rect x="523.3" y="1141" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (1,623 samples, 2.65%)</title><rect x="434.9" y="1253" width="31.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.91" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (24 samples, 0.04%)</title><rect x="638.2" y="1013" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.01%)</title><rect x="600.1" y="1045" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/auth/HttpAuthenticator:::generateAuthResponse (176 samples, 0.29%)</title><rect x="57.2" y="1221" width="3.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="60.17" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/builder/SearchSourceBuilder:::toXContent (173 samples, 0.28%)</title><rect x="781.7" y="581" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="784.69" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::lambda$mappingCalc$6 (22 samples, 0.04%)</title><rect x="982.7" y="565" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="985.71" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (7 samples, 0.01%)</title><rect x="524.7" y="1045" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="527.68" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::ILock (6 samples, 0.01%)</title><rect x="469.8" y="1237" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (11 samples, 0.02%)</title><rect x="507.6" y="1045" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="510.62" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (532 samples, 0.87%)</title><rect x="1179.2" y="1317" width="10.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1182.21" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readObject0 (238 samples, 0.39%)</title><rect x="772.3" y="517" width="4.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="775.31" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (181 samples, 0.30%)</title><rect x="70.2" y="837" width="3.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="73.21" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (70 samples, 0.11%)</title><rect x="1175.2" y="1397" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.03%)</title><rect x="468.2" y="1253" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (88 samples, 0.14%)</title><rect x="553.0" y="1285" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="555.98" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (7 samples, 0.01%)</title><rect x="640.1" y="1013" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readObject0 (231 samples, 0.38%)</title><rect x="828.7" y="501" width="4.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="831.75" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.01%)</title><rect x="10.1" y="1285" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (12 samples, 0.02%)</title><rect x="607.5" y="1173" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (94 samples, 0.15%)</title><rect x="552.9" y="1301" width="1.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (11 samples, 0.02%)</title><rect x="100.0" y="1061" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (7 samples, 0.01%)</title><rect x="830.0" y="405" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="832.98" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (36 samples, 0.06%)</title><rect x="638.1" y="1301" width="0.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="641.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (83 samples, 0.14%)</title><rect x="551.1" y="1141" width="1.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="554.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/CharsetEncoder:::&lt;init&gt; (7 samples, 0.01%)</title><rect x="495.7" y="1237" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="498.75" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::newNode (21 samples, 0.03%)</title><rect x="877.8" y="469" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="880.78" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (6 samples, 0.01%)</title><rect x="524.7" y="1013" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="527.70" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (224 samples, 0.37%)</title><rect x="39.6" y="1061" width="4.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="42.62" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (337 samples, 0.55%)</title><rect x="600.5" y="1269" width="6.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="603.55" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (6 samples, 0.01%)</title><rect x="467.2" y="1013" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (32 samples, 0.05%)</title><rect x="12.0" y="1477" width="0.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="15.02" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (19 samples, 0.03%)</title><rect x="1072.9" y="437" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1075.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::addParameter (6 samples, 0.01%)</title><rect x="769.0" y="581" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="772.02" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (755 samples, 1.23%)</title><rect x="30.1" y="1317" width="14.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="33.14" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (7 samples, 0.01%)</title><rect x="607.2" y="1077" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (447 samples, 0.73%)</title><rect x="484.0" y="1109" width="8.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="486.96" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.01%)</title><rect x="29.9" y="1301" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (36 samples, 0.06%)</title><rect x="466.3" y="1301" width="0.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="469.30" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (1,675 samples, 2.73%)</title><rect x="639.6" y="1269" width="32.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="642.64" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.01%)</title><rect x="1176.7" y="1333" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (10 samples, 0.02%)</title><rect x="1110.4" y="565" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1113.44" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit:::createFromMap (13 samples, 0.02%)</title><rect x="791.6" y="581" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="794.60" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (34 samples, 0.06%)</title><rect x="523.7" y="1125" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="526.68" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NET_SockaddrToInetAddress (30 samples, 0.05%)</title><rect x="566.0" y="1285" width="0.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="568.96" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.04%)</title><rect x="64.3" y="1205" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="67.28" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.01%)</title><rect x="29.9" y="1221" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (7 samples, 0.01%)</title><rect x="504.3" y="1045" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="507.29" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (120 samples, 0.20%)</title><rect x="615.5" y="1045" width="2.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="618.46" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serialize (13 samples, 0.02%)</title><rect x="979.9" y="597" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="982.86" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::read (351 samples, 0.57%)</title><rect x="90.6" y="1269" width="6.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="93.58" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_getdents (17 samples, 0.03%)</title><rect x="13.4" y="1429" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="16.40" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (17 samples, 0.03%)</title><rect x="467.4" y="1045" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/management/mbean/DockerCpuInfo:::update (7 samples, 0.01%)</title><rect x="522.3" y="1301" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.32" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_nextAfterName (10 samples, 0.02%)</title><rect x="866.1" y="501" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="869.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (23 samples, 0.04%)</title><rect x="468.6" y="1109" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="471.59" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BranchConn:::match (8 samples, 0.01%)</title><rect x="1023.4" y="533" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.36" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ContainerBase:::getRealm (9 samples, 0.01%)</title><rect x="676.2" y="1205" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="679.17" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (6 samples, 0.01%)</title><rect x="519.3" y="1061" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="522.29" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectSynchronizer::deflate_idle_monitors (37 samples, 0.06%)</title><rect x="1177.1" y="1397" width="0.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="1180.05" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/Executors$RunnableAdapter:::call (16 samples, 0.03%)</title><rect x="522.9" y="1285" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="525.89" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (6 samples, 0.01%)</title><rect x="1146.7" y="453" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1149.66" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::doSelect (392 samples, 0.64%)</title><rect x="1167.5" y="1333" width="7.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1170.51" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/servlet/CatFilter$CatHandler$4:::handle (24,774 samples, 40.39%)</title><rect x="678.3" y="965" width="476.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="681.28" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/dianping/cat/servlet/CatFilter$CatHandler$4:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::wait (352 samples, 0.57%)</title><rect x="600.3" y="1301" width="6.8" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="603.30" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (83 samples, 0.14%)</title><rect x="505.9" y="1045" width="1.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="508.89" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (9 samples, 0.01%)</title><rect x="1178.0" y="1221" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (25 samples, 0.04%)</title><rect x="43.9" y="1013" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (42 samples, 0.07%)</title><rect x="1146.9" y="277" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1149.91" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (475 samples, 0.77%)</title><rect x="1180.2" y="1221" width="9.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1183.19" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ReflectiveOperationException:::&lt;init&gt; (55 samples, 0.09%)</title><rect x="713.9" y="405" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="716.95" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (70 samples, 0.11%)</title><rect x="1175.2" y="1413" width="1.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,614 samples, 2.63%)</title><rect x="640.8" y="1205" width="31.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="643.75" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>d_invalidate (7 samples, 0.01%)</title><rect x="637.8" y="1141" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="640.83" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit_nit (14 samples, 0.02%)</title><rect x="71.4" y="597" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="74.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (6 samples, 0.01%)</title><rect x="1104.2" y="373" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1107.19" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (106 samples, 0.17%)</title><rect x="717.8" y="437" width="2.1" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="720.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readSerialData (10 samples, 0.02%)</title><rect x="1104.5" y="453" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1107.53" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (22 samples, 0.04%)</title><rect x="1166.7" y="1205" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (7 samples, 0.01%)</title><rect x="984.8" y="613" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="987.81" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlDecode (11 samples, 0.02%)</title><rect x="833.5" y="501" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="836.50" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::unpark (39 samples, 0.06%)</title><rect x="683.8" y="885" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="686.78" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/util/RequestUtil:::isContentType (9 samples, 0.01%)</title><rect x="1141.2" y="805" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1144.24" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (21 samples, 0.03%)</title><rect x="523.3" y="1077" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BmpCharProperty:::match (16 samples, 0.03%)</title><rect x="1023.3" y="613" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.28" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/StringDeserializer:::deserialize (15 samples, 0.02%)</title><rect x="952.9" y="533" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="955.90" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (32 samples, 0.05%)</title><rect x="835.2" y="277" width="0.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="838.25" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1,465 samples, 2.39%)</title><rect x="796.5" y="373" width="28.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="799.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (8 samples, 0.01%)</title><rect x="977.5" y="645" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="980.50" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>YoungList::rs_length_sampling_next (73 samples, 0.12%)</title><rect x="20.6" y="1429" width="1.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="23.58" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::check_safepoint_and_suspend_for_native_trans (44 samples, 0.07%)</title><rect x="103.4" y="1221" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="106.37" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/$Gson$Types:::resolve (10 samples, 0.02%)</title><rect x="717.6" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="720.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (6 samples, 0.01%)</title><rect x="710.3" y="549" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="713.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReduceOps$3ReducingSink:::accept (9 samples, 0.01%)</title><rect x="976.9" y="645" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="979.92" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1,243 samples, 2.03%)</title><rect x="1072.8" y="469" width="23.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1075.76" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (22 samples, 0.04%)</title><rect x="638.2" y="933" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="641.19" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/connector/Request:::getAttribute (6 samples, 0.01%)</title><rect x="1154.2" y="949" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1157.18" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (889 samples, 1.45%)</title><rect x="580.6" y="1141" width="17.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="583.62" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (7 samples, 0.01%)</title><rect x="555.3" y="1093" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="558.34" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (29,601 samples, 48.25%)</title><rect x="30.1" y="1365" width="569.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="33.12" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1,486 samples, 2.42%)</title><rect x="993.5" y="453" width="28.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="996.54" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (11 samples, 0.02%)</title><rect x="1166.5" y="1125" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/XContentBuilder:::&lt;init&gt; (7 samples, 0.01%)</title><rect x="791.2" y="549" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="794.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (20 samples, 0.03%)</title><rect x="994.1" y="373" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="997.12" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (57 samples, 0.09%)</title><rect x="1146.8" y="421" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1149.81" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (13 samples, 0.02%)</title><rect x="1165.9" y="837" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1168.86" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (12 samples, 0.02%)</title><rect x="607.5" y="1125" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (22 samples, 0.04%)</title><rect x="1165.8" y="1013" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1168.76" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (8 samples, 0.01%)</title><rect x="1023.4" y="517" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.36" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (84 samples, 0.14%)</title><rect x="551.0" y="1285" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (95 samples, 0.15%)</title><rect x="501.4" y="1141" width="1.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/datasource/helper/DNS/DNSUtil:::resolveDNS (18 samples, 0.03%)</title><rect x="521.5" y="1301" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="524.49" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/tcp/TCPTransport$ConnectionHandler:::run (36 samples, 0.06%)</title><rect x="638.1" y="1333" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="641.10" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (17 samples, 0.03%)</title><rect x="523.9" y="1013" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="526.93" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (8 samples, 0.01%)</title><rect x="473.0" y="1029" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="476.03" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (13 samples, 0.02%)</title><rect x="96.2" y="885" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="99.20" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (7 samples, 0.01%)</title><rect x="607.2" y="1109" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (68 samples, 0.11%)</title><rect x="1175.2" y="1269" width="1.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (17 samples, 0.03%)</title><rect x="1147.0" y="85" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1150.05" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::poll (1,067 samples, 1.74%)</title><rect x="577.6" y="1301" width="20.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="580.56" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcf_classify (12 samples, 0.02%)</title><rect x="73.1" y="773" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="76.11" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (9 samples, 0.01%)</title><rect x="585.7" y="1077" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="588.66" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (9 samples, 0.01%)</title><rect x="1178.0" y="1205" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (10 samples, 0.02%)</title><rect x="829.9" y="421" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="832.94" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1154:::invoke (8 samples, 0.01%)</title><rect x="952.5" y="517" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="955.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (8 samples, 0.01%)</title><rect x="773.7" y="405" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="776.71" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (174 samples, 0.28%)</title><rect x="1171.0" y="1093" width="3.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1174.01" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (9 samples, 0.01%)</title><rect x="100.1" y="1029" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="103.06" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/BeanDeserializer:::deserialize (20 samples, 0.03%)</title><rect x="1063.2" y="613" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1066.23" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>masked_flow_lookup (9 samples, 0.01%)</title><rect x="1147.4" y="133" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="1150.41" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::doSelect (192 samples, 0.31%)</title><rect x="607.8" y="1301" width="3.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="610.82" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getDeclaringClass0 (8 samples, 0.01%)</title><rect x="711.9" y="437" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="714.94" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (842 samples, 1.37%)</title><rect x="1029.0" y="581" width="16.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1032.01" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::wait (114 samples, 0.19%)</title><rect x="561.1" y="1301" width="2.1" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="564.06" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (11 samples, 0.02%)</title><rect x="1166.5" y="1221" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (12 samples, 0.02%)</title><rect x="976.5" y="645" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="979.52" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.03%)</title><rect x="467.8" y="1221" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (6 samples, 0.01%)</title><rect x="1147.8" y="293" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1150.76" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/StringCollectionDeserializer:::deserialize (26 samples, 0.04%)</title><rect x="1126.3" y="613" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1129.25" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::transfer (8 samples, 0.01%)</title><rect x="828.1" y="501" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="831.09" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (41 samples, 0.07%)</title><rect x="1107.1" y="373" width="0.8" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1110.13" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (8 samples, 0.01%)</title><rect x="18.6" y="1445" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (10 samples, 0.02%)</title><rect x="565.3" y="1189" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="568.31" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/Cat:::getCurrentMessageId (9 samples, 0.01%)</title><rect x="1070.7" y="629" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.68" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::process (177 samples, 0.29%)</title><rect x="1047.4" y="565" width="3.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1050.38" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26,688 samples, 43.51%)</title><rect x="30.1" y="1349" width="513.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="33.12" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReduceOps$3ReducingSink:::accept (10 samples, 0.02%)</title><rect x="983.8" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="986.85" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_sendmsg (99 samples, 0.16%)</title><rect x="15.8" y="1493" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="18.79" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (61,343 samples, 100%)</title><rect x="10.0" y="1525" width="1180.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (13 samples, 0.02%)</title><rect x="71.0" y="629" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="73.96" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (6 samples, 0.01%)</title><rect x="841.3" y="549" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="844.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/SimpleDateFormat:::&lt;init&gt; (71 samples, 0.12%)</title><rect x="728.3" y="693" width="1.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="731.30" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (54 samples, 0.09%)</title><rect x="612.7" y="1269" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (145 samples, 0.24%)</title><rect x="93.8" y="1045" width="2.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="96.81" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (111 samples, 0.18%)</title><rect x="561.1" y="1125" width="2.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="564.09" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (9 samples, 0.01%)</title><rect x="521.3" y="1173" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1,486 samples, 2.42%)</title><rect x="993.5" y="469" width="28.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="996.54" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (24 samples, 0.04%)</title><rect x="468.6" y="1141" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (57 samples, 0.09%)</title><rect x="563.3" y="1141" width="1.1" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (270 samples, 0.44%)</title><rect x="545.5" y="1205" width="5.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="548.46" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Unpark (57 samples, 0.09%)</title><rect x="575.9" y="1221" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="578.93" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/AbstractHttp11Processor:::action (224 samples, 0.37%)</title><rect x="1144.1" y="725" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1147.12" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (8 samples, 0.01%)</title><rect x="673.5" y="1253" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="676.45" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (8 samples, 0.01%)</title><rect x="10.1" y="1413" width="0.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (14 samples, 0.02%)</title><rect x="1178.1" y="1173" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,206 samples, 1.97%)</title><rect x="1073.3" y="437" width="23.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1076.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (22 samples, 0.04%)</title><rect x="1166.7" y="1173" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1,157 samples, 1.89%)</title><rect x="614.7" y="1237" width="22.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="617.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_slow_exit_work (8 samples, 0.01%)</title><rect x="482.7" y="1221" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="485.73" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::implDereg (8 samples, 0.01%)</title><rect x="599.2" y="1285" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="602.22" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (27 samples, 0.04%)</title><rect x="715.3" y="389" width="0.5" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="718.25" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (11 samples, 0.02%)</title><rect x="576.3" y="1093" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="579.35" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/XContentHelper:::toXContent (12 samples, 0.02%)</title><rect x="1053.9" y="613" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1056.94" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/builder/SearchSourceBuilder:::toXContent (63 samples, 0.10%)</title><rect x="838.1" y="565" width="1.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="841.06" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (7 samples, 0.01%)</title><rect x="607.2" y="1189" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (15 samples, 0.02%)</title><rect x="720.3" y="469" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="723.25" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (13 samples, 0.02%)</title><rect x="524.9" y="1045" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="527.89" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (77 samples, 0.13%)</title><rect x="28.4" y="1269" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="31.39" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (42 samples, 0.07%)</title><rect x="778.9" y="389" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="781.89" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (7 samples, 0.01%)</title><rect x="607.2" y="1269" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/management/mbean/DockerCpuInfo$1:::run (7 samples, 0.01%)</title><rect x="522.3" y="1317" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.32" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (31 samples, 0.05%)</title><rect x="1107.2" y="325" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1110.19" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (10 samples, 0.02%)</title><rect x="429.0" y="1205" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (18 samples, 0.03%)</title><rect x="468.2" y="1109" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder:::encodeBufferLoop (6 samples, 0.01%)</title><rect x="1097.8" y="565" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1100.84" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.01%)</title><rect x="500.9" y="949" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (15 samples, 0.02%)</title><rect x="994.2" y="309" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="997.20" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (29 samples, 0.05%)</title><rect x="17.7" y="1365" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (9 samples, 0.01%)</title><rect x="796.0" y="389" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="798.99" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (6 samples, 0.01%)</title><rect x="644.1" y="917" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="647.12" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (21 samples, 0.03%)</title><rect x="1159.6" y="821" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1162.63" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (84 samples, 0.14%)</title><rect x="505.9" y="1061" width="1.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="508.89" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/util/net/apache/HttpRequestExecutors:::execute (7 samples, 0.01%)</title><rect x="522.9" y="1253" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.89" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (23 samples, 0.04%)</title><rect x="554.7" y="1061" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (53 samples, 0.09%)</title><rect x="559.9" y="1045" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="562.88" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (193 samples, 0.31%)</title><rect x="70.1" y="901" width="3.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="73.06" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::release (51 samples, 0.08%)</title><rect x="50.0" y="1221" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="53.03" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (26 samples, 0.04%)</title><rect x="94.8" y="677" width="0.5" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="97.83" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Field:::getGenericType (89 samples, 0.15%)</title><rect x="721.5" y="565" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="724.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (26 samples, 0.04%)</title><rect x="535.8" y="1077" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="538.78" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::readNonProxy (32 samples, 0.05%)</title><rect x="1101.3" y="501" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1104.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (13 samples, 0.02%)</title><rect x="637.7" y="1269" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::doSelect (1,149 samples, 1.87%)</title><rect x="577.3" y="1317" width="22.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="580.29" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (8 samples, 0.01%)</title><rect x="63.4" y="1077" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="66.40" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (44 samples, 0.07%)</title><rect x="1029.9" y="373" width="0.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1032.94" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit$$Lambda$513/460379098:::parse (151 samples, 0.25%)</title><rect x="788.5" y="565" width="2.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="791.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (8 samples, 0.01%)</title><rect x="839.7" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="842.73" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendto (98 samples, 0.16%)</title><rect x="15.8" y="1445" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="18.79" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (18 samples, 0.03%)</title><rect x="565.2" y="1269" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="568.21" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (9 samples, 0.01%)</title><rect x="426.2" y="901" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="429.21" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1,354 samples, 2.21%)</title><rect x="798.5" y="309" width="26.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="801.55" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.04%)</title><rect x="1158.8" y="1141" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1161.76" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollCtl (66 samples, 0.11%)</title><rect x="577.8" y="1285" width="1.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="580.79" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/specific/SpecificJsonWriter$RecordWriter:::write (30 samples, 0.05%)</title><rect x="1143.2" y="725" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1146.24" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (88 samples, 0.14%)</title><rect x="553.0" y="1205" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="555.98" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/DateFormatSymbols:::copyMembers (9 samples, 0.01%)</title><rect x="728.6" y="661" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="731.56" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupTail:::match (9 samples, 0.01%)</title><rect x="1023.3" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.34" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::evaluate_operation (46 samples, 0.07%)</title><rect x="1177.9" y="1429" width="0.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1180.92" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (37 samples, 0.06%)</title><rect x="567.4" y="1093" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="570.42" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/Gson:::getAdapter (41 samples, 0.07%)</title><rect x="712.9" y="421" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.91" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_poll (57 samples, 0.09%)</title><rect x="563.3" y="1173" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (90 samples, 0.15%)</title><rect x="956.0" y="533" width="1.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="958.95" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (151 samples, 0.25%)</title><rect x="1024.1" y="645" width="2.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1027.13" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (24 samples, 0.04%)</title><rect x="1164.5" y="1061" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1167.47" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___bpf_prog_run (8 samples, 0.01%)</title><rect x="73.5" y="741" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="76.48" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (15 samples, 0.02%)</title><rect x="1067.9" y="533" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1070.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (24 samples, 0.04%)</title><rect x="835.3" y="213" width="0.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="838.32" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit:::createFromMap (8 samples, 0.01%)</title><rect x="1059.9" y="597" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1062.91" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::split (6 samples, 0.01%)</title><rect x="689.6" y="773" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="692.55" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (105 samples, 0.17%)</title><rect x="561.2" y="1093" width="2.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="564.21" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (10 samples, 0.02%)</title><rect x="1108.3" y="533" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1111.34" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (400 samples, 0.65%)</title><rect x="535.6" y="1205" width="7.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="538.65" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/specific/SpecificJsonReader:::checkFmt (6 samples, 0.01%)</title><rect x="1139.4" y="757" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1142.37" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (70 samples, 0.11%)</title><rect x="1175.2" y="1333" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/CollectionDeserializer:::deserialize (2,673 samples, 4.36%)</title><rect x="906.9" y="565" width="51.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="909.88" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/MainClientExec:::prepare (389 samples, 0.63%)</title><rect x="1099.0" y="581" width="7.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1102.01" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/AbstractIOReactor:::processClosedSessions (14 samples, 0.02%)</title><rect x="45.3" y="1301" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="48.30" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1,463 samples, 2.38%)</title><rect x="740.2" y="469" width="28.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="743.22" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/StatusInfoCollector:::collectNetStat (10 samples, 0.02%)</title><rect x="500.7" y="1301" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="503.67" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (95 samples, 0.15%)</title><rect x="501.4" y="1189" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::poll (455 samples, 0.74%)</title><rect x="30.7" y="1205" width="8.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="33.72" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (10 samples, 0.02%)</title><rect x="535.0" y="1173" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1147:::invoke (10 samples, 0.02%)</title><rect x="954.9" y="533" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="957.92" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (11 samples, 0.02%)</title><rect x="684.2" y="725" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="687.17" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::doWriteLog (14 samples, 0.02%)</title><rect x="978.7" y="645" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="981.69" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (119 samples, 0.19%)</title><rect x="94.2" y="933" width="2.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="97.18" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/threads/TaskQueue:::poll (1,709 samples, 2.79%)</title><rect x="639.1" y="1301" width="32.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="642.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Integer:::toString (11 samples, 0.02%)</title><rect x="62.2" y="1221" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="65.23" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (8 samples, 0.01%)</title><rect x="565.3" y="1141" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="568.31" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (9 samples, 0.01%)</title><rect x="520.4" y="901" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="523.45" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,465 samples, 2.39%)</title><rect x="740.2" y="501" width="28.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="743.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (39 samples, 0.06%)</title><rect x="1165.5" y="1157" width="0.8" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1168.51" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (16 samples, 0.03%)</title><rect x="431.8" y="1125" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="434.83" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_close (246 samples, 0.40%)</title><rect x="92.1" y="1221" width="4.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="95.06" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (57 samples, 0.09%)</title><rect x="563.3" y="1125" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (7 samples, 0.01%)</title><rect x="638.0" y="1237" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (23 samples, 0.04%)</title><rect x="793.0" y="629" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="795.99" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1,533 samples, 2.50%)</title><rect x="436.3" y="1045" width="29.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="439.29" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x8..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (452 samples, 0.74%)</title><rect x="30.8" y="1029" width="8.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="33.77" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (99 samples, 0.16%)</title><rect x="717.9" y="421" width="1.9" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="720.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg_locked (43 samples, 0.07%)</title><rect x="1159.3" y="981" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.34" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (19 samples, 0.03%)</title><rect x="467.8" y="1253" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="470.82" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcf_classify (7 samples, 0.01%)</title><rect x="95.9" y="789" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="98.89" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/AbstractQueryBuilder:::toXContent (36 samples, 0.06%)</title><rect x="1132.7" y="613" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1135.68" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (63 samples, 0.10%)</title><rect x="83.2" y="1093" width="1.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="86.17" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (9 samples, 0.01%)</title><rect x="521.3" y="1061" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (336 samples, 0.55%)</title><rect x="926.0" y="533" width="6.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="928.97" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (95 samples, 0.15%)</title><rect x="94.3" y="869" width="1.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="97.31" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (141 samples, 0.23%)</title><rect x="87.3" y="1141" width="2.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="90.29" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/Strings:::toString (35 samples, 0.06%)</title><rect x="1068.5" y="661" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1071.54" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/buf/ByteChunk:::toStringInternal (12 samples, 0.02%)</title><rect x="1154.3" y="933" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1157.32" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (13 samples, 0.02%)</title><rect x="637.3" y="1189" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>masked_flow_lookup (25 samples, 0.04%)</title><rect x="95.3" y="725" width="0.5" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="98.33" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (81 samples, 0.13%)</title><rect x="19.0" y="1333" width="1.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="22.00" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (22 samples, 0.04%)</title><rect x="1158.8" y="1125" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1161.76" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (8 samples, 0.01%)</title><rect x="611.5" y="1333" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="614.51" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_swevent_start_hrtimer.part.70 (8 samples, 0.01%)</title><rect x="617.5" y="965" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="620.53" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (9 samples, 0.01%)</title><rect x="579.9" y="1157" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="582.89" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (706 samples, 1.15%)</title><rect x="504.0" y="1141" width="13.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="507.04" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/VM:::latestUserDefinedLoader0 (8 samples, 0.01%)</title><rect x="1104.4" y="437" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1107.38" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Threads::nmethods_do (11 samples, 0.02%)</title><rect x="1176.8" y="1381" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1179.84" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFSpan (6 samples, 0.01%)</title><rect x="773.0" y="453" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="776.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::buildLogEvent (15 samples, 0.02%)</title><rect x="1028.3" y="661" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1031.30" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (18 samples, 0.03%)</title><rect x="107.6" y="1125" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="110.58" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_update_userpage (13 samples, 0.02%)</title><rect x="133.6" y="981" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="136.57" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/thrift/transport/TTransport:::readAll (7 samples, 0.01%)</title><rect x="467.2" y="1301" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$848/229943005:::apply (22 samples, 0.04%)</title><rect x="982.7" y="581" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="985.71" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/service/utils/TraceUtility:::writeLog (1,636 samples, 2.67%)</title><rect x="699.4" y="709" width="31.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="702.40" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (395 samples, 0.64%)</title><rect x="1167.5" y="1349" width="7.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1170.47" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Spliterators$ArraySpliterator:::forEachRemaining (10 samples, 0.02%)</title><rect x="980.8" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="983.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (17 samples, 0.03%)</title><rect x="953.9" y="533" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="956.88" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (79 samples, 0.13%)</title><rect x="19.0" y="1301" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="22.02" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_nextAfterName (10 samples, 0.02%)</title><rect x="911.1" y="533" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="914.06" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (88 samples, 0.14%)</title><rect x="26.1" y="1285" width="1.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="29.08" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/XContentHelper:::toXContent (182 samples, 0.30%)</title><rect x="781.5" y="597" width="3.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="784.52" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultEventAggregator:::makeSureEventExist (11 samples, 0.02%)</title><rect x="682.0" y="869" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="685.03" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::_writeStringSegment (8 samples, 0.01%)</title><rect x="1114.2" y="533" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1117.15" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (77 samples, 0.13%)</title><rect x="28.4" y="1349" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="31.39" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (57 samples, 0.09%)</title><rect x="563.3" y="1093" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (85 samples, 0.14%)</title><rect x="14.2" y="1445" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_connect (6 samples, 0.01%)</title><rect x="434.4" y="1189" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/safelist/OperationIPWhiteListPlugin:::getRequestIdentity (6 samples, 0.01%)</title><rect x="695.0" y="789" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="698.00" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_del (8 samples, 0.01%)</title><rect x="109.9" y="1093" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="112.89" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (10 samples, 0.02%)</title><rect x="615.2" y="1045" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="618.17" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::new_array_C (9 samples, 0.01%)</title><rect x="82.3" y="1221" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="85.29" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::read0 (31 samples, 0.05%)</title><rect x="1163.2" y="1189" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1166.20" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (96 samples, 0.16%)</title><rect x="519.0" y="1221" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="521.97" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (23 samples, 0.04%)</title><rect x="714.2" y="309" width="0.5" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="717.23" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.01%)</title><rect x="500.9" y="1029" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (1,543 samples, 2.52%)</title><rect x="795.3" y="533" width="29.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="798.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (6 samples, 0.01%)</title><rect x="1054.1" y="565" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1057.06" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (11 samples, 0.02%)</title><rect x="993.9" y="405" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="996.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (93 samples, 0.15%)</title><rect x="1169.2" y="1109" width="1.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1172.23" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (13 samples, 0.02%)</title><rect x="1165.9" y="853" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1168.86" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (14,526 samples, 23.68%)</title><rect x="143.7" y="1029" width="279.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="146.69" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_pmu_enable_all</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (14 samples, 0.02%)</title><rect x="637.3" y="1221" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (18 samples, 0.03%)</title><rect x="468.2" y="1141" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (18 samples, 0.03%)</title><rect x="1145.4" y="437" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1148.43" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectorPolicy::update_incremental_cset_info (32 samples, 0.05%)</title><rect x="20.9" y="1413" width="0.7" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="23.95" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_event_new_data_sent (6 samples, 0.01%)</title><rect x="1147.9" y="421" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1150.91" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (9 samples, 0.01%)</title><rect x="521.3" y="1157" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (64 samples, 0.10%)</title><rect x="83.2" y="1109" width="1.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="86.15" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_connect (349 samples, 0.57%)</title><rect x="567.0" y="1301" width="6.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="570.04" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (39 samples, 0.06%)</title><rect x="93.0" y="1061" width="0.8" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="96.02" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__statvfs_getflags (1,518 samples, 2.47%)</title><rect x="993.2" y="565" width="29.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="996.20" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (13 samples, 0.02%)</title><rect x="841.0" y="549" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="843.96" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::read0 (257 samples, 0.42%)</title><rect x="92.0" y="1237" width="4.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="95.00" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (23 samples, 0.04%)</title><rect x="554.7" y="1093" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (17 samples, 0.03%)</title><rect x="499.8" y="1029" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="502.81" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (20 samples, 0.03%)</title><rect x="716.8" y="453" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="719.79" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (6 samples, 0.01%)</title><rect x="552.9" y="1077" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="1176.7" y="1365" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>readBytes (8 samples, 0.01%)</title><rect x="500.9" y="1173" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/StandardWrapperValve:::invoke (24,954 samples, 40.68%)</title><rect x="676.5" y="1189" width="480.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="679.45" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/StandardWrapperValve:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>checkcast_arraycopy (7 samples, 0.01%)</title><rect x="840.6" y="565" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="843.63" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (968 samples, 1.58%)</title><rect x="579.4" y="1237" width="18.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="582.37" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (60,852 samples, 99.20%)</title><rect x="19.0" y="1493" width="1170.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="21.96" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (17 samples, 0.03%)</title><rect x="738.5" y="597" width="0.3" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="741.51" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (350 samples, 0.57%)</title><rect x="1168.1" y="1189" width="6.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1171.07" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (10 samples, 0.02%)</title><rect x="865.4" y="469" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="868.39" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::performRequest (1,632 samples, 2.66%)</title><rect x="1028.8" y="645" width="31.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1031.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (392 samples, 0.64%)</title><rect x="535.8" y="1109" width="7.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="538.78" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (79 samples, 0.13%)</title><rect x="555.2" y="1285" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager$TransactionHelper:::validate (9 samples, 0.01%)</title><rect x="696.8" y="789" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="699.77" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (7 samples, 0.01%)</title><rect x="1029.8" y="309" width="0.1" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1032.80" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor:::runWorker (1,323 samples, 2.16%)</title><rect x="611.8" y="1333" width="25.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="614.78" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/configuration/util/PropertyValueGetter:::getTypedValue (8 samples, 0.01%)</title><rect x="687.7" y="821" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="690.73" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/handler/codec/http/HttpContentDecoder:::messageReceived (15 samples, 0.02%)</title><rect x="30.4" y="1141" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (88 samples, 0.14%)</title><rect x="26.1" y="1269" width="1.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="29.08" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/RuntimeException:::&lt;init&gt; (158 samples, 0.26%)</title><rect x="973.3" y="661" width="3.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="976.27" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,511 samples, 2.46%)</title><rect x="795.9" y="485" width="29.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="798.85" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (7 samples, 0.01%)</title><rect x="1029.6" y="389" width="0.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1032.61" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (19 samples, 0.03%)</title><rect x="599.5" y="1301" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::resize (52 samples, 0.08%)</title><rect x="884.6" y="453" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="887.57" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/HeaderGroup:::getHeaders (26 samples, 0.04%)</title><rect x="49.2" y="1237" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="52.16" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/buf/StringCache:::toString (8 samples, 0.01%)</title><rect x="1153.8" y="917" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1156.76" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/configuration/policy/source/PolicyServiceConfiguration$ConfigUpdateTask:::syncConfiguration (7 samples, 0.01%)</title><rect x="522.2" y="1301" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (6 samples, 0.01%)</title><rect x="885.8" y="421" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="888.78" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (36 samples, 0.06%)</title><rect x="523.7" y="1237" width="0.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (1,396 samples, 2.28%)</title><rect x="644.4" y="1045" width="26.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="647.39" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (17 samples, 0.03%)</title><rect x="1104.1" y="437" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1107.05" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/AbstractMultiworkerIOReactor:::execute (1,672 samples, 2.73%)</title><rect x="434.1" y="1317" width="32.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="437.08" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (13 samples, 0.02%)</title><rect x="741.0" y="325" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="743.99" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::readObject (6 samples, 0.01%)</title><rect x="833.0" y="389" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="835.98" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (20 samples, 0.03%)</title><rect x="1162.5" y="1125" width="0.4" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1165.47" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_start (6 samples, 0.01%)</title><rect x="1170.9" y="1029" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1173.88" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1,620 samples, 2.64%)</title><rect x="640.6" y="1221" width="31.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="643.64" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (43 samples, 0.07%)</title><rect x="103.4" y="1077" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (7 samples, 0.01%)</title><rect x="638.0" y="997" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (11 samples, 0.02%)</title><rect x="779.3" y="181" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="782.25" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_wait4 (13 samples, 0.02%)</title><rect x="637.7" y="1253" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (53 samples, 0.09%)</title><rect x="702.8" y="629" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="705.83" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (15 samples, 0.02%)</title><rect x="521.5" y="1253" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlDecode (23 samples, 0.04%)</title><rect x="777.1" y="517" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="780.12" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::EnterI (15 samples, 0.02%)</title><rect x="99.9" y="1221" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="102.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__remove_hrtimer (8 samples, 0.01%)</title><rect x="109.9" y="1109" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="112.89" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ByteArrayOutputStream:::write (6 samples, 0.01%)</title><rect x="1119.7" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1122.75" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (7 samples, 0.01%)</title><rect x="775.8" y="373" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="778.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (475 samples, 0.77%)</title><rect x="1180.2" y="1189" width="9.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1183.19" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::format (32 samples, 0.05%)</title><rect x="1149.1" y="789" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.10" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (189 samples, 0.31%)</title><rect x="70.1" y="853" width="3.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="73.11" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (7 samples, 0.01%)</title><rect x="943.9" y="517" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="946.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HeapRegion::oops_on_card_seq_iterate_careful (28 samples, 0.05%)</title><rect x="25.3" y="1317" width="0.5" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="28.27" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (79 samples, 0.13%)</title><rect x="19.0" y="1269" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="22.02" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (113 samples, 0.18%)</title><rect x="561.1" y="1189" width="2.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/io/SessionInputBufferImpl:::fillBuffer (8 samples, 0.01%)</title><rect x="600.0" y="1237" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::is_zombie (6 samples, 0.01%)</title><rect x="708.8" y="453" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="711.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (6 samples, 0.01%)</title><rect x="104.4" y="1221" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="107.41" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (15 samples, 0.02%)</title><rect x="1165.8" y="917" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.84" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (702 samples, 1.14%)</title><rect x="504.1" y="1125" width="13.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="507.12" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageProducer:::newTransaction (22 samples, 0.04%)</title><rect x="902.4" y="629" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="905.40" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (17 samples, 0.03%)</title><rect x="467.4" y="1029" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::read (40 samples, 0.07%)</title><rect x="1163.1" y="1205" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1166.09" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (11 samples, 0.02%)</title><rect x="557.0" y="1269" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (10 samples, 0.02%)</title><rect x="535.0" y="1125" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::transfer (6 samples, 0.01%)</title><rect x="1047.2" y="533" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1050.23" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (17 samples, 0.03%)</title><rect x="467.4" y="1173" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (9 samples, 0.01%)</title><rect x="112.8" y="981" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="115.80" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (8 samples, 0.01%)</title><rect x="832.3" y="357" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="835.32" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream:::fill (24 samples, 0.04%)</title><rect x="638.2" y="1189" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (19 samples, 0.03%)</title><rect x="1073.6" y="389" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1076.56" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (17 samples, 0.03%)</title><rect x="644.1" y="997" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="647.06" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (95 samples, 0.15%)</title><rect x="501.4" y="1269" width="1.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_close (6 samples, 0.01%)</title><rect x="12.1" y="1461" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="15.12" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/client/ServiceClientBase$$Lambda$195/495331387:::execute (6 samples, 0.01%)</title><rect x="522.2" y="1237" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getClassDataLayout0 (9 samples, 0.01%)</title><rect x="1049.3" y="501" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (8 samples, 0.01%)</title><rect x="730.1" y="693" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="733.10" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (11 samples, 0.02%)</title><rect x="557.0" y="1141" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (222 samples, 0.36%)</title><rect x="39.7" y="997" width="4.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="42.66" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (154 samples, 0.25%)</title><rect x="1124.3" y="629" width="3.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1127.29" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (7 samples, 0.01%)</title><rect x="30.4" y="757" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="33.45" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (11 samples, 0.02%)</title><rect x="557.0" y="1301" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::buildString (33 samples, 0.05%)</title><rect x="769.1" y="581" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="772.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (70 samples, 0.11%)</title><rect x="1171.1" y="1061" width="1.4" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1174.13" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::poll (17,094 samples, 27.87%)</title><rect x="100.4" y="1269" width="328.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="103.35" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun/nio/ch/EPollArrayWrapper:::poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (7 samples, 0.01%)</title><rect x="519.9" y="645" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="522.87" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (11 samples, 0.02%)</title><rect x="972.7" y="613" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="975.67" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,203 samples, 1.96%)</title><rect x="1073.3" y="421" width="23.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1076.29" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (55 samples, 0.09%)</title><rect x="713.9" y="357" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="716.95" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ProcessImpl:::start (6 samples, 0.01%)</title><rect x="500.8" y="1253" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="503.75" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.01%)</title><rect x="429.0" y="1189" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (6 samples, 0.01%)</title><rect x="469.8" y="1061" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,617 samples, 2.64%)</title><rect x="435.0" y="1205" width="31.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="437.98" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/BasicTokenIterator:::findNext (13 samples, 0.02%)</title><rect x="48.9" y="1237" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="51.90" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (13 samples, 0.02%)</title><rect x="637.7" y="1301" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (31 samples, 0.05%)</title><rect x="683.8" y="805" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="686.82" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (496 samples, 0.81%)</title><rect x="483.1" y="1301" width="9.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="486.05" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (17 samples, 0.03%)</title><rect x="1158.8" y="1013" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.80" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/service/soa/HtlOrgAreaServiceImpl$$EnhancerBySpringCGLIB$$92bc7bae:::checkAuthority (22,831 samples, 37.22%)</title><rect x="698.7" y="789" width="439.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="701.65" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hotel/htlorgarea/service/soa/HtlOrgAreaServiceImpl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (7 samples, 0.01%)</title><rect x="108.9" y="1109" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="111.87" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WatcherThread::sleep (543 samples, 0.89%)</title><rect x="1179.1" y="1445" width="10.4" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="1182.07" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_try_to_cancel (13 samples, 0.02%)</title><rect x="671.5" y="1109" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="674.45" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (311 samples, 0.51%)</title><rect x="69.3" y="1013" width="5.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="72.27" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (30 samples, 0.05%)</title><rect x="1159.6" y="901" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1162.57" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1143:::invoke (14 samples, 0.02%)</title><rect x="954.5" y="533" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="957.47" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (6 samples, 0.01%)</title><rect x="1159.0" y="901" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1161.97" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (18 samples, 0.03%)</title><rect x="468.2" y="1125" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (14 samples, 0.02%)</title><rect x="1178.1" y="1253" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Executable:::declaredAnnotations (6 samples, 0.01%)</title><rect x="730.9" y="709" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="733.93" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CLoggingLogger$FreewayLogSender:::send (40 samples, 0.07%)</title><rect x="731.5" y="677" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="734.55" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (34 samples, 0.06%)</title><rect x="523.7" y="1093" width="0.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="526.68" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (20 samples, 0.03%)</title><rect x="711.9" y="453" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="714.89" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlEncode (19 samples, 0.03%)</title><rect x="1045.7" y="581" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1048.73" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (140 samples, 0.23%)</title><rect x="1129.2" y="613" width="2.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1132.16" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find (6 samples, 0.01%)</title><rect x="1104.2" y="341" width="0.1" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="1107.19" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/Gson:::getAdapter (1,331 samples, 2.17%)</title><rect x="701.2" y="677" width="25.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="704.23" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (13 samples, 0.02%)</title><rect x="18.4" y="1285" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="21.37" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultLocalAggregator:::analyzerProcessEvent (53 samples, 0.09%)</title><rect x="680.4" y="901" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="683.38" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/ratelimiter/OperationIPRateLimiterPlugin:::getRequestIdentity (8 samples, 0.01%)</title><rect x="694.2" y="789" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="697.15" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (1,289 samples, 2.10%)</title><rect x="1072.0" y="565" width="24.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1074.97" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >U..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (90 samples, 0.15%)</title><rect x="26.1" y="1349" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="29.06" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.01%)</title><rect x="18.6" y="1493" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/client/InternalHttpClient:::doExecute (6 samples, 0.01%)</title><rect x="522.2" y="1173" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioSelector:::run (231 samples, 0.38%)</title><rect x="39.5" y="1269" width="4.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="42.49" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (389 samples, 0.63%)</title><rect x="68.1" y="1093" width="7.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="71.07" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/execchain/RetryExec:::execute (12 samples, 0.02%)</title><rect x="600.0" y="1301" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="602.97" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (22 samples, 0.04%)</title><rect x="983.3" y="565" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="986.27" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (59 samples, 0.10%)</title><rect x="431.5" y="1173" width="1.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="434.50" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (53 samples, 0.09%)</title><rect x="741.3" y="341" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="744.30" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/IdsQueryBuilder:::doXContent (9 samples, 0.01%)</title><rect x="1069.0" y="597" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1072.02" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (11 samples, 0.02%)</title><rect x="1166.5" y="1237" width="0.2" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (53 samples, 0.09%)</title><rect x="557.2" y="1173" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="560.25" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BiasedLocking::revoke_and_rebias (11 samples, 0.02%)</title><rect x="1166.5" y="1285" width="0.2" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/BaijiServiceHost:::applyPostResponseFilters (29 samples, 0.05%)</title><rect x="686.6" y="853" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="689.61" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (130 samples, 0.21%)</title><rect x="1129.2" y="581" width="2.5" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1132.23" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="1167.2" y="1269" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (34 samples, 0.06%)</title><rect x="1145.3" y="581" width="0.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1148.33" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/XContentParser$Token$7:::isValue (6 samples, 0.01%)</title><rect x="1120.2" y="613" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1123.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (10 samples, 0.02%)</title><rect x="1107.5" y="181" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1110.48" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (11 samples, 0.02%)</title><rect x="30.4" y="853" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/tcp/TCPTransport:::handleMessages (33 samples, 0.05%)</title><rect x="638.2" y="1221" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (163 samples, 0.27%)</title><rect x="781.9" y="565" width="3.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="784.89" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (17 samples, 0.03%)</title><rect x="467.9" y="1077" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="470.86" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (36 samples, 0.06%)</title><rect x="113.3" y="981" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="116.26" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (7 samples, 0.01%)</title><rect x="1102.8" y="453" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1105.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (6 samples, 0.01%)</title><rect x="1027.8" y="645" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1030.82" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (21 samples, 0.03%)</title><rect x="638.2" y="917" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="641.19" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelStaticInfoServiceImpl:::extendMasterHotelInfo (2,187 samples, 3.57%)</title><rect x="1027.1" y="677" width="42.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1030.15" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parsePosNumber (11 samples, 0.02%)</title><rect x="1119.3" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1122.27" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (10 samples, 0.02%)</title><rect x="17.3" y="1189" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="20.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (7 samples, 0.01%)</title><rect x="565.3" y="1125" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="568.33" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (18 samples, 0.03%)</title><rect x="468.2" y="1205" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/CollectionDeserializer:::deserialize (2,684 samples, 4.38%)</title><rect x="906.7" y="581" width="51.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="909.67" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (23 samples, 0.04%)</title><rect x="1026.3" y="533" width="0.5" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1029.34" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (454 samples, 0.74%)</title><rect x="30.7" y="1125" width="8.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (46 samples, 0.07%)</title><rect x="1025.1" y="549" width="0.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1028.11" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (13 samples, 0.02%)</title><rect x="795.9" y="405" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="798.93" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (8 samples, 0.01%)</title><rect x="1107.3" y="229" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1110.30" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (8 samples, 0.01%)</title><rect x="776.0" y="341" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="779.04" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (11 samples, 0.02%)</title><rect x="59.3" y="1157" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="62.26" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__statvfs_getflags (29 samples, 0.05%)</title><rect x="17.7" y="1493" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (94 samples, 0.15%)</title><rect x="1146.4" y="597" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1149.39" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/buf/StringCache:::findClosest (6 samples, 0.01%)</title><rect x="1153.8" y="901" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1156.80" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/TreeMap:::put (6 samples, 0.01%)</title><rect x="688.5" y="805" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="691.51" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (96 samples, 0.16%)</title><rect x="94.3" y="917" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="97.29" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RequestConverters$EndpointBuilder:::addPathPart (27 samples, 0.04%)</title><rect x="837.4" y="581" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="840.40" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::process (269 samples, 0.44%)</title><rect x="771.7" y="549" width="5.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="774.75" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/threads/TaskQueue:::offer (81 samples, 0.13%)</title><rect x="575.5" y="1285" width="1.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="578.50" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (7 samples, 0.01%)</title><rect x="640.1" y="1221" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fput (38 samples, 0.06%)</title><rect x="1165.5" y="1109" width="0.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1168.51" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (140 samples, 0.23%)</title><rect x="1129.2" y="629" width="2.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1132.16" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (765 samples, 1.25%)</title><rect x="503.4" y="1301" width="14.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="506.44" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (104 samples, 0.17%)</title><rect x="431.0" y="1221" width="2.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="434.00" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (14 samples, 0.02%)</title><rect x="1178.1" y="1157" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (16,811 samples, 27.40%)</title><rect x="105.1" y="1205" width="323.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="108.10" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_syscall_64</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (19 samples, 0.03%)</title><rect x="1165.8" y="981" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1168.76" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/channel/nio/NioEventLoop:::run (934 samples, 1.52%)</title><rect x="503.3" y="1333" width="17.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="506.27" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (20 samples, 0.03%)</title><rect x="775.9" y="405" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="778.90" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (39 samples, 0.06%)</title><rect x="103.5" y="965" width="0.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="106.47" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (12 samples, 0.02%)</title><rect x="896.2" y="469" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="899.21" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/IOSessionImpl:::setEvent (44 samples, 0.07%)</title><rect x="1051.9" y="501" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1054.87" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (730 samples, 1.19%)</title><rect x="503.7" y="1253" width="14.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="506.73" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (57 samples, 0.09%)</title><rect x="563.3" y="1157" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_LatestUserDefinedLoader (10 samples, 0.02%)</title><rect x="776.3" y="405" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="779.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (19 samples, 0.03%)</title><rect x="771.4" y="533" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="774.38" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (21 samples, 0.03%)</title><rect x="523.3" y="1205" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (22 samples, 0.04%)</title><rect x="1158.8" y="1173" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1161.76" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/lucene/util/BytesRef:::utf8ToString (37 samples, 0.06%)</title><rect x="1027.3" y="661" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1030.28" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/base/ParserBase:::_parseNumericValue (9 samples, 0.01%)</title><rect x="786.5" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="789.48" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelStaticInfoServiceImpl:::queryHotelStaticInfo (3,339 samples, 5.44%)</title><rect x="1069.2" y="677" width="64.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1072.22" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (8 samples, 0.01%)</title><rect x="500.9" y="1077" width="0.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Curly:::match (11 samples, 0.02%)</title><rect x="991.3" y="549" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.35" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/foundation/internals/provider/DefaultStatusProvider$2:::run (13 samples, 0.02%)</title><rect x="521.9" y="1317" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="524.91" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SafepointSynchronize::begin (68 samples, 0.11%)</title><rect x="1176.6" y="1429" width="1.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="1179.57" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (324 samples, 0.53%)</title><rect x="600.8" y="1141" width="6.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="603.78" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (17 samples, 0.03%)</title><rect x="1102.1" y="453" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1105.11" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.01%)</title><rect x="500.9" y="933" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (7 samples, 0.01%)</title><rect x="429.0" y="1109" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (61 samples, 0.10%)</title><rect x="83.2" y="1061" width="1.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="86.21" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (24 samples, 0.04%)</title><rect x="468.6" y="1205" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (9 samples, 0.01%)</title><rect x="100.1" y="1013" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="103.06" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/ObjectParser:::parseValue (11 samples, 0.02%)</title><rect x="842.5" y="549" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="845.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::getTextCharacters (10 samples, 0.02%)</title><rect x="1057.0" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1060.02" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (16,703 samples, 27.23%)</title><rect x="105.9" y="1173" width="321.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="108.89" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep_poll</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/AbstractHttp11Processor:::process (25,535 samples, 41.63%)</title><rect x="672.9" y="1269" width="491.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="675.91" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/coyote/http11/AbstractHttp11Processor:::process</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_receive (65 samples, 0.11%)</title><rect x="94.6" y="773" width="1.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="97.64" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/RuntimeException:::&lt;init&gt; (142 samples, 0.23%)</title><rect x="1129.1" y="661" width="2.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1132.12" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (57 samples, 0.09%)</title><rect x="563.3" y="1045" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvfrom (32 samples, 0.05%)</title><rect x="10.6" y="1445" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (329 samples, 0.54%)</title><rect x="510.7" y="1013" width="6.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="513.73" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/client/ServiceClientBase:::execute (6 samples, 0.01%)</title><rect x="522.2" y="1189" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (6 samples, 0.01%)</title><rect x="1176.7" y="1413" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (19 samples, 0.03%)</title><rect x="599.5" y="1189" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (65 samples, 0.11%)</title><rect x="28.6" y="1189" width="1.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="31.56" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (15 samples, 0.02%)</title><rect x="105.2" y="1173" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="108.16" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_h_load (16 samples, 0.03%)</title><rect x="88.6" y="1077" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="91.56" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::initNonProxy (20 samples, 0.03%)</title><rect x="829.0" y="469" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="831.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (14 samples, 0.02%)</title><rect x="18.3" y="1349" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (224 samples, 0.37%)</title><rect x="39.6" y="1045" width="4.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="42.62" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (24 samples, 0.04%)</title><rect x="638.2" y="1173" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (7 samples, 0.01%)</title><rect x="467.2" y="1109" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (127 samples, 0.21%)</title><rect x="1066.1" y="645" width="2.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1069.06" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/domain/thrift/Chunk$ChunkStandardScheme:::write (47 samples, 0.08%)</title><rect x="544.4" y="1317" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="547.40" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_close (114 samples, 0.19%)</title><rect x="430.8" y="1253" width="2.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="433.83" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (63 samples, 0.10%)</title><rect x="484.6" y="1061" width="1.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="487.57" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (7 samples, 0.01%)</title><rect x="640.1" y="1157" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (8 samples, 0.01%)</title><rect x="523.0" y="1141" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.01%)</title><rect x="18.6" y="1365" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (6 samples, 0.01%)</title><rect x="552.9" y="1173" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (14 samples, 0.02%)</title><rect x="1158.8" y="981" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.84" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.01%)</title><rect x="87.1" y="1109" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::processKey (103 samples, 0.17%)</title><rect x="575.1" y="1333" width="2.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="578.12" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/client/ribbon/HttpContextFilter:::doFilter (24,841 samples, 40.50%)</title><rect x="677.3" y="1077" width="477.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="680.28" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/client/ribbon/HttpContextFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RootProcessor::evacuate_roots (83 samples, 0.14%)</title><rect x="22.8" y="1429" width="1.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="25.83" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (40 samples, 0.07%)</title><rect x="1145.3" y="645" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1148.30" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (209 samples, 0.34%)</title><rect x="92.6" y="1109" width="4.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="95.62" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RefineRecordRefsIntoCSCardTableEntryClosure::do_card_ptr (73 samples, 0.12%)</title><rect x="24.5" y="1349" width="1.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="27.47" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_work_run (39 samples, 0.06%)</title><rect x="1165.5" y="1141" width="0.8" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1168.51" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (20 samples, 0.03%)</title><rect x="523.3" y="1029" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="526.28" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::is_zombie (9 samples, 0.01%)</title><rect x="1131.5" y="549" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1134.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/TimerThread:::mainLoop (174 samples, 0.28%)</title><rect x="561.0" y="1349" width="3.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="564.02" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseNumber2 (31 samples, 0.05%)</title><rect x="919.5" y="501" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="922.50" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_close (26 samples, 0.04%)</title><rect x="1165.7" y="1093" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1168.74" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (450 samples, 0.73%)</title><rect x="30.8" y="1013" width="8.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="33.81" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (56 samples, 0.09%)</title><rect x="555.5" y="1093" width="1.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="558.50" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/MainClientExec:::prepare (249 samples, 0.41%)</title><rect x="1046.9" y="581" width="4.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1049.94" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (11 samples, 0.02%)</title><rect x="100.0" y="1109" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (17 samples, 0.03%)</title><rect x="467.4" y="1221" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::await (7 samples, 0.01%)</title><rect x="607.2" y="1301" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/safelist/buwhitelist/BuWhiteListPlugin:::apply (51 samples, 0.08%)</title><rect x="695.2" y="805" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="698.21" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (154 samples, 0.25%)</title><rect x="959.5" y="597" width="2.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="962.46" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/Util:::getTemporaryDirectBuffer (17 samples, 0.03%)</title><rect x="96.9" y="1237" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="99.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (84 samples, 0.14%)</title><rect x="551.0" y="1189" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReferencePipeline$2$1:::accept (40 samples, 0.07%)</title><rect x="980.7" y="629" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="983.67" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="600.0" y="1157" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/domain/thrift/AgentTByteBufferTransport:::writeUTF (26 samples, 0.04%)</title><rect x="544.8" y="1285" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="547.78" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_read (53 samples, 0.09%)</title><rect x="431.6" y="1157" width="1.0" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="434.60" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_output (17 samples, 0.03%)</title><rect x="1147.0" y="117" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1150.05" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__inet_stream_connect (6 samples, 0.01%)</title><rect x="434.4" y="1141" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (56 samples, 0.09%)</title><rect x="563.3" y="997" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="566.29" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (21 samples, 0.03%)</title><rect x="1052.1" y="357" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (83 samples, 0.14%)</title><rect x="1146.5" y="501" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1149.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor54:::invoke (22,831 samples, 37.22%)</title><rect x="698.7" y="805" width="439.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="701.65" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun/reflect/GeneratedMethodAccessor54:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>proc_fd_instantiate (9 samples, 0.01%)</title><rect x="13.5" y="1349" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="16.54" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (28 samples, 0.05%)</title><rect x="499.7" y="1205" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="502.71" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (534 samples, 0.87%)</title><rect x="524.6" y="1173" width="10.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="527.62" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::create (1,261 samples, 2.06%)</title><rect x="702.2" y="661" width="24.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="705.21" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_timeout (311 samples, 0.51%)</title><rect x="567.3" y="1189" width="5.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="570.25" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readObject0 (82 samples, 0.13%)</title><rect x="775.2" y="453" width="1.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.19" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/safelist/buwhitelist/BuWhiteListPlugin:::getWhiteListSetting (46 samples, 0.07%)</title><rect x="695.3" y="789" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="698.29" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (16 samples, 0.03%)</title><rect x="112.7" y="1045" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="115.66" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (49 samples, 0.08%)</title><rect x="905.3" y="597" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="908.31" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (59,521 samples, 97.03%)</title><rect x="30.1" y="1381" width="1145.0" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="33.12" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::fireCallbacks (77 samples, 0.13%)</title><rect x="778.4" y="549" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="781.41" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1,145 samples, 1.87%)</title><rect x="614.8" y="1157" width="22.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="617.84" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (254 samples, 0.41%)</title><rect x="568.3" y="1093" width="4.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="571.33" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (42 samples, 0.07%)</title><rect x="1146.9" y="293" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1149.91" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (56 samples, 0.09%)</title><rect x="16.4" y="1269" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="19.44" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (23 samples, 0.04%)</title><rect x="1162.4" y="1173" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1165.42" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (83 samples, 0.14%)</title><rect x="551.1" y="1125" width="1.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="554.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (50 samples, 0.08%)</title><rect x="714.0" y="325" width="1.0" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="717.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (34 samples, 0.06%)</title><rect x="1107.2" y="357" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1110.17" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (24 samples, 0.04%)</title><rect x="43.9" y="901" width="0.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (793 samples, 1.29%)</title><rect x="1029.7" y="405" width="15.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1032.74" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (22 samples, 0.04%)</title><rect x="1163.3" y="1109" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1166.32" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.01%)</title><rect x="29.9" y="1205" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::join (6 samples, 0.01%)</title><rect x="1053.3" y="613" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1056.31" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (24 samples, 0.04%)</title><rect x="638.2" y="1157" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/DefaultTreeSender:::run (917 samples, 1.49%)</title><rect x="483.0" y="1333" width="17.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="485.96" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (348 samples, 0.57%)</title><rect x="1168.1" y="1173" width="6.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1171.11" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (278 samples, 0.45%)</title><rect x="545.3" y="1333" width="5.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="548.30" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::wait (14 samples, 0.02%)</title><rect x="637.3" y="1301" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="640.1" y="1189" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (7 samples, 0.01%)</title><rect x="718.9" y="389" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="721.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (24 samples, 0.04%)</title><rect x="638.2" y="1045" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (113 samples, 0.18%)</title><rect x="561.1" y="1237" width="2.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_LatestUserDefinedLoader (13 samples, 0.02%)</title><rect x="832.6" y="389" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="835.55" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (192 samples, 0.31%)</title><rect x="70.1" y="885" width="3.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="73.06" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageProducer:::logEvent (19 samples, 0.03%)</title><rect x="696.3" y="805" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="699.31" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (33 samples, 0.05%)</title><rect x="1164.4" y="1157" width="0.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1167.44" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,474 samples, 2.40%)</title><rect x="993.8" y="421" width="28.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="996.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (16 samples, 0.03%)</title><rect x="523.4" y="1013" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="526.35" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient$$Lambda$348/118939725:::apply (56 samples, 0.09%)</title><rect x="1053.1" y="629" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1056.10" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (1,504 samples, 2.45%)</title><rect x="993.3" y="501" width="29.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="996.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (13,350 samples, 21.76%)</title><rect x="166.3" y="1013" width="256.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="169.31" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native_write_msr</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (37 samples, 0.06%)</title><rect x="830.2" y="453" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="833.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer:::serializeContents (11 samples, 0.02%)</title><rect x="1135.8" y="613" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1138.83" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (65 samples, 0.11%)</title><rect x="83.2" y="1125" width="1.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="86.15" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="896.3" y="437" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="899.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (59,521 samples, 97.03%)</title><rect x="30.1" y="1413" width="1145.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="33.12" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_virtual</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (9 samples, 0.01%)</title><rect x="535.0" y="1109" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (54 samples, 0.09%)</title><rect x="612.7" y="1221" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::processPendingRequest (12 samples, 0.02%)</title><rect x="1108.1" y="565" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1111.05" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (36 samples, 0.06%)</title><rect x="1101.9" y="501" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1104.90" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readObject0 (72 samples, 0.12%)</title><rect x="831.7" y="437" width="1.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="834.71" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::resize (8 samples, 0.01%)</title><rect x="790.3" y="485" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="793.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (8 samples, 0.01%)</title><rect x="776.0" y="373" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="779.04" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupHead:::match (13 samples, 0.02%)</title><rect x="695.8" y="709" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.82" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (54 samples, 0.09%)</title><rect x="612.7" y="1189" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.01%)</title><rect x="1108.4" y="325" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1111.38" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeString (6 samples, 0.01%)</title><rect x="498.5" y="1269" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="501.46" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/Executors$RunnableAdapter:::call (12 samples, 0.02%)</title><rect x="522.6" y="1301" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="525.57" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (95 samples, 0.15%)</title><rect x="501.4" y="1301" width="1.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>awk (14 samples, 0.02%)</title><rect x="10.0" y="1509" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (21 samples, 0.03%)</title><rect x="523.3" y="1237" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (8 samples, 0.01%)</title><rect x="578.2" y="1173" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="581.20" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::processDeregisterQueue (31 samples, 0.05%)</title><rect x="433.1" y="1269" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="436.06" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (762 samples, 1.24%)</title><rect x="911.3" y="533" width="14.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="914.31" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (6 samples, 0.01%)</title><rect x="597.9" y="1205" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="600.87" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (11 samples, 0.02%)</title><rect x="732.8" y="645" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="735.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (14 samples, 0.02%)</title><rect x="105.2" y="1093" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="108.18" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (6 samples, 0.01%)</title><rect x="552.9" y="1045" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (11 samples, 0.02%)</title><rect x="30.4" y="869" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/NumberDeserializers$BigDecimalDeserializer:::deserialize (7 samples, 0.01%)</title><rect x="1125.9" y="613" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1128.91" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeField (11 samples, 0.02%)</title><rect x="710.2" y="565" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.19" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (188 samples, 0.31%)</title><rect x="607.9" y="1141" width="3.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="610.88" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (77 samples, 0.13%)</title><rect x="28.4" y="1301" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="31.39" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (9 samples, 0.01%)</title><rect x="778.1" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="781.12" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (1,200 samples, 1.96%)</title><rect x="614.0" y="1285" width="23.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="616.98" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (7 samples, 0.01%)</title><rect x="89.8" y="1045" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="92.83" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::getPool (11 samples, 0.02%)</title><rect x="50.5" y="1205" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="53.55" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (81 samples, 0.13%)</title><rect x="1062.8" y="629" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1065.83" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultLocalAggregator:::analyzerProcessEvent (23 samples, 0.04%)</title><rect x="682.0" y="885" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="684.96" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/configuration/cascaded/DefaultCascadedTypedDynamicCachedCorrectedProperty:::typedValue (6 samples, 0.01%)</title><rect x="693.8" y="789" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="696.77" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/ObjectParser:::parse (205 samples, 0.33%)</title><rect x="787.5" y="581" width="3.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="790.50" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (6 samples, 0.01%)</title><rect x="615.1" y="1045" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="618.05" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>proc_fill_cache (15 samples, 0.02%)</title><rect x="13.4" y="1365" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="16.42" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (6 samples, 0.01%)</title><rect x="1146.7" y="469" width="0.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1149.66" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (23 samples, 0.04%)</title><rect x="554.7" y="1237" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (16 samples, 0.03%)</title><rect x="111.1" y="1045" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="114.14" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (14 samples, 0.02%)</title><rect x="545.5" y="1109" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="548.51" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (7 samples, 0.01%)</title><rect x="640.1" y="1173" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (18 samples, 0.03%)</title><rect x="1145.4" y="453" width="0.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="1148.43" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbyte_disjoint_arraycopy (18 samples, 0.03%)</title><rect x="901.2" y="501" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="904.17" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (9 samples, 0.01%)</title><rect x="1108.4" y="517" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (12 samples, 0.02%)</title><rect x="712.3" y="453" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="715.35" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (521 samples, 0.85%)</title><rect x="524.8" y="1077" width="10.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="527.82" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (16 samples, 0.03%)</title><rect x="1165.8" y="933" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (98 samples, 0.16%)</title><rect x="15.8" y="1429" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="18.79" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/tree/ClassTypeSignature:::accept (15 samples, 0.02%)</title><rect x="716.9" y="437" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="719.89" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (7 samples, 0.01%)</title><rect x="90.2" y="1205" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="93.18" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (53 samples, 0.09%)</title><rect x="1061.8" y="629" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1064.81" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/SimpleDateFormat:::format (15 samples, 0.02%)</title><rect x="729.7" y="693" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="732.68" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (7 samples, 0.01%)</title><rect x="1132.3" y="629" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1135.27" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (54 samples, 0.09%)</title><rect x="612.7" y="1045" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (19 samples, 0.03%)</title><rect x="89.4" y="1029" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="92.43" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (10 samples, 0.02%)</title><rect x="12.7" y="1445" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="15.71" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_frame_hook (25 samples, 0.04%)</title><rect x="16.7" y="1077" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="19.66" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ByteArrayOutputStream:::write (12 samples, 0.02%)</title><rect x="550.8" y="1301" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="553.80" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/common/defensive/Loops:::executeWithoutTightLoop (35 samples, 0.06%)</title><rect x="599.5" y="1349" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (114 samples, 0.19%)</title><rect x="471.0" y="1093" width="2.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="474.01" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageProducer:::logEvent (6 samples, 0.01%)</title><rect x="686.9" y="837" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="689.90" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (24 samples, 0.04%)</title><rect x="779.0" y="245" width="0.5" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="782.04" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.01%)</title><rect x="469.8" y="1077" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::buildLogEvent (16 samples, 0.03%)</title><rect x="979.2" y="613" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="982.21" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,439 samples, 2.35%)</title><rect x="740.6" y="405" width="27.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="743.61" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::write (13 samples, 0.02%)</title><rect x="607.5" y="1285" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="610.49" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (65 samples, 0.11%)</title><rect x="28.6" y="1173" width="1.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="31.56" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (54 samples, 0.09%)</title><rect x="557.2" y="1269" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="560.23" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1102:::invoke (7 samples, 0.01%)</title><rect x="738.3" y="597" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="741.28" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (533 samples, 0.87%)</title><rect x="524.6" y="1157" width="10.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="527.64" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (41 samples, 0.07%)</title><rect x="1146.9" y="213" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1149.93" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (58 samples, 0.09%)</title><rect x="559.8" y="1285" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="562.81" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dentry_unlink_inode (8 samples, 0.01%)</title><rect x="1165.6" y="1061" width="0.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1168.59" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (43 samples, 0.07%)</title><rect x="718.4" y="405" width="0.8" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="721.41" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (9 samples, 0.01%)</title><rect x="972.7" y="581" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="975.71" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (29 samples, 0.05%)</title><rect x="722.7" y="485" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="725.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit$$Lambda$513/460379098:::parse (326 samples, 0.53%)</title><rect x="1113.6" y="581" width="6.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1116.59" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (374 samples, 0.61%)</title><rect x="1167.7" y="1301" width="7.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1170.69" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (824 samples, 1.34%)</title><rect x="1029.3" y="501" width="15.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1032.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (52 samples, 0.08%)</title><rect x="778.7" y="421" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="781.71" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::getBoundFields (1,248 samples, 2.03%)</title><rect x="702.4" y="645" width="24.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="705.38" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (393 samples, 0.64%)</title><rect x="31.9" y="949" width="7.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="34.91" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_unlock (20 samples, 0.03%)</title><rect x="423.1" y="1061" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="426.11" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1150:::invoke (7 samples, 0.01%)</title><rect x="952.2" y="517" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="955.18" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor:::getTask (7 samples, 0.01%)</title><rect x="607.2" y="1317" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (8 samples, 0.01%)</title><rect x="1101.7" y="453" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1104.71" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (17 samples, 0.03%)</title><rect x="1072.9" y="421" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1075.87" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit$$Lambda$513/460379098:::parse (3,051 samples, 4.97%)</title><rect x="842.9" y="549" width="58.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="845.94" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/el..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Calendar:::createCalendar (18 samples, 0.03%)</title><rect x="1149.7" y="805" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.74" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer:::findSymbol (12 samples, 0.02%)</title><rect x="735.6" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="738.60" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/ClientLogSender:::sendInternal (80 samples, 0.13%)</title><rect x="558.3" y="1317" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="561.27" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (88 samples, 0.14%)</title><rect x="553.0" y="1253" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="555.98" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (95 samples, 0.15%)</title><rect x="501.4" y="1173" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/io/NumberOutput:::outputInt (6 samples, 0.01%)</title><rect x="789.0" y="517" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="791.99" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1,607 samples, 2.62%)</title><rect x="435.1" y="1093" width="30.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="438.14" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (9 samples, 0.01%)</title><rect x="426.2" y="933" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="429.21" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (10 samples, 0.02%)</title><rect x="1046.3" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1049.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/ClientLogSender:::run (140 samples, 0.23%)</title><rect x="558.3" y="1333" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="561.27" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask:::run (20 samples, 0.03%)</title><rect x="522.8" y="1317" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="525.82" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (8 samples, 0.01%)</title><rect x="10.1" y="1445" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (7 samples, 0.01%)</title><rect x="640.1" y="1125" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/$Gson$Types:::canonicalize (6 samples, 0.01%)</title><rect x="709.4" y="565" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="712.42" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (34 samples, 0.06%)</title><rect x="1107.2" y="341" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1110.17" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (8 samples, 0.01%)</title><rect x="710.6" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.60" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (8 samples, 0.01%)</title><rect x="1168.1" y="1125" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1171.15" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/XContentBuilder:::&lt;init&gt; (11 samples, 0.02%)</title><rect x="900.6" y="533" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="903.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/data/elastic/impl/HotelBasicInfoRepoImpl$$Lambda$313/787679260:::call (1,634 samples, 2.66%)</title><rect x="1028.7" y="661" width="31.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1031.74" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (454 samples, 0.74%)</title><rect x="30.7" y="1141" width="8.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_module (6 samples, 0.01%)</title><rect x="13.9" y="1477" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="16.90" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (10 samples, 0.02%)</title><rect x="1145.6" y="421" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="1148.58" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (40 samples, 0.07%)</title><rect x="1145.3" y="661" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1148.30" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (737 samples, 1.20%)</title><rect x="1030.8" y="341" width="14.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1033.78" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_NewObject (24 samples, 0.04%)</title><rect x="566.0" y="1269" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="569.02" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (72 samples, 0.12%)</title><rect x="19.1" y="1205" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="22.14" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (526 samples, 0.86%)</title><rect x="1179.3" y="1269" width="10.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1182.27" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (12 samples, 0.02%)</title><rect x="637.3" y="1157" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="640.27" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (55 samples, 0.09%)</title><rect x="1107.0" y="485" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1109.98" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.03%)</title><rect x="565.2" y="1285" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="568.21" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (15 samples, 0.02%)</title><rect x="64.3" y="1157" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="67.30" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream:::read (7 samples, 0.01%)</title><rect x="467.2" y="1285" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (7 samples, 0.01%)</title><rect x="426.1" y="917" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="429.06" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelClassInfoServiceImpl:::lambda$queryHotelClassInfo$0 (1,923 samples, 3.13%)</title><rect x="987.1" y="661" width="37.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="990.10" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (21 samples, 0.03%)</title><rect x="773.5" y="453" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="776.46" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find (6 samples, 0.01%)</title><rect x="773.8" y="389" width="0.1" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="776.75" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (16 samples, 0.03%)</title><rect x="565.2" y="1253" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="568.23" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (14 samples, 0.02%)</title><rect x="18.3" y="1333" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_inode (6 samples, 0.01%)</title><rect x="573.4" y="1189" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="576.37" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_clone (6 samples, 0.01%)</title><rect x="74.7" y="965" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="77.65" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (9 samples, 0.01%)</title><rect x="792.4" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="795.43" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (24 samples, 0.04%)</title><rect x="709.7" y="565" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="712.73" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (1,670 samples, 2.72%)</title><rect x="639.7" y="1237" width="32.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="642.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (36 samples, 0.06%)</title><rect x="786.7" y="581" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="789.68" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/base/ParserBase:::_parseNumericValue (6 samples, 0.01%)</title><rect x="1125.9" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1128.92" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (21 samples, 0.03%)</title><rect x="638.2" y="901" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="641.19" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (362 samples, 0.59%)</title><rect x="1167.9" y="1221" width="6.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1170.86" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (29 samples, 0.05%)</title><rect x="708.2" y="453" width="0.5" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="711.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FilterInputStream:::read (25 samples, 0.04%)</title><rect x="43.9" y="1173" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer:::findSymbol (33 samples, 0.05%)</title><rect x="1121.6" y="613" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1124.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_swevent_start_hrtimer.part.70 (9 samples, 0.01%)</title><rect x="644.1" y="949" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="647.12" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/RuntimeException:::&lt;init&gt; (127 samples, 0.21%)</title><rect x="1066.1" y="661" width="2.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1069.06" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (7 samples, 0.01%)</title><rect x="1104.1" y="389" width="0.1" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="1107.05" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_wait4 (13 samples, 0.02%)</title><rect x="637.7" y="1237" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_gettimeofday (8 samples, 0.01%)</title><rect x="98.4" y="1285" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="101.41" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (20 samples, 0.03%)</title><rect x="640.8" y="1093" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="643.83" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (7 samples, 0.01%)</title><rect x="26.2" y="1237" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="29.20" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (19 samples, 0.03%)</title><rect x="565.2" y="1317" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="568.19" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_receive (8 samples, 0.01%)</title><rect x="1165.9" y="741" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1168.90" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlDecode (17 samples, 0.03%)</title><rect x="1051.0" y="533" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1054.04" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/configuration/messagelog/MsgLogManager:::logMsgInternal (10 samples, 0.02%)</title><rect x="686.7" y="837" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="689.71" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultLocalAggregator:::analyzerProcessTransaction (186 samples, 0.30%)</title><rect x="679.8" y="917" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="682.84" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="469.8" y="1205" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/ObjectParser:::parse (3,122 samples, 5.09%)</title><rect x="841.6" y="565" width="60.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="844.60" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/el..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (652 samples, 1.06%)</title><rect x="470.3" y="1253" width="12.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="473.34" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (36 samples, 0.06%)</title><rect x="1164.4" y="1189" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1167.42" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultTransaction:::complete (29 samples, 0.05%)</title><rect x="691.8" y="805" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="694.84" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (8 samples, 0.01%)</title><rect x="740.8" y="357" width="0.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="743.78" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (9 samples, 0.01%)</title><rect x="557.1" y="1093" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="560.06" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putMapEntries (9 samples, 0.01%)</title><rect x="768.7" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="771.73" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (1,296 samples, 2.11%)</title><rect x="1071.9" y="597" width="24.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1074.89" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::compiler_thread_loop (104 samples, 0.17%)</title><rect x="27.9" y="1445" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="30.89" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (8 samples, 0.01%)</title><rect x="1178.0" y="1077" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1180.98" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>masked_flow_lookup (7 samples, 0.01%)</title><rect x="520.0" y="741" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="523.03" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (6 samples, 0.01%)</title><rect x="993.9" y="357" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="996.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (55 samples, 0.09%)</title><rect x="559.8" y="1157" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="562.84" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer:::findSymbol (297 samples, 0.48%)</title><rect x="920.1" y="517" width="5.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="923.10" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (10 samples, 0.02%)</title><rect x="740.7" y="373" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="743.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (18 samples, 0.03%)</title><rect x="468.2" y="1045" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="638.0" y="1189" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (19 samples, 0.03%)</title><rect x="1159.7" y="757" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1162.66" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController:::doPrivileged (38 samples, 0.06%)</title><rect x="43.9" y="1301" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/XContentHelper:::toXContent (22 samples, 0.04%)</title><rect x="1110.2" y="613" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1113.21" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (13 samples, 0.02%)</title><rect x="971.0" y="613" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="974.04" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (65 samples, 0.11%)</title><rect x="70.9" y="661" width="1.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="73.86" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (7 samples, 0.01%)</title><rect x="1029.6" y="405" width="0.1" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="1032.61" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor83:::invoke (7 samples, 0.01%)</title><rect x="833.0" y="405" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="835.96" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::finishConnect (9 samples, 0.01%)</title><rect x="434.7" y="1285" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.68" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (24,863 samples, 40.53%)</title><rect x="676.9" y="1125" width="478.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="679.90" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager:::start (12 samples, 0.02%)</title><rect x="902.5" y="613" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="905.50" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/channels/Channels$ReadableByteChannelImpl:::read (58 samples, 0.09%)</title><rect x="65.1" y="1253" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="68.05" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (81 samples, 0.13%)</title><rect x="111.0" y="1061" width="1.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="113.97" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeObject (24 samples, 0.04%)</title><rect x="558.6" y="1269" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="561.58" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (21 samples, 0.03%)</title><rect x="1164.5" y="1013" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1167.53" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$943/1074833845:::test (84 samples, 0.14%)</title><rect x="985.3" y="597" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="988.25" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.11 (94 samples, 0.15%)</title><rect x="106.4" y="1157" width="1.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="109.37" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (14 samples, 0.02%)</title><rect x="1178.1" y="1301" width="0.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__statvfs_getflags (25 samples, 0.04%)</title><rect x="43.9" y="1077" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (7 samples, 0.01%)</title><rect x="775.9" y="373" width="0.1" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="778.90" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (14 samples, 0.02%)</title><rect x="1178.1" y="1141" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (6 samples, 0.01%)</title><rect x="636.6" y="1045" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="639.60" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::handle (24,117 samples, 39.31%)</title><rect x="687.3" y="853" width="463.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="690.26" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.01%)</title><rect x="1022.4" y="325" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (12 samples, 0.02%)</title><rect x="44.4" y="1141" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (14 samples, 0.02%)</title><rect x="637.3" y="1237" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (57 samples, 0.09%)</title><rect x="16.4" y="1285" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="19.42" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (42 samples, 0.07%)</title><rect x="73.8" y="901" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="76.77" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (39 samples, 0.06%)</title><rect x="16.6" y="1157" width="0.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="19.56" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (13 samples, 0.02%)</title><rect x="524.9" y="1061" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="527.89" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/conn/PoolingNHttpClientConnectionManager$InternalPoolEntryCallback:::completed (72 samples, 0.12%)</title><rect x="778.4" y="533" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="781.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::write0 (97 samples, 0.16%)</title><rect x="518.9" y="1269" width="1.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="521.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetEnclosingMethodInfo (7 samples, 0.01%)</title><rect x="712.1" y="421" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="715.10" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (17 samples, 0.03%)</title><rect x="467.4" y="1269" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (8 samples, 0.01%)</title><rect x="600.0" y="1061" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultTransaction:::complete (310 samples, 0.51%)</title><rect x="679.0" y="949" width="6.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="681.99" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (36 samples, 0.06%)</title><rect x="16.6" y="1093" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="19.62" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter_full (7 samples, 0.01%)</title><rect x="519.2" y="1077" width="0.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="522.16" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::freeMemory (8 samples, 0.01%)</title><rect x="518.6" y="1253" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="521.58" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParCleanupCTTask::work (7 samples, 0.01%)</title><rect x="22.0" y="1445" width="0.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="25.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__getcwd (10 samples, 0.02%)</title><rect x="12.7" y="1477" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="15.71" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>destroy_inode (6 samples, 0.01%)</title><rect x="1165.6" y="1013" width="0.1" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1168.59" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>credis/java/client/model/RedisGroupModel:::getRedisGroupModel (24 samples, 0.04%)</title><rect x="987.6" y="645" width="0.5" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="990.60" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (7 samples, 0.01%)</title><rect x="719.6" y="373" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="722.56" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (18 samples, 0.03%)</title><rect x="467.8" y="1141" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (18 samples, 0.03%)</title><rect x="710.9" y="485" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.89" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit:::getSourceAsString (30 samples, 0.05%)</title><rect x="793.5" y="645" width="0.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="796.52" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (11 samples, 0.02%)</title><rect x="534.9" y="1317" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="537.93" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (53 samples, 0.09%)</title><rect x="741.3" y="357" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="744.30" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (95 samples, 0.15%)</title><rect x="94.3" y="885" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="97.31" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/StringDeserializer:::deserialize (9 samples, 0.01%)</title><rect x="1126.8" y="613" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1129.75" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BaseTermQueryBuilder:::doXContent (10 samples, 0.02%)</title><rect x="838.7" y="501" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="841.69" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getDeclaringClass0 (7 samples, 0.01%)</title><rect x="703.5" y="597" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="706.48" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (6 samples, 0.01%)</title><rect x="1176.7" y="1301" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__statvfs_getflags (8 samples, 0.01%)</title><rect x="600.0" y="1173" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (95 samples, 0.15%)</title><rect x="26.0" y="1429" width="1.8" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="29.00" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (25 samples, 0.04%)</title><rect x="23.8" y="1173" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qunar/tc/qconfig/client/impl/LongPoller:::reLoading (7 samples, 0.01%)</title><rect x="522.6" y="1269" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="525.64" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentEvent (35 samples, 0.06%)</title><rect x="1056.6" y="533" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1059.60" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/servlet/CatFilter:::doFilter (24,811 samples, 40.45%)</title><rect x="677.7" y="1013" width="477.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="680.72" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/dianping/cat/servlet/CatFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="640.1" y="1205" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/SimpleDateFormat:::subFormat (11 samples, 0.02%)</title><rect x="729.7" y="677" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="732.72" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (12 samples, 0.02%)</title><rect x="607.5" y="1141" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (68 samples, 0.11%)</title><rect x="106.7" y="1141" width="1.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="109.72" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/VM:::latestUserDefinedLoader0 (25 samples, 0.04%)</title><rect x="1102.6" y="501" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1105.59" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (8 samples, 0.01%)</title><rect x="638.6" y="1141" width="0.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="641.64" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (401 samples, 0.65%)</title><rect x="535.6" y="1237" width="7.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="538.63" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (11 samples, 0.02%)</title><rect x="30.4" y="821" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (33 samples, 0.05%)</title><rect x="466.4" y="1141" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="469.36" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (7 samples, 0.01%)</title><rect x="780.2" y="565" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="783.21" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::performRequestAsync (527 samples, 0.86%)</title><rect x="770.3" y="597" width="10.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="773.31" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (325 samples, 0.53%)</title><rect x="486.0" y="1045" width="6.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="489.00" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (72 samples, 0.12%)</title><rect x="16.2" y="1333" width="1.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="19.19" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient$$Lambda$348/118939725:::apply (239 samples, 0.39%)</title><rect x="780.5" y="613" width="4.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="783.46" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (156 samples, 0.25%)</title><rect x="973.3" y="613" width="3.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="976.31" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::ILock (6 samples, 0.01%)</title><rect x="552.9" y="1253" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (9 samples, 0.01%)</title><rect x="741.1" y="293" width="0.1" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="744.07" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (54 samples, 0.09%)</title><rect x="612.7" y="1029" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (8 samples, 0.01%)</title><rect x="578.2" y="1205" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="581.20" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (541 samples, 0.88%)</title><rect x="1179.1" y="1413" width="10.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1182.07" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (11 samples, 0.02%)</title><rect x="1166.5" y="1013" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/servlet/CatFilter$CatHandler$2:::handle (24,794 samples, 40.42%)</title><rect x="677.9" y="981" width="477.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="680.94" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/dianping/cat/servlet/CatFilter$CatHandler$2:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::read (311 samples, 0.51%)</title><rect x="91.3" y="1253" width="6.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="94.29" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1,467 samples, 2.39%)</title><rect x="740.2" y="533" width="28.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="743.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (66 samples, 0.11%)</title><rect x="1146.8" y="453" width="1.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1149.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (11 samples, 0.02%)</title><rect x="1099.8" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/parser/SignatureParser:::parsePackageNameAndSimpleClassTypeSignature (29 samples, 0.05%)</title><rect x="721.7" y="533" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="724.66" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::buildUri (50 samples, 0.08%)</title><rect x="1045.6" y="613" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1048.56" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectMapper:::readValue (243 samples, 0.40%)</title><rect x="734.4" y="645" width="4.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="737.35" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler$1:::completed (70 samples, 0.11%)</title><rect x="778.4" y="517" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="781.44" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (29 samples, 0.05%)</title><rect x="17.7" y="1333" width="0.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Calendar:::createCalendar (21 samples, 0.03%)</title><rect x="729.0" y="677" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="732.05" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (8 samples, 0.01%)</title><rect x="638.6" y="1173" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="641.64" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/util/concurrent/SingleThreadEventExecutor:::runAllTasks (23 samples, 0.04%)</title><rect x="607.4" y="1317" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="610.36" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::fireCallbacks (75 samples, 0.12%)</title><rect x="1106.6" y="565" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1109.61" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parsePosNumber (6 samples, 0.01%)</title><rect x="899.5" y="485" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="902.52" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parker::park (7 samples, 0.01%)</title><rect x="739.7" y="533" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="742.68" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (8 samples, 0.01%)</title><rect x="10.1" y="1429" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vframeStreamCommon::next (10 samples, 0.02%)</title><rect x="1102.7" y="469" width="0.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1105.75" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (9 samples, 0.01%)</title><rect x="959.0" y="597" width="0.1" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="961.96" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (15 samples, 0.02%)</title><rect x="725.9" y="533" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="728.87" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectorPolicy::predict_bytes_to_copy (14 samples, 0.02%)</title><rect x="21.2" y="1381" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="24.18" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (7 samples, 0.01%)</title><rect x="1029.4" y="437" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1032.36" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.01%)</title><rect x="640.1" y="1093" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>veth_xmit (13 samples, 0.02%)</title><rect x="74.2" y="853" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="77.25" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>touch_atime (10 samples, 0.02%)</title><rect x="432.4" y="1141" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="435.42" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (15 samples, 0.02%)</title><rect x="641.3" y="1061" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="644.31" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (35 samples, 0.06%)</title><rect x="89.1" y="1045" width="0.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="92.12" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::defaultReadFields (89 samples, 0.15%)</title><rect x="775.1" y="469" width="1.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.02%)</title><rect x="30.4" y="965" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (268 samples, 0.44%)</title><rect x="545.5" y="1141" width="5.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="548.49" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (26 samples, 0.04%)</title><rect x="10.6" y="1381" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="13.60" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (78 samples, 0.13%)</title><rect x="555.2" y="1173" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="558.23" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetEnclosingMethodInfo (6 samples, 0.01%)</title><rect x="703.6" y="581" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="706.62" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (8 samples, 0.01%)</title><rect x="1106.3" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1109.32" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (544 samples, 0.89%)</title><rect x="524.4" y="1253" width="10.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="527.43" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (22,721 samples, 37.04%)</title><rect x="30.1" y="1333" width="437.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="33.12" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (7 samples, 0.01%)</title><rect x="59.3" y="1141" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="62.32" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (9 samples, 0.01%)</title><rect x="1054.0" y="581" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1057.00" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/net/www/http/KeepAliveCache:::run (34 samples, 0.06%)</title><rect x="1166.4" y="1349" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1169.44" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (85 samples, 0.14%)</title><rect x="14.2" y="1349" width="1.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (84 samples, 0.14%)</title><rect x="551.0" y="1205" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::doPreemptiveAuth (10 samples, 0.02%)</title><rect x="771.8" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="774.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::lease (92 samples, 0.15%)</title><rect x="834.6" y="549" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="837.63" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (72 samples, 0.12%)</title><rect x="1120.9" y="629" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1123.92" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.17.so] (6 samples, 0.01%)</title><rect x="104.4" y="1237" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="107.41" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/SessionOutputBufferImpl:::write (6 samples, 0.01%)</title><rect x="62.1" y="1205" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="65.11" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (7 samples, 0.01%)</title><rect x="1048.5" y="453" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1051.52" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/authenticator/AuthenticatorBase:::invoke (24,982 samples, 40.73%)</title><rect x="676.0" y="1221" width="480.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="678.99" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/authenticator/AuthenticatorBase:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6:::encodeMessage (113 samples, 0.18%)</title><rect x="496.5" y="1285" width="2.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="499.46" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="10.1" y="1461" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::getText (14 samples, 0.02%)</title><rect x="1126.4" y="597" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1129.37" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (14 samples, 0.02%)</title><rect x="1178.1" y="1221" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (22 samples, 0.04%)</title><rect x="1166.7" y="1077" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (96 samples, 0.16%)</title><rect x="552.8" y="1333" width="1.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="555.82" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (8 samples, 0.01%)</title><rect x="741.1" y="277" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="744.07" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (22 samples, 0.04%)</title><rect x="1166.7" y="1157" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/parser/SignatureParser:::parseClassTypeSignature (25 samples, 0.04%)</title><rect x="724.3" y="613" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="727.29" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1,503 samples, 2.45%)</title><rect x="795.9" y="437" width="28.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="798.93" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (78 samples, 0.13%)</title><rect x="555.2" y="1157" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="558.23" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[snappy-1.1.2-d5408970-ac94-4770-8f1c-c5361ecd4248-libsnappyjava.so] (33 samples, 0.05%)</title><rect x="11.4" y="1477" width="0.6" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="14.38" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.01%)</title><rect x="1167.2" y="1125" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_stream_connect (6 samples, 0.01%)</title><rect x="434.4" y="1157" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1,139 samples, 1.86%)</title><rect x="614.9" y="1141" width="21.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="617.92" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (6 samples, 0.01%)</title><rect x="519.2" y="1061" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="522.16" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/chunkbuilder/LogChunkBuilder:::add (6 samples, 0.01%)</title><rect x="1028.0" y="645" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1031.03" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (6 samples, 0.01%)</title><rect x="787.0" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="790.04" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (11 samples, 0.02%)</title><rect x="727.9" y="677" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="730.95" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.01%)</title><rect x="106.5" y="1141" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="109.55" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/Net:::setSocketOption (18 samples, 0.03%)</title><rect x="564.7" y="1301" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="567.73" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1,245 samples, 2.03%)</title><rect x="1072.7" y="485" width="24.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1075.72" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (30 samples, 0.05%)</title><rect x="722.7" y="517" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="725.68" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageProducer:::logEvent (12 samples, 0.02%)</title><rect x="732.5" y="645" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="735.53" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/common/base/AbstractIterator:::hasNext (6 samples, 0.01%)</title><rect x="1151.5" y="853" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1154.53" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::hashCode (19 samples, 0.03%)</title><rect x="877.1" y="469" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="880.07" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (29 samples, 0.05%)</title><rect x="722.7" y="501" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="725.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (17 samples, 0.03%)</title><rect x="24.0" y="1093" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="26.97" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (53 samples, 0.09%)</title><rect x="557.2" y="1205" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="560.25" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_forward_skb (7 samples, 0.01%)</title><rect x="74.3" y="821" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="77.33" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (17 samples, 0.03%)</title><rect x="467.4" y="1285" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/action/search/SearchResponse:::innerFromXContent (280 samples, 0.46%)</title><rect x="1054.7" y="613" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1057.69" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (485 samples, 0.79%)</title><rect x="473.2" y="1061" width="9.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="476.21" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (7 samples, 0.01%)</title><rect x="638.0" y="1125" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (10 samples, 0.02%)</title><rect x="773.2" y="437" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="776.21" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (99 samples, 0.16%)</title><rect x="15.8" y="1477" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="18.79" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (16 samples, 0.03%)</title><rect x="112.7" y="1029" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="115.66" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/VM:::latestUserDefinedLoader0 (13 samples, 0.02%)</title><rect x="832.6" y="405" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="835.55" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (18 samples, 0.03%)</title><rect x="468.2" y="1269" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (19 samples, 0.03%)</title><rect x="599.5" y="1141" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (17,433 samples, 28.42%)</title><rect x="98.6" y="1301" width="335.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="101.60" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun/nio/ch/SelectorImpl:::lockAndDoSelect</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.01%)</title><rect x="467.2" y="1061" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (14 samples, 0.02%)</title><rect x="1165.8" y="885" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1168.84" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (14 samples, 0.02%)</title><rect x="637.3" y="1285" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (8 samples, 0.01%)</title><rect x="578.2" y="1189" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="581.20" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (66 samples, 0.11%)</title><rect x="1175.3" y="1221" width="1.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1178.27" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (8 samples, 0.01%)</title><rect x="972.7" y="549" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="975.71" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (826 samples, 1.35%)</title><rect x="1029.3" y="533" width="15.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1032.28" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (38 samples, 0.06%)</title><rect x="43.9" y="1237" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::format (40 samples, 0.07%)</title><rect x="695.4" y="773" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.38" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getEnclosingMethod0 (9 samples, 0.01%)</title><rect x="712.1" y="437" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="715.10" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (8 samples, 0.01%)</title><rect x="993.9" y="373" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="996.93" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (34 samples, 0.06%)</title><rect x="466.3" y="1157" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (53 samples, 0.09%)</title><rect x="724.8" y="597" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="727.83" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (6 samples, 0.01%)</title><rect x="63.1" y="1125" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="66.15" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/InternalNioInputBuffer:::readSocket (86 samples, 0.14%)</title><rect x="1162.3" y="1237" width="1.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getReflector (12 samples, 0.02%)</title><rect x="1101.0" y="485" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1104.01" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/Http11NioProcessor:::actionInternal (17 samples, 0.03%)</title><rect x="1152.9" y="917" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1155.89" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (106 samples, 0.17%)</title><rect x="717.8" y="485" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="720.85" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (22 samples, 0.04%)</title><rect x="1166.7" y="1109" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::add (43 samples, 0.07%)</title><rect x="1164.3" y="1269" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1167.34" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (20 samples, 0.03%)</title><rect x="523.3" y="1045" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="526.28" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (84 samples, 0.14%)</title><rect x="551.0" y="1237" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeString (69 samples, 0.11%)</title><rect x="495.1" y="1269" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="498.06" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (6 samples, 0.01%)</title><rect x="67.6" y="1237" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="70.61" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_setsockopt (8 samples, 0.01%)</title><rect x="564.9" y="1205" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="567.88" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (69 samples, 0.11%)</title><rect x="112.7" y="1061" width="1.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="115.66" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (42 samples, 0.07%)</title><rect x="103.4" y="1013" width="0.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="106.41" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (24 samples, 0.04%)</title><rect x="468.6" y="1269" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (86 samples, 0.14%)</title><rect x="553.0" y="1157" width="1.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="556.02" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (113 samples, 0.18%)</title><rect x="561.1" y="1269" width="2.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::buildLogEvent (43 samples, 0.07%)</title><rect x="732.3" y="677" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="735.32" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (46 samples, 0.07%)</title><rect x="1026.1" y="549" width="0.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1029.09" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (57 samples, 0.09%)</title><rect x="555.5" y="1109" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="558.48" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::poll (228 samples, 0.37%)</title><rect x="39.5" y="1221" width="4.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="42.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFSpan (6 samples, 0.01%)</title><rect x="1101.5" y="469" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1104.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/protocol/RequestContent:::process (7 samples, 0.01%)</title><rect x="834.1" y="533" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="837.07" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::getBoundFields (742 samples, 1.21%)</title><rect x="709.3" y="581" width="14.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="712.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (18 samples, 0.03%)</title><rect x="468.2" y="1285" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (147 samples, 0.24%)</title><rect x="87.2" y="1157" width="2.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="90.21" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::await (21 samples, 0.03%)</title><rect x="523.3" y="1285" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (16 samples, 0.03%)</title><rect x="467.9" y="1013" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="470.88" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (63 samples, 0.10%)</title><rect x="706.6" y="469" width="1.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="709.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/servlet/CatFilter$CatHandler$1:::handle (24,808 samples, 40.44%)</title><rect x="677.8" y="997" width="477.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="680.78" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/dianping/cat/servlet/CatFilter$CatHandler$1:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentEvent (495 samples, 0.81%)</title><rect x="846.4" y="501" width="9.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="849.39" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/AbstractQueryBuilder:::toXContent (15 samples, 0.02%)</title><rect x="1068.9" y="613" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1071.91" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::format (37 samples, 0.06%)</title><rect x="1023.0" y="629" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1025.95" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (6 samples, 0.01%)</title><rect x="597.3" y="1109" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="600.26" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (24 samples, 0.04%)</title><rect x="468.6" y="1221" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (6 samples, 0.01%)</title><rect x="29.9" y="1381" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (53 samples, 0.09%)</title><rect x="1146.9" y="341" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1149.87" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/CollectionTypeAdapterFactory:::create (112 samples, 0.18%)</title><rect x="712.9" y="437" width="2.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.87" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler:::connectionAllocated (70 samples, 0.11%)</title><rect x="778.4" y="501" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="781.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (15 samples, 0.02%)</title><rect x="1131.2" y="533" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1134.20" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (13 samples, 0.02%)</title><rect x="18.4" y="1269" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="21.37" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (10 samples, 0.02%)</title><rect x="30.4" y="789" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="33.39" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (10 samples, 0.02%)</title><rect x="865.4" y="485" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="868.39" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,481 samples, 2.41%)</title><rect x="796.2" y="389" width="28.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="799.18" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (17 samples, 0.03%)</title><rect x="467.4" y="1093" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_ExceptionCheck (8 samples, 0.01%)</title><rect x="1022.4" y="565" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1025.40" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (10 samples, 0.02%)</title><rect x="535.0" y="1269" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (6 samples, 0.01%)</title><rect x="63.1" y="1109" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="66.15" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (14 samples, 0.02%)</title><rect x="18.3" y="1429" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamField:::&lt;init&gt; (7 samples, 0.01%)</title><rect x="1048.3" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1051.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (85 samples, 0.14%)</title><rect x="14.2" y="1333" width="1.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/SynchronousQueue$TransferStack:::transfer (7 samples, 0.01%)</title><rect x="638.0" y="1301" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (504 samples, 0.82%)</title><rect x="525.1" y="1061" width="9.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (8 samples, 0.01%)</title><rect x="1149.4" y="757" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.43" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_cancel (13 samples, 0.02%)</title><rect x="671.5" y="1125" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="674.45" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioBlockingSelector:::write (169 samples, 0.28%)</title><rect x="1145.1" y="693" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1148.06" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (189 samples, 0.31%)</title><rect x="70.1" y="869" width="3.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="73.11" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (10 samples, 0.02%)</title><rect x="535.0" y="1237" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (9 samples, 0.01%)</title><rect x="1101.7" y="469" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1104.71" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (10 samples, 0.02%)</title><rect x="555.6" y="1061" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="558.59" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RootProcessor::scan_remembered_sets (76 samples, 0.12%)</title><rect x="24.4" y="1429" width="1.5" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="27.43" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/monitor/MonitorSender:::run (24 samples, 0.04%)</title><rect x="554.7" y="1349" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="557.67" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (263 samples, 0.43%)</title><rect x="69.6" y="981" width="5.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="72.59" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI:::toString (9 samples, 0.01%)</title><rect x="1109.7" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1112.71" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileQueue::get (89 samples, 0.15%)</title><rect x="28.2" y="1429" width="1.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="31.18" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_LatestUserDefinedLoader (22 samples, 0.04%)</title><rect x="1102.6" y="485" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1105.59" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAddCookies:::process (34 samples, 0.06%)</title><rect x="771.1" y="549" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="774.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (39 samples, 0.06%)</title><rect x="830.2" y="469" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="833.15" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (15 samples, 0.02%)</title><rect x="521.5" y="1109" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (8 samples, 0.01%)</title><rect x="722.9" y="453" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="725.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_dp_process_packet (9 samples, 0.01%)</title><rect x="1159.7" y="661" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1162.72" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (9 samples, 0.01%)</title><rect x="1140.2" y="693" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1143.18" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_syscall (13 samples, 0.02%)</title><rect x="427.9" y="1157" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="430.94" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::run (219 samples, 0.36%)</title><rect x="556.7" y="1349" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="559.75" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="523.0" y="1173" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (6 samples, 0.01%)</title><rect x="1161.0" y="1237" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1164.05" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="600.0" y="1141" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.04%)</title><rect x="1166.7" y="1269" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (82 samples, 0.13%)</title><rect x="553.1" y="1077" width="1.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="556.07" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReferencePipeline$7$1:::accept (13 samples, 0.02%)</title><rect x="983.4" y="533" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="986.37" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (16 samples, 0.03%)</title><rect x="565.2" y="1237" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="568.23" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (15 samples, 0.02%)</title><rect x="576.6" y="1077" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="579.58" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (40 samples, 0.07%)</title><rect x="427.6" y="1173" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="430.56" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (7 samples, 0.01%)</title><rect x="1052.2" y="229" width="0.1" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="1055.21" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_complete_monitor_locking_Java (11 samples, 0.02%)</title><rect x="1166.5" y="1333" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (46 samples, 0.07%)</title><rect x="1107.0" y="405" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1110.03" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find (7 samples, 0.01%)</title><rect x="776.0" y="325" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="779.04" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>FlexibleWorkGang::run_task (14 samples, 0.02%)</title><rect x="1178.1" y="1333" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (23 samples, 0.04%)</title><rect x="468.6" y="1125" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="471.59" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (47 samples, 0.08%)</title><rect x="778.8" y="405" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="781.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_start (9 samples, 0.01%)</title><rect x="644.1" y="965" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="647.12" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (6 samples, 0.01%)</title><rect x="552.9" y="1125" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (15 samples, 0.02%)</title><rect x="1052.1" y="277" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$Acceptor:::run (505 samples, 0.82%)</title><rect x="564.4" y="1349" width="9.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="567.37" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (16,313 samples, 26.59%)</title><rect x="112.6" y="1093" width="313.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="115.61" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_task_switch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_close (30 samples, 0.05%)</title><rect x="1163.2" y="1173" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1166.20" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (13 samples, 0.02%)</title><rect x="18.4" y="1301" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="21.37" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (7 samples, 0.01%)</title><rect x="467.2" y="1045" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Threads::possibly_parallel_oops_do (40 samples, 0.07%)</title><rect x="23.7" y="1413" width="0.7" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="26.66" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (21 samples, 0.03%)</title><rect x="523.3" y="1125" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (10 samples, 0.02%)</title><rect x="519.8" y="677" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="522.81" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/SimpleChannelUpstreamHandler:::handleUpstream (15 samples, 0.02%)</title><rect x="30.4" y="1157" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_cancel (7 samples, 0.01%)</title><rect x="1096.5" y="453" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1099.53" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (40 samples, 0.07%)</title><rect x="10.5" y="1493" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="13.50" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/TermsQueryBuilder:::convert (28 samples, 0.05%)</title><rect x="792.2" y="629" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="795.20" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (16 samples, 0.03%)</title><rect x="898.6" y="501" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="901.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (10 samples, 0.02%)</title><rect x="796.6" y="293" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="799.62" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (7 samples, 0.01%)</title><rect x="524.7" y="1029" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="527.68" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_release (24 samples, 0.04%)</title><rect x="1165.7" y="1061" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1168.74" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (14 samples, 0.02%)</title><rect x="826.6" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="829.55" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/domain/thrift/LogEvent$LogEventStandardScheme:::write (43 samples, 0.07%)</title><rect x="544.5" y="1301" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="547.46" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$EntryIterator:::next (7 samples, 0.01%)</title><rect x="1136.8" y="661" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1139.75" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (25 samples, 0.04%)</title><rect x="1052.1" y="373" width="0.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::complete_monitor_locking_C (17 samples, 0.03%)</title><rect x="99.9" y="1253" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="102.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (54 samples, 0.09%)</title><rect x="722.2" y="549" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="725.22" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (9 samples, 0.01%)</title><rect x="741.1" y="309" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="744.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (270 samples, 0.44%)</title><rect x="545.5" y="1173" width="5.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="548.46" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/methods/HttpRequestBase:::getRequestLine (14 samples, 0.02%)</title><rect x="86.4" y="1237" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="89.41" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (9 samples, 0.01%)</title><rect x="30.4" y="773" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="33.41" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/MessagePackEncoder:::encode (74 samples, 0.12%)</title><rect x="558.3" y="1301" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="561.32" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.01%)</title><rect x="10.1" y="1317" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (11 samples, 0.02%)</title><rect x="430.5" y="1253" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="433.46" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (10 samples, 0.02%)</title><rect x="535.0" y="1221" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/UNIXProcess:::forkAndExec (6 samples, 0.01%)</title><rect x="501.0" y="1253" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="504.04" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (331 samples, 0.54%)</title><rect x="600.6" y="1157" width="6.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="603.64" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (343 samples, 0.56%)</title><rect x="600.4" y="1285" width="6.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="603.43" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_clone (6 samples, 0.01%)</title><rect x="74.0" y="837" width="0.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="76.96" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (88 samples, 0.14%)</title><rect x="519.1" y="1141" width="1.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="522.10" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (9 samples, 0.01%)</title><rect x="1176.9" y="1349" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1179.86" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (43 samples, 0.07%)</title><rect x="103.4" y="1029" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (12 samples, 0.02%)</title><rect x="972.3" y="597" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="975.34" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentEvent (63 samples, 0.10%)</title><rect x="1114.7" y="533" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1117.71" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/NumberDeserializers$IntegerDeserializer:::deserialize (8 samples, 0.01%)</title><rect x="952.7" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="955.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/utils/JsonUtil:::toJsonString (31 samples, 0.05%)</title><rect x="979.6" y="645" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="982.60" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/ctrip/hystrix/chystrix/config/CHystrixConfiguration$ConfigUpdateTask:::run (7 samples, 0.01%)</title><rect x="522.9" y="1269" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.89" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (9 samples, 0.01%)</title><rect x="1108.4" y="405" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/TimeUnit:::sleep (11 samples, 0.02%)</title><rect x="534.9" y="1333" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="537.93" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (24,920 samples, 40.62%)</title><rect x="676.6" y="1173" width="479.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="679.63" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (10 samples, 0.02%)</title><rect x="110.7" y="1061" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="113.70" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/base/ParserBase:::_parseNumericValue (7 samples, 0.01%)</title><rect x="788.9" y="517" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="791.85" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_dp_process_packet (24 samples, 0.04%)</title><rect x="519.7" y="773" width="0.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="522.74" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (11 samples, 0.02%)</title><rect x="30.4" y="1013" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::performRequestAsync (506 samples, 0.82%)</title><rect x="827.0" y="581" width="9.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="829.96" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (245 samples, 0.40%)</title><rect x="568.5" y="1077" width="4.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="571.50" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (27 samples, 0.04%)</title><rect x="499.7" y="1189" width="0.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="502.73" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::fireCallbacks (50 samples, 0.08%)</title><rect x="1051.8" y="565" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (6 samples, 0.01%)</title><rect x="469.8" y="1109" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/socket/nio/AbstractNioSelector:::run (480 samples, 0.78%)</title><rect x="30.2" y="1253" width="9.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.24" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_send_ack.part.29 (10 samples, 0.02%)</title><rect x="84.2" y="997" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="87.19" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (6 samples, 0.01%)</title><rect x="134.0" y="1013" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="137.02" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/InternalHttpAsyncClient:::execute (331 samples, 0.54%)</title><rect x="1046.7" y="597" width="6.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1049.71" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (29 samples, 0.05%)</title><rect x="17.7" y="1413" width="0.6" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (18 samples, 0.03%)</title><rect x="467.8" y="1125" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (26 samples, 0.04%)</title><rect x="497.9" y="1253" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="500.94" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (9 samples, 0.01%)</title><rect x="1168.1" y="1141" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="1171.13" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::initNonProxy (9 samples, 0.01%)</title><rect x="1049.7" y="437" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.73" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/TokenParser:::parseValue (7 samples, 0.01%)</title><rect x="833.8" y="501" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="836.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/StringCollectionDeserializer:::deserialize (13 samples, 0.02%)</title><rect x="1063.9" y="613" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1066.91" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putMapEntries (7 samples, 0.01%)</title><rect x="1045.4" y="613" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1048.40" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_wait (8 samples, 0.01%)</title><rect x="500.9" y="1045" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_LatestUserDefinedLoader (8 samples, 0.01%)</title><rect x="1104.4" y="421" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1107.38" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (460 samples, 0.75%)</title><rect x="483.7" y="1221" width="8.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="486.75" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (22 samples, 0.04%)</title><rect x="1166.7" y="1301" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (56 samples, 0.09%)</title><rect x="559.8" y="1221" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="562.83" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/common/util/NetworkUtil:::refineIPAddress (6 samples, 0.01%)</title><rect x="693.9" y="773" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="696.88" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (24 samples, 0.04%)</title><rect x="835.3" y="229" width="0.5" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="838.32" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder:::encodeBufferLoop (8 samples, 0.01%)</title><rect x="826.2" y="533" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="829.25" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (123 samples, 0.20%)</title><rect x="94.1" y="997" width="2.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="97.10" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (53 samples, 0.09%)</title><rect x="1146.9" y="373" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1149.87" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/CountDownLatch:::await (8 samples, 0.01%)</title><rect x="523.0" y="1237" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (77 samples, 0.13%)</title><rect x="28.4" y="1317" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="31.39" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (85 samples, 0.14%)</title><rect x="1146.5" y="533" width="1.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1149.51" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (64 samples, 0.10%)</title><rect x="132.7" y="1013" width="1.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="135.69" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (6 samples, 0.01%)</title><rect x="788.0" y="549" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="791.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedReader:::fill (8 samples, 0.01%)</title><rect x="500.9" y="1253" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (366 samples, 0.60%)</title><rect x="536.3" y="1077" width="7.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="539.28" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (737 samples, 1.20%)</title><rect x="1030.8" y="357" width="14.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1033.78" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (485 samples, 0.79%)</title><rect x="473.2" y="1045" width="9.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="476.21" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::poll (376 samples, 0.61%)</title><rect x="1167.6" y="1317" width="7.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1170.65" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/ratelimiter/RateLimiterPlugin:::apply (69 samples, 0.11%)</title><rect x="693.2" y="805" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="696.23" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (311 samples, 0.51%)</title><rect x="567.3" y="1157" width="5.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="570.25" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (59,521 samples, 97.03%)</title><rect x="30.1" y="1445" width="1145.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="33.12" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >thread_entry</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (112 samples, 0.18%)</title><rect x="561.1" y="1141" width="2.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="564.09" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (11 samples, 0.02%)</title><rect x="106.1" y="1157" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="109.08" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (12 samples, 0.02%)</title><rect x="607.5" y="1205" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (42 samples, 0.07%)</title><rect x="73.8" y="885" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="76.77" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (68 samples, 0.11%)</title><rect x="1175.2" y="1237" width="1.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (36 samples, 0.06%)</title><rect x="576.3" y="1125" width="0.6" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="579.25" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReferencePipeline$3$1:::accept (13 samples, 0.02%)</title><rect x="983.4" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="986.37" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (25 samples, 0.04%)</title><rect x="790.6" y="517" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="793.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/providers/netty/handler/HttpProtocol:::handle (15 samples, 0.02%)</title><rect x="30.4" y="1077" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (11 samples, 0.02%)</title><rect x="671.5" y="1061" width="0.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="674.45" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (27 samples, 0.04%)</title><rect x="425.9" y="1045" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="428.88" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::doSelect (1,630 samples, 2.66%)</title><rect x="434.9" y="1285" width="31.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.87" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/chunkbuilder/LogChunkBuilder:::add (11 samples, 0.02%)</title><rect x="731.7" y="661" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="734.66" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory:::createParser (38 samples, 0.06%)</title><rect x="903.2" y="629" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="906.19" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/SizeAwareBlockingQueue:::drainTo (40 samples, 0.07%)</title><rect x="543.6" y="1301" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="546.55" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (36 samples, 0.06%)</title><rect x="835.2" y="357" width="0.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="838.21" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (36 samples, 0.06%)</title><rect x="103.5" y="933" width="0.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="106.53" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dput (10 samples, 0.02%)</title><rect x="1165.6" y="1093" width="0.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="1168.55" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (6 samples, 0.01%)</title><rect x="739.9" y="469" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="742.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (10 samples, 0.02%)</title><rect x="1029.7" y="373" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1032.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorWait (14 samples, 0.02%)</title><rect x="637.3" y="1317" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PeriodicTask::real_time_tick (8 samples, 0.01%)</title><rect x="1178.8" y="1445" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="1181.84" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::resize (14 samples, 0.02%)</title><rect x="1118.1" y="501" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1121.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (14 samples, 0.02%)</title><rect x="1165.8" y="869" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1168.84" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (394 samples, 0.64%)</title><rect x="535.7" y="1125" width="7.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="538.74" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getDeclaringClass0 (7 samples, 0.01%)</title><rect x="701.6" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="704.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (7 samples, 0.01%)</title><rect x="1167.2" y="1285" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (54 samples, 0.09%)</title><rect x="778.7" y="453" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="781.69" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeString (29 samples, 0.05%)</title><rect x="559.0" y="1269" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="562.04" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler:::connectionAllocated (46 samples, 0.07%)</title><rect x="1051.9" y="517" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1054.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (14 samples, 0.02%)</title><rect x="796.5" y="309" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="799.54" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (39 samples, 0.06%)</title><rect x="1179.4" y="1221" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (24,286 samples, 39.59%)</title><rect x="685.7" y="901" width="467.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="688.73" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFil..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DirtyCardQueueSet::apply_closure_to_completed_buffer_helper (74 samples, 0.12%)</title><rect x="24.4" y="1365" width="1.5" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="27.45" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (7 samples, 0.01%)</title><rect x="1067.5" y="549" width="0.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1070.49" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/SynchronousQueue$TransferStack:::awaitFulfill (7 samples, 0.01%)</title><rect x="638.0" y="1285" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.01%)</title><rect x="500.9" y="981" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (40 samples, 0.07%)</title><rect x="16.6" y="1189" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="19.56" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.01%)</title><rect x="607.2" y="1333" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.02%)</title><rect x="517.9" y="1237" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="520.85" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/channel/nio/NioEventLoop:::run (216 samples, 0.35%)</title><rect x="607.4" y="1333" width="4.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="610.36" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (24 samples, 0.04%)</title><rect x="468.6" y="1285" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (19 samples, 0.03%)</title><rect x="599.5" y="1157" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:::writeNumber (6 samples, 0.01%)</title><rect x="1135.0" y="613" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1137.97" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (54 samples, 0.09%)</title><rect x="612.7" y="1061" width="1.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (30 samples, 0.05%)</title><rect x="88.3" y="1093" width="0.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="91.29" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (40 samples, 0.07%)</title><rect x="10.5" y="1477" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="13.50" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (26 samples, 0.04%)</title><rect x="1164.5" y="1093" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1167.45" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (19 samples, 0.03%)</title><rect x="499.8" y="1093" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="502.79" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (272 samples, 0.44%)</title><rect x="545.4" y="1285" width="5.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="548.42" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (15 samples, 0.02%)</title><rect x="641.3" y="1077" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="644.31" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (57 samples, 0.09%)</title><rect x="519.5" y="997" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="522.53" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (29 samples, 0.05%)</title><rect x="1159.6" y="869" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1162.59" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/DefaultTreeSender$MergeAtomicTask:::run (723 samples, 1.18%)</title><rect x="469.1" y="1333" width="13.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="472.05" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (395 samples, 0.64%)</title><rect x="68.0" y="1141" width="7.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="70.98" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_frame_hook (66 samples, 0.11%)</title><rect x="94.6" y="789" width="1.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="97.62" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (15 samples, 0.02%)</title><rect x="521.5" y="1221" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (10 samples, 0.02%)</title><rect x="472.8" y="1061" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="475.78" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/datasource/helper/DNS/CtripDatabaseDomainChecker$DatabaseDomainCheckerThread:::run (22 samples, 0.04%)</title><rect x="521.5" y="1317" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="524.49" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (10 samples, 0.02%)</title><rect x="424.1" y="1077" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="427.08" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (16 samples, 0.03%)</title><rect x="1158.8" y="997" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1161.82" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (6 samples, 0.01%)</title><rect x="713.0" y="373" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="715.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (8 samples, 0.01%)</title><rect x="18.6" y="1429" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_swevent_start_hrtimer.part.70 (40 samples, 0.07%)</title><rect x="132.8" y="965" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="135.76" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (32 samples, 0.05%)</title><rect x="835.2" y="293" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="838.25" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/connector/CoyoteAdapter:::service (25,308 samples, 41.26%)</title><rect x="673.6" y="1253" width="486.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="676.61" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/connector/CoyoteAdapter:::service</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient$$Lambda$348/118939725:::apply (93 samples, 0.15%)</title><rect x="1108.9" y="629" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1111.86" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_execute_actions (76 samples, 0.12%)</title><rect x="70.7" y="725" width="1.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="73.75" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (978 samples, 1.59%)</title><rect x="617.8" y="1061" width="18.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="620.78" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (82 samples, 0.13%)</title><rect x="19.0" y="1413" width="1.6" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="21.98" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>proc_reg_read (8 samples, 0.01%)</title><rect x="12.8" y="1381" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="15.75" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (7 samples, 0.01%)</title><rect x="640.1" y="997" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::Compile (12 samples, 0.02%)</title><rect x="27.9" y="1397" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="30.89" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (6 samples, 0.01%)</title><rect x="26.4" y="1189" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="29.39" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (28 samples, 0.05%)</title><rect x="779.0" y="293" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="781.98" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (6 samples, 0.01%)</title><rect x="84.3" y="821" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (6 samples, 0.01%)</title><rect x="991.4" y="501" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (9 samples, 0.01%)</title><rect x="426.2" y="949" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="429.21" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (83 samples, 0.14%)</title><rect x="551.1" y="1157" width="1.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="554.05" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (51 samples, 0.08%)</title><rect x="724.9" y="581" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="727.85" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (18 samples, 0.03%)</title><rect x="467.8" y="1237" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (95 samples, 0.15%)</title><rect x="501.4" y="1253" width="1.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::doPreemptiveAuth (13 samples, 0.02%)</title><rect x="828.3" y="517" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="831.34" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/DefaultChannelPipeline:::sendUpstream (17 samples, 0.03%)</title><rect x="30.3" y="1221" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (43 samples, 0.07%)</title><rect x="1165.5" y="1189" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1168.49" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (20 samples, 0.03%)</title><rect x="701.6" y="629" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="704.58" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/QueryBuilders:::termsQuery (39 samples, 0.06%)</title><rect x="792.0" y="645" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="794.99" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (56 samples, 0.09%)</title><rect x="778.7" y="469" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="781.69" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (8 samples, 0.01%)</title><rect x="600.0" y="1109" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::wait (79 samples, 0.13%)</title><rect x="555.2" y="1301" width="1.5" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/channel/AbstractChannel$AbstractUnsafe:::flush0 (18 samples, 0.03%)</title><rect x="607.4" y="1301" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="610.40" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (11 samples, 0.02%)</title><rect x="1050.2" y="421" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1053.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (50 samples, 0.08%)</title><rect x="707.9" y="469" width="1.0" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="710.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (11 samples, 0.02%)</title><rect x="504.2" y="1077" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="507.21" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (10 samples, 0.02%)</title><rect x="1048.5" y="469" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1051.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (316 samples, 0.52%)</title><rect x="69.2" y="1045" width="6.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="72.19" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (9 samples, 0.01%)</title><rect x="557.1" y="1061" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="560.06" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (6 samples, 0.01%)</title><rect x="473.0" y="981" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="476.03" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SafepointSynchronize::block (6 samples, 0.01%)</title><rect x="552.9" y="1285" width="0.1" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/MainClientExec:::generateRequest (255 samples, 0.42%)</title><rect x="56.1" y="1237" width="5.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="59.15" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::create (8 samples, 0.01%)</title><rect x="710.6" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.60" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (27 samples, 0.04%)</title><rect x="499.7" y="1173" width="0.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="502.73" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (11 samples, 0.02%)</title><rect x="982.3" y="613" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="985.25" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (14 samples, 0.02%)</title><rect x="1058.4" y="517" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1061.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (14 samples, 0.02%)</title><rect x="991.3" y="581" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.31" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/client/ServiceClientBase:::invoke0 (6 samples, 0.01%)</title><rect x="522.2" y="1285" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter$FormatSpecifier:::print (9 samples, 0.01%)</title><rect x="991.1" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.14" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (10 samples, 0.02%)</title><rect x="12.7" y="1429" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="15.71" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/$Gson$Types:::resolve (7 samples, 0.01%)</title><rect x="711.6" y="469" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="714.62" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (11 samples, 0.02%)</title><rect x="1166.5" y="1045" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/AbstractIOReactor:::execute (20,237 samples, 32.99%)</title><rect x="44.7" y="1317" width="389.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="47.66" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/es/apache/http/impl/nio/reactor/AbstractIO..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (10 samples, 0.02%)</title><rect x="16.7" y="949" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="19.73" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (43 samples, 0.07%)</title><rect x="519.6" y="933" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="522.62" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (311 samples, 0.51%)</title><rect x="567.3" y="1173" width="5.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="570.25" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_bucket.isra.2 (7 samples, 0.01%)</title><rect x="72.7" y="693" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="75.71" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_estimate_accuracy (23 samples, 0.04%)</title><rect x="426.7" y="1157" width="0.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="429.73" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (6 samples, 0.01%)</title><rect x="63.1" y="1141" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="66.15" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_rules.isra.9 (11 samples, 0.02%)</title><rect x="428.0" y="1141" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="430.98" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (148 samples, 0.24%)</title><rect x="1024.2" y="597" width="2.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1027.18" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_receive (25 samples, 0.04%)</title><rect x="16.7" y="1061" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="19.66" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (7 samples, 0.01%)</title><rect x="1159.0" y="917" width="0.1" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="1161.97" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::buildString (31 samples, 0.05%)</title><rect x="1045.6" y="597" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1048.61" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (17 samples, 0.03%)</title><rect x="1072.9" y="405" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1075.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/internal/DefaultMessageTreeV2:::toBytes (328 samples, 0.53%)</title><rect x="492.8" y="1301" width="6.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="495.85" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (6 samples, 0.01%)</title><rect x="467.2" y="1029" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::wait (362 samples, 0.59%)</title><rect x="600.2" y="1333" width="7.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="603.24" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (53 samples, 0.09%)</title><rect x="1107.0" y="437" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1109.98" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (88 samples, 0.14%)</title><rect x="28.2" y="1413" width="1.7" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="31.18" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (252 samples, 0.41%)</title><rect x="545.8" y="1061" width="4.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="548.78" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (6 samples, 0.01%)</title><rect x="535.0" y="1077" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="538.01" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getDeclaringClass0 (7 samples, 0.01%)</title><rect x="709.9" y="533" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="712.94" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (22 samples, 0.04%)</title><rect x="1166.7" y="1189" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (105 samples, 0.17%)</title><rect x="431.0" y="1237" width="2.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="434.00" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/specific/SpecificJsonWriter:::write (313 samples, 0.51%)</title><rect x="1142.6" y="757" width="6.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1145.58" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (11 samples, 0.02%)</title><rect x="557.0" y="1317" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::wait (7 samples, 0.01%)</title><rect x="1167.2" y="1301" width="0.1" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (475 samples, 0.77%)</title><rect x="1180.2" y="1173" width="9.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1183.19" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="1072.3" y="517" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1075.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (9 samples, 0.01%)</title><rect x="101.9" y="1157" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="104.89" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap:::newNode (7 samples, 0.01%)</title><rect x="494.8" y="1253" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="497.79" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="467.2" y="1173" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.02%)</title><rect x="1178.1" y="1269" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::removeNode (11 samples, 0.02%)</title><rect x="50.8" y="1205" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="53.76" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>FlexibleWorkGang::run_task (9 samples, 0.01%)</title><rect x="1178.0" y="1349" width="0.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (8 samples, 0.01%)</title><rect x="84.2" y="917" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="87.23" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectSynchronizer::fast_enter (11 samples, 0.02%)</title><rect x="1166.5" y="1301" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (366 samples, 0.60%)</title><rect x="536.3" y="1045" width="7.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="539.28" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (10 samples, 0.02%)</title><rect x="30.4" y="805" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="33.39" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (11 samples, 0.02%)</title><rect x="100.0" y="1045" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/base/ParserBase:::_parseNumericValue (10 samples, 0.02%)</title><rect x="1125.4" y="565" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1128.42" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_send (26 samples, 0.04%)</title><rect x="94.8" y="693" width="0.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="97.83" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_wait (8 samples, 0.01%)</title><rect x="10.1" y="1381" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (23 samples, 0.04%)</title><rect x="1145.4" y="501" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1148.41" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (51 samples, 0.08%)</title><rect x="835.1" y="405" width="0.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="838.06" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (816 samples, 1.33%)</title><rect x="1029.3" y="453" width="15.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1032.34" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::drain (118 samples, 0.19%)</title><rect x="430.8" y="1269" width="2.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="433.79" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (15 samples, 0.02%)</title><rect x="521.5" y="1157" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (22 samples, 0.04%)</title><rect x="1166.7" y="1285" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_file (7 samples, 0.01%)</title><rect x="573.5" y="1221" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="576.48" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (25 samples, 0.04%)</title><rect x="43.9" y="1125" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (20 samples, 0.03%)</title><rect x="775.9" y="421" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.90" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultEventAggregator:::makeSureEventExist (34 samples, 0.06%)</title><rect x="680.5" y="885" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="683.51" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/VM:::latestUserDefinedLoader0 (21 samples, 0.03%)</title><rect x="830.9" y="469" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="833.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbyte_disjoint_arraycopy (8 samples, 0.01%)</title><rect x="865.2" y="469" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="868.22" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1,149 samples, 1.87%)</title><rect x="614.8" y="1173" width="22.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="617.80" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (12 samples, 0.02%)</title><rect x="59.2" y="1189" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="62.24" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/NumberDeserializers$DoubleDeserializer:::deserialize (10 samples, 0.02%)</title><rect x="1125.4" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1128.42" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/HttpServletResponseWrapper:::serialize (342 samples, 0.56%)</title><rect x="1142.3" y="789" width="6.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1145.29" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (20 samples, 0.03%)</title><rect x="641.7" y="1013" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="644.68" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (400 samples, 0.65%)</title><rect x="535.6" y="1189" width="7.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="538.65" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (1,355 samples, 2.21%)</title><rect x="798.5" y="341" width="26.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="801.53" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (31 samples, 0.05%)</title><rect x="1159.5" y="917" width="0.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1162.55" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (7 samples, 0.01%)</title><rect x="607.2" y="1285" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (30 samples, 0.05%)</title><rect x="83.6" y="1013" width="0.6" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="86.62" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (148 samples, 0.24%)</title><rect x="11.3" y="1493" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="14.27" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (643 samples, 1.05%)</title><rect x="470.4" y="1221" width="12.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="473.36" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/InternalNioOutputBuffer:::flushBuffer (91 samples, 0.15%)</title><rect x="1158.6" y="1205" width="1.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1161.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (8 samples, 0.01%)</title><rect x="971.0" y="581" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="974.04" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (400 samples, 0.65%)</title><rect x="535.6" y="1173" width="7.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="538.65" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (20 samples, 0.03%)</title><rect x="1048.5" y="485" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1051.46" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (23 samples, 0.04%)</title><rect x="554.7" y="1189" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (9 samples, 0.01%)</title><rect x="835.6" y="149" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="838.57" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Unpark (175 samples, 0.29%)</title><rect x="86.9" y="1221" width="3.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="89.94" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (10 samples, 0.02%)</title><rect x="990.0" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="992.96" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::transfer (17 samples, 0.03%)</title><rect x="771.4" y="517" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="774.42" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Curly:::match (8 samples, 0.01%)</title><rect x="1149.4" y="725" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.43" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (389 samples, 0.63%)</title><rect x="878.2" y="469" width="7.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="881.18" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (81 samples, 0.13%)</title><rect x="19.0" y="1397" width="1.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="22.00" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (6 samples, 0.01%)</title><rect x="112.7" y="1013" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="115.66" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/thrift/TServiceClient:::sendBase (16 samples, 0.03%)</title><rect x="550.7" y="1317" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="553.73" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedReader:::readLine (8 samples, 0.01%)</title><rect x="500.9" y="1269" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator:::close (9 samples, 0.01%)</title><rect x="1119.7" y="565" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1122.69" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="29.9" y="1317" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_ack (10 samples, 0.02%)</title><rect x="84.2" y="1013" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="87.19" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::events (27 samples, 0.04%)</title><rect x="574.6" y="1333" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="577.60" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (17 samples, 0.03%)</title><rect x="467.4" y="1253" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit_nit (7 samples, 0.01%)</title><rect x="96.2" y="869" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="99.20" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Curly:::match (12 samples, 0.02%)</title><rect x="695.8" y="693" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.82" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageProducer:::createMessageId (8 samples, 0.01%)</title><rect x="1070.7" y="613" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.68" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (40 samples, 0.07%)</title><rect x="1051.9" y="469" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1054.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (24 samples, 0.04%)</title><rect x="684.0" y="773" width="0.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="686.96" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (36 samples, 0.06%)</title><rect x="16.6" y="1109" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="19.62" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (475 samples, 0.77%)</title><rect x="1180.2" y="1205" width="9.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1183.19" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (14 samples, 0.02%)</title><rect x="637.3" y="1205" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VerifyFixClassname (7 samples, 0.01%)</title><rect x="830.6" y="437" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="833.57" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (64 samples, 0.10%)</title><rect x="519.4" y="1029" width="1.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="522.45" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (7 samples, 0.01%)</title><rect x="467.2" y="1253" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/data/elastic/impl/OrgEsRepoImpl$$Lambda$785/363059127:::call (5,591 samples, 9.11%)</title><rect x="794.6" y="629" width="107.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="797.64" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hot..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (39 samples, 0.06%)</title><rect x="103.5" y="949" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="106.47" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/CollectionTypeAdapterFactory:::create (482 samples, 0.79%)</title><rect x="710.8" y="533" width="9.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.75" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (7 samples, 0.01%)</title><rect x="684.2" y="693" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="687.23" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (10 samples, 0.02%)</title><rect x="779.3" y="165" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="782.27" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint:::setSocketOptions (65 samples, 0.11%)</title><rect x="564.4" y="1333" width="1.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="567.42" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (25 samples, 0.04%)</title><rect x="23.8" y="1221" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (74 samples, 0.12%)</title><rect x="19.1" y="1237" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="22.10" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (1,549 samples, 2.53%)</title><rect x="795.2" y="549" width="29.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="798.22" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (10 samples, 0.02%)</title><rect x="1029.7" y="389" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1032.74" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (222 samples, 0.36%)</title><rect x="39.7" y="981" width="4.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="42.66" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (26 samples, 0.04%)</title><rect x="1164.5" y="1077" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1167.45" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/Transport:::serviceCall (8 samples, 0.01%)</title><rect x="638.6" y="1205" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="641.64" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/lucene/util/BytesRef:::utf8ToString (34 samples, 0.06%)</title><rect x="1069.4" y="661" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1072.41" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultTransactionAggregator$TransactionData:::add (21 samples, 0.03%)</title><rect x="683.0" y="901" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="685.97" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/channel/AbstractChannelHandlerContext:::write (41 samples, 0.07%)</title><rect x="499.5" y="1301" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="502.48" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (19 samples, 0.03%)</title><rect x="599.5" y="1173" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (14 samples, 0.02%)</title><rect x="18.3" y="1461" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (832 samples, 1.36%)</title><rect x="581.2" y="1109" width="16.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="584.22" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/common/util/NetworkUtil:::refineIPAddress (6 samples, 0.01%)</title><rect x="694.2" y="773" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="697.19" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (43 samples, 0.07%)</title><rect x="1146.9" y="325" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1149.91" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (13 samples, 0.02%)</title><rect x="617.5" y="1029" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="620.48" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (44 samples, 0.07%)</title><rect x="994.6" y="373" width="0.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="997.64" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (9 samples, 0.01%)</title><rect x="597.5" y="1093" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="600.45" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$940/348398159:::test (124 samples, 0.20%)</title><rect x="984.5" y="645" width="2.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="987.54" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioChannel:::close (48 samples, 0.08%)</title><rect x="1165.4" y="1253" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1168.42" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.01%)</title><rect x="469.8" y="1173" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (208 samples, 0.34%)</title><rect x="569.2" y="1061" width="4.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="572.21" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (13 samples, 0.02%)</title><rect x="723.3" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="726.26" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelClassInfoServiceImpl:::queryHotelClassInfo (2,084 samples, 3.40%)</title><rect x="987.1" y="677" width="40.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="990.06" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (20 samples, 0.03%)</title><rect x="44.0" y="869" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="47.01" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.01%)</title><rect x="739.9" y="485" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="742.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (142 samples, 0.23%)</title><rect x="1129.1" y="645" width="2.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1132.12" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (34 samples, 0.06%)</title><rect x="466.3" y="1221" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_receive (132 samples, 0.22%)</title><rect x="70.6" y="757" width="2.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="73.56" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::doSelect (17,404 samples, 28.37%)</title><rect x="98.9" y="1285" width="334.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="101.89" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun/nio/ch/EPollSelectorImpl:::doSelect</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/InternalNioOutputBuffer:::flushBuffer (174 samples, 0.28%)</title><rect x="1145.0" y="709" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1147.99" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (1,549 samples, 2.53%)</title><rect x="795.2" y="565" width="29.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="798.22" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::socketRead0 (25 samples, 0.04%)</title><rect x="43.9" y="1109" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::_writeStringSegment (15 samples, 0.02%)</title><rect x="1115.1" y="517" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1118.11" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (8 samples, 0.01%)</title><rect x="523.0" y="1125" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readSerialData (73 samples, 0.12%)</title><rect x="1049.2" y="517" width="1.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.23" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_slow_exit_work (7 samples, 0.01%)</title><rect x="597.9" y="1221" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="600.86" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (151 samples, 0.25%)</title><rect x="973.4" y="581" width="2.9" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="976.38" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (27 samples, 0.04%)</title><rect x="425.9" y="1013" width="0.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="428.88" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (10 samples, 0.02%)</title><rect x="704.5" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="707.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (25 samples, 0.04%)</title><rect x="903.4" y="613" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="906.44" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>basic_classify (11 samples, 0.02%)</title><rect x="73.1" y="757" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="76.13" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_del (11 samples, 0.02%)</title><rect x="671.5" y="1077" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="674.45" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (534 samples, 0.87%)</title><rect x="1179.2" y="1333" width="10.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1182.17" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="523.0" y="1157" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (61 samples, 0.10%)</title><rect x="1132.2" y="645" width="1.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1135.23" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (10 samples, 0.02%)</title><rect x="432.2" y="1141" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="435.16" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::format (46 samples, 0.07%)</title><rect x="990.7" y="613" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="993.73" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (22 samples, 0.04%)</title><rect x="1166.7" y="1061" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (8 samples, 0.01%)</title><rect x="507.3" y="1029" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="510.33" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (13 samples, 0.02%)</title><rect x="1178.1" y="1125" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readSerialData (110 samples, 0.18%)</title><rect x="774.7" y="501" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="777.73" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.01%)</title><rect x="18.6" y="1333" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (1,337 samples, 2.18%)</title><rect x="742.5" y="309" width="25.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="745.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.02%)</title><rect x="100.0" y="1189" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (23 samples, 0.04%)</title><rect x="17.8" y="1269" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="20.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (6 samples, 0.01%)</title><rect x="1022.4" y="469" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/specific/SpecificJsonReader:::readValue (16 samples, 0.03%)</title><rect x="1139.3" y="773" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1142.29" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectedHeap::evacuate_collection_set (29 samples, 0.05%)</title><rect x="1178.0" y="1365" width="0.5" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (8 samples, 0.01%)</title><rect x="10.1" y="1301" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getConstructor0 (107 samples, 0.17%)</title><rect x="717.8" y="517" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="720.83" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rcv_established (8 samples, 0.01%)</title><rect x="426.2" y="853" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="429.23" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (33 samples, 0.05%)</title><rect x="1145.4" y="565" width="0.6" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1148.35" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (10 samples, 0.02%)</title><rect x="521.3" y="1301" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="524.26" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/entity/ContentType:::create (16 samples, 0.03%)</title><rect x="79.7" y="1253" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="82.73" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (14 samples, 0.02%)</title><rect x="835.5" y="197" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="838.52" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::socketRead0 (7 samples, 0.01%)</title><rect x="467.2" y="1237" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/execchain/ProtocolExec:::execute (6 samples, 0.01%)</title><rect x="522.2" y="1125" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (30 samples, 0.05%)</title><rect x="1052.0" y="405" width="0.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1055.02" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (226 samples, 0.37%)</title><rect x="39.6" y="1157" width="4.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="42.59" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (112 samples, 0.18%)</title><rect x="508.6" y="1013" width="2.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="511.58" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (156 samples, 0.25%)</title><rect x="973.3" y="597" width="3.0" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="976.31" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (19 samples, 0.03%)</title><rect x="598.5" y="1221" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="601.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/channel/nio/NioEventLoop:::select (768 samples, 1.25%)</title><rect x="503.4" y="1317" width="14.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="506.39" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor66:::invoke (76 samples, 0.12%)</title><rect x="1103.3" y="501" width="1.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1106.32" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_csk_accept (315 samples, 0.51%)</title><rect x="567.2" y="1205" width="6.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="570.17" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (29 samples, 0.05%)</title><rect x="17.7" y="1381" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::newNode (115 samples, 0.19%)</title><rect x="882.4" y="453" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="885.36" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/hystrix/metrics/DefaultHealthSnapshot:::tryUpdateSnapshot (7 samples, 0.01%)</title><rect x="687.9" y="805" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="690.94" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (207 samples, 0.34%)</title><rect x="92.7" y="1077" width="3.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="95.66" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor:::runWorker (699 samples, 1.14%)</title><rect x="521.5" y="1333" width="13.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="524.49" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (88 samples, 0.14%)</title><rect x="553.0" y="1269" width="1.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="555.98" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (186 samples, 0.30%)</title><rect x="607.9" y="1109" width="3.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="610.90" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (489 samples, 0.80%)</title><rect x="483.2" y="1269" width="9.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="486.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (11 samples, 0.02%)</title><rect x="1107.5" y="197" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1110.46" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (21 samples, 0.03%)</title><rect x="132.9" y="917" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="135.92" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::parseLongName (67 samples, 0.11%)</title><rect x="893.0" y="469" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="895.99" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__d_alloc (6 samples, 0.01%)</title><rect x="573.5" y="1189" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="576.48" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (9 samples, 0.01%)</title><rect x="1137.0" y="677" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1139.99" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager:::flush (264 samples, 0.43%)</title><rect x="679.6" y="933" width="5.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="682.59" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_execute_actions (28 samples, 0.05%)</title><rect x="94.8" y="725" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="97.79" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (7 samples, 0.01%)</title><rect x="100.1" y="981" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="103.10" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (15 samples, 0.02%)</title><rect x="521.5" y="1093" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (8 samples, 0.01%)</title><rect x="830.3" y="389" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="833.32" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler:::verifytRoute (6 samples, 0.01%)</title><rect x="60.6" y="1221" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="63.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (88 samples, 0.14%)</title><rect x="519.1" y="1109" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="522.10" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (10 samples, 0.02%)</title><rect x="1108.3" y="549" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1111.34" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SafepointSynchronize::block (6 samples, 0.01%)</title><rect x="469.8" y="1269" width="0.1" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (61 samples, 0.10%)</title><rect x="971.4" y="613" width="1.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="974.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (9 samples, 0.01%)</title><rect x="1178.0" y="1125" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (25 samples, 0.04%)</title><rect x="43.9" y="933" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (70 samples, 0.11%)</title><rect x="1175.2" y="1429" width="1.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/data/elastic/ElasticClientFactory:::getSearchClient (10 samples, 0.02%)</title><rect x="902.2" y="645" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="905.19" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ning/http/client/providers/netty/handler/Processor:::messageReceived (15 samples, 0.02%)</title><rect x="30.4" y="1093" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/Gson:::toJson (1,404 samples, 2.29%)</title><rect x="701.2" y="693" width="27.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="704.19" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (11 samples, 0.02%)</title><rect x="1107.5" y="213" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1110.46" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (368 samples, 0.60%)</title><rect x="1167.8" y="1237" width="7.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1170.78" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (15 samples, 0.02%)</title><rect x="521.5" y="1189" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (7 samples, 0.01%)</title><rect x="1162.7" y="1109" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1165.70" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/common/concurrent/Threads:::sleep (19 samples, 0.03%)</title><rect x="599.5" y="1333" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (17 samples, 0.03%)</title><rect x="1052.1" y="325" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (7 samples, 0.01%)</title><rect x="681.2" y="837" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="684.22" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (1,546 samples, 2.52%)</title><rect x="866.7" y="501" width="29.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="869.72" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (122 samples, 0.20%)</title><rect x="1066.2" y="597" width="2.3" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1069.16" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::_writeStringSegment (7 samples, 0.01%)</title><rect x="1056.9" y="517" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1059.89" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (7 samples, 0.01%)</title><rect x="1073.4" y="389" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1076.43" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (10 samples, 0.02%)</title><rect x="566.2" y="1237" width="0.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="569.21" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_unlock (8 samples, 0.01%)</title><rect x="517.1" y="1061" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="520.06" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,567 samples, 2.55%)</title><rect x="641.3" y="1093" width="30.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="644.27" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (95 samples, 0.15%)</title><rect x="501.4" y="1109" width="1.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (469 samples, 0.76%)</title><rect x="483.6" y="1237" width="9.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="486.57" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (87 samples, 0.14%)</title><rect x="796.9" y="341" width="1.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="799.85" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SafepointSynchronize::block (6 samples, 0.01%)</title><rect x="1022.4" y="517" width="0.1" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (7 samples, 0.01%)</title><rect x="607.2" y="1029" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (15 samples, 0.02%)</title><rect x="521.5" y="1141" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/Gson:::&lt;init&gt; (34 samples, 0.06%)</title><rect x="700.5" y="693" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="703.54" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (10 samples, 0.02%)</title><rect x="93.8" y="1013" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="96.81" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::create (16 samples, 0.03%)</title><rect x="704.4" y="597" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="707.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (1,617 samples, 2.64%)</title><rect x="435.0" y="1237" width="31.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="437.98" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>write_gmon (10 samples, 0.02%)</title><rect x="564.9" y="1253" width="0.2" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text text-anchor="" x="567.87" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/codecs/AbstractMessageParser:::parse (109 samples, 0.18%)</title><rect x="51.3" y="1269" width="2.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="54.28" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (6 samples, 0.01%)</title><rect x="500.0" y="1013" width="0.1" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="503.02" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::process (260 samples, 0.42%)</title><rect x="828.3" y="533" width="5.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="831.27" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (13 samples, 0.02%)</title><rect x="92.1" y="1125" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="95.14" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (65 samples, 0.11%)</title><rect x="28.6" y="1205" width="1.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="31.56" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/util/CatTagHelper:::addCatTag (9 samples, 0.01%)</title><rect x="1028.3" y="645" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1031.34" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (17 samples, 0.03%)</title><rect x="96.1" y="917" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="99.14" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_read (7 samples, 0.01%)</title><rect x="517.9" y="1157" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="520.93" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (9 samples, 0.01%)</title><rect x="1030.5" y="341" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1033.53" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::scanByte (12 samples, 0.02%)</title><rect x="1152.2" y="837" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1155.24" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (72 samples, 0.12%)</title><rect x="26.3" y="1221" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="29.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_nextAfterName (93 samples, 0.15%)</title><rect x="886.8" y="485" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="889.76" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (42 samples, 0.07%)</title><rect x="600.8" y="1093" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="603.84" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (18 samples, 0.03%)</title><rect x="1163.4" y="1093" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1166.36" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (54 samples, 0.09%)</title><rect x="612.7" y="1205" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (25 samples, 0.04%)</title><rect x="43.9" y="965" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x2apic_send_IPI (6 samples, 0.01%)</title><rect x="89.8" y="1013" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="92.85" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::afterNodeInsertion (18 samples, 0.03%)</title><rect x="877.4" y="469" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="880.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (81 samples, 0.13%)</title><rect x="551.1" y="1061" width="1.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="554.09" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (8 samples, 0.01%)</title><rect x="776.0" y="357" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="779.04" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (43 samples, 0.07%)</title><rect x="1165.5" y="1173" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1168.49" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_send (10 samples, 0.02%)</title><rect x="16.7" y="981" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="19.73" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (22 samples, 0.04%)</title><rect x="1165.8" y="997" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1168.76" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (11 samples, 0.02%)</title><rect x="1166.5" y="1077" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (20 samples, 0.03%)</title><rect x="1158.8" y="1077" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1161.78" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (54 samples, 0.09%)</title><rect x="612.7" y="1253" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::parse (29 samples, 0.05%)</title><rect x="1051.0" y="549" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1053.98" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1,609 samples, 2.62%)</title><rect x="640.8" y="1141" width="30.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="643.77" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (67 samples, 0.11%)</title><rect x="16.3" y="1301" width="1.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="19.27" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (189 samples, 0.31%)</title><rect x="607.9" y="1205" width="3.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="610.86" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/StatusInfoCollector:::parseDisk (7 samples, 0.01%)</title><rect x="501.2" y="1301" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="504.16" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (9 samples, 0.01%)</title><rect x="1108.4" y="421" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassLoaderData::oops_do (8 samples, 0.01%)</title><rect x="22.9" y="1397" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="25.91" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_cancel (6 samples, 0.01%)</title><rect x="824.7" y="421" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="827.67" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_net_SocketInputStream_socketRead0 (57 samples, 0.09%)</title><rect x="563.3" y="1237" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/thrift/TServiceClient:::receiveBase (7 samples, 0.01%)</title><rect x="467.2" y="1317" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (18 samples, 0.03%)</title><rect x="468.2" y="1301" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg_locked (371 samples, 0.60%)</title><rect x="68.4" y="1061" width="7.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="71.40" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/internal/DefaultMessageTree:::beforeSend (12 samples, 0.02%)</title><rect x="500.3" y="1317" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="503.29" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (6 samples, 0.01%)</title><rect x="636.6" y="1029" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="639.60" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::read0 (73 samples, 0.12%)</title><rect x="83.1" y="1205" width="1.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="86.08" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (9 samples, 0.01%)</title><rect x="521.3" y="1141" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapgs_restore_regs_and_return_to_usermode (10 samples, 0.02%)</title><rect x="429.0" y="1237" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (336 samples, 0.55%)</title><rect x="485.8" y="1061" width="6.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="488.79" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::processDeregisterQueue (23 samples, 0.04%)</title><rect x="599.0" y="1301" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="601.95" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (7 samples, 0.01%)</title><rect x="943.9" y="501" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="946.91" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="1108.4" y="485" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (15 samples, 0.02%)</title><rect x="580.8" y="1093" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="583.79" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_ctl (56 samples, 0.09%)</title><rect x="577.9" y="1221" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="580.89" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (7 samples, 0.01%)</title><rect x="1075.0" y="341" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1078.01" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (6 samples, 0.01%)</title><rect x="636.6" y="1061" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="639.60" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>elapsedTimer::stop (6 samples, 0.01%)</title><rect x="607.1" y="1301" width="0.1" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="610.09" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="521.3" y="1269" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParTask::work (194 samples, 0.32%)</title><rect x="22.2" y="1445" width="3.7" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="25.18" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_slow_exit_work (45 samples, 0.07%)</title><rect x="427.5" y="1189" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="430.46" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (9 samples, 0.01%)</title><rect x="101.9" y="1141" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="104.89" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.01%)</title><rect x="429.0" y="1173" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/HttpServletRequestWrapper:::init (21 samples, 0.03%)</title><rect x="1151.3" y="869" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1154.34" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (22 samples, 0.04%)</title><rect x="1158.8" y="1109" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1161.76" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grep (8 samples, 0.01%)</title><rect x="10.3" y="1509" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="13.31" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (225 samples, 0.37%)</title><rect x="39.6" y="1125" width="4.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="42.60" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (56 samples, 0.09%)</title><rect x="519.5" y="965" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="522.55" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parsePosNumber (42 samples, 0.07%)</title><rect x="919.3" y="517" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="922.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (23 samples, 0.04%)</title><rect x="554.7" y="1301" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder:::encodeBufferLoop (7 samples, 0.01%)</title><rect x="1046.0" y="565" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1048.96" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (7 samples, 0.01%)</title><rect x="600.1" y="1013" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::updateSelectedKeys (84 samples, 0.14%)</title><rect x="429.2" y="1269" width="1.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="432.17" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.01%)</title><rect x="523.0" y="1045" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (15 samples, 0.02%)</title><rect x="716.9" y="389" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="719.89" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (22 samples, 0.04%)</title><rect x="1166.7" y="1221" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::wait (84 samples, 0.14%)</title><rect x="551.0" y="1301" width="1.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/base/ParserBase:::_parseNumericValue (8 samples, 0.01%)</title><rect x="1112.0" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1114.96" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (286 samples, 0.47%)</title><rect x="938.3" y="517" width="5.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="941.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (7 samples, 0.01%)</title><rect x="84.3" y="901" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java (61,295 samples, 99.92%)</title><rect x="10.5" y="1509" width="1179.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ss (6 samples, 0.01%)</title><rect x="1189.9" y="1509" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1192.88" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (10 samples, 0.02%)</title><rect x="640.3" y="1189" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="643.25" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (423 samples, 0.69%)</title><rect x="484.2" y="1077" width="8.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="487.15" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (11 samples, 0.02%)</title><rect x="1050.2" y="437" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1053.23" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (13 samples, 0.02%)</title><rect x="556.7" y="1333" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="559.75" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readSerialData (15 samples, 0.02%)</title><rect x="776.5" y="437" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="779.48" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (7 samples, 0.01%)</title><rect x="75.7" y="1157" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="78.75" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (17 samples, 0.03%)</title><rect x="105.2" y="1189" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="108.16" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/methods/HttpRequestWrapper:::&lt;init&gt; (6 samples, 0.01%)</title><rect x="1099.2" y="565" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1102.19" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (11 samples, 0.02%)</title><rect x="951.5" y="517" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="954.49" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (489 samples, 0.80%)</title><rect x="483.2" y="1253" width="9.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="486.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (18 samples, 0.03%)</title><rect x="617.1" y="1029" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="620.13" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (52 samples, 0.08%)</title><rect x="557.3" y="1157" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="560.27" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vframeStreamCommon::next (10 samples, 0.02%)</title><rect x="831.0" y="437" width="0.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="834.04" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (11 samples, 0.02%)</title><rect x="779.3" y="197" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="782.25" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (15 samples, 0.02%)</title><rect x="105.2" y="1125" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="108.16" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (55 samples, 0.09%)</title><rect x="713.9" y="389" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="716.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::processDeregisterQueue (8 samples, 0.01%)</title><rect x="433.8" y="1285" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="436.79" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/chunkbuilder/BaseChunkBuilder:::offer (6 samples, 0.01%)</title><rect x="1070.1" y="629" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.14" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (7 samples, 0.01%)</title><rect x="781.8" y="565" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="784.75" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.01%)</title><rect x="607.2" y="1093" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (33 samples, 0.05%)</title><rect x="789.9" y="517" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="792.85" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (659 samples, 1.07%)</title><rect x="504.5" y="1077" width="12.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="507.54" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (156 samples, 0.25%)</title><rect x="973.3" y="629" width="3.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="976.31" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serializeOptionalFields (10 samples, 0.02%)</title><rect x="979.9" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="982.88" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.01%)</title><rect x="1022.4" y="421" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__bpf_prog_run32 (9 samples, 0.01%)</title><rect x="73.5" y="757" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="76.46" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (74 samples, 0.12%)</title><rect x="1114.7" y="549" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1117.65" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/Net:::connect0 (6 samples, 0.01%)</title><rect x="434.4" y="1253" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (19 samples, 0.03%)</title><rect x="599.5" y="1093" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (10 samples, 0.02%)</title><rect x="429.0" y="1221" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor:::getTask (609 samples, 0.99%)</title><rect x="523.2" y="1317" width="11.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="526.20" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/Collectors$$Lambda$846/698417314:::accept (57 samples, 0.09%)</title><rect x="982.7" y="597" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="985.69" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (16,444 samples, 26.81%)</title><rect x="110.3" y="1109" width="316.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="113.34" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__schedule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::initNonProxy (17 samples, 0.03%)</title><rect x="772.6" y="485" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="775.56" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (34 samples, 0.06%)</title><rect x="466.3" y="1173" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (29 samples, 0.05%)</title><rect x="499.7" y="1237" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="502.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1,462 samples, 2.38%)</title><rect x="740.2" y="453" width="28.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="743.24" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::doSelect (760 samples, 1.24%)</title><rect x="503.5" y="1285" width="14.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="506.50" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (23 samples, 0.04%)</title><rect x="554.7" y="1141" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (11 samples, 0.02%)</title><rect x="1166.5" y="997" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/hystrix/facade/CommandExecutor:::execute (6 samples, 0.01%)</title><rect x="522.2" y="1253" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_dp_process_packet (6 samples, 0.01%)</title><rect x="426.1" y="853" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="429.08" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (88 samples, 0.14%)</title><rect x="553.0" y="1189" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="555.98" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::doPreemptiveAuth (10 samples, 0.02%)</title><rect x="1100.1" y="549" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1103.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (66 samples, 0.11%)</title><rect x="1146.8" y="469" width="1.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1149.80" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (706 samples, 1.15%)</title><rect x="469.4" y="1317" width="13.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="472.38" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit:::createFromMap (10 samples, 0.02%)</title><rect x="901.8" y="565" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="904.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (106 samples, 0.17%)</title><rect x="717.8" y="469" width="2.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="720.85" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_gettimeofday (7 samples, 0.01%)</title><rect x="47.8" y="1269" width="0.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="50.80" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_execute_actions (18 samples, 0.03%)</title><rect x="1147.0" y="149" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1150.03" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::getSupplierFilter (17 samples, 0.03%)</title><rect x="980.7" y="597" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="983.67" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (14 samples, 0.02%)</title><rect x="18.3" y="1397" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (35 samples, 0.06%)</title><rect x="466.3" y="1269" width="0.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="469.32" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::ILock (25 samples, 0.04%)</title><rect x="23.8" y="1333" width="0.5" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (6 samples, 0.01%)</title><rect x="1047.2" y="549" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1050.23" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (36 samples, 0.06%)</title><rect x="523.7" y="1253" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (7 samples, 0.01%)</title><rect x="17.4" y="1173" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="20.37" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (96 samples, 0.16%)</title><rect x="1146.4" y="613" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1149.39" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (44 samples, 0.07%)</title><rect x="994.6" y="357" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="997.64" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (9 samples, 0.01%)</title><rect x="84.2" y="933" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="87.21" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketOutputStream:::socketWrite0 (9 samples, 0.01%)</title><rect x="991.7" y="629" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.73" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (70 samples, 0.11%)</title><rect x="83.1" y="1157" width="1.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="86.10" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (6 samples, 0.01%)</title><rect x="1102.0" y="453" width="0.1" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="1104.99" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (21 samples, 0.03%)</title><rect x="523.3" y="1093" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (6 samples, 0.01%)</title><rect x="87.1" y="1157" width="0.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="552.9" y="1205" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (188 samples, 0.31%)</title><rect x="607.9" y="1125" width="3.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="610.88" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (9 samples, 0.01%)</title><rect x="773.7" y="437" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="776.69" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>proc_readfd_common (17 samples, 0.03%)</title><rect x="13.4" y="1381" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="16.40" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (15 samples, 0.02%)</title><rect x="1052.1" y="261" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (22 samples, 0.04%)</title><rect x="1166.7" y="1141" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_invoke_nonstatic (18 samples, 0.03%)</title><rect x="566.1" y="1253" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="569.12" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (431 samples, 0.70%)</title><rect x="31.2" y="981" width="8.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="34.18" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (7 samples, 0.01%)</title><rect x="1147.8" y="309" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1150.76" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::is_zombie (6 samples, 0.01%)</title><rect x="1068.2" y="549" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1071.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (7 samples, 0.01%)</title><rect x="607.2" y="1061" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (76 samples, 0.12%)</title><rect x="28.4" y="1253" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="31.41" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_output (27 samples, 0.04%)</title><rect x="94.8" y="709" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="97.81" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (63 samples, 0.10%)</title><rect x="484.6" y="1045" width="1.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="487.57" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::resize (12 samples, 0.02%)</title><rect x="1058.5" y="501" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1061.46" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/boot/web/support/ErrorPageFilter:::doFilter (24,916 samples, 40.62%)</title><rect x="676.7" y="1157" width="479.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="679.70" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/boot/web/support/ErrorPageFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (41 samples, 0.07%)</title><rect x="1146.9" y="245" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1149.93" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (15 samples, 0.02%)</title><rect x="1165.8" y="901" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.84" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (77 samples, 0.13%)</title><rect x="28.4" y="1333" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="31.39" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (8 samples, 0.01%)</title><rect x="470.7" y="1125" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="473.74" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (42 samples, 0.07%)</title><rect x="109.0" y="1093" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="112.03" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (176 samples, 0.29%)</title><rect x="608.1" y="1077" width="3.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="611.09" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (95 samples, 0.15%)</title><rect x="501.4" y="1221" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/MessageConsumer:::run (372 samples, 0.61%)</title><rect x="543.5" y="1349" width="7.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="546.49" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/$Gson$Types:::resolve (7 samples, 0.01%)</title><rect x="713.7" y="421" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="716.71" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/cat/SyncServiceCatTransaction:::startTransaction (80 samples, 0.13%)</title><rect x="689.0" y="837" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="691.98" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (54 samples, 0.09%)</title><rect x="557.2" y="1221" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="560.23" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (8 samples, 0.01%)</title><rect x="30.9" y="981" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="33.93" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/DefaultMessageQueue:::take (58 samples, 0.09%)</title><rect x="559.8" y="1317" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="562.81" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (6 samples, 0.01%)</title><rect x="1170.9" y="1077" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1173.88" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (18 samples, 0.03%)</title><rect x="468.2" y="1237" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (9 samples, 0.01%)</title><rect x="1178.0" y="1141" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (29 samples, 0.05%)</title><rect x="499.7" y="1253" width="0.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="502.71" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.02%)</title><rect x="12.7" y="1461" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="15.71" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (12 samples, 0.02%)</title><rect x="1165.9" y="805" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1168.86" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (1,091 samples, 1.78%)</title><rect x="1075.3" y="373" width="21.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1078.28" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.01%)</title><rect x="10.1" y="1269" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/metrics/aggregator/MetricsAggregator:::add (8 samples, 0.01%)</title><rect x="989.3" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="992.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (28 samples, 0.05%)</title><rect x="1107.2" y="277" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1110.21" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (148 samples, 0.24%)</title><rect x="1024.2" y="613" width="2.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1027.18" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (29 samples, 0.05%)</title><rect x="1159.6" y="853" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1162.59" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/specific/SpecificJsonWriter$RecordWriter:::write (54 samples, 0.09%)</title><rect x="1142.9" y="741" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1145.87" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (42 samples, 0.07%)</title><rect x="519.6" y="885" width="0.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="522.64" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (18 samples, 0.03%)</title><rect x="499.8" y="1045" width="0.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="502.81" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/InternalNioInputBuffer:::parseHeader (26 samples, 0.04%)</title><rect x="1161.6" y="1253" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1164.61" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (20 samples, 0.03%)</title><rect x="579.7" y="1173" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="582.68" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::format (39 samples, 0.06%)</title><rect x="1022.9" y="645" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1025.92" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (14 samples, 0.02%)</title><rect x="637.3" y="1253" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectMapper:::_readMapAndClose (295 samples, 0.48%)</title><rect x="1060.3" y="661" width="5.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1063.27" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (21 samples, 0.03%)</title><rect x="720.2" y="501" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="723.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFSpan (11 samples, 0.02%)</title><rect x="829.5" y="437" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="832.50" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator:::close (41 samples, 0.07%)</title><rect x="900.8" y="533" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="903.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/IOSessionImpl:::setEvent (67 samples, 0.11%)</title><rect x="1106.7" y="501" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1109.75" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/parser/SignatureParser:::parseIdentifier (6 samples, 0.01%)</title><rect x="716.7" y="421" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="719.66" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1,504 samples, 2.45%)</title><rect x="795.9" y="453" width="28.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="798.91" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (659 samples, 1.07%)</title><rect x="470.2" y="1269" width="12.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="473.20" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (85 samples, 0.14%)</title><rect x="14.2" y="1365" width="1.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (6 samples, 0.01%)</title><rect x="713.0" y="389" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.96" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (252 samples, 0.41%)</title><rect x="545.8" y="1077" width="4.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="548.78" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (107 samples, 0.17%)</title><rect x="87.9" y="1125" width="2.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="90.94" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (6 samples, 0.01%)</title><rect x="1022.4" y="357" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (9 samples, 0.01%)</title><rect x="521.3" y="1189" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (804 samples, 1.31%)</title><rect x="1029.6" y="421" width="15.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1032.55" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (544 samples, 0.89%)</title><rect x="524.4" y="1269" width="10.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="527.43" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::ILock (11 samples, 0.02%)</title><rect x="21.6" y="1397" width="0.2" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="24.56" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (24 samples, 0.04%)</title><rect x="684.0" y="757" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="686.96" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollCtl (82 samples, 0.13%)</title><rect x="101.3" y="1253" width="1.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="104.29" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evict (7 samples, 0.01%)</title><rect x="1165.6" y="1029" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1168.59" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (7 samples, 0.01%)</title><rect x="951.6" y="485" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="954.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (37 samples, 0.06%)</title><rect x="1056.6" y="549" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1059.58" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (23 samples, 0.04%)</title><rect x="554.7" y="1317" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (78 samples, 0.13%)</title><rect x="1122.8" y="629" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1125.79" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_handle_rx_cqe_mpwrq (15 samples, 0.02%)</title><rect x="425.9" y="965" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="428.90" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/ReferenceQueue:::remove (363 samples, 0.59%)</title><rect x="600.2" y="1349" width="7.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="603.24" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (71 samples, 0.12%)</title><rect x="83.1" y="1173" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="86.10" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/FloatingDecimal:::readJavaFormatString (6 samples, 0.01%)</title><rect x="1112.0" y="581" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1115.00" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::getBoundFields (27 samples, 0.04%)</title><rect x="713.1" y="389" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="716.14" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit:::getSourceAsString (540 samples, 0.88%)</title><rect x="962.6" y="645" width="10.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="965.55" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (781 samples, 1.27%)</title><rect x="1029.9" y="389" width="15.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1032.94" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_sun_nio_ch_Net_setIntOption0 (10 samples, 0.02%)</title><rect x="564.9" y="1269" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="567.87" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="1178.0" y="1285" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_timedwait_tid (8 samples, 0.01%)</title><rect x="469.9" y="1269" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="472.92" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (35 samples, 0.06%)</title><rect x="896.5" y="517" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="899.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (88 samples, 0.14%)</title><rect x="94.4" y="821" width="1.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.43" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="564.9" y="1237" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="567.88" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (175 samples, 0.29%)</title><rect x="70.3" y="805" width="3.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="73.32" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient$1:::completed (234 samples, 0.38%)</title><rect x="85.9" y="1253" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="88.92" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (11 samples, 0.02%)</title><rect x="1166.5" y="1093" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/base/ParserBase:::_parseSlowFloat (9 samples, 0.01%)</title><rect x="1125.4" y="549" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1128.42" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (8 samples, 0.01%)</title><rect x="640.3" y="1157" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="643.27" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (8 samples, 0.01%)</title><rect x="832.3" y="325" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="835.32" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (18 samples, 0.03%)</title><rect x="736.6" y="581" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="739.61" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (82 samples, 0.13%)</title><rect x="553.1" y="1061" width="1.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="556.07" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (18 samples, 0.03%)</title><rect x="832.2" y="405" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="835.21" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::readNonProxy (29 samples, 0.05%)</title><rect x="772.9" y="485" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="775.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (6 samples, 0.01%)</title><rect x="431.0" y="1189" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="434.04" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (52 samples, 0.08%)</title><rect x="557.3" y="1125" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="560.27" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/valves/AccessLogValve:::log (66 samples, 0.11%)</title><rect x="1157.2" y="1237" width="1.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1160.22" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/execchain/RedirectExec:::execute (12 samples, 0.02%)</title><rect x="600.0" y="1317" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="602.97" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.01%)</title><rect x="600.1" y="1029" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (6 samples, 0.01%)</title><rect x="111.6" y="1029" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="114.64" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (29 samples, 0.05%)</title><rect x="17.7" y="1397" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAddCookies:::process (36 samples, 0.06%)</title><rect x="1099.3" y="565" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1102.32" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (46 samples, 0.07%)</title><rect x="576.1" y="1157" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="579.08" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_receive (6 samples, 0.01%)</title><rect x="426.1" y="869" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="429.08" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (15 samples, 0.02%)</title><rect x="980.7" y="581" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="983.71" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_send (17 samples, 0.03%)</title><rect x="1147.0" y="101" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1150.05" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (45 samples, 0.07%)</title><rect x="976.4" y="661" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="979.42" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_entry (7 samples, 0.01%)</title><rect x="428.3" y="1173" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="431.35" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (456 samples, 0.74%)</title><rect x="30.7" y="1237" width="8.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="33.70" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (24 samples, 0.04%)</title><rect x="638.2" y="1029" width="0.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (13 samples, 0.02%)</title><rect x="580.2" y="1141" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="583.20" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,137 samples, 1.85%)</title><rect x="615.0" y="1125" width="21.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="617.96" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/MessageIdFactory$Builder:::buildNextId (12 samples, 0.02%)</title><rect x="678.0" y="965" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="681.03" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (124 samples, 0.20%)</title><rect x="1066.1" y="613" width="2.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1069.12" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (34 samples, 0.06%)</title><rect x="1151.9" y="869" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1154.93" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (9 samples, 0.01%)</title><rect x="830.3" y="405" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="833.32" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (21 samples, 0.03%)</title><rect x="720.2" y="485" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="723.24" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (11 samples, 0.02%)</title><rect x="557.0" y="1237" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (9 samples, 0.01%)</title><rect x="600.0" y="1253" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="603.03" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.01%)</title><rect x="523.0" y="1029" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (7 samples, 0.01%)</title><rect x="638.0" y="1253" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (533 samples, 0.87%)</title><rect x="524.6" y="1141" width="10.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="527.64" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (17 samples, 0.03%)</title><rect x="467.4" y="1013" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (7 samples, 0.01%)</title><rect x="682.3" y="837" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="685.26" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parsePosNumber (49 samples, 0.08%)</title><rect x="930.1" y="517" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="933.12" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/common/concurrent/collect/circularbuffer/timebucket/CounterBuffer:::getCount (15 samples, 0.02%)</title><rect x="693.5" y="789" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="696.46" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (9 samples, 0.01%)</title><rect x="520.4" y="933" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="523.45" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (9 samples, 0.01%)</title><rect x="521.3" y="1285" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1,561 samples, 2.54%)</title><rect x="607.2" y="1349" width="30.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >In..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_net_SocketInputStream_socketRead0 (1,547 samples, 2.52%)</title><rect x="993.0" y="581" width="29.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="995.96" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1,228 samples, 2.00%)</title><rect x="1072.8" y="453" width="23.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1075.83" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (8 samples, 0.01%)</title><rect x="500.9" y="965" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_output (12 samples, 0.02%)</title><rect x="519.8" y="725" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="522.78" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (54 samples, 0.09%)</title><rect x="612.7" y="1237" width="1.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/SessionInputBufferImpl:::readLine (27 samples, 0.04%)</title><rect x="52.1" y="1253" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="55.15" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (19 samples, 0.03%)</title><rect x="599.5" y="1269" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::buildUri (64 samples, 0.10%)</title><rect x="825.6" y="581" width="1.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="828.59" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/foundation/internals/provider/DefaultStatusProvider:::reloadServerStatus (9 samples, 0.01%)</title><rect x="521.9" y="1301" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="524.91" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (978 samples, 1.59%)</title><rect x="617.8" y="1045" width="18.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="620.78" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (29 samples, 0.05%)</title><rect x="425.8" y="1077" width="0.6" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="428.85" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (539 samples, 0.88%)</title><rect x="1179.1" y="1397" width="10.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1182.11" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.17.so] (75 samples, 0.12%)</title><rect x="101.4" y="1237" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="104.37" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (9 samples, 0.01%)</title><rect x="1178.0" y="1237" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_wait (13 samples, 0.02%)</title><rect x="637.7" y="1205" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.01%)</title><rect x="552.9" y="1013" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/ChannelManager:::run (12 samples, 0.02%)</title><rect x="557.0" y="1333" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="560.00" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer:::serialize (16 samples, 0.03%)</title><rect x="1135.8" y="645" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1138.75" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (15 samples, 0.02%)</title><rect x="704.4" y="581" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="707.42" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (54 samples, 0.09%)</title><rect x="557.2" y="1237" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="560.23" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>compat_call.constprop.0 (17 samples, 0.03%)</title><rect x="13.4" y="1477" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="16.40" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (119 samples, 0.19%)</title><rect x="94.2" y="949" width="2.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="97.18" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (123 samples, 0.20%)</title><rect x="130.3" y="1029" width="2.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="133.28" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (640 samples, 1.04%)</title><rect x="874.4" y="485" width="12.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="877.43" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1,505 samples, 2.45%)</title><rect x="795.9" y="469" width="28.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="798.89" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (517 samples, 0.84%)</title><rect x="1179.4" y="1237" width="9.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1182.40" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (22 samples, 0.04%)</title><rect x="1166.7" y="1093" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/AreaServiceImpl:::queryAreasByHotel (12,733 samples, 20.76%)</title><rect x="733.2" y="677" width="245.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="736.22" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hotel/htlorgarea/core/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (9 samples, 0.01%)</title><rect x="1055.5" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1058.48" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (6 samples, 0.01%)</title><rect x="84.3" y="853" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (6 samples, 0.01%)</title><rect x="722.4" y="453" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="725.37" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.11 (27 samples, 0.04%)</title><rect x="579.6" y="1189" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="582.58" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (23 samples, 0.04%)</title><rect x="1162.4" y="1157" width="0.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1165.42" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/conn/PoolingNHttpClientConnectionManager:::releaseConnection (56 samples, 0.09%)</title><rect x="49.9" y="1237" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="52.93" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (8 samples, 0.01%)</title><rect x="722.9" y="421" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="725.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (523 samples, 0.85%)</title><rect x="1179.3" y="1253" width="10.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1182.32" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (11 samples, 0.02%)</title><rect x="557.0" y="1205" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (611 samples, 1.00%)</title><rect x="585.5" y="1093" width="11.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="588.47" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::doSelect (229 samples, 0.37%)</title><rect x="39.5" y="1237" width="4.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="42.53" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/aop/aspectj/AspectJExpressionPointcut:::getShadowMatch (6 samples, 0.01%)</title><rect x="1137.6" y="741" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1140.64" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/channels/spi/AbstractSelectableChannel:::register (8 samples, 0.01%)</title><rect x="574.9" y="1317" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="577.91" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.01%)</title><rect x="1022.4" y="341" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.01%)</title><rect x="10.1" y="1349" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (14 samples, 0.02%)</title><rect x="18.3" y="1413" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/DirectByteBuffer$Deallocator:::run (10 samples, 0.02%)</title><rect x="518.5" y="1269" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="521.54" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/HeapBufferedAsyncResponseConsumer:::onEntityEnclosed (56 samples, 0.09%)</title><rect x="81.5" y="1253" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="84.50" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (72 samples, 0.12%)</title><rect x="135.3" y="1045" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="138.34" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/util/CatTagHelper:::addCatTag (11 samples, 0.02%)</title><rect x="979.3" y="597" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="982.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/execchain/RedirectExec:::execute (6 samples, 0.01%)</title><rect x="522.2" y="1157" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (276 samples, 0.45%)</title><rect x="545.3" y="1301" width="5.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="548.34" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_new_array_Java (9 samples, 0.01%)</title><rect x="82.3" y="1237" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="85.29" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (17 samples, 0.03%)</title><rect x="1131.2" y="549" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1134.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/Request:::recycle (9 samples, 0.01%)</title><rect x="1160.6" y="1253" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1163.61" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (33 samples, 0.05%)</title><rect x="840.8" y="565" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="843.83" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/channel/ChannelOutboundBuffer:::removeBytes (15 samples, 0.02%)</title><rect x="518.5" y="1285" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="521.49" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (37 samples, 0.06%)</title><rect x="1131.0" y="565" width="0.7" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1133.98" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (20 samples, 0.03%)</title><rect x="83.8" y="981" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="86.77" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.01%)</title><rect x="18.6" y="1285" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileInputStream:::readBytes (8 samples, 0.01%)</title><rect x="500.9" y="1189" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (7 samples, 0.01%)</title><rect x="580.9" y="1077" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="583.91" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::digestURI (54 samples, 0.09%)</title><rect x="1105.1" y="565" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1108.05" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (336 samples, 0.55%)</title><rect x="1168.3" y="1141" width="6.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1171.30" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (422 samples, 0.69%)</title><rect x="535.2" y="1301" width="8.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="538.22" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (26 samples, 0.04%)</title><rect x="497.9" y="1237" width="0.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="500.94" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/codecs/LengthDelimitedDecoder:::read (96 samples, 0.16%)</title><rect x="82.7" y="1253" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="85.65" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamField:::&lt;init&gt; (11 samples, 0.02%)</title><rect x="773.2" y="469" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="776.19" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (23 samples, 0.04%)</title><rect x="598.5" y="1269" width="0.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="601.51" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::resolveNamedBean (21 samples, 0.03%)</title><rect x="698.2" y="805" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="701.17" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_current_dir_name (43 samples, 0.07%)</title><rect x="1165.5" y="1205" width="0.8" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1168.49" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (42 samples, 0.07%)</title><rect x="600.8" y="1109" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="603.84" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (398 samples, 0.65%)</title><rect x="535.7" y="1141" width="7.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="538.68" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (38 samples, 0.06%)</title><rect x="43.9" y="1221" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (6 samples, 0.01%)</title><rect x="112.9" y="965" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="115.86" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (15 samples, 0.02%)</title><rect x="994.2" y="325" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="997.20" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/AbstractOutputBuffer:::sendHeader (13 samples, 0.02%)</title><rect x="1144.4" y="693" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1147.45" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (70 samples, 0.11%)</title><rect x="1175.2" y="1365" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::find_pc_desc_internal (8 samples, 0.01%)</title><rect x="708.9" y="485" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="711.92" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor83:::invoke (8 samples, 0.01%)</title><rect x="776.6" y="421" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="779.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (34 samples, 0.06%)</title><rect x="466.3" y="1253" width="0.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_timedwait_tid (8 samples, 0.01%)</title><rect x="1072.3" y="549" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1075.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (19 samples, 0.03%)</title><rect x="467.8" y="1269" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="470.82" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (33 samples, 0.05%)</title><rect x="466.4" y="1077" width="0.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="469.36" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="500.9" y="1125" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::getTextCharacters (189 samples, 0.31%)</title><rect x="852.2" y="485" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="855.18" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/io/NumberOutput:::outputInt (16 samples, 0.03%)</title><rect x="850.9" y="485" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="853.91" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="1178.0" y="1269" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (7 samples, 0.01%)</title><rect x="470.8" y="1093" width="0.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="473.76" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/client/BasicAuthCache:::get (241 samples, 0.39%)</title><rect x="828.6" y="517" width="4.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="831.59" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (501 samples, 0.82%)</title><rect x="525.2" y="1013" width="9.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="528.20" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (807 samples, 1.32%)</title><rect x="1029.5" y="437" width="15.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1032.51" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (148 samples, 0.24%)</title><rect x="1024.2" y="629" width="2.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1027.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (22 samples, 0.04%)</title><rect x="1166.7" y="1253" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (9 samples, 0.01%)</title><rect x="1178.0" y="1109" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,514 samples, 2.47%)</title><rect x="993.3" y="533" width="29.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="996.27" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (390 samples, 0.64%)</title><rect x="68.1" y="1109" width="7.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="71.07" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.01%)</title><rect x="607.2" y="1141" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/StatusInfoCollector:::getBashCommandInfo (15 samples, 0.02%)</title><rect x="500.9" y="1285" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="503.87" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (53 samples, 0.09%)</title><rect x="563.3" y="981" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="566.35" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (7 samples, 0.01%)</title><rect x="523.8" y="1013" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="526.80" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (19 samples, 0.03%)</title><rect x="640.8" y="1077" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="643.85" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/buf/StringCache:::toString (8 samples, 0.01%)</title><rect x="1153.2" y="933" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1156.24" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iput (8 samples, 0.01%)</title><rect x="1165.6" y="1045" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1168.59" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (43 samples, 0.07%)</title><rect x="103.4" y="1109" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (25 samples, 0.04%)</title><rect x="23.8" y="1269" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (138 samples, 0.22%)</title><rect x="587.0" y="1045" width="2.7" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="590.01" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (7 samples, 0.01%)</title><rect x="993.6" y="437" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="996.56" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (6 samples, 0.01%)</title><rect x="467.2" y="981" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getClassDataLayout0 (6 samples, 0.01%)</title><rect x="832.8" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="835.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (1,503 samples, 2.45%)</title><rect x="739.5" y="581" width="28.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="742.53" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (10 samples, 0.02%)</title><rect x="101.9" y="1173" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="104.87" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (15 samples, 0.02%)</title><rect x="741.0" y="357" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="743.95" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (24 samples, 0.04%)</title><rect x="64.3" y="1221" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="67.27" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (44 samples, 0.07%)</title><rect x="111.5" y="1045" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="114.45" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (55 samples, 0.09%)</title><rect x="559.8" y="1109" width="1.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="562.84" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (18 samples, 0.03%)</title><rect x="102.2" y="1173" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="105.22" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (44 samples, 0.07%)</title><rect x="1132.6" y="629" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1135.56" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (29 samples, 0.05%)</title><rect x="1159.6" y="837" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1162.59" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (6 samples, 0.01%)</title><rect x="552.9" y="1141" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (277 samples, 0.45%)</title><rect x="601.6" y="1093" width="5.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="604.64" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (124 samples, 0.20%)</title><rect x="1066.1" y="629" width="2.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1069.12" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (10 samples, 0.02%)</title><rect x="84.2" y="981" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="87.19" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (11 samples, 0.02%)</title><rect x="30.4" y="837" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamField:::&lt;init&gt; (18 samples, 0.03%)</title><rect x="829.8" y="453" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="832.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (8 samples, 0.01%)</title><rect x="600.0" y="1077" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (277 samples, 0.45%)</title><rect x="601.6" y="1109" width="5.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="604.64" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/safelist/SafeListPlugin:::apply (28 samples, 0.05%)</title><rect x="694.7" y="805" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="697.67" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (684 samples, 1.12%)</title><rect x="504.4" y="1093" width="13.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="507.44" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (32 samples, 0.05%)</title><rect x="673.9" y="1237" width="0.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="676.86" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (56 samples, 0.09%)</title><rect x="559.8" y="1189" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="562.83" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (10 samples, 0.02%)</title><rect x="713.2" y="373" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="716.21" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (10 samples, 0.02%)</title><rect x="1136.3" y="677" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1139.29" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (20 samples, 0.03%)</title><rect x="722.7" y="469" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="725.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (7 samples, 0.01%)</title><rect x="1048.5" y="437" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1051.52" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parker::park (7 samples, 0.01%)</title><rect x="795.4" y="517" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="798.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1150:::invoke (18 samples, 0.03%)</title><rect x="955.1" y="533" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="958.11" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (626 samples, 1.02%)</title><rect x="470.6" y="1157" width="12.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="473.61" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (6 samples, 0.01%)</title><rect x="1189.9" y="1493" width="0.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1192.88" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (25 samples, 0.04%)</title><rect x="1162.4" y="1205" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1165.38" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (17 samples, 0.03%)</title><rect x="467.4" y="1109" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/specific/SpecificJsonWriter$DatetimeWriter:::write (13 samples, 0.02%)</title><rect x="1143.4" y="709" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1146.39" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (19 samples, 0.03%)</title><rect x="722.3" y="517" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="725.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/MessageTreeContextHolder$CleanupTask:::run (24 samples, 0.04%)</title><rect x="468.6" y="1333" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorWait (7 samples, 0.01%)</title><rect x="1167.2" y="1317" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/DefaultSerializerProvider:::serializeValue (104 samples, 0.17%)</title><rect x="1134.1" y="661" width="2.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1137.06" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (28 samples, 0.05%)</title><rect x="1163.2" y="1125" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1166.20" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (19 samples, 0.03%)</title><rect x="599.5" y="1125" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/BeanPropertyWriter:::serializeAsField (42 samples, 0.07%)</title><rect x="1134.3" y="629" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1137.35" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (11 samples, 0.02%)</title><rect x="835.5" y="165" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="838.54" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="483.4" y="1221" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="486.36" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::invoke_compiler_on_method (15 samples, 0.02%)</title><rect x="27.9" y="1429" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="30.89" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (24 samples, 0.04%)</title><rect x="638.2" y="981" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/DefaultTreeSender:::access$500 (11 samples, 0.02%)</title><rect x="469.2" y="1317" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="472.17" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::buildUri (63 samples, 0.10%)</title><rect x="768.9" y="597" width="1.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="771.90" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::parseLongName (13 samples, 0.02%)</title><rect x="1059.3" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1062.27" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (15 samples, 0.02%)</title><rect x="1061.5" y="629" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1064.50" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sh (15 samples, 0.02%)</title><rect x="1189.6" y="1509" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1192.60" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (54 samples, 0.09%)</title><rect x="714.0" y="341" width="1.0" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="716.96" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (10 samples, 0.02%)</title><rect x="108.2" y="1157" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (8 samples, 0.01%)</title><rect x="796.0" y="373" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="799.01" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (10 samples, 0.02%)</title><rect x="834.4" y="533" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="837.38" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (24 samples, 0.04%)</title><rect x="468.6" y="1189" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (15 samples, 0.02%)</title><rect x="716.9" y="405" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="719.89" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/commons/pool2/impl/GenericObjectPool:::evict (57 samples, 0.09%)</title><rect x="563.3" y="1333" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (319 samples, 0.52%)</title><rect x="600.8" y="1125" width="6.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="603.84" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (8 samples, 0.01%)</title><rect x="517.9" y="1173" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="520.91" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (249 samples, 0.41%)</title><rect x="69.8" y="917" width="4.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="72.84" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::create (28 samples, 0.05%)</title><rect x="713.1" y="405" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="716.12" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (8 samples, 0.01%)</title><rect x="1178.2" y="1109" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1181.15" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/tree/ClassTypeSignature:::accept (16 samples, 0.03%)</title><rect x="725.9" y="597" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="728.87" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (14 samples, 0.02%)</title><rect x="1158.8" y="965" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.84" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/aop/aspectj/AspectJExpressionPointcut:::matches (12 samples, 0.02%)</title><rect x="1137.5" y="757" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1140.54" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/client/BasicAuthCache:::get (257 samples, 0.42%)</title><rect x="772.0" y="533" width="4.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="774.98" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (27 samples, 0.04%)</title><rect x="64.2" y="1237" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="67.21" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (95 samples, 0.15%)</title><rect x="26.0" y="1445" width="1.8" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="29.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (346 samples, 0.56%)</title><rect x="567.1" y="1285" width="6.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="570.06" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/util/concurrent/DynamicScheduledThread:::run (36 samples, 0.06%)</title><rect x="599.5" y="1365" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="602.53" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/MainClientExec:::prepare (392 samples, 0.64%)</title><rect x="770.8" y="565" width="7.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="773.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (19 samples, 0.03%)</title><rect x="599.5" y="1109" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (188 samples, 0.31%)</title><rect x="607.9" y="1157" width="3.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="610.88" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (13 samples, 0.02%)</title><rect x="698.3" y="789" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="701.27" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (34 samples, 0.06%)</title><rect x="466.3" y="1189" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (9 samples, 0.01%)</title><rect x="426.2" y="885" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="429.21" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,567 samples, 2.55%)</title><rect x="641.3" y="1109" width="30.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="644.27" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (24 samples, 0.04%)</title><rect x="835.3" y="245" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="838.32" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::possibly_parallel_oops_do (14 samples, 0.02%)</title><rect x="23.4" y="1413" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="26.39" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (726 samples, 1.18%)</title><rect x="503.8" y="1205" width="14.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="506.79" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_inode_pseudo (6 samples, 0.01%)</title><rect x="573.4" y="1205" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="576.37" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (86 samples, 0.14%)</title><rect x="110.9" y="1077" width="1.7" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="113.93" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (309 samples, 0.50%)</title><rect x="486.3" y="1029" width="5.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_close (15 samples, 0.02%)</title><rect x="517.8" y="1253" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="520.81" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getConstructor0 (57 samples, 0.09%)</title><rect x="713.9" y="421" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="716.91" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getReflector (13 samples, 0.02%)</title><rect x="829.1" y="453" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="832.07" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::tryAcquireSharedNanos (1,554 samples, 2.53%)</title><rect x="795.1" y="581" width="29.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="798.14" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/UNIXProcess:::waitForProcessExit (13 samples, 0.02%)</title><rect x="637.7" y="1317" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedConstructorAccessor174:::newInstance (11 samples, 0.02%)</title><rect x="954.3" y="533" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="957.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/FutureTask:::run (16 samples, 0.03%)</title><rect x="522.5" y="1317" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="525.51" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_flow_tbl_lookup_stats (8 samples, 0.01%)</title><rect x="16.9" y="1029" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="19.92" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mark_wake_futex (11 samples, 0.02%)</title><rect x="87.7" y="1125" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="90.73" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (26 samples, 0.04%)</title><rect x="535.8" y="1093" width="0.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="538.78" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/cat/SyncServiceCatTransaction:::markSuccess (7 samples, 0.01%)</title><rect x="692.5" y="821" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="695.46" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor66:::invoke (84 samples, 0.14%)</title><rect x="831.5" y="469" width="1.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="834.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/Util:::getTemporaryDirectBuffer (14 samples, 0.02%)</title><rect x="76.1" y="1237" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="79.06" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (11 samples, 0.02%)</title><rect x="100.0" y="1205" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (63 samples, 0.10%)</title><rect x="577.8" y="1237" width="1.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="580.83" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (310 samples, 0.51%)</title><rect x="888.6" y="485" width="5.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="891.55" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (14 samples, 0.02%)</title><rect x="62.5" y="1221" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="65.46" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/MainClientExec:::prepare (368 samples, 0.60%)</title><rect x="827.6" y="549" width="7.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="830.55" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (8 samples, 0.01%)</title><rect x="576.7" y="1029" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="579.71" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/util/CatTagHelper:::addCatTag (28 samples, 0.05%)</title><rect x="732.5" y="661" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="735.47" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/connector/OutputBuffer:::doFlush (235 samples, 0.38%)</title><rect x="1144.0" y="741" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1147.01" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (55 samples, 0.09%)</title><rect x="559.8" y="1125" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="562.84" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (95 samples, 0.15%)</title><rect x="501.4" y="1157" width="1.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter$FormatSpecifier:::&lt;init&gt; (8 samples, 0.01%)</title><rect x="695.6" y="741" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.63" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (30 samples, 0.05%)</title><rect x="499.7" y="1269" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="502.69" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (20 samples, 0.03%)</title><rect x="1116.1" y="549" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1119.09" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (57 samples, 0.09%)</title><rect x="980.5" y="645" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="983.46" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (10 samples, 0.02%)</title><rect x="535.0" y="1205" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetEnclosingMethodInfo (6 samples, 0.01%)</title><rect x="701.8" y="597" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="704.81" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (12 samples, 0.02%)</title><rect x="27.9" y="1413" width="0.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="30.89" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (7 samples, 0.01%)</title><rect x="13.1" y="1477" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="16.12" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_start (11 samples, 0.02%)</title><rect x="585.1" y="1013" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="588.12" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parseServer (18 samples, 0.03%)</title><rect x="1152.1" y="853" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1155.12" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/servlet/http/HttpServletResponseWrapper:::setHeader (7 samples, 0.01%)</title><rect x="698.0" y="805" width="0.2" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="701.02" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (53 samples, 0.09%)</title><rect x="559.9" y="1061" width="1.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="562.88" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (7 samples, 0.01%)</title><rect x="1101.7" y="437" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1104.73" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::initNonProxy (22 samples, 0.04%)</title><rect x="1100.9" y="501" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1103.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readClassDesc (80 samples, 0.13%)</title><rect x="1047.7" y="517" width="1.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1050.69" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_UNIXProcess_forkAndExec (6 samples, 0.01%)</title><rect x="501.0" y="1237" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="504.04" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (22 samples, 0.04%)</title><rect x="961.7" y="501" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="964.71" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>credis/java/client/monitor/impl/DefaultCRedisMonitor:::logMetric (66 samples, 0.11%)</title><rect x="989.1" y="629" width="1.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="992.12" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OopMapSet::oops_do (28 samples, 0.05%)</title><rect x="23.8" y="1365" width="0.5" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="26.79" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (6 samples, 0.01%)</title><rect x="469.8" y="1125" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (191 samples, 0.31%)</title><rect x="607.8" y="1221" width="3.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="610.82" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::await (54 samples, 0.09%)</title><rect x="612.7" y="1301" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::digestURI (38 samples, 0.06%)</title><rect x="833.3" y="533" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="836.34" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/DistinctOps$1$2:::accept (6 samples, 0.01%)</title><rect x="977.1" y="629" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="980.09" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/lucene/util/BytesRef:::utf8ToString (536 samples, 0.87%)</title><rect x="962.6" y="629" width="10.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="965.59" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (40 samples, 0.07%)</title><rect x="1145.3" y="629" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1148.30" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (15 samples, 0.02%)</title><rect x="740.3" y="405" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="743.30" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::poll (191 samples, 0.31%)</title><rect x="607.8" y="1285" width="3.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="610.82" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (427 samples, 0.70%)</title><rect x="31.3" y="965" width="8.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="34.26" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (11 samples, 0.02%)</title><rect x="100.0" y="1125" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (86 samples, 0.14%)</title><rect x="553.0" y="1173" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="556.02" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (8 samples, 0.01%)</title><rect x="684.0" y="741" width="0.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="686.99" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1,613 samples, 2.63%)</title><rect x="435.1" y="1157" width="31.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="438.06" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (24 samples, 0.04%)</title><rect x="641.6" y="1061" width="0.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="644.62" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1,246 samples, 2.03%)</title><rect x="1072.7" y="501" width="24.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1075.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/Gson:::getAdapter (1,015 samples, 1.65%)</title><rect x="704.2" y="613" width="19.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="707.23" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (13 samples, 0.02%)</title><rect x="769.9" y="581" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="772.86" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::run (1,314 samples, 2.14%)</title><rect x="574.2" y="1349" width="25.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="577.16" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageProducer:::logEvent (7 samples, 0.01%)</title><rect x="989.0" y="629" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="991.96" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlDecode (25 samples, 0.04%)</title><rect x="1105.2" y="533" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1108.23" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (17 samples, 0.03%)</title><rect x="830.2" y="437" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="833.17" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetEnclosingMethodInfo (6 samples, 0.01%)</title><rect x="1155.5" y="1077" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1158.45" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (6 samples, 0.01%)</title><rect x="943.5" y="501" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="946.47" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (19 samples, 0.03%)</title><rect x="599.5" y="1205" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (242 samples, 0.39%)</title><rect x="92.1" y="1205" width="4.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="95.14" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (12 samples, 0.02%)</title><rect x="435.9" y="1045" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="438.93" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (502 samples, 0.82%)</title><rect x="525.2" y="1029" width="9.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="528.18" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::create (6 samples, 0.01%)</title><rect x="713.0" y="405" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.96" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="483.4" y="1205" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="486.36" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (8 samples, 0.01%)</title><rect x="775.8" y="389" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.75" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/TypeAdapters$30:::create (39 samples, 0.06%)</title><rect x="720.1" y="533" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="723.06" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="500.9" y="1141" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/DefaultConnectingIOReactor:::processEvents (37 samples, 0.06%)</title><rect x="434.1" y="1301" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="437.14" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (10 samples, 0.02%)</title><rect x="773.2" y="453" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="776.21" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioBlockingSelector:::write (88 samples, 0.14%)</title><rect x="1158.6" y="1189" width="1.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1161.63" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="1108.4" y="501" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (90 samples, 0.15%)</title><rect x="519.1" y="1173" width="1.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="522.06" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (19 samples, 0.03%)</title><rect x="1158.8" y="1029" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.80" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_dp_process_packet (30 samples, 0.05%)</title><rect x="1147.0" y="165" width="0.6" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1150.01" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.01%)</title><rect x="18.6" y="1301" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/AbstractHttp11Processor:::action (17 samples, 0.03%)</title><rect x="1152.9" y="933" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1155.89" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SafepointSynchronize::block (6 samples, 0.01%)</title><rect x="614.2" y="1221" width="0.1" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="617.23" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAddCookies:::process (27 samples, 0.04%)</title><rect x="827.7" y="533" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="830.75" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ReflectiveOperationException:::&lt;init&gt; (201 samples, 0.33%)</title><rect x="705.2" y="565" width="3.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="708.21" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (90 samples, 0.15%)</title><rect x="26.1" y="1333" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="29.06" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (13 samples, 0.02%)</title><rect x="1112.3" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1115.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::doRun (25,687 samples, 41.87%)</title><rect x="672.2" y="1301" width="494.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="675.22" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::doRun</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (13 samples, 0.02%)</title><rect x="1104.1" y="405" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1107.05" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (959 samples, 1.56%)</title><rect x="579.4" y="1221" width="18.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="582.41" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (6 samples, 0.01%)</title><rect x="134.0" y="997" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="137.02" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (32 samples, 0.05%)</title><rect x="778.9" y="341" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="781.94" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Method:::invoke (6 samples, 0.01%)</title><rect x="44.4" y="1045" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (54 samples, 0.09%)</title><rect x="612.7" y="1285" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassLoaderDataGraph::roots_cld_do (11 samples, 0.02%)</title><rect x="22.8" y="1413" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="25.85" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (85 samples, 0.14%)</title><rect x="1146.5" y="549" width="1.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1149.51" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (89 samples, 0.15%)</title><rect x="1146.5" y="581" width="1.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1149.49" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6$Context:::addEncodedTokens (10 samples, 0.02%)</title><rect x="494.0" y="1253" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="497.02" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ThreadStateTransition::transition_from_native (6 samples, 0.01%)</title><rect x="1022.4" y="549" width="0.1" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (892 samples, 1.45%)</title><rect x="580.6" y="1157" width="17.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="583.60" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::readNonProxy (22 samples, 0.04%)</title><rect x="1048.0" y="501" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1051.04" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ApplicationFilterFactory:::createFilterChain (20 samples, 0.03%)</title><rect x="1156.0" y="1173" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1158.99" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getReflector (6 samples, 0.01%)</title><rect x="1049.8" y="421" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (10 samples, 0.02%)</title><rect x="990.4" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="993.44" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1,456 samples, 2.37%)</title><rect x="740.3" y="437" width="28.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="743.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (531 samples, 0.87%)</title><rect x="524.7" y="1093" width="10.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="527.68" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (19 samples, 0.03%)</title><rect x="599.5" y="1061" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>seq_read (8 samples, 0.01%)</title><rect x="12.8" y="1365" width="0.1" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="15.75" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (10 samples, 0.02%)</title><rect x="565.3" y="1173" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="568.31" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (122 samples, 0.20%)</title><rect x="94.1" y="981" width="2.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="97.12" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (120 samples, 0.20%)</title><rect x="94.2" y="965" width="2.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="97.16" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (6 samples, 0.01%)</title><rect x="578.6" y="1205" width="0.1" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="581.60" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parker::park (8 samples, 0.01%)</title><rect x="639.9" y="1221" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="642.89" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (40 samples, 0.07%)</title><rect x="1051.9" y="453" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1054.94" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (238 samples, 0.39%)</title><rect x="92.1" y="1173" width="4.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="95.14" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/Collectors$$Lambda$812/1507917546:::accept (9 samples, 0.01%)</title><rect x="976.9" y="629" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="979.92" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (6 samples, 0.01%)</title><rect x="637.7" y="1189" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ProcessImpl:::start (6 samples, 0.01%)</title><rect x="501.0" y="1269" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="504.04" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (70 samples, 0.11%)</title><rect x="1175.2" y="1381" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (11 samples, 0.02%)</title><rect x="972.7" y="597" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="975.67" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (7 samples, 0.01%)</title><rect x="640.3" y="1141" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="643.27" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentEvent (45 samples, 0.07%)</title><rect x="1113.8" y="549" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1116.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (19 samples, 0.03%)</title><rect x="63.3" y="1125" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="66.32" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (6 samples, 0.01%)</title><rect x="552.9" y="1157" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (43 samples, 0.07%)</title><rect x="519.6" y="917" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="522.62" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (12 samples, 0.02%)</title><rect x="637.3" y="1173" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="640.27" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (41 samples, 0.07%)</title><rect x="424.3" y="1077" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="427.27" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (54 samples, 0.09%)</title><rect x="1139.8" y="773" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1142.77" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (24,844 samples, 40.50%)</title><rect x="677.2" y="1093" width="477.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="680.22" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::_writeStringSegment (49 samples, 0.08%)</title><rect x="851.2" y="485" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="854.21" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::write (117 samples, 0.19%)</title><rect x="1146.1" y="677" width="2.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1149.06" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/servlet/CatFilter$CatHandler$3:::handle (24,349 samples, 39.69%)</title><rect x="685.1" y="949" width="468.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="688.15" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/dianping/cat/servlet/CatFilter$CatHandler$3:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (62 samples, 0.10%)</title><rect x="1175.3" y="1173" width="1.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1178.34" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="29.9" y="1333" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/util/LogEventUtil:::shouldRefineTags (11 samples, 0.02%)</title><rect x="732.1" y="661" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="735.08" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/common/net/InetAddresses:::ipStringToBytes (13 samples, 0.02%)</title><rect x="689.4" y="789" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="692.44" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (16 samples, 0.03%)</title><rect x="1165.8" y="965" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (43 samples, 0.07%)</title><rect x="103.4" y="1125" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::execute (6 samples, 0.01%)</title><rect x="29.9" y="1397" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getConstructor0 (206 samples, 0.34%)</title><rect x="705.1" y="581" width="4.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="708.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (24 samples, 0.04%)</title><rect x="523.8" y="1045" width="0.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="526.80" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/ServerSocketChannelImpl:::accept0 (411 samples, 0.67%)</title><rect x="565.9" y="1317" width="7.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="568.92" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/introspect/AnnotatedConstructor:::call (36 samples, 0.06%)</title><rect x="953.2" y="533" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="956.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::format (36 samples, 0.06%)</title><rect x="1149.0" y="805" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.05" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iterate_dir (17 samples, 0.03%)</title><rect x="13.4" y="1413" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="16.40" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (7 samples, 0.01%)</title><rect x="467.2" y="1093" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (68 samples, 0.11%)</title><rect x="519.4" y="1077" width="1.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="522.43" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (452 samples, 0.74%)</title><rect x="30.8" y="1061" width="8.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="33.77" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (21 samples, 0.03%)</title><rect x="499.8" y="1109" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="502.75" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (12 samples, 0.02%)</title><rect x="1073.7" y="325" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1076.66" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (19 samples, 0.03%)</title><rect x="23.9" y="1109" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="26.93" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (22 samples, 0.04%)</title><rect x="1122.3" y="629" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1125.31" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (57 samples, 0.09%)</title><rect x="563.3" y="1029" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (14 samples, 0.02%)</title><rect x="796.5" y="325" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="799.54" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/unidal/cat/traceContext/internal/DefaultTraceContext:::toString (6 samples, 0.01%)</title><rect x="1154.7" y="949" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1157.70" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/SimpleDateFormat:::compile (14 samples, 0.02%)</title><rect x="728.7" y="677" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="731.74" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (227 samples, 0.37%)</title><rect x="39.6" y="1189" width="4.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="42.57" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (68 samples, 0.11%)</title><rect x="1175.2" y="1301" width="1.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReduceOps$3ReducingSink:::accept (6 samples, 0.01%)</title><rect x="980.9" y="549" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="983.88" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (228 samples, 0.37%)</title><rect x="39.5" y="1205" width="4.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="42.55" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::digestURI (50 samples, 0.08%)</title><rect x="777.0" y="549" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="779.98" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/execchain/ProtocolExec:::execute (12 samples, 0.02%)</title><rect x="600.0" y="1285" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="602.97" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (19 samples, 0.03%)</title><rect x="93.4" y="1029" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="96.35" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (54 samples, 0.09%)</title><rect x="612.7" y="1157" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_read (13 samples, 0.02%)</title><rect x="598.6" y="1189" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="601.64" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (11 samples, 0.02%)</title><rect x="534.9" y="1301" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="537.93" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/util/ResponseUtil:::writeResponse (446 samples, 0.73%)</title><rect x="1141.7" y="821" width="8.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1144.66" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (485 samples, 0.79%)</title><rect x="473.2" y="1093" width="9.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="476.21" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (12 samples, 0.02%)</title><rect x="896.2" y="485" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="899.21" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/base/ParserBase:::_parseNumericValue (31 samples, 0.05%)</title><rect x="850.3" y="485" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="853.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_smp_send_reschedule (6 samples, 0.01%)</title><rect x="89.8" y="1029" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="92.85" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (42 samples, 0.07%)</title><rect x="103.4" y="997" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="106.41" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (308 samples, 0.50%)</title><rect x="567.3" y="1141" width="5.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="570.31" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/AbstractQueryBuilder:::toXContent (6 samples, 0.01%)</title><rect x="1054.1" y="549" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1057.06" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_timedwait_tid (8 samples, 0.01%)</title><rect x="483.4" y="1237" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="486.36" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (11 samples, 0.02%)</title><rect x="995.3" y="341" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="998.27" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jint_disjoint_arraycopy (7 samples, 0.01%)</title><rect x="958.1" y="549" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="961.15" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/BasicTokenIterator:::findTokenEnd (6 samples, 0.01%)</title><rect x="49.0" y="1221" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="52.03" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/configuration/policy/source/PolicyServiceConfiguration$ConfigUpdateTask:::run (7 samples, 0.01%)</title><rect x="522.2" y="1317" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (15 samples, 0.02%)</title><rect x="789.1" y="533" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="792.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (40 samples, 0.07%)</title><rect x="132.8" y="949" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="135.76" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_xmit (19 samples, 0.03%)</title><rect x="71.7" y="597" width="0.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="74.69" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (72 samples, 0.12%)</title><rect x="19.1" y="1173" width="1.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="22.14" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::createBoundField (571 samples, 0.93%)</title><rect x="710.4" y="565" width="11.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.41" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (88 samples, 0.14%)</title><rect x="519.1" y="1157" width="1.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="522.10" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParScanThreadState::trim_queue (26 samples, 0.04%)</title><rect x="22.2" y="1413" width="0.5" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="25.18" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (52 samples, 0.08%)</title><rect x="557.3" y="1141" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="560.27" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg_locked (86 samples, 0.14%)</title><rect x="519.1" y="1093" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="522.12" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (7 samples, 0.01%)</title><rect x="640.1" y="1077" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer:::findSymbol (20 samples, 0.03%)</title><rect x="904.8" y="581" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="907.77" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (592 samples, 0.97%)</title><rect x="585.8" y="1077" width="11.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="588.83" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (56 samples, 0.09%)</title><rect x="559.8" y="1205" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="562.83" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (6 samples, 0.01%)</title><rect x="63.4" y="1061" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="66.40" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_q_add (9 samples, 0.01%)</title><rect x="87.8" y="1109" width="0.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="90.77" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (55 samples, 0.09%)</title><rect x="559.8" y="1141" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="562.84" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::roots_oops_do (10 samples, 0.02%)</title><rect x="23.2" y="1381" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="26.20" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/data/elastic/ElasticClientFactory:::getSearchClient (6 samples, 0.01%)</title><rect x="1071.1" y="661" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1074.10" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (113 samples, 0.18%)</title><rect x="561.1" y="1285" width="2.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/Reference$ReferenceHandler:::run (7 samples, 0.01%)</title><rect x="1167.2" y="1365" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_frame_hook (8 samples, 0.01%)</title><rect x="1165.9" y="757" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1168.90" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/core/task/SimpleAsyncTaskExecutor$ConcurrencyThrottleAdapter:::&lt;init&gt; (8 samples, 0.01%)</title><rect x="1155.8" y="1109" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1158.82" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (19 samples, 0.03%)</title><rect x="615.0" y="1061" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="618.03" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageProducer:::newTransaction (32 samples, 0.05%)</title><rect x="678.4" y="949" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="681.38" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (33 samples, 0.05%)</title><rect x="835.2" y="325" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="838.25" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (39 samples, 0.06%)</title><rect x="113.2" y="1013" width="0.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="116.20" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::buildString (39 samples, 0.06%)</title><rect x="825.8" y="565" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="828.76" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_execute_actions (18 samples, 0.03%)</title><rect x="1147.0" y="133" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1150.03" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (18 samples, 0.03%)</title><rect x="467.8" y="1189" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (83 samples, 0.14%)</title><rect x="551.1" y="1173" width="1.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="554.05" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (23 samples, 0.04%)</title><rect x="842.0" y="549" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="845.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>proc_readfd (17 samples, 0.03%)</title><rect x="13.4" y="1397" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="16.40" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.01%)</title><rect x="467.2" y="1077" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (9 samples, 0.01%)</title><rect x="557.1" y="1109" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="560.06" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (25 samples, 0.04%)</title><rect x="701.5" y="645" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="704.48" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (20 samples, 0.03%)</title><rect x="494.2" y="1253" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="497.23" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (53 samples, 0.09%)</title><rect x="113.0" y="1045" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="115.97" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (81 samples, 0.13%)</title><rect x="19.0" y="1349" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="22.00" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (536 samples, 0.87%)</title><rect x="524.6" y="1205" width="10.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="527.58" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (6 samples, 0.01%)</title><rect x="29.9" y="1237" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (24 samples, 0.04%)</title><rect x="638.2" y="1077" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (41 samples, 0.07%)</title><rect x="1146.9" y="229" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1149.93" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/ContentFormatConfig:::getFormatterFromRequest (12 samples, 0.02%)</title><rect x="1142.0" y="805" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1144.99" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (29 samples, 0.05%)</title><rect x="1159.6" y="885" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1162.59" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (271 samples, 0.44%)</title><rect x="545.4" y="1269" width="5.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="548.44" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (88 samples, 0.14%)</title><rect x="789.5" y="533" width="1.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="792.47" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (11 samples, 0.02%)</title><rect x="681.2" y="869" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="684.19" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (27 samples, 0.04%)</title><rect x="711.8" y="469" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="714.75" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (8 samples, 0.01%)</title><rect x="1168.1" y="1109" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1171.15" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/TermsQueryBuilder:::convert (41 samples, 0.07%)</title><rect x="792.7" y="645" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="795.74" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/metrics/aggregator/MetricsAggregatorFactory$OutputTask:::run (104 samples, 0.17%)</title><rect x="552.7" y="1349" width="2.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="555.67" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (2,716 samples, 4.43%)</title><rect x="906.2" y="597" width="52.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="909.25" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::readNonProxy (21 samples, 0.03%)</title><rect x="775.5" y="421" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.50" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (6 samples, 0.01%)</title><rect x="1160.0" y="805" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1163.03" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_receive (30 samples, 0.05%)</title><rect x="519.7" y="789" width="0.6" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="522.74" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::makeStatsBasicTags (10 samples, 0.02%)</title><rect x="1137.8" y="821" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1140.83" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.01%)</title><rect x="500.9" y="1013" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (452 samples, 0.74%)</title><rect x="30.8" y="1045" width="8.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="33.77" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (10 samples, 0.02%)</title><rect x="521.3" y="1333" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="524.26" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/client/BasicAuthCache:::get (235 samples, 0.38%)</title><rect x="1100.3" y="549" width="4.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1103.32" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readObject0 (219 samples, 0.36%)</title><rect x="1100.6" y="533" width="4.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1103.57" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (6 samples, 0.01%)</title><rect x="773.3" y="421" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="776.27" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (197 samples, 0.32%)</title><rect x="705.3" y="517" width="3.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="708.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (7 samples, 0.01%)</title><rect x="638.0" y="1045" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (44 samples, 0.07%)</title><rect x="1029.9" y="357" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1032.94" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (25 samples, 0.04%)</title><rect x="23.8" y="1237" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (14 samples, 0.02%)</title><rect x="18.3" y="1445" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1,378 samples, 2.25%)</title><rect x="995.5" y="357" width="26.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="998.50" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeField (16 samples, 0.03%)</title><rect x="712.3" y="469" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.27" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (6 samples, 0.01%)</title><rect x="87.1" y="1077" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1145:::invoke (11 samples, 0.02%)</title><rect x="951.9" y="517" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="954.88" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (30 samples, 0.05%)</title><rect x="778.9" y="309" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="781.94" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (7 samples, 0.01%)</title><rect x="1167.2" y="1189" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (19 samples, 0.03%)</title><rect x="994.1" y="341" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="997.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::ILock (44 samples, 0.07%)</title><rect x="103.4" y="1173" width="0.8" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="106.37" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (22 samples, 0.04%)</title><rect x="1166.7" y="1333" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1,612 samples, 2.63%)</title><rect x="435.1" y="1141" width="31.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="438.08" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (63 samples, 0.10%)</title><rect x="577.8" y="1253" width="1.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="580.83" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::initNonProxy (6 samples, 0.01%)</title><rect x="775.4" y="421" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.39" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (18 samples, 0.03%)</title><rect x="1140.1" y="725" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (10 samples, 0.02%)</title><rect x="102.6" y="1173" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="105.58" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/cat/SyncServiceCatTransaction:::endTransaction (36 samples, 0.06%)</title><rect x="691.8" y="821" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="694.77" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (459 samples, 0.75%)</title><rect x="483.8" y="1189" width="8.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="486.77" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/BufferedHeader:::&lt;init&gt; (8 samples, 0.01%)</title><rect x="59.6" y="1205" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="62.55" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (13 samples, 0.02%)</title><rect x="521.6" y="1061" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="524.56" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (14 samples, 0.02%)</title><rect x="565.3" y="1221" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="568.27" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_frame_hook (6 samples, 0.01%)</title><rect x="426.1" y="885" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="429.08" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (6 samples, 0.01%)</title><rect x="1170.9" y="1061" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1173.88" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/commons/beanutils/PropertyUtilsBean:::getSimpleProperty (12 samples, 0.02%)</title><rect x="730.5" y="677" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="733.49" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="467.2" y="1189" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::is_zombie (8 samples, 0.01%)</title><rect x="1026.8" y="533" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1029.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (45 samples, 0.07%)</title><rect x="1066.8" y="565" width="0.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1069.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_unlock (41 samples, 0.07%)</title><rect x="425.1" y="1077" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="428.06" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (21 samples, 0.03%)</title><rect x="499.8" y="1141" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="502.75" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/cat/ServiceCatTransaction:::newServiceCatTransaction (35 samples, 0.06%)</title><rect x="688.3" y="837" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="691.26" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (14 samples, 0.02%)</title><rect x="832.2" y="373" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="835.21" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1,396 samples, 2.28%)</title><rect x="644.4" y="1013" width="26.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="647.39" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (8 samples, 0.01%)</title><rect x="957.8" y="549" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="960.84" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (405 samples, 0.66%)</title><rect x="535.5" y="1269" width="7.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="538.55" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (305 samples, 0.50%)</title><rect x="567.3" y="1125" width="5.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="570.35" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/util/ResponseUtil:::writeResponseContent (352 samples, 0.57%)</title><rect x="1142.3" y="805" width="6.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1145.28" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (9 samples, 0.01%)</title><rect x="100.1" y="997" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="103.06" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (10 samples, 0.02%)</title><rect x="91.7" y="1237" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="94.73" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (191 samples, 0.31%)</title><rect x="607.8" y="1237" width="3.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="610.82" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (34 samples, 0.06%)</title><rect x="466.3" y="1237" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (96 samples, 0.16%)</title><rect x="519.0" y="1205" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="521.97" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/commons/pool2/impl/GenericObjectPool:::borrowObject (25 samples, 0.04%)</title><rect x="991.9" y="629" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="994.91" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::doWriteLog (29 samples, 0.05%)</title><rect x="979.0" y="629" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="981.96" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (9 samples, 0.01%)</title><rect x="485.8" y="1045" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="488.82" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit$$Lambda$527/1747997353:::apply (10 samples, 0.02%)</title><rect x="842.5" y="533" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="845.54" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (25 samples, 0.04%)</title><rect x="43.9" y="1045" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReferencePipeline$2$1:::accept (11 samples, 0.02%)</title><rect x="984.1" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="987.06" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (33 samples, 0.05%)</title><rect x="466.4" y="1045" width="0.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="469.36" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (61 samples, 0.10%)</title><rect x="83.2" y="1045" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="86.21" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (528 samples, 0.86%)</title><rect x="1179.2" y="1301" width="10.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1182.25" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/DefaultConnectingIOReactor:::processSessionRequests (16 samples, 0.03%)</title><rect x="434.2" y="1285" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="437.18" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (9 samples, 0.01%)</title><rect x="521.3" y="1125" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (197 samples, 0.32%)</title><rect x="705.3" y="533" width="3.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="708.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getClassDataLayout0 (8 samples, 0.01%)</title><rect x="774.9" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="777.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (191 samples, 0.31%)</title><rect x="607.8" y="1253" width="3.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="610.82" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (6 samples, 0.01%)</title><rect x="1025.0" y="549" width="0.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1027.99" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check (6 samples, 0.01%)</title><rect x="552.9" y="1269" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (8 samples, 0.01%)</title><rect x="500.9" y="1109" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.02%)</title><rect x="640.2" y="1205" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="643.23" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (16 samples, 0.03%)</title><rect x="585.1" y="1045" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="588.12" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (26 samples, 0.04%)</title><rect x="975.5" y="549" width="0.5" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="978.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (2,730 samples, 4.45%)</title><rect x="844.0" y="517" width="52.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="846.98" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (33 samples, 0.05%)</title><rect x="1159.5" y="933" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.53" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (57 samples, 0.09%)</title><rect x="563.3" y="1061" width="1.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::get (13 samples, 0.02%)</title><rect x="66.2" y="1253" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="69.17" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_slow_exit_work (8 samples, 0.01%)</title><rect x="432.8" y="1205" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="435.85" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (582 samples, 0.95%)</title><rect x="932.9" y="533" width="11.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="935.85" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (7 samples, 0.01%)</title><rect x="607.2" y="1157" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (140 samples, 0.23%)</title><rect x="1129.2" y="597" width="2.6" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1132.16" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder:::encode (24 samples, 0.04%)</title><rect x="495.9" y="1253" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="498.88" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (72 samples, 0.12%)</title><rect x="19.1" y="1189" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="22.14" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (27 samples, 0.04%)</title><rect x="1052.0" y="389" width="0.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1055.04" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$929/1592650796:::test (6 samples, 0.01%)</title><rect x="984.1" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="987.08" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (15 samples, 0.02%)</title><rect x="18.3" y="1493" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (6 samples, 0.01%)</title><rect x="1022.4" y="405" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (37 samples, 0.06%)</title><rect x="1164.4" y="1205" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1167.42" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (271 samples, 0.44%)</title><rect x="545.4" y="1253" width="5.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="548.44" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/ratelimiter/OperationRateLimiterPlugin:::getRateLimiter (8 samples, 0.01%)</title><rect x="694.3" y="789" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="697.30" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (10 samples, 0.02%)</title><rect x="704.0" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="706.96" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>redis/clients/jedis/Connection:::getStatusCodeReply (57 samples, 0.09%)</title><rect x="563.3" y="1301" width="1.1" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (33 samples, 0.05%)</title><rect x="683.8" y="837" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="686.80" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (19 samples, 0.03%)</title><rect x="1073.6" y="373" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1076.56" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (7 samples, 0.01%)</title><rect x="1073.4" y="405" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="1076.43" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (601 samples, 0.98%)</title><rect x="471.0" y="1109" width="11.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="473.97" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (152 samples, 0.25%)</title><rect x="782.1" y="549" width="2.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="785.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (270 samples, 0.44%)</title><rect x="545.5" y="1189" width="5.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="548.46" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (107 samples, 0.17%)</title><rect x="561.2" y="1109" width="2.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="564.17" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (9 samples, 0.01%)</title><rect x="1108.4" y="357" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (16 samples, 0.03%)</title><rect x="1170.6" y="1077" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1173.57" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (369 samples, 0.60%)</title><rect x="1167.8" y="1253" width="7.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1170.78" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (100 samples, 0.16%)</title><rect x="561.3" y="1061" width="1.9" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="564.31" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (6 samples, 0.01%)</title><rect x="1022.4" y="373" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (43 samples, 0.07%)</title><rect x="103.4" y="1061" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectOutputStream:::writeObject0 (6 samples, 0.01%)</title><rect x="44.4" y="1061" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (7 samples, 0.01%)</title><rect x="467.2" y="1141" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putMapEntries (11 samples, 0.02%)</title><rect x="1136.7" y="677" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1139.72" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (1,503 samples, 2.45%)</title><rect x="739.5" y="565" width="28.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="742.53" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/codecs/AbstractMessageWriter:::write (88 samples, 0.14%)</title><rect x="61.1" y="1237" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="64.05" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (9 samples, 0.01%)</title><rect x="1178.0" y="1189" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/action/search/SearchResponse:::innerFromXContent (456 samples, 0.74%)</title><rect x="1111.4" y="613" width="8.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1114.38" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler:::connectionAllocated (69 samples, 0.11%)</title><rect x="1106.7" y="517" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1109.71" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController:::doPrivileged (36 samples, 0.06%)</title><rect x="638.1" y="1317" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.10" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (38 samples, 0.06%)</title><rect x="778.9" y="357" width="0.8" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="781.92" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (9 samples, 0.01%)</title><rect x="1178.0" y="1173" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (13 samples, 0.02%)</title><rect x="617.5" y="1013" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="620.48" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (408 samples, 0.67%)</title><rect x="67.9" y="1173" width="7.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="70.88" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/util/SimpleInputBuffer:::consumeContent (97 samples, 0.16%)</title><rect x="82.6" y="1269" width="1.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="85.64" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1,149 samples, 1.87%)</title><rect x="614.8" y="1189" width="22.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="617.80" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/metrics/aggregator/MetricsAggregatorFactory$OutputTask:::output (8 samples, 0.01%)</title><rect x="552.7" y="1333" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="555.67" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::initNonProxy (8 samples, 0.01%)</title><rect x="1103.6" y="437" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1106.59" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (27 samples, 0.04%)</title><rect x="83.7" y="997" width="0.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="86.67" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::tryAcquireSharedNanos (847 samples, 1.38%)</title><rect x="1028.9" y="613" width="16.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1031.92" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/TokenParser:::parseToken (14 samples, 0.02%)</title><rect x="80.3" y="1253" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="83.25" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (337 samples, 0.55%)</title><rect x="600.5" y="1253" width="6.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="603.55" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (23 samples, 0.04%)</title><rect x="554.7" y="1205" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$836/157333556:::test (17 samples, 0.03%)</title><rect x="981.0" y="613" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="984.02" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (15 samples, 0.02%)</title><rect x="498.1" y="1221" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="501.06" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (85 samples, 0.14%)</title><rect x="14.2" y="1413" width="1.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (6 samples, 0.01%)</title><rect x="552.9" y="1029" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (6 samples, 0.01%)</title><rect x="1176.7" y="1381" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (6 samples, 0.01%)</title><rect x="1075.1" y="341" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1078.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (23 samples, 0.04%)</title><rect x="1162.4" y="1141" width="0.5" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1165.42" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_start (7 samples, 0.01%)</title><rect x="995.3" y="293" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="998.29" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (29 samples, 0.05%)</title><rect x="17.7" y="1349" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CLoggingLogger$FreewayLogSender:::send (28 samples, 0.05%)</title><rect x="1070.1" y="661" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.06" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (10 samples, 0.02%)</title><rect x="431.8" y="1109" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="434.83" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (16,454 samples, 26.82%)</title><rect x="110.2" y="1125" width="316.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="113.22" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::computeIfAbsent (6 samples, 0.01%)</title><rect x="678.8" y="933" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="681.82" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (7 samples, 0.01%)</title><rect x="89.8" y="1061" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="92.83" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (68 samples, 0.11%)</title><rect x="1074.0" y="373" width="1.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1076.97" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (9 samples, 0.01%)</title><rect x="943.3" y="501" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="946.30" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (97 samples, 0.16%)</title><rect x="1057.8" y="549" width="1.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1060.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (448 samples, 0.73%)</title><rect x="483.9" y="1125" width="8.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="486.94" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::selectNodes (6 samples, 0.01%)</title><rect x="1098.4" y="597" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1101.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getConstructor0 (7 samples, 0.01%)</title><rect x="702.2" y="629" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="705.23" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/Reference:::tryHandlePending (7 samples, 0.01%)</title><rect x="1167.2" y="1349" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_timedwait_tid (13 samples, 0.02%)</title><rect x="640.2" y="1221" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="643.21" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (10 samples, 0.02%)</title><rect x="521.3" y="1317" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="524.26" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (25 samples, 0.04%)</title><rect x="17.8" y="1317" width="0.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="20.77" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (22 samples, 0.04%)</title><rect x="1158.8" y="1157" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1161.76" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="469.8" y="1189" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (35 samples, 0.06%)</title><rect x="523.7" y="1141" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (19 samples, 0.03%)</title><rect x="499.8" y="1061" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="502.79" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_start (41 samples, 0.07%)</title><rect x="132.8" y="981" width="0.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="135.76" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::getTextCharacters (14 samples, 0.02%)</title><rect x="866.4" y="501" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="869.45" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (7 samples, 0.01%)</title><rect x="524.7" y="1077" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="527.68" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/execchain/RetryExec:::execute (6 samples, 0.01%)</title><rect x="522.2" y="1141" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (35 samples, 0.06%)</title><rect x="1058.9" y="533" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1061.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (9 samples, 0.01%)</title><rect x="972.4" y="549" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="975.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/$Gson$Types:::resolve (10 samples, 0.02%)</title><rect x="709.5" y="565" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="712.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (8 samples, 0.01%)</title><rect x="63.4" y="1093" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="66.40" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>objArrayOopDesc::obj_at_put (7 samples, 0.01%)</title><rect x="714.5" y="293" width="0.2" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="717.54" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (16 samples, 0.03%)</title><rect x="1102.1" y="421" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1105.11" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentEvent (23 samples, 0.04%)</title><rect x="788.7" y="533" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="791.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_accept (343 samples, 0.56%)</title><rect x="567.1" y="1253" width="6.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="570.08" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager$TransactionHelper:::validate (28 samples, 0.05%)</title><rect x="691.8" y="789" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="694.84" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringCoding:::encode (6 samples, 0.01%)</title><rect x="1023.8" y="645" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.76" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1,354 samples, 2.21%)</title><rect x="798.5" y="325" width="26.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="801.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/InputStreamReader:::read (8 samples, 0.01%)</title><rect x="500.9" y="1237" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (62 samples, 0.10%)</title><rect x="1175.3" y="1189" width="1.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1178.34" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager:::add (7 samples, 0.01%)</title><rect x="732.5" y="629" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="735.53" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (16,534 samples, 26.95%)</title><rect x="108.7" y="1141" width="318.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="111.68" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule_hrtimeout_range_clock</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (1,672 samples, 2.73%)</title><rect x="639.7" y="1253" width="32.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="642.69" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/AbstractHttp11Processor:::action (96 samples, 0.16%)</title><rect x="1158.5" y="1237" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1161.49" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_hrtimer_base.isra.21 (9 samples, 0.01%)</title><rect x="133.4" y="933" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="136.36" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (52 samples, 0.08%)</title><rect x="557.3" y="1093" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="560.27" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (458 samples, 0.75%)</title><rect x="483.8" y="1157" width="8.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="486.79" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::connect (6 samples, 0.01%)</title><rect x="434.4" y="1269" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (6 samples, 0.01%)</title><rect x="565.1" y="1317" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="568.08" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (24 samples, 0.04%)</title><rect x="719.4" y="405" width="0.4" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="722.35" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Unpark (37 samples, 0.06%)</title><rect x="683.8" y="869" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="686.80" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$HashIterator:::remove (7 samples, 0.01%)</title><rect x="574.4" y="1333" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="577.41" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (186 samples, 0.30%)</title><rect x="705.3" y="485" width="3.6" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="708.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_try_to_cancel (17 samples, 0.03%)</title><rect x="109.9" y="1125" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="112.87" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (12 samples, 0.02%)</title><rect x="521.6" y="1029" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="524.58" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (455 samples, 0.74%)</title><rect x="30.7" y="1189" width="8.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="33.72" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (17 samples, 0.03%)</title><rect x="1147.0" y="69" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1150.05" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readClassDesc (130 samples, 0.21%)</title><rect x="828.8" y="485" width="2.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="831.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (6 samples, 0.01%)</title><rect x="434.4" y="1237" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/TokenParser:::parseValue (8 samples, 0.01%)</title><rect x="1105.8" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1108.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_slow_exit_work (6 samples, 0.01%)</title><rect x="90.0" y="1157" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="93.04" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (12 samples, 0.02%)</title><rect x="607.5" y="1109" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (39 samples, 0.06%)</title><rect x="103.5" y="981" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="106.47" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter$FormatSpecifier:::print (6 samples, 0.01%)</title><rect x="1023.2" y="613" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_execute_actions (13 samples, 0.02%)</title><rect x="16.7" y="1029" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="19.67" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (20 samples, 0.03%)</title><rect x="1159.6" y="805" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1162.65" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern:::compile (11 samples, 0.02%)</title><rect x="837.7" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="840.69" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/AbstractHttp11Processor:::prepareResponse (39 samples, 0.06%)</title><rect x="1144.2" y="709" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1147.16" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (13 samples, 0.02%)</title><rect x="105.6" y="1157" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="108.56" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.01%)</title><rect x="483.4" y="1189" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="486.38" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (17 samples, 0.03%)</title><rect x="467.4" y="1157" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator:::close (7 samples, 0.01%)</title><rect x="791.3" y="549" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="794.31" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (8 samples, 0.01%)</title><rect x="907.6" y="549" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="910.59" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check (6 samples, 0.01%)</title><rect x="469.8" y="1253" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (10 samples, 0.02%)</title><rect x="92.7" y="1061" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="95.70" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (14 samples, 0.02%)</title><rect x="1178.1" y="1189" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_flow_tbl_lookup_stats (10 samples, 0.02%)</title><rect x="520.0" y="757" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="523.01" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectedHeap::iterate_dirty_card_closure (76 samples, 0.12%)</title><rect x="24.4" y="1397" width="1.5" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="27.43" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/RouteSpecificPool:::getFree (7 samples, 0.01%)</title><rect x="1108.2" y="549" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1111.15" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::socketRead0 (8 samples, 0.01%)</title><rect x="600.0" y="1205" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/mysql/jdbc/AbandonedConnectionCleanupThread:::run (364 samples, 0.59%)</title><rect x="600.2" y="1365" width="7.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="603.22" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (7 samples, 0.01%)</title><rect x="638.0" y="1221" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1,463 samples, 2.38%)</title><rect x="740.2" y="485" width="28.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="743.22" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeStartObject (21 samples, 0.03%)</title><rect x="865.7" y="501" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="868.66" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (15 samples, 0.02%)</title><rect x="105.2" y="1157" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="108.16" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (11 samples, 0.02%)</title><rect x="1166.5" y="1029" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/parser/SignatureParser:::parseIdentifier (13 samples, 0.02%)</title><rect x="722.0" y="517" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="724.97" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::write0 (103 samples, 0.17%)</title><rect x="1146.3" y="661" width="2.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1149.31" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>credis/java/client/pool/impl/CRedisJedisFactory:::validateObject (57 samples, 0.09%)</title><rect x="563.3" y="1317" width="1.1" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (638 samples, 1.04%)</title><rect x="470.4" y="1189" width="12.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="473.44" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (150 samples, 0.24%)</title><rect x="1116.6" y="549" width="2.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1119.63" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_send (65 samples, 0.11%)</title><rect x="70.9" y="677" width="1.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="73.86" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/conn/PoolingNHttpClientConnectionManager$InternalPoolEntryCallback:::completed (67 samples, 0.11%)</title><rect x="834.8" y="517" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="837.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (8 samples, 0.01%)</title><rect x="1066.7" y="565" width="0.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1069.66" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupTail:::match (6 samples, 0.01%)</title><rect x="991.4" y="533" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.43" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/util/concurrent/SingleThreadEventExecutor:::execute (35 samples, 0.06%)</title><rect x="499.6" y="1285" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="502.60" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/InternalNioOutputBuffer:::endRequest (93 samples, 0.15%)</title><rect x="1158.5" y="1221" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1161.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/cat/ServiceCatTransaction:::&lt;init&gt; (34 samples, 0.06%)</title><rect x="688.3" y="821" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="691.26" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReferencePipeline$3$1:::accept (6 samples, 0.01%)</title><rect x="977.1" y="645" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="980.09" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::unpark (58 samples, 0.09%)</title><rect x="575.9" y="1237" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="578.91" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (53 samples, 0.09%)</title><rect x="557.2" y="1189" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="560.25" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (79 samples, 0.13%)</title><rect x="19.0" y="1285" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="22.02" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (24,288 samples, 39.59%)</title><rect x="685.7" y="933" width="467.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="688.69" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFil..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (57 samples, 0.09%)</title><rect x="563.3" y="1205" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConcurrentG1RefineThread::run (158 samples, 0.26%)</title><rect x="19.0" y="1461" width="3.0" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="21.96" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_start (9 samples, 0.01%)</title><rect x="617.5" y="981" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="620.51" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_execute_actions (12 samples, 0.02%)</title><rect x="519.8" y="757" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="522.78" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (10 samples, 0.02%)</title><rect x="568.1" y="1093" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="571.14" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::wait (115 samples, 0.19%)</title><rect x="561.1" y="1333" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="564.06" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>veth_xmit (6 samples, 0.01%)</title><rect x="520.5" y="885" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="523.51" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (24 samples, 0.04%)</title><rect x="835.3" y="261" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="838.32" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (454 samples, 0.74%)</title><rect x="30.7" y="1173" width="8.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (226 samples, 0.37%)</title><rect x="39.6" y="1141" width="4.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="42.59" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_forward_skb (9 samples, 0.01%)</title><rect x="74.3" y="837" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="77.33" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (625 samples, 1.02%)</title><rect x="470.6" y="1141" width="12.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (23 samples, 0.04%)</title><rect x="554.7" y="1109" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::close (55 samples, 0.09%)</title><rect x="1165.3" y="1285" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1168.28" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (6 samples, 0.01%)</title><rect x="641.4" y="1029" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="644.37" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (6 samples, 0.01%)</title><rect x="714.8" y="293" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="717.79" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/Strings:::toString (78 samples, 0.13%)</title><rect x="1131.9" y="661" width="1.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1134.91" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/threads/TaskQueue:::offer (83 samples, 0.14%)</title><rect x="575.5" y="1301" width="1.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="578.46" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (43 samples, 0.07%)</title><rect x="103.4" y="1141" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (35 samples, 0.06%)</title><rect x="523.7" y="1189" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer:::findSymbol (22 samples, 0.04%)</title><rect x="932.4" y="533" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="935.43" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (11 samples, 0.02%)</title><rect x="30.4" y="997" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (6 samples, 0.01%)</title><rect x="1130.7" y="549" width="0.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1133.71" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (9 samples, 0.01%)</title><rect x="865.4" y="421" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="868.41" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (33 samples, 0.05%)</title><rect x="683.8" y="853" width="0.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="686.80" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (17 samples, 0.03%)</title><rect x="580.8" y="1125" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="583.75" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (1,199 samples, 1.95%)</title><rect x="614.0" y="1269" width="23.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="616.99" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (88 samples, 0.14%)</title><rect x="553.0" y="1221" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="555.98" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (7 samples, 0.01%)</title><rect x="1167.2" y="1221" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_net_SocketInputStream_socketRead0 (24 samples, 0.04%)</title><rect x="638.2" y="1125" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::tryAcquireSharedNanos (1,511 samples, 2.46%)</title><rect x="739.4" y="597" width="29.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="742.38" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__statvfs_getflags (7 samples, 0.01%)</title><rect x="467.2" y="1205" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_event_new_data_sent (17 samples, 0.03%)</title><rect x="74.9" y="997" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="77.90" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (11 samples, 0.02%)</title><rect x="30.4" y="949" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (14 samples, 0.02%)</title><rect x="545.5" y="1093" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="548.51" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (7 samples, 0.01%)</title><rect x="429.0" y="1125" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (536 samples, 0.87%)</title><rect x="1179.2" y="1365" width="10.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1182.17" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (57 samples, 0.09%)</title><rect x="563.3" y="1077" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (14 samples, 0.02%)</title><rect x="105.2" y="1077" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="108.18" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (14 samples, 0.02%)</title><rect x="1178.1" y="1237" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (11 samples, 0.02%)</title><rect x="112.3" y="1045" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="115.30" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (39 samples, 0.06%)</title><rect x="1164.4" y="1237" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1167.42" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/connector/CoyoteAdapter:::parsePathParameters (14 samples, 0.02%)</title><rect x="675.1" y="1221" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="678.09" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (17 samples, 0.03%)</title><rect x="580.8" y="1109" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="583.75" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (32 samples, 0.05%)</title><rect x="73.9" y="869" width="0.6" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="76.88" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::drain (6 samples, 0.01%)</title><rect x="1174.9" y="1317" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1177.90" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getEnclosingMethod0 (7 samples, 0.01%)</title><rect x="703.6" y="597" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="706.62" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (32 samples, 0.05%)</title><rect x="778.9" y="325" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="781.94" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_execute_actions (12 samples, 0.02%)</title><rect x="16.7" y="1013" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="19.69" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (6 samples, 0.01%)</title><rect x="925.8" y="485" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="928.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_try_to_cancel (6 samples, 0.01%)</title><rect x="1096.5" y="437" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1099.53" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (68 samples, 0.11%)</title><rect x="1175.2" y="1285" width="1.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::initNonProxy (6 samples, 0.01%)</title><rect x="831.8" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="834.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (8 samples, 0.01%)</title><rect x="975.0" y="549" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="978.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ByteArrayOutputStream:::write (16 samples, 0.03%)</title><rect x="865.1" y="485" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="868.06" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlEncode (27 samples, 0.04%)</title><rect x="1097.4" y="581" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1100.44" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (22 samples, 0.04%)</title><rect x="17.8" y="1253" width="0.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="20.83" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (7 samples, 0.01%)</title><rect x="641.9" y="949" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="644.93" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>credis/java/client/monitor/message/impl/DashboardMetric:::doWriteData (23 samples, 0.04%)</title><rect x="989.2" y="613" width="0.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="992.19" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/StatusInfoCollector:::getBashCommandInfo (10 samples, 0.02%)</title><rect x="500.7" y="1285" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="503.67" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/TypeAdapters$30:::create (46 samples, 0.07%)</title><rect x="715.1" y="437" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="718.06" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (12 samples, 0.02%)</title><rect x="607.5" y="1157" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>____fput (39 samples, 0.06%)</title><rect x="1165.5" y="1125" width="0.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1168.51" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="739.9" y="501" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="742.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (88 samples, 0.14%)</title><rect x="94.4" y="837" width="1.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="97.43" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::wait (79 samples, 0.13%)</title><rect x="555.2" y="1333" width="1.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcf_action_exec (8 samples, 0.01%)</title><rect x="73.2" y="741" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="76.19" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1154:::invoke (13 samples, 0.02%)</title><rect x="955.6" y="533" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="958.59" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (7 samples, 0.01%)</title><rect x="1048.5" y="421" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1051.52" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Field:::copy (7 samples, 0.01%)</title><rect x="716.3" y="469" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="719.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (8 samples, 0.01%)</title><rect x="523.0" y="1205" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (7 samples, 0.01%)</title><rect x="1029.8" y="325" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1032.80" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>masked_flow_lookup (6 samples, 0.01%)</title><rect x="16.9" y="1013" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="19.94" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (7 samples, 0.01%)</title><rect x="951.6" y="501" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="954.57" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (6 samples, 0.01%)</title><rect x="519.3" y="1077" width="0.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="522.29" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (19 samples, 0.03%)</title><rect x="787.8" y="565" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="790.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="865.4" y="437" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="868.41" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/builder/SearchSourceBuilder:::toXContent (11 samples, 0.02%)</title><rect x="1054.0" y="597" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1056.96" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (42 samples, 0.07%)</title><rect x="519.6" y="901" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="522.64" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (169 samples, 0.28%)</title><rect x="1171.1" y="1077" width="3.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1174.11" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_poll (7 samples, 0.01%)</title><rect x="467.2" y="1157" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (21 samples, 0.03%)</title><rect x="1158.8" y="1093" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1161.78" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (72 samples, 0.12%)</title><rect x="26.3" y="1237" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="29.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (7 samples, 0.01%)</title><rect x="640.1" y="1045" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (1,631 samples, 2.66%)</title><rect x="434.9" y="1301" width="31.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.87" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readObject0 (64 samples, 0.10%)</title><rect x="1103.5" y="469" width="1.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1106.53" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (21 samples, 0.03%)</title><rect x="523.3" y="1109" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="18.6" y="1477" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (70 samples, 0.11%)</title><rect x="26.4" y="1205" width="1.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="29.37" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (39 samples, 0.06%)</title><rect x="113.2" y="997" width="0.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="116.20" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::readNonProxy (13 samples, 0.02%)</title><rect x="832.0" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="834.96" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1,524 samples, 2.48%)</title><rect x="436.5" y="1029" width="29.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="439.46" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (705 samples, 1.15%)</title><rect x="120.6" y="1045" width="13.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="123.57" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_rq_h_load (6 samples, 0.01%)</title><rect x="1052.1" y="213" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1055.10" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/servlet/http/HttpServletResponseWrapper:::setHeader (7 samples, 0.01%)</title><rect x="1150.1" y="805" width="0.1" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1153.10" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (6 samples, 0.01%)</title><rect x="885.8" y="469" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="888.78" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (453 samples, 0.74%)</title><rect x="483.8" y="1141" width="8.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="486.84" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorWait (84 samples, 0.14%)</title><rect x="551.0" y="1317" width="1.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.01%)</title><rect x="523.0" y="1061" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_finishAndReturnString (8 samples, 0.01%)</title><rect x="788.2" y="549" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="791.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler$1:::completed (64 samples, 0.10%)</title><rect x="834.9" y="501" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="837.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (229 samples, 0.37%)</title><rect x="39.5" y="1253" width="4.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="42.53" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (6 samples, 0.01%)</title><rect x="87.1" y="1141" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (9 samples, 0.01%)</title><rect x="995.3" y="309" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="998.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::search (2,748 samples, 4.48%)</title><rect x="739.1" y="645" width="52.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="742.11" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (91 samples, 0.15%)</title><rect x="501.5" y="1045" width="1.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="504.46" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_flow_tbl_lookup_stats (25 samples, 0.04%)</title><rect x="95.3" y="741" width="0.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="98.33" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (16 samples, 0.03%)</title><rect x="63.4" y="1109" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="66.38" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (24,815 samples, 40.45%)</title><rect x="677.7" y="1029" width="477.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="680.68" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (6 samples, 0.01%)</title><rect x="775.8" y="357" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="778.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (11 samples, 0.02%)</title><rect x="100.0" y="1093" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ArrayBlockingQueue:::offer (45 samples, 0.07%)</title><rect x="683.7" y="917" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="686.67" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (15 samples, 0.02%)</title><rect x="521.5" y="1237" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (7 samples, 0.01%)</title><rect x="1029.8" y="293" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1032.80" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/model/entity/StatusInfo:::accept (39 samples, 0.06%)</title><rect x="500.6" y="1317" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="503.64" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_accept4 (342 samples, 0.56%)</title><rect x="567.1" y="1237" width="6.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="570.08" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (27 samples, 0.04%)</title><rect x="715.3" y="421" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="718.25" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (6 samples, 0.01%)</title><rect x="608.3" y="1029" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="611.30" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/GregorianCalendar:::computeFields (6 samples, 0.01%)</title><rect x="1149.9" y="773" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.91" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (9 samples, 0.01%)</title><rect x="521.3" y="1205" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GangWorker::loop (304 samples, 0.50%)</title><rect x="22.0" y="1461" width="5.9" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="25.00" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (24 samples, 0.04%)</title><rect x="1162.4" y="1189" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1165.40" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/IdsQueryBuilder:::doXContent (16 samples, 0.03%)</title><rect x="838.9" y="501" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="841.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (8 samples, 0.01%)</title><rect x="18.6" y="1413" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/ContentFormatConfig:::getFormatterFromRequest (8 samples, 0.01%)</title><rect x="691.6" y="821" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="694.55" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_dp_process_packet (8 samples, 0.01%)</title><rect x="1165.9" y="725" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1168.90" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (43 samples, 0.07%)</title><rect x="576.1" y="1141" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="579.12" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::read (81 samples, 0.13%)</title><rect x="82.9" y="1221" width="1.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="85.92" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parker::park (9 samples, 0.01%)</title><rect x="1072.0" y="549" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1075.01" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (72 samples, 0.12%)</title><rect x="28.4" y="1221" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="31.43" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (24 samples, 0.04%)</title><rect x="779.0" y="261" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="782.04" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (52 samples, 0.08%)</title><rect x="557.3" y="1077" width="1.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="560.27" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/UnixFileSystem:::getBooleanAttributes0 (8 samples, 0.01%)</title><rect x="521.9" y="1269" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="524.93" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (29 samples, 0.05%)</title><rect x="1163.2" y="1141" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1166.20" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/ClientLogSender$1:::run (54 samples, 0.09%)</title><rect x="557.2" y="1333" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="560.23" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultTransactionAggregator:::sendTransactionData (26 samples, 0.04%)</title><rect x="467.7" y="1301" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="470.70" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (23 samples, 0.04%)</title><rect x="554.7" y="1077" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (10 samples, 0.02%)</title><rect x="16.7" y="965" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="19.73" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (6 samples, 0.01%)</title><rect x="1111.2" y="613" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1114.19" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check (6 samples, 0.01%)</title><rect x="1022.4" y="501" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (27 samples, 0.04%)</title><rect x="1145.4" y="533" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1148.37" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/websocket/server/WsFilter:::doFilter (24,287 samples, 39.59%)</title><rect x="685.7" y="917" width="467.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="688.71" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/tomcat/websocket/server/WsFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (15 samples, 0.02%)</title><rect x="521.5" y="1285" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (12 samples, 0.02%)</title><rect x="105.2" y="1061" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="108.22" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (7 samples, 0.01%)</title><rect x="600.1" y="981" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::run (187 samples, 0.30%)</title><rect x="1175.2" y="1461" width="3.6" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1178.21" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (113 samples, 0.18%)</title><rect x="561.1" y="1157" width="2.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (16 samples, 0.03%)</title><rect x="467.9" y="1061" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="470.88" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/ucs/client/heartbeat/HeartbeatReporter:::report (7 samples, 0.01%)</title><rect x="556.8" y="1317" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="559.84" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/http/impl/execchain/MainClientExec:::execute (12 samples, 0.02%)</title><rect x="600.0" y="1269" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="602.97" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager:::add (15 samples, 0.02%)</title><rect x="696.3" y="789" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="699.32" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (78 samples, 0.13%)</title><rect x="555.2" y="1141" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="558.23" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (7 samples, 0.01%)</title><rect x="638.0" y="1013" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,514 samples, 2.47%)</title><rect x="993.3" y="549" width="29.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="996.27" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (18 samples, 0.03%)</title><rect x="467.8" y="1093" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (16 samples, 0.03%)</title><rect x="790.2" y="501" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="793.16" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DataUploader:::run (65 samples, 0.11%)</title><rect x="467.3" y="1333" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="470.32" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (6 samples, 0.01%)</title><rect x="1046.1" y="581" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1049.09" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (351 samples, 0.57%)</title><rect x="1168.1" y="1205" width="6.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1171.05" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager$TransactionHelper:::validate (9 samples, 0.01%)</title><rect x="679.4" y="917" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="682.38" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.11 (8 samples, 0.01%)</title><rect x="503.8" y="1157" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="506.85" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (33 samples, 0.05%)</title><rect x="466.4" y="1093" width="0.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="469.36" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (53 samples, 0.09%)</title><rect x="974.2" y="565" width="1.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="977.25" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (10 samples, 0.02%)</title><rect x="796.6" y="261" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="799.62" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (85 samples, 0.14%)</title><rect x="14.2" y="1429" width="1.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (38 samples, 0.06%)</title><rect x="904.5" y="597" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="907.46" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (146 samples, 0.24%)</title><rect x="1024.2" y="581" width="2.8" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1027.22" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::get (7 samples, 0.01%)</title><rect x="64.0" y="1237" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="67.03" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1,161 samples, 1.89%)</title><rect x="1073.9" y="389" width="22.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1076.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/ctrip/hystrix/chystrix/CHystrixCommandExecutor:::execute (6 samples, 0.01%)</title><rect x="522.2" y="1269" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/server/UnicastServerRef:::dispatch (12 samples, 0.02%)</title><rect x="44.4" y="1077" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vframeStreamCommon::skip_reflection_related_frames (6 samples, 0.01%)</title><rect x="1049.1" y="469" width="0.1" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1052.11" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putMapEntries (10 samples, 0.02%)</title><rect x="825.4" y="581" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="828.40" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (52 samples, 0.08%)</title><rect x="16.5" y="1221" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="19.52" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (10 samples, 0.02%)</title><rect x="993.9" y="389" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="996.89" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (40 samples, 0.07%)</title><rect x="16.6" y="1205" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="19.56" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (17 samples, 0.03%)</title><rect x="796.5" y="357" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="799.49" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (1,393 samples, 2.27%)</title><rect x="644.4" y="997" width="26.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="647.45" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (842 samples, 1.37%)</title><rect x="1029.0" y="597" width="16.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1032.01" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/BaijiServiceHost:::processRequest (24,167 samples, 39.40%)</title><rect x="686.5" y="869" width="464.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="689.46" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/server/BaijiServiceHost:::processRequest</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/utils/JsonUtil:::toJsonString (139 samples, 0.23%)</title><rect x="1133.4" y="677" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1136.45" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.01%)</title><rect x="18.6" y="1349" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/codecs/LengthDelimitedEncoder:::write (12 samples, 0.02%)</title><rect x="54.6" y="1253" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="57.65" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BranchConn:::match (8 samples, 0.01%)</title><rect x="695.9" y="661" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.90" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (34 samples, 0.06%)</title><rect x="466.3" y="1205" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (91 samples, 0.15%)</title><rect x="1169.3" y="1093" width="1.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.26" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (55 samples, 0.09%)</title><rect x="519.6" y="949" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="522.56" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/plugin/ratelimiter/IPRateLimiterPlugin:::getRequestIdentity (7 samples, 0.01%)</title><rect x="693.9" y="789" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="696.88" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (18 samples, 0.03%)</title><rect x="1159.7" y="741" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1162.68" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (7 samples, 0.01%)</title><rect x="638.0" y="1173" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (454 samples, 0.74%)</title><rect x="30.7" y="1157" width="8.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::process (253 samples, 0.41%)</title><rect x="1100.0" y="565" width="4.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1103.01" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (314 samples, 0.51%)</title><rect x="69.2" y="1029" width="6.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="72.21" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,153 samples, 1.88%)</title><rect x="614.8" y="1221" width="22.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="617.78" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (54 samples, 0.09%)</title><rect x="557.2" y="1285" width="1.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="560.23" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (8 samples, 0.01%)</title><rect x="83.4" y="997" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="86.44" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::execute (11 samples, 0.02%)</title><rect x="1166.5" y="1269" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/parser/SignatureParser:::parseClassTypeSignature (9 samples, 0.01%)</title><rect x="716.6" y="453" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="719.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupHead:::match (12 samples, 0.02%)</title><rect x="991.3" y="565" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.35" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (9 samples, 0.01%)</title><rect x="521.3" y="1093" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (14 samples, 0.02%)</title><rect x="1158.8" y="933" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1161.84" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::lease (107 samples, 0.17%)</title><rect x="1106.5" y="581" width="2.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1109.50" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (79 samples, 0.13%)</title><rect x="555.2" y="1269" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::cancelledKey (54 samples, 0.09%)</title><rect x="1165.3" y="1269" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1168.30" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (8 samples, 0.01%)</title><rect x="113.0" y="1013" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="115.99" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::createBoundField (196 samples, 0.32%)</title><rect x="712.6" y="469" width="3.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (68 samples, 0.11%)</title><rect x="1074.0" y="357" width="1.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1076.97" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.01%)</title><rect x="1176.7" y="1253" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (222 samples, 0.36%)</title><rect x="39.7" y="965" width="4.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="42.66" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (11 samples, 0.02%)</title><rect x="585.1" y="981" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="588.12" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (17 samples, 0.03%)</title><rect x="1052.1" y="309" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (337 samples, 0.55%)</title><rect x="600.5" y="1237" width="6.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="603.55" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeString (10 samples, 0.02%)</title><rect x="498.7" y="1285" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="501.73" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/TokenParser:::parseToken (6 samples, 0.01%)</title><rect x="1105.7" y="533" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1108.73" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_execute_actions (28 samples, 0.05%)</title><rect x="94.8" y="741" width="0.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="97.79" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectMapper:::_readMapAndClose (2,867 samples, 4.67%)</title><rect x="904.0" y="629" width="55.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="907.02" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.37 (7 samples, 0.01%)</title><rect x="68.8" y="1013" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="71.82" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (12 samples, 0.02%)</title><rect x="1164.6" y="981" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1167.65" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (159 samples, 0.26%)</title><rect x="582.4" y="1093" width="3.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="585.41" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager$TransactionHelper:::validate (10 samples, 0.02%)</title><rect x="697.8" y="789" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="700.81" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (53 samples, 0.09%)</title><rect x="1107.0" y="453" width="1.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1109.98" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (504 samples, 0.82%)</title><rect x="525.1" y="1045" width="9.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (54 samples, 0.09%)</title><rect x="557.2" y="1301" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="560.23" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (6 samples, 0.01%)</title><rect x="566.8" y="1253" width="0.1" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="569.75" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="434.4" y="1221" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (6 samples, 0.01%)</title><rect x="1176.7" y="1397" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::lease (97 samples, 0.16%)</title><rect x="778.3" y="565" width="1.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="781.33" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.02%)</title><rect x="1166.5" y="1205" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readClassDesc (64 samples, 0.10%)</title><rect x="775.3" y="437" width="1.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.25" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (25 samples, 0.04%)</title><rect x="961.6" y="517" width="0.5" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="964.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (52 samples, 0.08%)</title><rect x="1159.3" y="1125" width="1.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1162.28" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readClassDesc (42 samples, 0.07%)</title><rect x="1049.7" y="453" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.71" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/handler/codec/http/HttpClientCodec:::handleUpstream (17 samples, 0.03%)</title><rect x="30.3" y="1205" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_poll (10 samples, 0.02%)</title><rect x="578.8" y="1189" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="581.77" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (11 samples, 0.02%)</title><rect x="100.0" y="1157" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_sun_nio_ch_ServerSocketChannelImpl_accept0 (56 samples, 0.09%)</title><rect x="565.9" y="1301" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="568.94" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::excludeClass (8 samples, 0.01%)</title><rect x="712.7" y="421" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.68" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (13 samples, 0.02%)</title><rect x="607.5" y="1237" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="610.49" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (11 samples, 0.02%)</title><rect x="30.4" y="901" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/handler/stream/ChunkedWriteHandler:::handleUpstream (15 samples, 0.02%)</title><rect x="30.4" y="1125" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (25 samples, 0.04%)</title><rect x="1065.4" y="629" width="0.5" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1068.45" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_poll (24 samples, 0.04%)</title><rect x="638.2" y="1061" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (6 samples, 0.01%)</title><rect x="960.3" y="533" width="0.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="963.30" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (114 samples, 0.19%)</title><rect x="642.2" y="1029" width="2.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="645.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (16 samples, 0.03%)</title><rect x="1067.9" y="549" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1070.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (267 samples, 0.44%)</title><rect x="545.5" y="1125" width="5.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="548.49" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/System:::identityHashCode (13 samples, 0.02%)</title><rect x="783.6" y="485" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="786.64" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (15 samples, 0.02%)</title><rect x="1052.1" y="245" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (11 samples, 0.02%)</title><rect x="1166.5" y="1157" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (8 samples, 0.01%)</title><rect x="695.9" y="645" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.90" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (9 samples, 0.01%)</title><rect x="84.2" y="949" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="87.21" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream:::read (8 samples, 0.01%)</title><rect x="500.9" y="1221" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (25 samples, 0.04%)</title><rect x="975.6" y="533" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="978.56" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>masked_flow_lookup (37 samples, 0.06%)</title><rect x="72.2" y="709" width="0.8" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="75.25" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1,185 samples, 1.93%)</title><rect x="1073.6" y="405" width="22.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1076.56" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultLocalAggregator:::analyzerProcessTransaction (82 samples, 0.13%)</title><rect x="681.4" y="901" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="684.40" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::wait (85 samples, 0.14%)</title><rect x="551.0" y="1333" width="1.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg_locked (12 samples, 0.02%)</title><rect x="607.5" y="1093" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (13 samples, 0.02%)</title><rect x="637.7" y="1285" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="640.71" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_slow_exit_work (6 samples, 0.01%)</title><rect x="64.6" y="1173" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="67.59" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (7 samples, 0.01%)</title><rect x="971.1" y="565" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="974.05" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_dp_process_packet (22 samples, 0.04%)</title><rect x="16.7" y="1045" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="19.66" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (13 samples, 0.02%)</title><rect x="105.6" y="1173" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="108.56" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (316 samples, 0.52%)</title><rect x="1168.3" y="1125" width="6.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1171.32" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (6 samples, 0.01%)</title><rect x="722.4" y="469" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="725.37" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_flow_key_extract (7 samples, 0.01%)</title><rect x="73.0" y="741" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="75.96" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (84 samples, 0.14%)</title><rect x="1146.5" y="517" width="1.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1149.53" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::create (9 samples, 0.01%)</title><rect x="712.7" y="437" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.68" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::split (9 samples, 0.01%)</title><rect x="1150.9" y="837" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1153.91" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (14 samples, 0.02%)</title><rect x="110.6" y="1093" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (18 samples, 0.03%)</title><rect x="565.2" y="1301" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="568.21" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.01%)</title><rect x="600.1" y="997" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (9 samples, 0.01%)</title><rect x="84.2" y="965" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="87.21" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/SocketProperties:::setProperties (20 samples, 0.03%)</title><rect x="564.7" y="1317" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="567.69" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory$Adapter:::write (28 samples, 0.05%)</title><rect x="727.0" y="677" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="730.04" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (737 samples, 1.20%)</title><rect x="1030.8" y="373" width="14.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1033.78" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (29 samples, 0.05%)</title><rect x="1107.2" y="293" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1110.21" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (24 samples, 0.04%)</title><rect x="523.8" y="1061" width="0.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="526.80" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/BeanDeserializer:::deserialize (207 samples, 0.34%)</title><rect x="734.9" y="613" width="3.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="737.85" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/Collectors:::toMap (7 samples, 0.01%)</title><rect x="981.7" y="645" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="984.65" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (6 samples, 0.01%)</title><rect x="1178.2" y="1093" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1181.19" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (52 samples, 0.08%)</title><rect x="557.3" y="1109" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="560.27" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (16 samples, 0.03%)</title><rect x="467.9" y="1029" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="470.88" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (30 samples, 0.05%)</title><rect x="1067.8" y="565" width="0.6" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1070.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (6 samples, 0.01%)</title><rect x="29.9" y="1269" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (17 samples, 0.03%)</title><rect x="467.4" y="1061" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeString (14 samples, 0.02%)</title><rect x="558.8" y="1253" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="561.77" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/$Gson$Types:::resolve (6 samples, 0.01%)</title><rect x="717.6" y="501" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="720.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (21 samples, 0.03%)</title><rect x="1052.1" y="341" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1,444 samples, 2.35%)</title><rect x="796.8" y="357" width="27.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="799.81" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (6 samples, 0.01%)</title><rect x="1162.7" y="1077" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1165.72" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (6 samples, 0.01%)</title><rect x="64.3" y="1125" width="0.1" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="67.30" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::poll (1,625 samples, 2.65%)</title><rect x="434.9" y="1269" width="31.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.87" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/AbstractQueryBuilder:::printBoostAndQueryName (6 samples, 0.01%)</title><rect x="1133.3" y="581" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1136.25" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (282 samples, 0.46%)</title><rect x="69.4" y="997" width="5.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="72.40" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorNotifyAll (10 samples, 0.02%)</title><rect x="84.7" y="1253" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="87.71" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/PrintWriter:::println (9 samples, 0.01%)</title><rect x="1157.3" y="1221" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1160.34" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (97 samples, 0.16%)</title><rect x="1146.4" y="629" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1149.39" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::performRequest (2,746 samples, 4.48%)</title><rect x="739.1" y="629" width="52.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="742.14" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/aop/aspectj/AspectJAroundAdvice:::invoke (22,796 samples, 37.16%)</title><rect x="699.0" y="757" width="438.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="702.04" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/aop/aspectj/AspectJAroundAdvice:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/GregorianCalendar:::&lt;init&gt; (6 samples, 0.01%)</title><rect x="1149.8" y="773" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.80" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (57 samples, 0.09%)</title><rect x="559.8" y="1269" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="562.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (47 samples, 0.08%)</title><rect x="1159.3" y="1093" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.28" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1,257 samples, 2.05%)</title><rect x="1072.6" y="549" width="24.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1075.56" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (12 samples, 0.02%)</title><rect x="681.2" y="885" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="684.17" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getDeclaringClass0 (6 samples, 0.01%)</title><rect x="1155.3" y="1093" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1158.34" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::applyRequestFilters (11 samples, 0.02%)</title><rect x="697.0" y="821" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="699.96" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (19 samples, 0.03%)</title><rect x="1145.4" y="485" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1148.41" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern:::compile (11 samples, 0.02%)</title><rect x="1110.0" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1112.98" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/chunkbuilder/LogChunkBuilder:::add (7 samples, 0.01%)</title><rect x="979.0" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="981.98" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qunar/tc/qconfig/client/impl/LongPoller:::run (9 samples, 0.01%)</title><rect x="522.6" y="1285" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="525.60" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (17 samples, 0.03%)</title><rect x="13.4" y="1445" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="16.40" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RequestConverters$EndpointBuilder:::addPathPart (41 samples, 0.07%)</title><rect x="1109.4" y="613" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1112.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (158 samples, 0.26%)</title><rect x="959.4" y="629" width="3.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="962.38" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (113 samples, 0.18%)</title><rect x="561.1" y="1205" width="2.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (6 samples, 0.01%)</title><rect x="722.4" y="485" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="725.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.02%)</title><rect x="18.3" y="1477" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/commons/codec/binary/Base64:::encode (80 samples, 0.13%)</title><rect x="58.0" y="1205" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="60.99" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (6 samples, 0.01%)</title><rect x="925.8" y="517" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="928.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>basic_classify (7 samples, 0.01%)</title><rect x="95.9" y="773" width="0.1" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="98.89" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (13 samples, 0.02%)</title><rect x="105.6" y="1141" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="108.56" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectMapper:::_readMapAndClose (220 samples, 0.36%)</title><rect x="734.6" y="629" width="4.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="737.62" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (9 samples, 0.01%)</title><rect x="1108.4" y="469" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (93 samples, 0.15%)</title><rect x="94.3" y="853" width="1.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="97.33" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient$$Lambda$348/118939725:::apply (134 samples, 0.22%)</title><rect x="836.7" y="597" width="2.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="839.71" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (19 samples, 0.03%)</title><rect x="1057.4" y="549" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1060.37" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___strcasecmp_l (6 samples, 0.01%)</title><rect x="22.0" y="1429" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="25.02" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor$Worker:::run (27,423 samples, 44.70%)</title><rect x="638.8" y="1333" width="527.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.85" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/util/concurrent/ThreadPoolExecutor$Worker:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RemSet::oops_into_collection_set_do (76 samples, 0.12%)</title><rect x="24.4" y="1413" width="1.5" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="27.43" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (10 samples, 0.02%)</title><rect x="637.3" y="1125" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="640.27" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/builder/SearchSourceBuilder:::toXContent (16 samples, 0.03%)</title><rect x="1110.3" y="597" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1113.32" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (7 samples, 0.01%)</title><rect x="1073.4" y="373" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1076.43" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_close (23 samples, 0.04%)</title><rect x="1165.7" y="1045" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1168.74" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/BeanDeserializer:::deserialize (2,514 samples, 4.10%)</title><rect x="909.3" y="549" width="48.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="912.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (8 samples, 0.01%)</title><rect x="426.5" y="1093" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="429.46" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_vport_receive (12 samples, 0.02%)</title><rect x="1159.7" y="677" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1162.72" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:::writeNumber (8 samples, 0.01%)</title><rect x="1135.9" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1138.89" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (1,498 samples, 2.44%)</title><rect x="739.6" y="549" width="28.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="742.61" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (8 samples, 0.01%)</title><rect x="995.1" y="341" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="998.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Exception:::&lt;init&gt; (151 samples, 0.25%)</title><rect x="1024.1" y="661" width="2.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1027.13" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (22 samples, 0.04%)</title><rect x="468.6" y="1077" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="471.61" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (65 samples, 0.11%)</title><rect x="70.9" y="645" width="1.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="73.86" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_do_rcv (8 samples, 0.01%)</title><rect x="426.2" y="869" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="429.23" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (22 samples, 0.04%)</title><rect x="1128.6" y="629" width="0.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1131.58" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::readObject (7 samples, 0.01%)</title><rect x="776.6" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="779.64" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor60:::invoke (22,784 samples, 37.14%)</title><rect x="699.3" y="725" width="438.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="702.27" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun/reflect/GeneratedMethodAccessor60:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.01%)</title><rect x="1167.2" y="1157" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/NumberDeserializers$IntegerDeserializer:::deserialize (40 samples, 0.07%)</title><rect x="947.3" y="517" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_connect (6 samples, 0.01%)</title><rect x="434.4" y="1125" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (24 samples, 0.04%)</title><rect x="468.6" y="1317" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::write (508 samples, 0.83%)</title><rect x="66.6" y="1253" width="9.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="69.55" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (37 samples, 0.06%)</title><rect x="1145.3" y="597" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1148.33" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find (6 samples, 0.01%)</title><rect x="722.9" y="405" width="0.1" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="725.93" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::javaTimeMillis (8 samples, 0.01%)</title><rect x="98.4" y="1301" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="101.41" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (12 samples, 0.02%)</title><rect x="44.4" y="1125" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::applyResponseFilters (17 samples, 0.03%)</title><rect x="697.2" y="821" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="700.17" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (1,296 samples, 2.11%)</title><rect x="1071.9" y="581" width="24.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1074.89" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Copy::fill_to_memory_atomic (7 samples, 0.01%)</title><rect x="499.3" y="1253" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="502.35" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (6 samples, 0.01%)</title><rect x="1025.7" y="533" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1028.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (6 samples, 0.01%)</title><rect x="784.7" y="485" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="787.73" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (6 samples, 0.01%)</title><rect x="84.3" y="805" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (426 samples, 0.69%)</title><rect x="67.8" y="1189" width="8.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="70.79" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler$1:::completed (69 samples, 0.11%)</title><rect x="1106.7" y="533" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1109.71" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (68 samples, 0.11%)</title><rect x="519.4" y="1061" width="1.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="522.43" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (12 samples, 0.02%)</title><rect x="1165.9" y="821" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1168.86" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (36 samples, 0.06%)</title><rect x="466.3" y="1285" width="0.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="469.30" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::create (29 samples, 0.05%)</title><rect x="701.5" y="661" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="704.48" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (17 samples, 0.03%)</title><rect x="1159.7" y="709" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1162.70" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer:::findSymbol (70 samples, 0.11%)</title><rect x="931.1" y="517" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="934.06" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readClassDesc (53 samples, 0.09%)</title><rect x="831.8" y="421" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="834.79" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (92 samples, 0.15%)</title><rect x="501.4" y="1093" width="1.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="504.44" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (24 samples, 0.04%)</title><rect x="638.2" y="997" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::digestURI (32 samples, 0.05%)</title><rect x="1050.9" y="565" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1053.94" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (21 samples, 0.03%)</title><rect x="63.3" y="1141" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="66.30" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (59,521 samples, 97.03%)</title><rect x="30.1" y="1397" width="1145.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="33.12" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_helper</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (346 samples, 0.56%)</title><rect x="567.1" y="1269" width="6.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="570.06" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::parseEntity (312 samples, 0.51%)</title><rect x="1054.2" y="629" width="6.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (18 samples, 0.03%)</title><rect x="724.9" y="549" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="727.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (13 samples, 0.02%)</title><rect x="607.5" y="1221" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="610.49" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/DefaultMessageQueue:::poll (499 samples, 0.81%)</title><rect x="483.0" y="1317" width="9.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="486.00" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (531 samples, 0.87%)</title><rect x="524.7" y="1109" width="10.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="527.68" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (6 samples, 0.01%)</title><rect x="552.9" y="1061" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (13 samples, 0.02%)</title><rect x="1125.4" y="597" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1128.39" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (14 samples, 0.02%)</title><rect x="900.4" y="533" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="903.36" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (39 samples, 0.06%)</title><rect x="1179.4" y="1205" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1182.44" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (26 samples, 0.04%)</title><rect x="499.8" y="1157" width="0.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="502.75" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1,455 samples, 2.37%)</title><rect x="994.1" y="405" width="28.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="997.10" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (97 samples, 0.16%)</title><rect x="518.9" y="1253" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="521.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (20 samples, 0.03%)</title><rect x="44.0" y="853" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="47.01" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,249 samples, 2.04%)</title><rect x="1072.7" y="533" width="24.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1075.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::ILock (6 samples, 0.01%)</title><rect x="1022.4" y="485" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (6 samples, 0.01%)</title><rect x="485.7" y="1029" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="488.67" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_unlock (9 samples, 0.01%)</title><rect x="517.4" y="1077" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="520.37" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (12 samples, 0.02%)</title><rect x="607.5" y="1189" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="610.51" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::roots_oops_do (10 samples, 0.02%)</title><rect x="23.2" y="1397" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="26.20" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (8 samples, 0.01%)</title><rect x="1147.7" y="325" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1150.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::buildUri (57 samples, 0.09%)</title><rect x="1097.3" y="613" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1100.26" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (43 samples, 0.07%)</title><rect x="103.4" y="1157" width="0.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (7 samples, 0.01%)</title><rect x="1135.6" y="629" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1138.62" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_trace_enter (8 samples, 0.01%)</title><rect x="428.3" y="1189" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="431.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (85 samples, 0.14%)</title><rect x="14.2" y="1461" width="1.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::socketRead0 (57 samples, 0.09%)</title><rect x="563.3" y="1253" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (10 samples, 0.02%)</title><rect x="84.2" y="1029" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="87.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (85 samples, 0.14%)</title><rect x="14.2" y="1493" width="1.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (6 samples, 0.01%)</title><rect x="774.5" y="437" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="777.48" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/chunkbuilder/BaseChunkBuilder:::buildChunk (41 samples, 0.07%)</title><rect x="543.5" y="1317" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="546.53" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1,517 samples, 2.47%)</title><rect x="642.1" y="1061" width="29.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="645.08" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parsePosNumber (71 samples, 0.12%)</title><rect x="894.5" y="485" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="897.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vframeStreamCommon::next (10 samples, 0.02%)</title><rect x="774.4" y="453" width="0.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="777.42" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (9 samples, 0.01%)</title><rect x="1178.0" y="1333" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (6 samples, 0.01%)</title><rect x="469.8" y="1157" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/data/elastic/impl/HotelBasicInfoRepoImpl$$Lambda$313/787679260:::call (2,555 samples, 4.17%)</title><rect x="1071.2" y="661" width="49.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1074.22" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (140 samples, 0.23%)</title><rect x="959.7" y="549" width="2.7" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="962.67" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (13 samples, 0.02%)</title><rect x="92.1" y="1141" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="95.14" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::parseEntity (359 samples, 0.59%)</title><rect x="785.1" y="613" width="6.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="788.06" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetDeclaringClass (6 samples, 0.01%)</title><rect x="701.7" y="597" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="704.65" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1,590 samples, 2.59%)</title><rect x="640.8" y="1125" width="30.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="643.83" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::lease (65 samples, 0.11%)</title><rect x="1051.7" y="581" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1054.73" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::await (58 samples, 0.09%)</title><rect x="559.8" y="1301" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="562.81" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg_locked (77 samples, 0.13%)</title><rect x="1146.6" y="485" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1149.64" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (19 samples, 0.03%)</title><rect x="994.1" y="357" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="997.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (17 samples, 0.03%)</title><rect x="467.4" y="1125" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (54 samples, 0.09%)</title><rect x="557.2" y="1253" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="560.23" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (707 samples, 1.15%)</title><rect x="504.0" y="1157" width="13.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="507.02" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::performRequestAsyncNoCatch (624 samples, 1.02%)</title><rect x="768.5" y="613" width="12.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="771.46" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readClassDesc (123 samples, 0.20%)</title><rect x="772.4" y="501" width="2.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="775.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::write0 (52 samples, 0.08%)</title><rect x="1159.3" y="1157" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1162.28" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (23 samples, 0.04%)</title><rect x="1068.8" y="645" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1071.77" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_frame_hook (12 samples, 0.02%)</title><rect x="1159.7" y="693" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1162.72" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (13 samples, 0.02%)</title><rect x="607.5" y="1253" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="610.49" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_recvfrom (32 samples, 0.05%)</title><rect x="10.6" y="1429" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="13.56" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (225 samples, 0.37%)</title><rect x="39.6" y="1109" width="4.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="42.60" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (23 samples, 0.04%)</title><rect x="1117.9" y="517" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1120.92" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (14 samples, 0.02%)</title><rect x="1178.1" y="1317" width="0.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (41 samples, 0.07%)</title><rect x="89.0" y="1061" width="0.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="92.00" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (6 samples, 0.01%)</title><rect x="29.9" y="1349" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (9 samples, 0.01%)</title><rect x="1178.0" y="1157" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (6 samples, 0.01%)</title><rect x="507.4" y="997" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="510.37" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (8 samples, 0.01%)</title><rect x="565.3" y="1157" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="568.31" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (8 samples, 0.01%)</title><rect x="69.0" y="1013" width="0.1" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="71.98" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (335 samples, 0.55%)</title><rect x="600.6" y="1189" width="6.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="603.57" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VM_Operation::evaluate (46 samples, 0.07%)</title><rect x="1177.9" y="1413" width="0.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="1180.92" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serialize (16 samples, 0.03%)</title><rect x="979.8" y="613" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="982.83" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>veth_xmit (6 samples, 0.01%)</title><rect x="96.3" y="869" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="99.33" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (115 samples, 0.19%)</title><rect x="1066.2" y="581" width="2.2" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1069.20" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (545 samples, 0.89%)</title><rect x="524.4" y="1285" width="10.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="527.41" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (71 samples, 0.12%)</title><rect x="16.2" y="1317" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="19.21" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (7 samples, 0.01%)</title><rect x="429.0" y="1157" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="431.98" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::transfer (14 samples, 0.02%)</title><rect x="720.9" y="517" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="723.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ByteArrayOutputStream:::write (39 samples, 0.06%)</title><rect x="900.9" y="517" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="903.86" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/ClientLogSender:::send (14 samples, 0.02%)</title><rect x="700.1" y="677" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="703.11" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (41 samples, 0.07%)</title><rect x="1145.3" y="677" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1148.28" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (54 samples, 0.09%)</title><rect x="557.2" y="1317" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="560.23" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (85 samples, 0.14%)</title><rect x="14.2" y="1317" width="1.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (11 samples, 0.02%)</title><rect x="30.4" y="885" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dentry_kill (10 samples, 0.02%)</title><rect x="1165.6" y="1077" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1168.55" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/util/ClassUtils:::forName (54 samples, 0.09%)</title><rect x="1139.8" y="789" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1142.77" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (6 samples, 0.01%)</title><rect x="995.3" y="261" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="998.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (10 samples, 0.02%)</title><rect x="83.4" y="1013" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="86.42" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (95 samples, 0.15%)</title><rect x="501.4" y="1205" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (6 samples, 0.01%)</title><rect x="112.7" y="997" width="0.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="115.66" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (10 samples, 0.02%)</title><rect x="1164.7" y="949" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1167.69" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (15 samples, 0.02%)</title><rect x="580.2" y="1157" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="583.20" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (11 samples, 0.02%)</title><rect x="517.9" y="1205" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="520.85" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (21 samples, 0.03%)</title><rect x="499.8" y="1125" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="502.75" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (12 samples, 0.02%)</title><rect x="1140.2" y="709" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1143.18" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/parser/SignatureParser:::parsePackageNameAndSimpleClassTypeSignature (18 samples, 0.03%)</title><rect x="724.4" y="597" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="727.37" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/XContentBuilder:::unknownValue (96 samples, 0.16%)</title><rect x="782.8" y="501" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="785.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (88 samples, 0.14%)</title><rect x="26.1" y="1301" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="29.08" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,137 samples, 1.85%)</title><rect x="615.0" y="1109" width="21.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="617.96" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (6 samples, 0.01%)</title><rect x="29.9" y="1253" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (10 samples, 0.02%)</title><rect x="517.9" y="1189" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="520.87" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::get (13 samples, 0.02%)</title><rect x="80.9" y="1253" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="83.89" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (79 samples, 0.13%)</title><rect x="555.2" y="1189" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (113 samples, 0.18%)</title><rect x="561.1" y="1253" width="2.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController:::doPrivileged (12 samples, 0.02%)</title><rect x="44.4" y="1157" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_LatestUserDefinedLoader (20 samples, 0.03%)</title><rect x="830.9" y="453" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="833.90" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/AbstractIOReactor:::processEvent (2,665 samples, 4.34%)</title><rect x="46.1" y="1285" width="51.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="49.09" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/StandardContextValve:::invoke (24,960 samples, 40.69%)</title><rect x="676.3" y="1205" width="480.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="679.34" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/StandardContextValve:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (53 samples, 0.09%)</title><rect x="113.0" y="1029" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="115.97" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (25 samples, 0.04%)</title><rect x="23.8" y="1189" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (8 samples, 0.01%)</title><rect x="638.6" y="1157" width="0.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="641.64" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (54 samples, 0.09%)</title><rect x="835.0" y="453" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="838.02" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find (12 samples, 0.02%)</title><rect x="1102.2" y="405" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="1105.17" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (81 samples, 0.13%)</title><rect x="19.0" y="1381" width="1.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="22.00" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (915 samples, 1.49%)</title><rect x="580.2" y="1189" width="17.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="583.16" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/BaseIOReactor:::writable (1,189 samples, 1.94%)</title><rect x="53.5" y="1269" width="22.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="56.51" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (8 samples, 0.01%)</title><rect x="600.0" y="1093" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (12 samples, 0.02%)</title><rect x="684.2" y="741" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="687.17" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (45 samples, 0.07%)</title><rect x="1107.1" y="389" width="0.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1110.05" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (25 samples, 0.04%)</title><rect x="43.9" y="917" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (17 samples, 0.03%)</title><rect x="467.4" y="1189" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (31 samples, 0.05%)</title><rect x="523.7" y="1077" width="0.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="526.68" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (52 samples, 0.08%)</title><rect x="555.6" y="1077" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="558.57" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (56 samples, 0.09%)</title><rect x="559.8" y="1237" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="562.83" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,617 samples, 2.64%)</title><rect x="435.0" y="1221" width="31.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="437.98" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (14 samples, 0.02%)</title><rect x="785.5" y="597" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="788.52" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_frame_hook (133 samples, 0.22%)</title><rect x="70.5" y="773" width="2.6" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="73.54" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (22 samples, 0.04%)</title><rect x="1166.7" y="1237" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (24 samples, 0.04%)</title><rect x="899.7" y="501" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="902.65" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/AbstractQueryBuilder:::toXContent (145 samples, 0.24%)</title><rect x="782.2" y="533" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="785.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (72 samples, 0.12%)</title><rect x="101.4" y="1221" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="104.41" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (7 samples, 0.01%)</title><rect x="467.2" y="1125" width="0.1" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (628 samples, 1.02%)</title><rect x="470.6" y="1173" width="12.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="473.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (24 samples, 0.04%)</title><rect x="779.0" y="229" width="0.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="782.04" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::buildLogEvent (9 samples, 0.01%)</title><rect x="978.8" y="629" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="981.77" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (24 samples, 0.04%)</title><rect x="468.6" y="1237" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/Excluder:::create (18 samples, 0.03%)</title><rect x="710.9" y="501" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.89" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (531 samples, 0.87%)</title><rect x="524.7" y="1125" width="10.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="527.68" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readSerialData (95 samples, 0.15%)</title><rect x="831.3" y="485" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="834.30" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (15 samples, 0.02%)</title><rect x="507.0" y="1029" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="510.04" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (37 samples, 0.06%)</title><rect x="523.7" y="1269" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (436 samples, 0.71%)</title><rect x="31.1" y="997" width="8.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="34.08" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1,396 samples, 2.28%)</title><rect x="644.4" y="1029" width="26.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="647.39" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (162 samples, 0.26%)</title><rect x="87.1" y="1205" width="3.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="90.06" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectedHeap::process_discovered_references (15 samples, 0.02%)</title><rect x="1178.1" y="1349" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (15 samples, 0.02%)</title><rect x="521.5" y="1125" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/io/DefaultTreeSender:::sendInternal (400 samples, 0.65%)</title><rect x="492.6" y="1317" width="7.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="495.60" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (61 samples, 0.10%)</title><rect x="28.6" y="1157" width="1.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="31.64" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (18 samples, 0.03%)</title><rect x="715.3" y="373" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="718.25" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (9 samples, 0.01%)</title><rect x="521.3" y="1221" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_try_to_cancel (6 samples, 0.01%)</title><rect x="580.5" y="1157" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="583.48" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (82 samples, 0.13%)</title><rect x="551.1" y="1109" width="1.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="554.07" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::new_array_C (7 samples, 0.01%)</title><rect x="59.1" y="1173" width="0.1" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="62.07" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (49 samples, 0.08%)</title><rect x="1107.0" y="421" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1109.98" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1,609 samples, 2.62%)</title><rect x="640.8" y="1157" width="30.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="643.77" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (18 samples, 0.03%)</title><rect x="468.2" y="1061" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (721 samples, 1.18%)</title><rect x="503.8" y="1189" width="13.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="506.81" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (6 samples, 0.01%)</title><rect x="585.2" y="949" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="588.16" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (271 samples, 0.44%)</title><rect x="545.4" y="1221" width="5.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="548.44" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/ThreadLocalCoders$Cache:::forName (8 samples, 0.01%)</title><rect x="1154.4" y="917" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1157.39" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/util/concurrent/SingleThreadEventExecutor:::runAllTasks (152 samples, 0.25%)</title><rect x="518.2" y="1317" width="2.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="521.16" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::handleInternal (23,918 samples, 38.99%)</title><rect x="690.6" y="837" width="460.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="693.59" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBas..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::getTextCharacters (18 samples, 0.03%)</title><rect x="1115.4" y="517" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1118.40" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_new_array_Java (7 samples, 0.01%)</title><rect x="59.1" y="1189" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="62.07" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (497 samples, 0.81%)</title><rect x="507.5" y="1061" width="9.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="510.50" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (11 samples, 0.02%)</title><rect x="557.0" y="1221" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (9 samples, 0.01%)</title><rect x="644.1" y="933" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="647.12" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="1176.7" y="1349" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (15 samples, 0.02%)</title><rect x="775.9" y="389" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="778.90" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (6 samples, 0.01%)</title><rect x="64.6" y="1157" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="67.59" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (22 samples, 0.04%)</title><rect x="64.3" y="1189" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="67.28" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (1,344 samples, 2.19%)</title><rect x="742.3" y="357" width="25.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>redis/clients/jedis/Protocol:::process (1,562 samples, 2.55%)</title><rect x="992.8" y="629" width="30.0" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="995.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler$1:::completed (46 samples, 0.07%)</title><rect x="1051.9" y="533" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1054.87" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseNumber2 (47 samples, 0.08%)</title><rect x="930.2" y="501" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="933.16" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectSynchronizer::oops_do (6 samples, 0.01%)</title><rect x="23.1" y="1397" width="0.1" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="26.08" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (977 samples, 1.59%)</title><rect x="617.8" y="1013" width="18.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="620.80" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient$SyncResponseListener:::get (1,514 samples, 2.47%)</title><rect x="739.3" y="613" width="29.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="742.32" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::parseLongName (20 samples, 0.03%)</title><rect x="1118.9" y="517" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1121.86" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (54 samples, 0.09%)</title><rect x="612.7" y="1125" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (35 samples, 0.06%)</title><rect x="523.7" y="1173" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/LinkedBlockingDeque:::take (21 samples, 0.03%)</title><rect x="523.3" y="1301" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (642 samples, 1.05%)</title><rect x="470.4" y="1205" width="12.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="473.38" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (7 samples, 0.01%)</title><rect x="884.4" y="437" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="887.40" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (424 samples, 0.69%)</title><rect x="535.2" y="1317" width="8.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="538.20" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FilterInputStream:::read (24 samples, 0.04%)</title><rect x="638.2" y="1205" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (85 samples, 0.14%)</title><rect x="14.2" y="1477" width="1.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (9 samples, 0.01%)</title><rect x="426.2" y="917" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="429.21" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (19 samples, 0.03%)</title><rect x="638.2" y="885" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="641.23" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (19 samples, 0.03%)</title><rect x="467.8" y="1285" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="470.82" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (347 samples, 0.57%)</title><rect x="1168.1" y="1157" width="6.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1171.11" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (36 samples, 0.06%)</title><rect x="71.4" y="629" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="74.42" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (442 samples, 0.72%)</title><rect x="508.6" y="1029" width="8.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="511.56" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (9 samples, 0.01%)</title><rect x="520.4" y="917" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="523.45" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (23 samples, 0.04%)</title><rect x="68.7" y="1045" width="0.5" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="71.75" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (6 samples, 0.01%)</title><rect x="644.1" y="901" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="647.12" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (87 samples, 0.14%)</title><rect x="796.9" y="325" width="1.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="799.85" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.01%)</title><rect x="638.0" y="1109" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (452 samples, 0.74%)</title><rect x="944.0" y="533" width="8.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="947.05" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9 samples, 0.01%)</title><rect x="1189.6" y="1493" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1192.60" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParEvacuateFollowersClosure::do_void (34 samples, 0.06%)</title><rect x="22.2" y="1429" width="0.6" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="25.18" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (11 samples, 0.02%)</title><rect x="504.2" y="1093" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="507.21" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::socketRead0 (1,555 samples, 2.53%)</title><rect x="992.9" y="597" width="29.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="995.89" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (131 samples, 0.21%)</title><rect x="788.6" y="549" width="2.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="791.64" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (1,422 samples, 2.32%)</title><rect x="438.4" y="1013" width="27.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="441.43" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/metrics/aggregator/MetricsAggregator:::add (21 samples, 0.03%)</title><rect x="690.8" y="821" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="693.78" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (16 samples, 0.03%)</title><rect x="64.3" y="1173" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="67.28" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/AbstractIOReactor:::processNewChannels (13 samples, 0.02%)</title><rect x="97.9" y="1301" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="100.91" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (13 samples, 0.02%)</title><rect x="425.9" y="949" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text text-anchor="" x="428.94" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (21 samples, 0.03%)</title><rect x="132.9" y="933" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="135.92" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (84 samples, 0.14%)</title><rect x="551.0" y="1221" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (77 samples, 0.13%)</title><rect x="19.1" y="1253" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="22.06" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (10 samples, 0.02%)</title><rect x="535.0" y="1189" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::anyMatch (462 samples, 0.75%)</title><rect x="978.2" y="677" width="8.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="981.15" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (12 samples, 0.02%)</title><rect x="725.9" y="517" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="728.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/servlet/CatFilter$CatHandler$4:::restoreTraceContext (20 samples, 0.03%)</title><rect x="1153.5" y="949" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1156.53" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (23 samples, 0.04%)</title><rect x="554.7" y="1157" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_close (24 samples, 0.04%)</title><rect x="598.5" y="1285" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="601.49" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (87 samples, 0.14%)</title><rect x="94.4" y="805" width="1.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="97.45" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/Gson:::getAdapter (348 samples, 0.57%)</title><rect x="710.8" y="517" width="6.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="713.85" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/client/ribbon/HttpContextFilter:::doFilter (24,821 samples, 40.46%)</title><rect x="677.6" y="1045" width="477.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="680.57" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/client/ribbon/HttpContextFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/client/ServiceClientBase:::executeWithRetry (6 samples, 0.01%)</title><rect x="522.2" y="1205" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (12 samples, 0.02%)</title><rect x="1164.6" y="965" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1167.65" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putMapEntries (11 samples, 0.02%)</title><rect x="990.2" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="993.16" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (7 samples, 0.01%)</title><rect x="638.0" y="1029" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/InternalNioInputBuffer:::parseRequestLine (96 samples, 0.16%)</title><rect x="1162.1" y="1253" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1165.11" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.01%)</title><rect x="10.1" y="1333" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (210 samples, 0.34%)</title><rect x="92.6" y="1125" width="4.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="95.60" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (6 samples, 0.01%)</title><rect x="1176.7" y="1269" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getClassDataLayout0 (7 samples, 0.01%)</title><rect x="831.4" y="469" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="834.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (1,694 samples, 2.76%)</title><rect x="639.3" y="1285" width="32.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="642.27" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/utils/RetryUtils:::retry (5,591 samples, 9.11%)</title><rect x="794.6" y="645" width="107.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="797.64" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hot..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_ctl (53 samples, 0.09%)</title><rect x="101.5" y="1189" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="104.54" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (24 samples, 0.04%)</title><rect x="23.8" y="1157" width="0.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (37 samples, 0.06%)</title><rect x="1164.4" y="1221" width="0.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1167.42" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (6 samples, 0.01%)</title><rect x="524.7" y="981" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="527.70" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (860 samples, 1.40%)</title><rect x="581.1" y="1125" width="16.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="584.08" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (56 samples, 0.09%)</title><rect x="519.5" y="981" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="522.55" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Decoder:::decodeLoop (7 samples, 0.01%)</title><rect x="1105.6" y="517" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1108.57" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (84 samples, 0.14%)</title><rect x="553.0" y="1125" width="1.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="556.04" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (7 samples, 0.01%)</title><rect x="1174.4" y="1125" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1177.40" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (11 samples, 0.02%)</title><rect x="973.0" y="661" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="976.00" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (18 samples, 0.03%)</title><rect x="468.2" y="1157" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor:::getTask (7 samples, 0.01%)</title><rect x="638.0" y="1333" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/common/value/StringValues:::trimStartInternal (6 samples, 0.01%)</title><rect x="686.3" y="853" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="689.26" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_net_SocketInputStream_socketRead0 (25 samples, 0.04%)</title><rect x="43.9" y="1093" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (15,023 samples, 24.49%)</title><rect x="134.1" y="1061" width="289.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="137.13" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_pmu_enable</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (12 samples, 0.02%)</title><rect x="521.6" y="1045" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="524.58" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (24 samples, 0.04%)</title><rect x="638.2" y="965" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (8 samples, 0.01%)</title><rect x="773.5" y="437" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="776.50" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/BeanDeserializer:::deserialize (287 samples, 0.47%)</title><rect x="1060.4" y="645" width="5.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1063.41" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (95 samples, 0.15%)</title><rect x="501.4" y="1237" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (10 samples, 0.02%)</title><rect x="519.8" y="693" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="522.81" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/AbstractQueryBuilder:::toXContent (29 samples, 0.05%)</title><rect x="838.6" y="517" width="0.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="841.63" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1,494 samples, 2.44%)</title><rect x="795.9" y="421" width="28.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="798.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (426 samples, 0.69%)</title><rect x="67.8" y="1205" width="8.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="70.79" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_transmit_skb (134 samples, 0.22%)</title><rect x="94.0" y="1013" width="2.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="97.00" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (14 samples, 0.02%)</title><rect x="95.1" y="645" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="98.06" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (79 samples, 0.13%)</title><rect x="555.2" y="1205" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_reset_timer (11 samples, 0.02%)</title><rect x="75.0" y="965" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="78.02" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (82 samples, 0.13%)</title><rect x="551.1" y="1077" width="1.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="554.07" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::performRequestAsyncNoCatch (408 samples, 0.67%)</title><rect x="1045.2" y="629" width="7.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1048.25" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/BeanDeserializer:::deserialize (34 samples, 0.06%)</title><rect x="1125.1" y="613" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1128.12" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (54 samples, 0.09%)</title><rect x="16.5" y="1253" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="19.48" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (6 samples, 0.01%)</title><rect x="1145.6" y="405" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1148.58" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_mss (13 samples, 0.02%)</title><rect x="75.3" y="1045" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (59,521 samples, 97.03%)</title><rect x="30.1" y="1429" width="1145.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="33.12" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_virtual</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (18 samples, 0.03%)</title><rect x="468.2" y="1077" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (8 samples, 0.01%)</title><rect x="500.9" y="1093" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>audit_filter_inodes (6 samples, 0.01%)</title><rect x="427.8" y="1157" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="430.83" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (10 samples, 0.02%)</title><rect x="89.8" y="1077" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="92.79" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/Collectors$$Lambda$153/2137876353:::accept (6 samples, 0.01%)</title><rect x="980.9" y="533" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="983.88" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (32 samples, 0.05%)</title><rect x="1164.5" y="1141" width="0.6" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1167.45" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_current_mss (8 samples, 0.01%)</title><rect x="75.4" y="1029" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="78.38" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (535 samples, 0.87%)</title><rect x="524.6" y="1189" width="10.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="527.60" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/TokenParser:::parseToken (9 samples, 0.01%)</title><rect x="777.6" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="780.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (9 samples, 0.01%)</title><rect x="828.1" y="517" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="831.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (70 samples, 0.11%)</title><rect x="724.8" y="613" width="1.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="727.83" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::getText (6 samples, 0.01%)</title><rect x="1063.9" y="597" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1066.95" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (401 samples, 0.65%)</title><rect x="535.6" y="1221" width="7.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="538.63" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/JsonSerializer:::deserialize (138 samples, 0.22%)</title><rect x="1138.5" y="805" width="2.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1141.49" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="1022.4" y="437" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/conn/PoolingNHttpClientConnectionManager$InternalPoolEntryCallback:::completed (47 samples, 0.08%)</title><rect x="1051.8" y="549" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1054.85" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (103 samples, 0.17%)</title><rect x="984.9" y="613" width="2.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="987.94" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (25 samples, 0.04%)</title><rect x="1145.4" y="517" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1148.37" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (32 samples, 0.05%)</title><rect x="31.3" y="949" width="0.6" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="34.29" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/sample/InfoLogSampleHelper:::next (8 samples, 0.01%)</title><rect x="1070.3" y="645" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.29" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (11 samples, 0.02%)</title><rect x="706.4" y="469" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="709.37" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (543 samples, 0.89%)</title><rect x="1179.1" y="1429" width="10.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1182.07" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readClassDesc (125 samples, 0.20%)</title><rect x="1100.7" y="517" width="2.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1103.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor:::getTask (1,715 samples, 2.80%)</title><rect x="639.0" y="1317" width="33.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.98" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.01%)</title><rect x="552.9" y="1189" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (54 samples, 0.09%)</title><rect x="1146.9" y="405" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1149.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/http11/AbstractHttp11Processor:::prepareRequest (37 samples, 0.06%)</title><rect x="1160.8" y="1253" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1163.80" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (53 samples, 0.09%)</title><rect x="1107.0" y="469" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1109.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::info (33 samples, 0.05%)</title><rect x="979.0" y="645" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="981.96" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mod_timer (9 samples, 0.01%)</title><rect x="75.1" y="949" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="78.06" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (165 samples, 0.27%)</title><rect x="608.3" y="1045" width="3.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="611.30" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (39 samples, 0.06%)</title><rect x="519.7" y="821" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="522.68" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::performRequestAsync (537 samples, 0.88%)</title><rect x="1098.5" y="613" width="10.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1101.53" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (393 samples, 0.64%)</title><rect x="589.7" y="1045" width="7.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="592.66" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RootProcessor::process_vm_roots (16 samples, 0.03%)</title><rect x="23.1" y="1413" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="26.08" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_poll (1,507 samples, 2.46%)</title><rect x="993.3" y="517" width="29.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="996.31" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/valves/AccessLogValve$StringElement:::addElement (6 samples, 0.01%)</title><rect x="1158.3" y="1221" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1161.34" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::defaultReadFields (79 samples, 0.13%)</title><rect x="831.6" y="453" width="1.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="834.61" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (13 samples, 0.02%)</title><rect x="971.0" y="597" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="974.04" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (6 samples, 0.01%)</title><rect x="430.7" y="1253" width="0.1" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="433.67" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorWait (115 samples, 0.19%)</title><rect x="561.1" y="1317" width="2.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="564.06" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_poll (29 samples, 0.05%)</title><rect x="17.7" y="1445" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (192 samples, 0.31%)</title><rect x="607.8" y="1317" width="3.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="610.82" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlEncode (22 samples, 0.04%)</title><rect x="769.2" y="565" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="772.23" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::enter (17 samples, 0.03%)</title><rect x="99.9" y="1237" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="102.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/channels/spi/AbstractSelectableChannel:::implCloseChannel (45 samples, 0.07%)</title><rect x="1165.5" y="1237" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1168.45" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (12 samples, 0.02%)</title><rect x="1073.7" y="293" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1076.66" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (651 samples, 1.06%)</title><rect x="470.4" y="1237" width="12.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="473.36" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (35 samples, 0.06%)</title><rect x="1112.2" y="597" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1115.15" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (19 samples, 0.03%)</title><rect x="599.5" y="1317" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (24 samples, 0.04%)</title><rect x="1164.5" y="1045" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1167.47" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_connect (6 samples, 0.01%)</title><rect x="434.4" y="1173" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="437.37" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (534 samples, 0.87%)</title><rect x="1179.2" y="1349" width="10.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1182.17" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (485 samples, 0.79%)</title><rect x="473.2" y="1077" width="9.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="476.21" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check (25 samples, 0.04%)</title><rect x="23.8" y="1349" width="0.5" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (82 samples, 0.13%)</title><rect x="907.7" y="549" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="910.75" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (18 samples, 0.03%)</title><rect x="468.2" y="1189" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (96 samples, 0.16%)</title><rect x="519.0" y="1237" width="1.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="521.97" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (6 samples, 0.01%)</title><rect x="521.1" y="1317" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="524.12" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (8 samples, 0.01%)</title><rect x="742.2" y="325" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="745.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (10 samples, 0.02%)</title><rect x="535.0" y="1141" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="537.95" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (224 samples, 0.37%)</title><rect x="39.6" y="1077" width="4.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="42.62" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DirtyCardQueueSet::apply_closure_to_completed_buffer (76 samples, 0.12%)</title><rect x="24.4" y="1381" width="1.5" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="27.43" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbyte_disjoint_arraycopy (8 samples, 0.01%)</title><rect x="65.9" y="1237" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="68.92" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (40 samples, 0.07%)</title><rect x="1051.9" y="485" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1054.94" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::run (29,105 samples, 47.45%)</title><rect x="607.2" y="1365" width="559.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/lang/Thread:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (37 samples, 0.06%)</title><rect x="568.5" y="1061" width="0.7" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="571.50" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (536 samples, 0.87%)</title><rect x="524.6" y="1237" width="10.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="527.58" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_close (71 samples, 0.12%)</title><rect x="83.1" y="1189" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="86.10" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (82 samples, 0.13%)</title><rect x="19.0" y="1429" width="1.6" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="21.98" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (7 samples, 0.01%)</title><rect x="1167.2" y="1141" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (20 samples, 0.03%)</title><rect x="1155.3" y="1109" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1158.26" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (7 samples, 0.01%)</title><rect x="607.2" y="1205" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,511 samples, 2.46%)</title><rect x="795.9" y="501" width="29.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="798.85" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (50 samples, 0.08%)</title><rect x="736.0" y="597" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="739.03" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (8 samples, 0.01%)</title><rect x="109.9" y="1077" width="0.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="112.89" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$901/541843528:::apply (33 samples, 0.05%)</title><rect x="983.1" y="581" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="986.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (184 samples, 0.30%)</title><rect x="607.9" y="1093" width="3.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="610.93" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/AbstractIOReactor:::processEvents (2,717 samples, 4.43%)</title><rect x="45.6" y="1301" width="52.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="48.64" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_output (12 samples, 0.02%)</title><rect x="16.7" y="997" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="19.69" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageManager$TransactionHelper:::validate (28 samples, 0.05%)</title><rect x="679.1" y="933" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="682.05" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/InternalHttpAsyncClient:::execute (490 samples, 0.80%)</title><rect x="827.2" y="565" width="9.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="830.17" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (8 samples, 0.01%)</title><rect x="600.0" y="1221" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (22 samples, 0.04%)</title><rect x="1164.5" y="1029" width="0.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="1167.51" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (18 samples, 0.03%)</title><rect x="467.8" y="1157" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (8 samples, 0.01%)</title><rect x="716.9" y="357" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="719.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (23 samples, 0.04%)</title><rect x="554.7" y="1173" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::format (38 samples, 0.06%)</title><rect x="695.4" y="757" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.42" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFBody (9 samples, 0.01%)</title><rect x="775.5" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="778.52" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (440 samples, 0.72%)</title><rect x="484.1" y="1093" width="8.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="487.05" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::isFitAreaOther (6 samples, 0.01%)</title><rect x="984.1" y="581" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="987.08" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (7 samples, 0.01%)</title><rect x="498.1" y="1205" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="501.12" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioBlockingSelector$BlockPoller:::events (7 samples, 0.01%)</title><rect x="1167.3" y="1349" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1170.34" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_SetMemory2 (7 samples, 0.01%)</title><rect x="499.3" y="1269" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="502.35" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (25 samples, 0.04%)</title><rect x="23.8" y="1301" width="0.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.17.so] (64 samples, 0.10%)</title><rect x="577.8" y="1269" width="1.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="580.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (8 samples, 0.01%)</title><rect x="1108.4" y="293" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1111.38" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (17 samples, 0.03%)</title><rect x="431.8" y="1141" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="434.83" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (87 samples, 0.14%)</title><rect x="110.9" y="1093" width="1.7" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="113.93" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_IHashCode (6 samples, 0.01%)</title><rect x="783.8" y="469" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="786.75" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (39 samples, 0.06%)</title><rect x="1164.4" y="1253" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1167.42" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (99 samples, 0.16%)</title><rect x="15.8" y="1461" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="18.79" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (689 samples, 1.12%)</title><rect x="469.7" y="1285" width="13.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="472.69" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (22 samples, 0.04%)</title><rect x="598.5" y="1253" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="601.51" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.01%)</title><rect x="552.9" y="1093" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (20 samples, 0.03%)</title><rect x="615.0" y="1077" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="618.01" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/config/ConfigManager:::access$000 (7 samples, 0.01%)</title><rect x="467.2" y="1333" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (57 samples, 0.09%)</title><rect x="563.3" y="1109" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (158 samples, 0.26%)</title><rect x="582.4" y="1077" width="3.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="585.41" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (8 samples, 0.01%)</title><rect x="523.0" y="1093" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (15 samples, 0.02%)</title><rect x="994.2" y="293" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="997.20" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/chunkbuilder/LogChunkBuilder:::add (10 samples, 0.02%)</title><rect x="1070.1" y="645" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.10" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/Net:::setIntOption0 (11 samples, 0.02%)</title><rect x="564.9" y="1285" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="567.87" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (480 samples, 0.78%)</title><rect x="507.8" y="1045" width="9.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="510.83" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (6 samples, 0.01%)</title><rect x="585.2" y="965" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="588.16" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFBody (14 samples, 0.02%)</title><rect x="829.5" y="453" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="832.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/handler/codec/frame/FrameDecoder:::unfoldAndFireMessageReceived (15 samples, 0.02%)</title><rect x="30.4" y="1173" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/MessageSender:::run (105 samples, 0.17%)</title><rect x="550.6" y="1349" width="2.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="553.65" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (11 samples, 0.02%)</title><rect x="534.9" y="1285" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="537.93" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (7 samples, 0.01%)</title><rect x="600.1" y="949" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getEnclosingMethod0 (9 samples, 0.01%)</title><rect x="701.8" y="613" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="704.77" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::doPreemptiveAuth (6 samples, 0.01%)</title><rect x="1047.4" y="549" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1050.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (24,914 samples, 40.61%)</title><rect x="676.7" y="1141" width="479.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="679.72" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/web/filter/OncePerRequestFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (12 samples, 0.02%)</title><rect x="1139.9" y="725" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="1142.85" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::doSignal (8 samples, 0.01%)</title><rect x="575.7" y="1253" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="578.73" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (55 samples, 0.09%)</title><rect x="559.8" y="1173" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="562.84" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/buffer/UnpooledByteBufAllocator:::newDirectBuffer (17 samples, 0.03%)</title><rect x="499.2" y="1301" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="502.15" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (6 samples, 0.01%)</title><rect x="523.7" y="1045" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="526.68" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_LatestUserDefinedLoader (16 samples, 0.03%)</title><rect x="1048.9" y="485" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1051.92" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (36 samples, 0.06%)</title><rect x="16.6" y="1125" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="19.62" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (726 samples, 1.18%)</title><rect x="503.8" y="1221" width="14.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="506.79" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (39 samples, 0.06%)</title><rect x="773.5" y="469" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="776.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_flow_tbl_lookup_stats (11 samples, 0.02%)</title><rect x="1147.4" y="149" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1150.37" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFBody (13 samples, 0.02%)</title><rect x="1101.4" y="485" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1104.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (13 samples, 0.02%)</title><rect x="1023.3" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.28" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (9 samples, 0.01%)</title><rect x="112.8" y="1013" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="115.80" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (1,088 samples, 1.77%)</title><rect x="1075.3" y="325" width="21.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1078.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (8 samples, 0.01%)</title><rect x="523.0" y="1221" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (16 samples, 0.03%)</title><rect x="585.1" y="1029" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="588.12" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (52 samples, 0.08%)</title><rect x="557.3" y="1061" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="560.27" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Calendar$Builder:::build (16 samples, 0.03%)</title><rect x="729.1" y="661" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="732.06" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (16 samples, 0.03%)</title><rect x="1163.4" y="1061" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1166.40" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (7 samples, 0.01%)</title><rect x="638.0" y="1141" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (14 samples, 0.02%)</title><rect x="720.9" y="533" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="723.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/IdsQueryBuilder:::doXContent (24 samples, 0.04%)</title><rect x="1132.9" y="597" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1135.91" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::performRequestAsyncNoCatch (604 samples, 0.98%)</title><rect x="825.1" y="597" width="11.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="828.09" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readSerialData (89 samples, 0.15%)</title><rect x="1103.1" y="517" width="1.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1106.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (6 samples, 0.01%)</title><rect x="885.8" y="453" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="888.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vframeStreamCommon::next (6 samples, 0.01%)</title><rect x="1049.0" y="469" width="0.1" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1052.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (954 samples, 1.56%)</title><rect x="579.5" y="1205" width="18.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="582.47" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (277 samples, 0.45%)</title><rect x="601.6" y="1077" width="5.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="604.64" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::processPendingRequest (7 samples, 0.01%)</title><rect x="1052.8" y="565" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1055.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (11 samples, 0.02%)</title><rect x="779.0" y="213" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="782.04" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/conn/PoolingNHttpClientConnectionManager$InternalPoolEntryCallback:::completed (71 samples, 0.12%)</title><rect x="1106.7" y="549" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1109.69" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (33 samples, 0.05%)</title><rect x="724.9" y="565" width="0.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="727.85" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient$SyncResponseListener:::get (849 samples, 1.38%)</title><rect x="1028.9" y="629" width="16.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1031.88" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::applyPreRequestFilters (227 samples, 0.37%)</title><rect x="692.6" y="821" width="4.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="695.59" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (113 samples, 0.18%)</title><rect x="561.1" y="1173" width="2.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_scan_ready_list.isra.11 (8 samples, 0.01%)</title><rect x="1167.9" y="1205" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1170.90" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (15 samples, 0.02%)</title><rect x="521.5" y="1205" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (52 samples, 0.08%)</title><rect x="557.3" y="1045" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="560.27" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_try_to_cancel (6 samples, 0.01%)</title><rect x="824.7" y="405" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="827.67" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (94 samples, 0.15%)</title><rect x="431.0" y="1205" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="434.04" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectorPolicy::predict_region_elapsed_time_ms (26 samples, 0.04%)</title><rect x="21.0" y="1397" width="0.5" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="24.02" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::doSelect (456 samples, 0.74%)</title><rect x="30.7" y="1221" width="8.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="33.70" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (11 samples, 0.02%)</title><rect x="30.4" y="981" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (54 samples, 0.09%)</title><rect x="612.7" y="1093" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::readNonProxy (16 samples, 0.03%)</title><rect x="1103.7" y="437" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1106.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (20 samples, 0.03%)</title><rect x="640.8" y="1109" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="643.83" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (12 samples, 0.02%)</title><rect x="565.3" y="1205" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="568.31" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (24 samples, 0.04%)</title><rect x="638.2" y="1093" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::parseEntity (504 samples, 0.82%)</title><rect x="1110.7" y="629" width="9.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1113.65" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (25 samples, 0.04%)</title><rect x="1107.2" y="261" width="0.5" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="1110.25" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (25 samples, 0.04%)</title><rect x="1107.2" y="245" width="0.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1110.25" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="1029.8" y="341" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1032.76" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (53 samples, 0.09%)</title><rect x="1146.9" y="357" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1149.87" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (147 samples, 0.24%)</title><rect x="93.8" y="1061" width="2.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="96.77" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_clone (6 samples, 0.01%)</title><rect x="74.7" y="981" width="0.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="77.65" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (19 samples, 0.03%)</title><rect x="468.2" y="1317" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/configuration/AtomicTreeParser:::isAtomicMessage (8 samples, 0.01%)</title><rect x="683.4" y="917" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="686.44" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Exception:::&lt;init&gt; (159 samples, 0.26%)</title><rect x="959.4" y="645" width="3.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="962.36" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1,613 samples, 2.63%)</title><rect x="435.1" y="1189" width="31.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="438.06" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (33 samples, 0.05%)</title><rect x="466.4" y="1109" width="0.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="469.36" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Calendar$Builder:::build (14 samples, 0.02%)</title><rect x="1149.8" y="789" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.76" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (16,963 samples, 27.65%)</title><rect x="102.9" y="1253" width="326.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="105.87" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun/nio/ch/EPollArrayWrapper:::epollWait</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="18.6" y="1461" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (7 samples, 0.01%)</title><rect x="841.1" y="533" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="844.06" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_frame_hook (32 samples, 0.05%)</title><rect x="519.7" y="805" width="0.6" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="522.70" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (10 samples, 0.02%)</title><rect x="722.3" y="501" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="725.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (25 samples, 0.04%)</title><rect x="43.9" y="1061" width="0.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (12 samples, 0.02%)</title><rect x="578.7" y="1205" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="581.73" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::create (317 samples, 0.52%)</title><rect x="711.3" y="501" width="6.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="714.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::updateSelectedKeys (20 samples, 0.03%)</title><rect x="598.1" y="1301" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="601.11" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (969 samples, 1.58%)</title><rect x="579.4" y="1253" width="18.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="582.37" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (51 samples, 0.08%)</title><rect x="835.1" y="437" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="838.06" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (149 samples, 0.24%)</title><rect x="897.4" y="517" width="2.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="900.36" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (13 samples, 0.02%)</title><rect x="779.3" y="213" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="782.25" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,611 samples, 2.63%)</title><rect x="435.1" y="1125" width="31.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="438.10" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (31 samples, 0.05%)</title><rect x="1052.0" y="421" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1055.00" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/Transport$1:::run (12 samples, 0.02%)</title><rect x="44.4" y="1093" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/InternalHttpAsyncClient:::execute (530 samples, 0.86%)</title><rect x="1098.6" y="597" width="10.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1101.65" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/StatusUpdateTask:::run (138 samples, 0.22%)</title><rect x="500.6" y="1333" width="2.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="503.60" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (27 samples, 0.04%)</title><rect x="715.3" y="405" width="0.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="718.25" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (6 samples, 0.01%)</title><rect x="925.8" y="469" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="928.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (11 samples, 0.02%)</title><rect x="1165.9" y="773" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1168.88" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/commons/pool2/impl/GenericObjectPool:::returnObject (10 samples, 0.02%)</title><rect x="992.6" y="613" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="995.56" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1145:::invoke (9 samples, 0.01%)</title><rect x="954.7" y="533" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="957.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/$Gson$Types:::resolve (6 samples, 0.01%)</title><rect x="705.0" y="581" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="708.02" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (18 samples, 0.03%)</title><rect x="468.2" y="1221" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (82 samples, 0.13%)</title><rect x="553.1" y="1109" width="1.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="556.07" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_rearm_rto (11 samples, 0.02%)</title><rect x="75.0" y="981" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="78.02" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (822 samples, 1.34%)</title><rect x="1029.3" y="485" width="15.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1032.32" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (8 samples, 0.01%)</title><rect x="10.8" y="1365" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::transfer (10 samples, 0.02%)</title><rect x="1099.8" y="533" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1102.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getEnclosingMethod0 (6 samples, 0.01%)</title><rect x="703.0" y="613" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="706.02" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>credis/java/client/monitor/message/data/CRedisMetricData:::addTag (14 samples, 0.02%)</title><rect x="990.4" y="629" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="993.39" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (19 samples, 0.03%)</title><rect x="1145.4" y="469" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1148.41" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (49 samples, 0.08%)</title><rect x="576.1" y="1205" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="579.06" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/Cat:::logTags (30 samples, 0.05%)</title><rect x="699.9" y="693" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="702.92" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/InternalHttpAsyncClient:::execute (519 samples, 0.85%)</title><rect x="770.4" y="581" width="10.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="773.44" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (34 samples, 0.06%)</title><rect x="523.7" y="1109" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="526.68" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (12 samples, 0.02%)</title><rect x="782.4" y="501" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="785.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (6 samples, 0.01%)</title><rect x="885.8" y="437" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="888.78" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (61 samples, 0.10%)</title><rect x="83.2" y="1077" width="1.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="86.21" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (174 samples, 0.28%)</title><rect x="1171.0" y="1109" width="3.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1174.01" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (72 samples, 0.12%)</title><rect x="19.1" y="1221" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="22.14" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (79 samples, 0.13%)</title><rect x="555.2" y="1221" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6$Context:::addEncodedTokens (51 samples, 0.08%)</title><rect x="493.6" y="1269" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="496.63" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (459 samples, 0.75%)</title><rect x="483.8" y="1173" width="8.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="486.77" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1,613 samples, 2.63%)</title><rect x="435.1" y="1173" width="31.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="438.06" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupHead:::match (12 samples, 0.02%)</title><rect x="1023.3" y="581" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1026.30" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URIBuilder:::buildString (38 samples, 0.06%)</title><rect x="1097.3" y="597" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1100.34" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_swevent_start_hrtimer.part.70 (11 samples, 0.02%)</title><rect x="585.1" y="997" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="588.12" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RemSet::refine_card (71 samples, 0.12%)</title><rect x="24.5" y="1333" width="1.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="27.48" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (8 samples, 0.01%)</title><rect x="60.4" y="1205" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="63.36" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultTransaction:::complete (11 samples, 0.02%)</title><rect x="697.8" y="805" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="700.79" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (6 samples, 0.01%)</title><rect x="87.1" y="1093" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.01%)</title><rect x="500.9" y="997" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_net_SocketOutputStream_socketWrite0 (6 samples, 0.01%)</title><rect x="991.7" y="613" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="994.73" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/server/UnicastServerRef:::dispatch (8 samples, 0.01%)</title><rect x="638.6" y="1109" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="641.64" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (16 samples, 0.03%)</title><rect x="1165.8" y="949" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.82" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::preClose0 (43 samples, 0.07%)</title><rect x="1165.5" y="1221" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1168.49" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (56 samples, 0.09%)</title><rect x="559.8" y="1253" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="562.83" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_accept (317 samples, 0.52%)</title><rect x="567.2" y="1221" width="6.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="570.15" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (35 samples, 0.06%)</title><rect x="63.1" y="1205" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="66.11" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (6 samples, 0.01%)</title><rect x="469.8" y="1141" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (22 samples, 0.04%)</title><rect x="1166.7" y="1317" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (57 samples, 0.09%)</title><rect x="563.3" y="1013" width="1.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (95 samples, 0.15%)</title><rect x="501.4" y="1285" width="1.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (29 samples, 0.05%)</title><rect x="17.7" y="1477" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (11 samples, 0.02%)</title><rect x="504.2" y="1061" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="507.21" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg_locked (88 samples, 0.14%)</title><rect x="16.0" y="1365" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="18.96" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (826 samples, 1.35%)</title><rect x="1029.3" y="549" width="15.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1032.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (33 samples, 0.05%)</title><rect x="835.2" y="309" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="838.25" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::mappingCalc (318 samples, 0.52%)</title><rect x="978.3" y="661" width="6.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="981.29" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/auth/HttpAuthenticator:::isAuthenticationRequested (6 samples, 0.01%)</title><rect x="80.0" y="1253" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="83.04" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::intern (10 samples, 0.02%)</title><rect x="829.9" y="437" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="832.94" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (10 samples, 0.02%)</title><rect x="617.5" y="997" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="620.51" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/Cat:::newTransaction (24 samples, 0.04%)</title><rect x="902.4" y="645" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="905.38" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (25 samples, 0.04%)</title><rect x="93.3" y="1045" width="0.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="96.27" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_remove (11 samples, 0.02%)</title><rect x="578.4" y="1205" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="581.39" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::complete_monitor_locking_C (11 samples, 0.02%)</title><rect x="1166.5" y="1317" width="0.2" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (8 samples, 0.01%)</title><rect x="832.3" y="341" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="835.32" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (11 samples, 0.02%)</title><rect x="557.0" y="1173" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RequestConverters$EndpointBuilder:::addPathPart (30 samples, 0.05%)</title><rect x="780.9" y="597" width="0.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="783.94" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (156 samples, 0.25%)</title><rect x="973.3" y="645" width="3.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="976.31" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (7 samples, 0.01%)</title><rect x="638.0" y="1077" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (701 samples, 1.14%)</title><rect x="469.5" y="1301" width="13.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="472.45" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (7 samples, 0.01%)</title><rect x="600.1" y="965" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::is_zombie (7 samples, 0.01%)</title><rect x="976.1" y="549" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="979.11" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (95 samples, 0.15%)</title><rect x="15.8" y="1397" width="1.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="18.83" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (719 samples, 1.17%)</title><rect x="503.8" y="1173" width="13.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="506.83" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (386 samples, 0.63%)</title><rect x="68.1" y="1077" width="7.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="71.13" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (85 samples, 0.14%)</title><rect x="14.2" y="1285" width="1.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/AbstractProcessor:::parseHost (7 samples, 0.01%)</title><rect x="1161.2" y="1237" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1164.17" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (153 samples, 0.25%)</title><rect x="959.5" y="581" width="2.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="962.46" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (122 samples, 0.20%)</title><rect x="982.0" y="629" width="2.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="984.96" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/common/util/NetworkUtil:::refineIPAddress (16 samples, 0.03%)</title><rect x="689.4" y="805" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="692.40" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.01%)</title><rect x="640.1" y="1109" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (69 samples, 0.11%)</title><rect x="112.7" y="1077" width="1.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="115.66" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (9 samples, 0.01%)</title><rect x="1108.4" y="437" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/BaijiServlet:::service (24,276 samples, 39.57%)</title><rect x="685.8" y="885" width="466.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="688.76" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/server/BaijiServlet:::service</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (68 samples, 0.11%)</title><rect x="1175.2" y="1253" width="1.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/StandardHostValve:::invoke (24,998 samples, 40.75%)</title><rect x="675.9" y="1237" width="480.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="678.93" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/StandardHostValve:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_poll (25 samples, 0.04%)</title><rect x="43.9" y="1029" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>d_alloc_pseudo (6 samples, 0.01%)</title><rect x="573.5" y="1205" width="0.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="576.48" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qunar/tc/qconfig/client/impl/QConfigEntryPoint$2:::apply (11 samples, 0.02%)</title><rect x="30.4" y="1045" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (40 samples, 0.07%)</title><rect x="16.6" y="1173" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="19.56" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.01%)</title><rect x="638.0" y="1061" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (11 samples, 0.02%)</title><rect x="1166.5" y="1061" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1152:::invoke (7 samples, 0.01%)</title><rect x="955.5" y="533" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="958.45" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (9 samples, 0.01%)</title><rect x="972.4" y="581" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="975.40" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::wait (14 samples, 0.02%)</title><rect x="637.3" y="1333" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (1,560 samples, 2.54%)</title><rect x="992.8" y="613" width="30.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="995.79" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,439 samples, 2.35%)</title><rect x="740.6" y="421" width="27.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="743.61" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (536 samples, 0.87%)</title><rect x="524.6" y="1221" width="10.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="527.58" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (9 samples, 0.01%)</title><rect x="64.4" y="1125" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="67.42" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (11 samples, 0.02%)</title><rect x="557.0" y="1157" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Decoder:::decodeArrayLoop (7 samples, 0.01%)</title><rect x="1105.6" y="501" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1108.57" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::read (87 samples, 0.14%)</title><rect x="82.8" y="1237" width="1.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="85.83" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (16 samples, 0.03%)</title><rect x="725.9" y="565" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="728.87" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.01%)</title><rect x="638.0" y="1093" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (17 samples, 0.03%)</title><rect x="641.7" y="981" width="0.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="644.73" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (46 samples, 0.07%)</title><rect x="835.1" y="389" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="838.06" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/hystrix/circuitbreaker/DefaultCircuitBreaker:::isOpen (13 samples, 0.02%)</title><rect x="687.9" y="821" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="690.88" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.01%)</title><rect x="429.0" y="1077" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="432.00" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::read (57 samples, 0.09%)</title><rect x="563.3" y="1269" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (18 samples, 0.03%)</title><rect x="81.1" y="1253" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="84.14" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (17 samples, 0.03%)</title><rect x="1159.7" y="725" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1162.70" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>proc_flush_task (7 samples, 0.01%)</title><rect x="637.8" y="1157" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="640.83" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::create (745 samples, 1.21%)</title><rect x="709.2" y="597" width="14.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="712.23" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="521.3" y="1253" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (21 samples, 0.03%)</title><rect x="523.3" y="1221" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (6 samples, 0.01%)</title><rect x="842.2" y="517" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="845.21" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap:::newNode (12 samples, 0.02%)</title><rect x="494.4" y="1237" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="497.38" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq (96 samples, 0.16%)</title><rect x="94.3" y="901" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="97.29" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (87 samples, 0.14%)</title><rect x="28.2" y="1397" width="1.7" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="31.20" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (20 samples, 0.03%)</title><rect x="23.9" y="1141" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="26.91" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (22 samples, 0.04%)</title><rect x="468.6" y="1045" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="471.61" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (191 samples, 0.31%)</title><rect x="607.8" y="1269" width="3.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="610.82" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController:::doPrivileged (8 samples, 0.01%)</title><rect x="638.6" y="1189" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.64" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (18 samples, 0.03%)</title><rect x="576.6" y="1093" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="579.58" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (77 samples, 0.13%)</title><rect x="28.4" y="1365" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="31.39" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (8 samples, 0.01%)</title><rect x="482.7" y="1205" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="485.73" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (14 samples, 0.02%)</title><rect x="1178.1" y="1285" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (25 samples, 0.04%)</title><rect x="23.8" y="1317" width="0.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (7 samples, 0.01%)</title><rect x="707.6" y="453" width="0.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="710.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (53 samples, 0.09%)</title><rect x="1146.9" y="389" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1149.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentEvent (27 samples, 0.04%)</title><rect x="843.5" y="517" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="846.46" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (221 samples, 0.36%)</title><rect x="92.5" y="1157" width="4.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="95.47" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__remove_hrtimer (11 samples, 0.02%)</title><rect x="671.5" y="1093" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="674.45" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (6 samples, 0.01%)</title><rect x="507.4" y="1013" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="510.37" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (15 samples, 0.02%)</title><rect x="740.3" y="389" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="743.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (11 samples, 0.02%)</title><rect x="113.7" y="965" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="116.74" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (6 samples, 0.01%)</title><rect x="638.2" y="869" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="641.23" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (8 samples, 0.01%)</title><rect x="1108.4" y="341" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1111.38" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory:::createParser (13 samples, 0.02%)</title><rect x="734.4" y="629" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="737.37" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (6 samples, 0.01%)</title><rect x="1170.9" y="1045" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1173.88" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (9 samples, 0.01%)</title><rect x="60.7" y="1221" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="63.69" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (43 samples, 0.07%)</title><rect x="1159.3" y="997" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.34" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (17 samples, 0.03%)</title><rect x="585.1" y="1061" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="588.12" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_swevent_start_hrtimer.part.70 (6 samples, 0.01%)</title><rect x="473.0" y="997" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="476.03" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (6 samples, 0.01%)</title><rect x="713.3" y="357" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="716.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (11 samples, 0.02%)</title><rect x="557.0" y="1285" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getEnclosingMethod0 (7 samples, 0.01%)</title><rect x="711.8" y="453" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="714.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (33 samples, 0.05%)</title><rect x="466.4" y="1061" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="469.36" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (158 samples, 0.26%)</title><rect x="959.4" y="613" width="3.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="962.38" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/handler/codec/replay/ReplayingDecoder:::messageReceived (16 samples, 0.03%)</title><rect x="30.4" y="1189" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (68 samples, 0.11%)</title><rect x="486.3" y="1013" width="1.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="489.32" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (81 samples, 0.13%)</title><rect x="19.0" y="1365" width="1.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="22.00" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/sample/InfoLogSampleHelper:::next (11 samples, 0.02%)</title><rect x="731.9" y="661" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="734.87" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (82 samples, 0.13%)</title><rect x="553.1" y="1093" width="1.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="556.07" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (10 samples, 0.02%)</title><rect x="576.7" y="1045" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="579.68" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (17 samples, 0.03%)</title><rect x="641.7" y="965" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="644.73" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (178 samples, 0.29%)</title><rect x="70.3" y="821" width="3.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="73.27" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::getTextCharacters (13 samples, 0.02%)</title><rect x="1114.3" y="533" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1117.31" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find (8 samples, 0.01%)</title><rect x="725.2" y="501" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="728.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/StatusInfoCollector:::getBashCommandInfo (6 samples, 0.01%)</title><rect x="501.2" y="1285" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="504.17" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__getcwd (8 samples, 0.01%)</title><rect x="10.1" y="1493" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (28 samples, 0.05%)</title><rect x="708.2" y="437" width="0.5" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::setMemory (8 samples, 0.01%)</title><rect x="499.3" y="1285" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="502.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/unidal/cat/traceContext/internal/DefaultTraceContext$1:::compare (6 samples, 0.01%)</title><rect x="688.6" y="805" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="691.63" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (38 samples, 0.06%)</title><rect x="737.0" y="597" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="739.99" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SafepointSynchronize::do_cleanup_tasks (49 samples, 0.08%)</title><rect x="1176.8" y="1413" width="1.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="1179.82" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (42 samples, 0.07%)</title><rect x="961.5" y="533" width="0.8" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="964.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="10.1" y="1477" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (113 samples, 0.18%)</title><rect x="561.1" y="1221" width="2.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="564.08" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (15 samples, 0.02%)</title><rect x="716.9" y="421" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="719.89" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_napi_poll (17 samples, 0.03%)</title><rect x="425.9" y="997" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="428.88" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/$Gson$Types:::resolve (6 samples, 0.01%)</title><rect x="702.7" y="629" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="705.71" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (336 samples, 0.55%)</title><rect x="600.6" y="1205" width="6.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="603.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>credis/java/client/sync/SyncRedisClusterContainer$1:::run (13 samples, 0.02%)</title><rect x="612.0" y="1317" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="614.96" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (38 samples, 0.06%)</title><rect x="1130.2" y="565" width="0.7" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1133.16" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (6 samples, 0.01%)</title><rect x="925.8" y="501" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="928.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (11 samples, 0.02%)</title><rect x="1166.5" y="1253" width="0.2" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (837 samples, 1.36%)</title><rect x="1029.1" y="565" width="16.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1032.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (14 samples, 0.02%)</title><rect x="695.8" y="725" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.81" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::processPendingRequest (13 samples, 0.02%)</title><rect x="779.9" y="549" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="782.89" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (29 samples, 0.05%)</title><rect x="499.7" y="1221" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="502.71" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BmpCharProperty:::match (15 samples, 0.02%)</title><rect x="991.3" y="597" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.31" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="469.9" y="1253" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="472.92" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::performRequestAsyncNoCatch (623 samples, 1.02%)</title><rect x="1096.9" y="629" width="12.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1099.88" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BmpCharProperty:::match (15 samples, 0.02%)</title><rect x="695.8" y="741" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="698.81" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/valves/AccessLogValve$HeaderElement:::addElement (13 samples, 0.02%)</title><rect x="1157.8" y="1221" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1160.80" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (7 samples, 0.01%)</title><rect x="600.1" y="933" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/lucene/util/BytesRef:::utf8ToString (27 samples, 0.04%)</title><rect x="793.6" y="629" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="796.58" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (366 samples, 0.60%)</title><rect x="536.3" y="1061" width="7.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="539.28" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (11 samples, 0.02%)</title><rect x="473.0" y="1045" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="475.99" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (7 samples, 0.01%)</title><rect x="426.1" y="901" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="429.06" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (23 samples, 0.04%)</title><rect x="554.7" y="1333" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (29 samples, 0.05%)</title><rect x="1163.2" y="1157" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1166.20" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.01%)</title><rect x="1108.4" y="309" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1111.38" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (12 samples, 0.02%)</title><rect x="517.9" y="1221" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="520.85" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="1022.4" y="453" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::parkNanos (492 samples, 0.80%)</title><rect x="483.1" y="1285" width="9.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="486.13" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (15 samples, 0.02%)</title><rect x="641.3" y="1045" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="644.31" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/AbstractQueryBuilder:::printBoostAndQueryName (13 samples, 0.02%)</title><rect x="784.7" y="501" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="787.66" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (15 samples, 0.02%)</title><rect x="741.0" y="373" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="743.95" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (14 samples, 0.02%)</title><rect x="18.3" y="1365" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="21.35" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (40 samples, 0.07%)</title><rect x="835.2" y="373" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="838.17" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (146 samples, 0.24%)</title><rect x="959.6" y="565" width="2.8" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="962.59" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (8 samples, 0.01%)</title><rect x="981.2" y="597" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="984.19" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (17 samples, 0.03%)</title><rect x="13.4" y="1461" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="16.40" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (13 samples, 0.02%)</title><rect x="644.1" y="981" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="647.12" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_poll (8 samples, 0.01%)</title><rect x="107.7" y="1109" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="110.72" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/data/elastic/impl/ConditionEsRepoImpl:::query (3,138 samples, 5.12%)</title><rect x="733.8" y="661" width="60.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="736.76" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ct..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check (11 samples, 0.02%)</title><rect x="21.6" y="1413" width="0.2" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="24.56" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (7 samples, 0.01%)</title><rect x="1052.1" y="229" width="0.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/data/elastic/impl/OrgEsRepoImpl:::query (9,296 samples, 15.15%)</title><rect x="794.1" y="661" width="178.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="797.12" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hotel/htlorga..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/buf/StringCache:::toString (20 samples, 0.03%)</title><rect x="1154.3" y="949" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1157.30" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (6 samples, 0.01%)</title><rect x="565.1" y="1301" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="568.08" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/IOSessionImpl:::setEvent (60 samples, 0.10%)</title><rect x="834.9" y="469" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="837.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (33 samples, 0.05%)</title><rect x="683.8" y="821" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="686.80" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_invoke_nonstatic (11 samples, 0.02%)</title><rect x="566.7" y="1269" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="569.65" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (8 samples, 0.01%)</title><rect x="640.3" y="1173" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="643.27" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultMessageProducer:::logEvent (7 samples, 0.01%)</title><rect x="688.3" y="805" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="691.34" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (30 samples, 0.05%)</title><rect x="1062.3" y="613" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1065.25" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_read (8 samples, 0.01%)</title><rect x="500.9" y="1061" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (9 samples, 0.01%)</title><rect x="1050.2" y="405" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1053.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::parse (30 samples, 0.05%)</title><rect x="833.4" y="517" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="836.40" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (76 samples, 0.12%)</title><rect x="28.4" y="1237" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="31.41" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_dp_process_packet (57 samples, 0.09%)</title><rect x="94.7" y="757" width="1.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="97.72" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (92 samples, 0.15%)</title><rect x="501.4" y="1061" width="1.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="504.44" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::readNonProxy (17 samples, 0.03%)</title><rect x="1049.9" y="437" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.90" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (100 samples, 0.16%)</title><rect x="436.5" y="1013" width="1.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="439.50" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlEncode (25 samples, 0.04%)</title><rect x="825.9" y="549" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="828.92" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (366 samples, 0.60%)</title><rect x="536.3" y="1093" width="7.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="539.28" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (24,863 samples, 40.53%)</title><rect x="676.9" y="1109" width="478.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="679.90" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/web/filter/OncePerRequestFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/FloatingDecimal:::readJavaFormatString (6 samples, 0.01%)</title><rect x="786.5" y="565" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="789.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/ObjectParser:::parse (236 samples, 0.38%)</title><rect x="1055.4" y="597" width="4.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1058.37" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (84 samples, 0.14%)</title><rect x="551.0" y="1253" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorWait (79 samples, 0.13%)</title><rect x="555.2" y="1317" width="1.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6:::encodeMessage (80 samples, 0.13%)</title><rect x="496.9" y="1269" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="499.92" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/file/Files:::readAllLines (7 samples, 0.01%)</title><rect x="522.3" y="1285" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="525.32" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (40 samples, 0.07%)</title><rect x="1118.5" y="533" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1121.50" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_poll (7 samples, 0.01%)</title><rect x="107.5" y="1125" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="110.45" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::hashCode (6 samples, 0.01%)</title><rect x="882.0" y="453" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="885.03" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/connector/Request:::removeAttribute (9 samples, 0.01%)</title><rect x="677.0" y="1093" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="680.01" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (209 samples, 0.34%)</title><rect x="92.6" y="1093" width="4.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="95.62" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (16 samples, 0.03%)</title><rect x="467.9" y="1045" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="470.88" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (822 samples, 1.34%)</title><rect x="1029.3" y="469" width="15.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1032.32" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::checkAuthorityNew (21,111 samples, 34.41%)</title><rect x="731.3" y="693" width="406.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="734.30" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaM..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (1,214 samples, 1.98%)</title><rect x="613.7" y="1301" width="23.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="616.72" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (8 samples, 0.01%)</title><rect x="18.6" y="1397" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (459 samples, 0.75%)</title><rect x="483.8" y="1205" width="8.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="486.77" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (55 samples, 0.09%)</title><rect x="713.9" y="373" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="716.95" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/connector/Request:::recycle (6 samples, 0.01%)</title><rect x="675.8" y="1237" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="678.80" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (252 samples, 0.41%)</title><rect x="545.8" y="1109" width="4.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="548.78" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InternString (8 samples, 0.01%)</title><rect x="682.2" y="853" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="685.24" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (17 samples, 0.03%)</title><rect x="644.1" y="1013" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="647.06" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (44 samples, 0.07%)</title><rect x="1159.3" y="1029" width="0.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1162.34" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_ts64 (8 samples, 0.01%)</title><rect x="108.4" y="1157" width="0.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="111.37" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (7 samples, 0.01%)</title><rect x="607.2" y="1253" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (7 samples, 0.01%)</title><rect x="957.7" y="549" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="960.70" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedConstructorAccessor174:::newInstance (7 samples, 0.01%)</title><rect x="953.7" y="517" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="956.74" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_timedwait_tid (9 samples, 0.01%)</title><rect x="739.9" y="533" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="742.86" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/client/ServiceClientBase:::invokeInternal (6 samples, 0.01%)</title><rect x="522.2" y="1221" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="525.18" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::readNonProxy (41 samples, 0.07%)</title><rect x="829.4" y="469" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="832.36" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (93 samples, 0.15%)</title><rect x="15.9" y="1381" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="18.87" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::readClassDesc (49 samples, 0.08%)</title><rect x="1103.6" y="453" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1106.59" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (15 samples, 0.02%)</title><rect x="521.5" y="1173" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="524.55" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WatcherThread::run (557 samples, 0.91%)</title><rect x="1178.8" y="1461" width="10.7" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="1181.80" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.01%)</title><rect x="1167.2" y="1173" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/VM:::latestUserDefinedLoader0 (10 samples, 0.02%)</title><rect x="776.3" y="421" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="779.29" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/SocketInputStream:::socketRead0 (24 samples, 0.04%)</title><rect x="638.2" y="1141" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor1152:::invoke (10 samples, 0.02%)</title><rect x="952.3" y="517" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="955.32" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (38 samples, 0.06%)</title><rect x="43.9" y="1269" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (11 samples, 0.02%)</title><rect x="30.4" y="917" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="33.37" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (7 samples, 0.01%)</title><rect x="607.2" y="1173" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (6 samples, 0.01%)</title><rect x="779.3" y="149" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="782.35" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/commons/logging/impl/SLF4JLogFactory:::getInstance (6 samples, 0.01%)</title><rect x="1155.9" y="1093" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1158.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (51 samples, 0.08%)</title><rect x="835.1" y="421" width="0.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="838.06" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/common/util/concurrent/Futures$ChainingFuture:::doTransform (12 samples, 0.02%)</title><rect x="30.4" y="1061" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (54 samples, 0.09%)</title><rect x="612.7" y="1141" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>redis/clients/jedis/Jedis:::close (11 samples, 0.02%)</title><rect x="992.5" y="629" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="995.54" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mlx5e_poll_rx_cq (15 samples, 0.02%)</title><rect x="425.9" y="981" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="428.90" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_read (8 samples, 0.01%)</title><rect x="10.1" y="1397" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="13.08" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::timeout (7 samples, 0.01%)</title><rect x="577.1" y="1333" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="580.10" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (277 samples, 0.45%)</title><rect x="601.6" y="1061" width="5.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="604.64" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/type/TypeFactory:::_fromAny (9 samples, 0.01%)</title><rect x="959.2" y="629" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="962.17" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_fin (22 samples, 0.04%)</title><rect x="1165.8" y="1029" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1168.76" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (17 samples, 0.03%)</title><rect x="1104.1" y="421" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1107.05" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_rcv (8 samples, 0.01%)</title><rect x="71.5" y="581" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="74.54" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::tryAcquireSharedNanos (1,305 samples, 2.13%)</title><rect x="1071.7" y="613" width="25.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1074.74" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (27 samples, 0.04%)</title><rect x="10.6" y="1397" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="13.58" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/BufferedHeader:::&lt;init&gt; (13 samples, 0.02%)</title><rect x="52.9" y="1253" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="55.90" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (16 samples, 0.03%)</title><rect x="725.9" y="549" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="728.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (8 samples, 0.01%)</title><rect x="523.0" y="1109" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="526.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (17 samples, 0.03%)</title><rect x="641.7" y="997" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="644.73" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/FutureTask:::run (16 samples, 0.03%)</title><rect x="522.9" y="1301" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="525.89" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (6 samples, 0.01%)</title><rect x="469.8" y="1221" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="472.80" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (14 samples, 0.02%)</title><rect x="1178.1" y="1205" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1181.13" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::getBoundFields (311 samples, 0.51%)</title><rect x="711.4" y="485" width="6.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="714.41" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (36 samples, 0.06%)</title><rect x="523.7" y="1205" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (486 samples, 0.79%)</title><rect x="30.1" y="1269" width="9.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="33.14" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (18 samples, 0.03%)</title><rect x="1054.9" y="597" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1057.92" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (11 samples, 0.02%)</title><rect x="740.7" y="389" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="743.72" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (10 samples, 0.02%)</title><rect x="557.0" y="1125" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="560.04" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (10 samples, 0.02%)</title><rect x="796.3" y="357" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="799.28" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (58 samples, 0.09%)</title><rect x="519.5" y="1013" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="522.51" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (23 samples, 0.04%)</title><rect x="638.2" y="949" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="641.17" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/http/MimeHeaders:::getValue (6 samples, 0.01%)</title><rect x="1153.4" y="933" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1156.39" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_poll (8 samples, 0.01%)</title><rect x="600.0" y="1125" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (38 samples, 0.06%)</title><rect x="43.9" y="1285" width="0.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (82 samples, 0.13%)</title><rect x="551.1" y="1093" width="1.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="554.07" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check (44 samples, 0.07%)</title><rect x="103.4" y="1189" width="0.8" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="106.37" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RequestConverters$EndpointBuilder:::addPathPart (15 samples, 0.02%)</title><rect x="1053.7" y="613" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1056.65" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (37 samples, 0.06%)</title><rect x="1058.0" y="533" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1061.02" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_net_SocketInputStream_socketRead0 (7 samples, 0.01%)</title><rect x="467.2" y="1221" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="470.18" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_class_from_class_loader (6 samples, 0.01%)</title><rect x="1104.2" y="389" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1107.19" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (40 samples, 0.07%)</title><rect x="519.7" y="837" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="522.68" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::parse (46 samples, 0.07%)</title><rect x="777.0" y="533" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="780.02" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::extendLeafNode (10 samples, 0.02%)</title><rect x="982.8" y="549" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="985.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (6 samples, 0.01%)</title><rect x="90.0" y="1141" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="93.04" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (33 samples, 0.05%)</title><rect x="71.4" y="613" width="0.7" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="74.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient$SyncResponseListener:::get (1,558 samples, 2.54%)</title><rect x="795.1" y="597" width="29.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="798.06" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (16 samples, 0.03%)</title><rect x="1073.6" y="357" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1076.60" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (6 samples, 0.01%)</title><rect x="565.3" y="1077" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="568.35" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ThreadPoolExecutor$Worker:::run (66 samples, 0.11%)</title><rect x="637.5" y="1349" width="1.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.52" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (371 samples, 0.60%)</title><rect x="1167.7" y="1285" width="7.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1170.74" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (7 samples, 0.01%)</title><rect x="500.9" y="917" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="503.91" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectLocker::ObjectLocker (6 samples, 0.01%)</title><rect x="29.9" y="1429" width="0.1" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="32.89" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::check_safepoint_and_suspend_for_native_trans (6 samples, 0.01%)</title><rect x="1022.4" y="533" width="0.1" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1025.43" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream:::defaultReadFields (53 samples, 0.09%)</title><rect x="1049.6" y="485" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.60" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit_nit (16 samples, 0.03%)</title><rect x="73.9" y="853" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="76.88" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (11 samples, 0.02%)</title><rect x="59.3" y="1173" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="62.26" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (6 samples, 0.01%)</title><rect x="1176.7" y="1285" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (22 samples, 0.04%)</title><rect x="468.6" y="1093" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="471.61" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/parser/SignatureParser:::parsePackageNameAndSimpleClassTypeSignature (9 samples, 0.01%)</title><rect x="716.6" y="437" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="719.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (36 samples, 0.06%)</title><rect x="466.3" y="1317" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="469.30" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/util/LogEventUtil:::shouldRefineTags (8 samples, 0.01%)</title><rect x="1070.4" y="645" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.45" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (9 samples, 0.01%)</title><rect x="557.1" y="1045" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="560.06" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (14 samples, 0.02%)</title><rect x="1107.5" y="229" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="1110.46" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (16,737 samples, 27.28%)</title><rect x="105.5" y="1189" width="322.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="108.51" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_epoll_wait</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (24 samples, 0.04%)</title><rect x="779.0" y="277" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="782.04" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_sched_in.isra.98 (9 samples, 0.01%)</title><rect x="995.3" y="325" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="998.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (10 samples, 0.02%)</title><rect x="12.7" y="1397" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="15.71" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (9 samples, 0.01%)</title><rect x="1178.0" y="1093" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (717 samples, 1.17%)</title><rect x="30.1" y="1285" width="13.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="33.14" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (23 samples, 0.04%)</title><rect x="554.7" y="1125" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (9 samples, 0.01%)</title><rect x="521.3" y="1237" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (80 samples, 0.13%)</title><rect x="431.3" y="1189" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="434.31" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (20 samples, 0.03%)</title><rect x="615.0" y="1093" width="0.4" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="618.01" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (19 samples, 0.03%)</title><rect x="1159.7" y="789" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1162.66" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (35 samples, 0.06%)</title><rect x="63.1" y="1189" width="0.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="66.11" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (7 samples, 0.01%)</title><rect x="470.8" y="1109" width="0.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="473.76" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/threads/TaskThread$WrappingRunnable:::run (27,430 samples, 44.72%)</title><rect x="638.8" y="1349" width="527.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="641.79" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/tomcat/util/threads/TaskThread$WrappingRunnable:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_close (8 samples, 0.01%)</title><rect x="500.9" y="1157" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="503.89" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (454 samples, 0.74%)</title><rect x="30.7" y="1077" width="8.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (9 samples, 0.01%)</title><rect x="1029.8" y="357" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1032.76" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1,378 samples, 2.25%)</title><rect x="995.5" y="341" width="26.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="998.50" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (96 samples, 0.16%)</title><rect x="552.8" y="1317" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="555.82" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (44 samples, 0.07%)</title><rect x="838.4" y="549" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="841.42" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (1,154 samples, 1.88%)</title><rect x="577.2" y="1333" width="22.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="580.23" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (58 samples, 0.09%)</title><rect x="132.8" y="997" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="135.76" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__statvfs_getflags (57 samples, 0.09%)</title><rect x="563.3" y="1221" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.02%)</title><rect x="557.0" y="1253" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="560.02" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_net_SocketInputStream_socketRead0 (8 samples, 0.01%)</title><rect x="600.0" y="1189" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="603.05" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/MessageConsumer:::buildChunkIfNeed (43 samples, 0.07%)</title><rect x="543.5" y="1333" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="546.49" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::iterator (12 samples, 0.02%)</title><rect x="98.2" y="1301" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="101.18" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (70 samples, 0.11%)</title><rect x="1175.2" y="1349" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter$FormatSpecifier:::&lt;init&gt; (6 samples, 0.01%)</title><rect x="991.0" y="597" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.02" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/Net:::localInetAddress (7 samples, 0.01%)</title><rect x="434.7" y="1269" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.68" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (21 samples, 0.03%)</title><rect x="523.3" y="1157" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="526.26" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1,108 samples, 1.81%)</title><rect x="615.4" y="1093" width="21.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="618.40" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (44 samples, 0.07%)</title><rect x="1159.3" y="1013" width="0.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1162.34" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReferencePipeline:::collect (15 samples, 0.02%)</title><rect x="977.5" y="661" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="980.46" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1,343 samples, 2.19%)</title><rect x="742.3" y="325" width="25.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="745.34" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_send_ack.part.29 (145 samples, 0.24%)</title><rect x="93.8" y="1029" width="2.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="96.81" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (17 samples, 0.03%)</title><rect x="467.4" y="1077" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (454 samples, 0.74%)</title><rect x="30.7" y="1109" width="8.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (113 samples, 0.18%)</title><rect x="471.0" y="1077" width="2.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="474.03" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/TokenParser:::copyContent (6 samples, 0.01%)</title><rect x="777.6" y="501" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="780.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/DefaultSerializerProvider:::serializeValue (19 samples, 0.03%)</title><rect x="979.8" y="629" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="982.77" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sock_release (25 samples, 0.04%)</title><rect x="1165.7" y="1077" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1168.74" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (9 samples, 0.01%)</title><rect x="1108.4" y="453" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (225 samples, 0.37%)</title><rect x="39.6" y="1093" width="4.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="42.60" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="1072.3" y="533" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1075.31" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (6 samples, 0.01%)</title><rect x="523.1" y="997" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="526.07" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (9 samples, 0.01%)</title><rect x="865.4" y="453" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="868.41" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::fireCallbacks (71 samples, 0.12%)</title><rect x="834.7" y="533" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="837.75" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/tcp/TCPTransport$ConnectionHandler$$Lambda$5/1731215854:::run (36 samples, 0.06%)</title><rect x="638.1" y="1253" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="641.10" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::resize (7 samples, 0.01%)</title><rect x="990.0" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="993.02" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (38 samples, 0.06%)</title><rect x="43.9" y="1253" width="0.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,611 samples, 2.63%)</title><rect x="435.1" y="1109" width="31.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="438.10" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (79 samples, 0.13%)</title><rect x="555.2" y="1253" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (49 samples, 0.08%)</title><rect x="960.4" y="533" width="1.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="963.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (9 samples, 0.01%)</title><rect x="564.9" y="1221" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="567.88" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient$SyncResponseListener:::get (1,308 samples, 2.13%)</title><rect x="1071.7" y="629" width="25.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1074.70" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/GregorianCalendar:::computeFields (6 samples, 0.01%)</title><rect x="729.3" y="645" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="732.26" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (43 samples, 0.07%)</title><rect x="103.4" y="1045" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="106.39" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (19 samples, 0.03%)</title><rect x="1159.7" y="773" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1162.66" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (10 samples, 0.02%)</title><rect x="17.3" y="1205" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="20.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (24 samples, 0.04%)</title><rect x="523.8" y="1029" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="526.80" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (53 samples, 0.09%)</title><rect x="559.9" y="1029" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="562.88" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamField:::&lt;init&gt; (11 samples, 0.02%)</title><rect x="1101.7" y="485" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1104.67" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (9 samples, 0.01%)</title><rect x="1113.2" y="581" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1116.21" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (54 samples, 0.09%)</title><rect x="612.7" y="1077" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (18 samples, 0.03%)</title><rect x="467.8" y="1173" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="470.84" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestHighLevelClient:::performRequest (2,547 samples, 4.15%)</title><rect x="1071.4" y="645" width="49.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1074.37" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::acquireQueued (10 samples, 0.02%)</title><rect x="1108.3" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1111.34" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (7 samples, 0.01%)</title><rect x="864.9" y="485" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="867.93" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (6 samples, 0.01%)</title><rect x="84.3" y="885" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (13 samples, 0.02%)</title><rect x="725.2" y="533" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="728.24" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (70 samples, 0.11%)</title><rect x="1175.2" y="1317" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1178.23" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Class_forName0 (34 samples, 0.06%)</title><rect x="1101.9" y="485" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1104.92" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (610 samples, 0.99%)</title><rect x="470.9" y="1125" width="11.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="473.90" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (6 samples, 0.01%)</title><rect x="787.2" y="565" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="790.22" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::write0 (433 samples, 0.71%)</title><rect x="67.7" y="1237" width="8.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="70.73" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (16 samples, 0.03%)</title><rect x="725.9" y="581" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="728.87" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::loop (187 samples, 0.30%)</title><rect x="1175.2" y="1445" width="3.6" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1178.21" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/AbstractQueryBuilder:::toXContent (6 samples, 0.01%)</title><rect x="1110.5" y="549" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1113.50" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_swevent_start_hrtimer.part.70 (6 samples, 0.01%)</title><rect x="995.3" y="277" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="998.29" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BranchConn:::match (6 samples, 0.01%)</title><rect x="991.4" y="517" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="994.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (25 samples, 0.04%)</title><rect x="43.9" y="981" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (33 samples, 0.05%)</title><rect x="1159.5" y="949" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1162.53" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (95 samples, 0.15%)</title><rect x="15.8" y="1413" width="1.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="18.83" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (18 samples, 0.03%)</title><rect x="710.9" y="469" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="713.89" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (6 samples, 0.01%)</title><rect x="84.3" y="837" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/AbstractPipeline:::evaluate (129 samples, 0.21%)</title><rect x="984.5" y="661" width="2.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="987.46" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (23 samples, 0.04%)</title><rect x="17.8" y="1301" width="0.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="20.81" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putMapEntries (6 samples, 0.01%)</title><rect x="1097.1" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1100.15" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$835/320495391:::test (18 samples, 0.03%)</title><rect x="980.7" y="613" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="983.67" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectMapper:::_readMapAndClose (437 samples, 0.71%)</title><rect x="1120.6" y="661" width="8.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1123.63" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="1167.2" y="1253" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (43 samples, 0.07%)</title><rect x="83.4" y="1029" width="0.8" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="86.37" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_rcv (6 samples, 0.01%)</title><rect x="74.1" y="837" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="77.08" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (527 samples, 0.86%)</title><rect x="1179.3" y="1285" width="10.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1182.27" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (70 samples, 0.11%)</title><rect x="555.3" y="1125" width="1.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="558.27" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::lambda$anyMatch$13 (124 samples, 0.20%)</title><rect x="984.5" y="629" width="2.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="987.54" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__statvfs_getflags (24 samples, 0.04%)</title><rect x="638.2" y="1109" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="641.15" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.14 (6 samples, 0.01%)</title><rect x="742.3" y="309" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="745.34" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (54 samples, 0.09%)</title><rect x="559.9" y="1093" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="562.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (12 samples, 0.02%)</title><rect x="485.4" y="1029" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="488.44" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (369 samples, 0.60%)</title><rect x="1167.8" y="1269" width="7.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1170.78" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (12 samples, 0.02%)</title><rect x="1110.4" y="581" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1113.40" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (41 samples, 0.07%)</title><rect x="89.0" y="1077" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="92.00" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectInputStream$BlockDataInputStream:::readUTFSpan (9 samples, 0.01%)</title><rect x="1049.9" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1052.94" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (42 samples, 0.07%)</title><rect x="773.4" y="485" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="776.44" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (24 samples, 0.04%)</title><rect x="468.6" y="1301" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (11 samples, 0.02%)</title><rect x="1166.5" y="1173" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (13 samples, 0.02%)</title><rect x="716.9" y="373" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="719.89" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (72 samples, 0.12%)</title><rect x="16.2" y="1349" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="19.19" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (9 samples, 0.01%)</title><rect x="1108.4" y="389" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/message/HeaderGroup:::getHeaders (19 samples, 0.03%)</title><rect x="76.6" y="1269" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="79.63" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/status/StatusInfoCollector:::collectTcpStat (15 samples, 0.02%)</title><rect x="500.9" y="1301" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="503.87" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (22 samples, 0.04%)</title><rect x="1166.7" y="1125" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1169.67" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultTransaction:::addChild (9 samples, 0.01%)</title><rect x="902.6" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="905.55" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (26 samples, 0.04%)</title><rect x="1101.9" y="469" width="0.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1104.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_clock_event_add (6 samples, 0.01%)</title><rect x="742.2" y="293" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="745.20" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1KlassScanClosure::do_klass (8 samples, 0.01%)</title><rect x="22.9" y="1381" width="0.2" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="25.91" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process (25,618 samples, 41.76%)</title><rect x="672.4" y="1285" width="492.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="675.38" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::proc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (29 samples, 0.05%)</title><rect x="584.5" y="1061" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="587.54" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit$$Lambda$513/460379098:::parse (218 samples, 0.36%)</title><rect x="1055.7" y="581" width="4.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1058.71" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (1,487 samples, 2.42%)</title><rect x="993.5" y="485" width="28.6" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="996.52" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >po..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (7 samples, 0.01%)</title><rect x="838.7" y="485" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="841.73" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (19 samples, 0.03%)</title><rect x="1158.8" y="1045" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1161.80" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/netty/util/Recycler:::recycle (8 samples, 0.01%)</title><rect x="520.9" y="1301" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="523.87" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/common/xcontent/XContentHelper:::toXContent (69 samples, 0.11%)</title><rect x="837.9" y="581" width="1.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="840.94" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (12 samples, 0.02%)</title><rect x="637.3" y="1141" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="640.27" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor83:::invoke (6 samples, 0.01%)</title><rect x="1104.6" y="437" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1107.61" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (23 samples, 0.04%)</title><rect x="554.7" y="1269" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="557.69" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (989 samples, 1.61%)</title><rect x="579.1" y="1285" width="19.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="582.06" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/internal/DefaultTransaction:::complete (13 samples, 0.02%)</title><rect x="902.9" y="645" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="905.86" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (10 samples, 0.02%)</title><rect x="426.2" y="997" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="429.21" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (1,379 samples, 2.25%)</title><rect x="995.5" y="373" width="26.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="998.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SafepointSynchronize::block (44 samples, 0.07%)</title><rect x="103.4" y="1205" width="0.8" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="106.37" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::run (25,699 samples, 41.89%)</title><rect x="672.0" y="1317" width="494.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="674.99" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (9 samples, 0.01%)</title><rect x="1108.4" y="373" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1111.36" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (7 samples, 0.01%)</title><rect x="1167.2" y="1205" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (6 samples, 0.01%)</title><rect x="112.7" y="981" width="0.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="115.66" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (7 samples, 0.01%)</title><rect x="519.9" y="661" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="522.87" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::mark_active_nmethods (12 samples, 0.02%)</title><rect x="1176.8" y="1397" width="0.3" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="1179.82" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (41 samples, 0.07%)</title><rect x="555.8" y="1061" width="0.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="558.79" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_complete_monitor_locking_Java (17 samples, 0.03%)</title><rect x="99.9" y="1269" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="102.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_output (67 samples, 0.11%)</title><rect x="70.8" y="693" width="1.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="73.82" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (548 samples, 0.89%)</title><rect x="524.4" y="1301" width="10.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="527.37" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/unidal/cat/traceContext/internal/DefaultTraceContext:::toString (9 samples, 0.01%)</title><rect x="688.7" y="805" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="691.75" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (88 samples, 0.14%)</title><rect x="519.1" y="1125" width="1.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="522.10" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (20 samples, 0.03%)</title><rect x="641.7" y="1029" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="644.68" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (25 samples, 0.04%)</title><rect x="43.9" y="949" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/aggregator/DefaultTransactionAggregator$TransactionData:::add (11 samples, 0.02%)</title><rect x="683.2" y="885" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="686.17" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (6 samples, 0.01%)</title><rect x="524.7" y="997" width="0.1" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="527.70" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (53 samples, 0.09%)</title><rect x="778.7" y="437" width="1.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="781.71" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (1,540 samples, 2.51%)</title><rect x="436.2" y="1061" width="29.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="439.16" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find (6 samples, 0.01%)</title><rect x="1140.2" y="677" width="0.1" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="1143.18" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (240 samples, 0.39%)</title><rect x="487.6" y="1013" width="4.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="490.63" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (16 samples, 0.03%)</title><rect x="1102.1" y="437" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1105.11" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>redis/clients/jedis/Protocol:::process (57 samples, 0.09%)</title><rect x="563.3" y="1285" width="1.1" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="566.27" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/util/CatTagHelper:::addCatTag (14 samples, 0.02%)</title><rect x="1070.7" y="645" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.66" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__audit_syscall_exit (8 samples, 0.01%)</title><rect x="432.8" y="1189" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="435.85" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (6 samples, 0.01%)</title><rect x="636.6" y="1077" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="639.60" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (7 samples, 0.01%)</title><rect x="1167.2" y="1109" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (16 samples, 0.03%)</title><rect x="856.1" y="501" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="859.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor24:::invoke (6 samples, 0.01%)</title><rect x="44.4" y="1029" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="47.43" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (16 samples, 0.03%)</title><rect x="1163.4" y="1045" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1166.40" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (271 samples, 0.44%)</title><rect x="545.4" y="1237" width="5.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="548.44" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (173 samples, 0.28%)</title><rect x="70.3" y="789" width="3.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="73.32" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/reflect/DefaultSchemaProvider:::getSchema (7 samples, 0.01%)</title><rect x="1138.9" y="789" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1141.87" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_recv (727 samples, 1.19%)</title><rect x="503.8" y="1237" width="14.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="506.77" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_filter_match (13 samples, 0.02%)</title><rect x="741.9" y="325" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="744.91" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (36 samples, 0.06%)</title><rect x="638.1" y="1269" width="0.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="641.10" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (10 samples, 0.02%)</title><rect x="722.7" y="453" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="725.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::unparkSuccessor (59 samples, 0.10%)</title><rect x="575.9" y="1253" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="578.89" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,475 samples, 2.40%)</title><rect x="993.8" y="437" width="28.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="996.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/protocol/HttpAsyncRequestExecutor:::responseReceived (278 samples, 0.45%)</title><rect x="77.3" y="1269" width="5.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="80.29" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/SynchronousQueue:::poll (7 samples, 0.01%)</title><rect x="638.0" y="1317" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="640.96" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.01%)</title><rect x="608.1" y="1061" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="611.09" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorWait (360 samples, 0.59%)</title><rect x="600.3" y="1317" width="6.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="603.28" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (12 samples, 0.02%)</title><rect x="835.5" y="181" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="838.52" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (24 samples, 0.04%)</title><rect x="468.6" y="1157" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_Sleep (278 samples, 0.45%)</title><rect x="545.3" y="1317" width="5.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="548.30" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::executeService (22,891 samples, 37.32%)</title><rect x="697.5" y="821" width="440.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="700.50" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerB..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OtherRegionsTable::occupied (10 samples, 0.02%)</title><rect x="21.8" y="1413" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="24.77" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (189 samples, 0.31%)</title><rect x="607.9" y="1189" width="3.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="610.86" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (6 samples, 0.01%)</title><rect x="84.3" y="789" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (92 samples, 0.15%)</title><rect x="501.4" y="1077" width="1.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="504.44" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (7 samples, 0.01%)</title><rect x="469.9" y="1237" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="472.92" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (24 samples, 0.04%)</title><rect x="468.6" y="1253" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory:::createGenerator (8 samples, 0.01%)</title><rect x="1133.6" y="661" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1136.62" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (29 samples, 0.05%)</title><rect x="425.8" y="1061" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="428.85" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/VM:::latestUserDefinedLoader0 (16 samples, 0.03%)</title><rect x="1048.9" y="501" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1051.92" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/BufferedInputStream:::fill (25 samples, 0.04%)</title><rect x="43.9" y="1157" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/Transport$1:::run (8 samples, 0.01%)</title><rect x="638.6" y="1125" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="641.64" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::read (48 samples, 0.08%)</title><rect x="1163.0" y="1221" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1165.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (11 samples, 0.02%)</title><rect x="1166.5" y="1141" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (97 samples, 0.16%)</title><rect x="1146.4" y="645" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1149.39" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (13 samples, 0.02%)</title><rect x="714.7" y="309" width="0.3" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="717.71" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (34 samples, 0.06%)</title><rect x="63.1" y="1173" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="66.13" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (9 samples, 0.01%)</title><rect x="1178.0" y="1253" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (18 samples, 0.03%)</title><rect x="44.0" y="837" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="47.05" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (9 samples, 0.01%)</title><rect x="427.2" y="1173" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="430.21" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (6 samples, 0.01%)</title><rect x="67.6" y="1221" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="70.61" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_consider_task (7 samples, 0.01%)</title><rect x="637.8" y="1189" width="0.2" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text text-anchor="" x="640.83" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.01%)</title><rect x="552.9" y="1109" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (826 samples, 1.35%)</title><rect x="1029.3" y="517" width="15.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1032.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (23 samples, 0.04%)</title><rect x="1048.5" y="501" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1051.46" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (24,825 samples, 40.47%)</title><rect x="677.6" y="1061" width="477.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="680.55" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (11 samples, 0.02%)</title><rect x="100.0" y="1077" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (21,129 samples, 34.44%)</title><rect x="731.1" y="709" width="406.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="734.08" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/aop/framework/ReflectiveMethodInvoc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (42 samples, 0.07%)</title><rect x="1146.9" y="261" width="0.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1149.91" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (13 samples, 0.02%)</title><rect x="638.3" y="869" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="641.35" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (915 samples, 1.49%)</title><rect x="580.2" y="1173" width="17.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="583.16" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::buildLogEvent (19 samples, 0.03%)</title><rect x="1070.6" y="661" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1073.60" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/stream/ReferencePipeline:::collect (133 samples, 0.22%)</title><rect x="981.8" y="645" width="2.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="984.79" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_LatestUserDefinedLoader (22 samples, 0.04%)</title><rect x="774.3" y="469" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="777.25" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.01%)</title><rect x="607.2" y="1237" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/gson/Gson:::getAdapter (181 samples, 0.30%)</title><rect x="712.6" y="453" width="3.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (15 samples, 0.02%)</title><rect x="1052.1" y="293" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1055.08" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (160 samples, 0.26%)</title><rect x="87.1" y="1173" width="3.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="90.10" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/index/query/TermsQueryBuilder$3:::get (22 samples, 0.04%)</title><rect x="784.1" y="485" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="787.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (6 samples, 0.01%)</title><rect x="637.3" y="1109" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="640.27" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (18 samples, 0.03%)</title><rect x="468.2" y="1093" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="471.20" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (67 samples, 0.11%)</title><rect x="132.6" y="1029" width="1.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="135.65" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (11 samples, 0.02%)</title><rect x="1166.5" y="1109" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1169.46" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (6 samples, 0.01%)</title><rect x="552.9" y="1237" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="555.86" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (17 samples, 0.03%)</title><rect x="467.4" y="1141" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="470.36" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/ObjectStreamClass:::getReflector (6 samples, 0.01%)</title><rect x="772.7" y="469" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="775.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (11 samples, 0.02%)</title><rect x="100.0" y="1141" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (12 samples, 0.02%)</title><rect x="494.7" y="1269" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="497.69" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getSimpleName (37 samples, 0.06%)</title><rect x="703.1" y="613" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="706.13" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (24 samples, 0.04%)</title><rect x="468.6" y="1173" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="471.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (67 samples, 0.11%)</title><rect x="83.1" y="1141" width="1.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="86.12" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.03%)</title><rect x="22.3" y="1397" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="25.31" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::wait (7 samples, 0.01%)</title><rect x="1167.2" y="1333" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1170.17" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (11 samples, 0.02%)</title><rect x="721.7" y="517" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="724.72" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="972.7" y="565" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="975.71" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/dianping/cat/message/spi/codec/CodecHelper:::writeMap (63 samples, 0.10%)</title><rect x="558.4" y="1285" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="561.42" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::regionMatches (38 samples, 0.06%)</title><rect x="986.1" y="581" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="989.12" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (6 samples, 0.01%)</title><rect x="523.1" y="1013" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="526.07" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (12 samples, 0.02%)</title><rect x="842.1" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="845.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/client/BasicAuthCache:::get (168 samples, 0.27%)</title><rect x="1047.5" y="549" width="3.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1050.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (35 samples, 0.06%)</title><rect x="523.7" y="1157" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_slow_exit_work (11 samples, 0.02%)</title><rect x="102.6" y="1189" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="105.56" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (103 samples, 0.17%)</title><rect x="88.0" y="1109" width="2.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="91.02" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/std/StringDeserializer:::deserialize (175 samples, 0.29%)</title><rect x="948.1" y="517" width="3.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="951.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (29 samples, 0.05%)</title><rect x="1164.5" y="1125" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1167.45" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (10 samples, 0.02%)</title><rect x="796.3" y="341" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="799.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_sched_in (8 samples, 0.01%)</title><rect x="30.9" y="997" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="33.93" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.01%)</title><rect x="18.6" y="1381" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="21.64" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (85 samples, 0.14%)</title><rect x="14.2" y="1269" width="1.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (14 samples, 0.02%)</title><rect x="105.2" y="1109" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="108.18" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (29 samples, 0.05%)</title><rect x="423.5" y="1077" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="426.50" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupHead:::match (8 samples, 0.01%)</title><rect x="1149.4" y="741" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1152.43" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Field:::getGenericType (104 samples, 0.17%)</title><rect x="724.2" y="629" width="2.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="727.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (7 samples, 0.01%)</title><rect x="432.7" y="1157" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="435.71" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1,400 samples, 2.28%)</title><rect x="741.2" y="373" width="27.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="744.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (16 samples, 0.03%)</title><rect x="740.3" y="421" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="743.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.01%)</title><rect x="640.1" y="1061" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (7 samples, 0.01%)</title><rect x="1063.4" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1066.41" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (21 samples, 0.03%)</title><rect x="598.5" y="1237" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="601.51" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (257 samples, 0.42%)</title><rect x="69.7" y="949" width="4.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="72.69" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.17.so] (430 samples, 0.70%)</title><rect x="67.7" y="1221" width="8.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="70.75" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (11 samples, 0.02%)</title><rect x="1165.9" y="789" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1168.88" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::nextNode (8 samples, 0.01%)</title><rect x="1098.4" y="613" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1101.38" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (33 samples, 0.05%)</title><rect x="1139.8" y="741" width="0.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1142.79" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::write0 (13 samples, 0.02%)</title><rect x="607.5" y="1269" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="610.49" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (8 samples, 0.01%)</title><rect x="835.3" y="197" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="838.34" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (700 samples, 1.14%)</title><rect x="504.1" y="1109" width="13.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="507.14" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (25 samples, 0.04%)</title><rect x="23.8" y="1285" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="26.83" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::forName0 (19 samples, 0.03%)</title><rect x="722.3" y="533" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="725.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ovs_flow_tbl_lookup_stats (6 samples, 0.01%)</title><rect x="1159.8" y="645" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1162.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (38 samples, 0.06%)</title><rect x="43.9" y="1205" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="46.93" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (33 samples, 0.05%)</title><rect x="466.4" y="1125" width="0.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="469.36" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/GeneratedMethodAccessor66:::invoke (59 samples, 0.10%)</title><rect x="1049.5" y="501" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1052.50" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::notifyAll (13 samples, 0.02%)</title><rect x="84.7" y="1269" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="87.67" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (7 samples, 0.01%)</title><rect x="640.1" y="1141" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="643.06" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (9 samples, 0.01%)</title><rect x="597.5" y="1109" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="600.45" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (77 samples, 0.13%)</title><rect x="28.4" y="1285" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="31.39" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1,421 samples, 2.32%)</title><rect x="740.9" y="389" width="27.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="743.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::unparkSuccessor (39 samples, 0.06%)</title><rect x="683.8" y="901" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="686.78" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_in (6 samples, 0.01%)</title><rect x="637.3" y="1093" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="640.27" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (6 samples, 0.01%)</title><rect x="434.5" y="1285" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="437.54" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (9 samples, 0.01%)</title><rect x="557.1" y="1077" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="560.06" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (6 samples, 0.01%)</title><rect x="1176.7" y="1237" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1179.69" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner (59,637 samples, 97.22%)</title><rect x="27.9" y="1461" width="1147.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="30.89" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::thread_main_inner</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (6 samples, 0.01%)</title><rect x="84.3" y="773" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="87.25" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (9 samples, 0.01%)</title><rect x="521.3" y="1109" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="524.28" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/log/impl/CLoggingLogger$FreewayLogSender:::send (12 samples, 0.02%)</title><rect x="979.0" y="613" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="981.98" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (15 samples, 0.02%)</title><rect x="105.2" y="1141" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="108.16" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/client/RestClient:::performRequestAsync (337 samples, 0.55%)</title><rect x="1046.6" y="613" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1049.61" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/rmi/transport/tcp/TCPTransport$ConnectionHandler:::run0 (36 samples, 0.06%)</title><rect x="638.1" y="1237" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="641.10" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::sleep (414 samples, 0.67%)</title><rect x="535.4" y="1285" width="7.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="538.38" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/sym/CharsToNameCanonicalizer:::findSymbol (21 samples, 0.03%)</title><rect x="1061.1" y="613" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1064.08" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (29 samples, 0.05%)</title><rect x="63.1" y="1157" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="66.15" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.01%)</title><rect x="739.9" y="517" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="742.86" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::await (37 samples, 0.06%)</title><rect x="523.7" y="1285" width="0.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="526.66" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/elasticsearch/search/SearchHit:::createFromMap (9 samples, 0.01%)</title><rect x="1120.0" y="597" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1122.98" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/hystrix/DefaultExecutionContext:::markSuccess (15 samples, 0.02%)</title><rect x="691.2" y="821" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="694.23" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (242 samples, 0.39%)</title><rect x="92.1" y="1189" width="4.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="95.14" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::parseEscapedName (8 samples, 0.01%)</title><rect x="894.3" y="453" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="897.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (17 samples, 0.03%)</title><rect x="796.5" y="341" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="799.49" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (54 samples, 0.09%)</title><rect x="612.7" y="1109" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="615.69" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,614 samples, 2.63%)</title><rect x="640.8" y="1189" width="31.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="643.75" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (978 samples, 1.59%)</title><rect x="617.8" y="1029" width="18.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="620.78" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jboss/netty/channel/SimpleChannelUpstreamHandler:::handleUpstream (15 samples, 0.02%)</title><rect x="30.4" y="1109" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="33.35" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (536 samples, 0.87%)</title><rect x="1179.2" y="1381" width="10.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1182.17" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/jmx/remote/internal/ServerCommunicatorAdmin$Timeout:::run (14 samples, 0.02%)</title><rect x="637.3" y="1349" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="640.25" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (15 samples, 0.02%)</title><rect x="1164.6" y="997" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="1167.65" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (85 samples, 0.14%)</title><rect x="14.2" y="1381" width="1.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="17.15" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (13 samples, 0.02%)</title><rect x="18.4" y="1317" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="21.37" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::sleep (95 samples, 0.15%)</title><rect x="501.4" y="1317" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="504.39" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler:::releaseConnection (75 samples, 0.12%)</title><rect x="49.7" y="1253" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="52.68" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/jmx/remote/internal/ServerCommunicatorAdmin$Timeout:::run (79 samples, 0.13%)</title><rect x="555.2" y="1349" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="558.21" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::processPendingRequest (9 samples, 0.01%)</title><rect x="836.1" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="839.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1,344 samples, 2.19%)</title><rect x="742.3" y="341" width="25.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/framework/clogging/agent/MessageConsumer:::compress (51 samples, 0.08%)</title><rect x="544.3" y="1333" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="547.32" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (90 samples, 0.15%)</title><rect x="26.1" y="1397" width="1.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="29.06" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetDeclaringClass (7 samples, 0.01%)</title><rect x="712.0" y="421" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="714.96" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/apache/tomcat/util/http/NamesEnumerator:::findNext (13 samples, 0.02%)</title><rect x="1153.7" y="933" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1156.66" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::parse (48 samples, 0.08%)</title><rect x="1105.1" y="549" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1108.11" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (11 samples, 0.02%)</title><rect x="100.0" y="1173" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="103.02" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/soa/caravan/util/net/apache/HttpRequestExecutors:::execute (15 samples, 0.02%)</title><rect x="599.9" y="1333" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="602.91" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (14 samples, 0.02%)</title><rect x="786.9" y="565" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="789.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_poll (29 samples, 0.05%)</title><rect x="17.7" y="1429" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="20.73" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/ctrip/es/apache/http/impl/nio/reactor/IOSessionImpl:::setEvent (58 samples, 0.09%)</title><rect x="62.7" y="1237" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="65.75" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (84 samples, 0.14%)</title><rect x="551.0" y="1269" width="1.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="554.03" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1,546 samples, 2.52%)</title><rect x="641.6" y="1077" width="29.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="644.62" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (19 samples, 0.03%)</title><rect x="599.5" y="1253" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="602.55" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>