10243 lines
854 KiB
XML
10243 lines
854 KiB
XML
<?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="1446" onload="init(evt)" viewBox="0 0 1200 1446" 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="1446.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="1429" 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="1429" 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>java/text/SimpleDateFormat:::format (11 samples, 0.01%)</title><rect x="122.5" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="125.53" 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_v4_rcv (21 samples, 0.03%)</title><rect x="562.6" y="213" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.59" 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>java/lang/Exception:::<init> (42 samples, 0.05%)</title><rect x="1031.1" y="533" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.09" 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.05%)</title><rect x="61.7" y="709" width="0.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.68" 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>_raw_spin_unlock_irqrestore (8 samples, 0.01%)</title><rect x="1189.9" y="1221" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>process_backlog (8 samples, 0.01%)</title><rect x="810.8" y="341" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.79" 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/AbstractQueryBuilder:::toXContent (73 samples, 0.09%)</title><rect x="573.5" y="357" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.52" 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_rcv_established (8 samples, 0.01%)</title><rect x="72.9" y="741" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.92" 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/util/Formatter:::format (25 samples, 0.03%)</title><rect x="1136.7" y="533" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.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>netdev_frame_hook (28 samples, 0.03%)</title><rect x="253.6" y="213" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.60" 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>__netif_receive_skb_core (15 samples, 0.02%)</title><rect x="788.7" y="309" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.67" 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>ip_rcv_finish (17 samples, 0.02%)</title><rect x="949.1" y="293" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.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>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (24 samples, 0.03%)</title><rect x="584.9" y="485" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="587.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>org/apache/logging/log4j/core/Logger:::isEnabled (12 samples, 0.01%)</title><rect x="57.1" y="1141" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>__softirqentry_text_start (63 samples, 0.08%)</title><rect x="301.6" y="357" width="0.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.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>__local_bh_enable_ip (9 samples, 0.01%)</title><rect x="85.0" y="789" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.05" 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_v4_do_rcv (14 samples, 0.02%)</title><rect x="813.9" y="229" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.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/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (27 samples, 0.03%)</title><rect x="1139.7" y="517" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1142.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>__schedule (16 samples, 0.02%)</title><rect x="86.0" y="1013" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.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>java/util/concurrent/locks/LockSupport:::parkNanos (65 samples, 0.08%)</title><rect x="78.7" y="1157" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.68" 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>ret_from_intr (22 samples, 0.03%)</title><rect x="825.0" y="437" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="827.97" 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/IOSessionImpl:::setEvent (38 samples, 0.05%)</title><rect x="581.1" y="389" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.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>__netif_receive_skb_core (12 samples, 0.01%)</title><rect x="469.8" y="277" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>netif_receive_skb_internal (29 samples, 0.03%)</title><rect x="792.7" y="293" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.70" 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/es/jackson/core/JsonGenerator:::copyCurrentStructure (30,795 samples, 36.84%)</title><rect x="128.4" y="437" width="434.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.40" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStruct..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_local_deliver (8 samples, 0.01%)</title><rect x="810.8" y="261" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.79" 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>com/ctriposs/baiji/rpc/server/util/RequestUtil:::getRequestObj (102 samples, 0.12%)</title><rect x="1171.5" y="693" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1174.52" 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_IRQ (31 samples, 0.04%)</title><rect x="290.6" y="373" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.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>OptoRuntime::is_deoptimized_caller_frame (8 samples, 0.01%)</title><rect x="1098.0" y="469" width="0.1" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.96" 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/methods/HttpRequestBase:::getRequestLine (8 samples, 0.01%)</title><rect x="57.4" y="1109" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>java/lang/Class:::getEnclosingMethod0 (8 samples, 0.01%)</title><rect x="119.7" y="437" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="122.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>NET_SockaddrToInetAddress (16 samples, 0.02%)</title><rect x="89.1" y="1157" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>net_rx_action (106 samples, 0.13%)</title><rect x="945.6" y="357" width="1.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.55" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__wake_up_sync_key (21 samples, 0.03%)</title><rect x="1184.1" y="997" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.09" 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/circuitbreaker/DefaultCircuitBreaker:::isOpen (12 samples, 0.01%)</title><rect x="102.4" y="693" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="105.42" 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>syscall_slow_exit_work (39 samples, 0.05%)</title><rect x="74.4" y="1077" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="77.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>ip_rcv_finish (28 samples, 0.03%)</title><rect x="254.2" y="245" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.17" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>dev_forward_skb (24 samples, 0.03%)</title><rect x="53.3" y="693" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.34" 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>__netif_receive_skb_core (8 samples, 0.01%)</title><rect x="85.1" y="677" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>JVM_InternString (13 samples, 0.02%)</title><rect x="99.0" y="741" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.02" 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>do_softirq_own_stack (8 samples, 0.01%)</title><rect x="85.1" y="757" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.06" 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>credis/java/client/sync/util/SyncServerUtils:::setDashBoardMetric (67 samples, 0.08%)</title><rect x="1132.7" y="517" width="0.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1135.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>com/ctrip/es/jackson/core/base/ParserBase:::_parseNumericValue (129 samples, 0.15%)</title><rect x="302.6" y="421" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.56" 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 (122 samples, 0.15%)</title><rect x="252.9" y="341" width="1.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="255.91" 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_output (24 samples, 0.03%)</title><rect x="1181.9" y="757" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.93" 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>ret_from_intr (12 samples, 0.01%)</title><rect x="290.1" y="357" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.11" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__irqentry_text_start (12 samples, 0.01%)</title><rect x="1092.7" y="501" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.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>__netif_receive_skb (22 samples, 0.03%)</title><rect x="946.0" y="277" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.99" 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>com/fasterxml/jackson/databind/deser/std/NumberDeserializers$IntegerDeserializer:::deserialize (257 samples, 0.31%)</title><rect x="983.2" y="469" width="3.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="986.24" 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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseName2 (9 samples, 0.01%)</title><rect x="607.2" y="437" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="610.16" 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>ip_rcv (13 samples, 0.02%)</title><rect x="302.3" y="277" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.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>irq_exit (10 samples, 0.01%)</title><rect x="607.3" y="405" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="610.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_sendmsg (42 samples, 0.05%)</title><rect x="1175.6" y="373" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.63" 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>com/ctrip/es/jackson/core/base/ParserBase:::_parseNumericValue (8 samples, 0.01%)</title><rect x="1141.2" y="437" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1144.24" 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>pipe_read (13 samples, 0.02%)</title><rect x="1189.1" y="1077" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>SystemDictionary::resolve_instance_class_or_null (10 samples, 0.01%)</title><rect x="1155.2" y="277" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.23" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>net_rx_action (12 samples, 0.01%)</title><rect x="251.3" y="325" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.34" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>InstanceKlass::oop_oop_iterate_nv (9 samples, 0.01%)</title><rect x="15.8" y="1173" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.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>__kmalloc_reserve.isra.37 (12 samples, 0.01%)</title><rect x="47.1" y="837" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="50.11" 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>ip_rcv (18 samples, 0.02%)</title><rect x="949.1" y="309" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.05" 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>_copy_to_iter (41 samples, 0.05%)</title><rect x="36.6" y="885" width="0.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
|
|
<text text-anchor="" x="39.57" 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>do_syscall_64 (14 samples, 0.02%)</title><rect x="94.0" y="1125" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="96.97" 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/aggregator/DefaultLocalAggregator:::analyzerProcessTransaction (170 samples, 0.20%)</title><rect x="98.2" y="789" width="2.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="101.24" 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>irq_exit (14 samples, 0.02%)</title><rect x="515.0" y="357" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="518.02" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__wake_up_common_lock (10 samples, 0.01%)</title><rect x="946.7" y="149" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.70" 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>i40e_napi_poll (28 samples, 0.03%)</title><rect x="468.6" y="293" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.60" 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>[libpthread-2.17.so] (31 samples, 0.04%)</title><rect x="1184.1" y="1109" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>sock_write_iter (117 samples, 0.14%)</title><rect x="61.1" y="1013" width="1.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>i40e_napi_poll (52 samples, 0.06%)</title><rect x="1106.4" y="421" width="0.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>VMThread::run (31 samples, 0.04%)</title><rect x="1189.3" y="1333" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.29" 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/Class:::forName0 (17 samples, 0.02%)</title><rect x="1155.1" y="357" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.13" 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>ovs_dp_process_packet (9 samples, 0.01%)</title><rect x="1182.0" y="549" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.97" 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/common/net/InetAddresses:::ipStringToBytes (9 samples, 0.01%)</title><rect x="103.1" y="661" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="106.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>i40e_napi_poll (32 samples, 0.04%)</title><rect x="527.9" y="309" width="0.5" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="530.92" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/nio/ch/EPollSelectorImpl:::updateSelectedKeys (17 samples, 0.02%)</title><rect x="93.7" y="1173" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="96.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>__lll_timedwait_tid (17 samples, 0.02%)</title><rect x="1147.2" y="485" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.17" 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/ObjectInputStream:::readObject0 (38 samples, 0.05%)</title><rect x="579.5" y="357" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.46" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/String:::intern (15 samples, 0.02%)</title><rect x="1153.0" y="389" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.01" 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:::getSupplierFilter (9 samples, 0.01%)</title><rect x="1110.3" y="469" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.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>com/fasterxml/jackson/databind/deser/BeanDeserializer:::vanillaDeserialize (31,615 samples, 37.82%)</title><rect x="584.2" y="501" width="446.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="587.16" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/fasterxml/jackson/databind/deser/BeanDeserializer:::vanil..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/client/RestClient:::performRequestAsync (617 samples, 0.74%)</title><rect x="1150.5" y="517" width="8.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1153.47" 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>ret_from_intr (22 samples, 0.03%)</title><rect x="558.5" y="389" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.52" 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/EPollArrayWrapper:::epollWait (44 samples, 0.05%)</title><rect x="85.7" y="1157" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>sys_epoll_wait (76 samples, 0.09%)</title><rect x="92.4" y="1109" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.40" 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/SelectorImpl:::select (969 samples, 1.16%)</title><rect x="63.7" y="1173" width="13.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="66.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>tcp_cleanup_rbuf (48 samples, 0.06%)</title><rect x="59.9" y="933" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.87" 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/framework/clogging/agent/MessageConsumer:::compress (38 samples, 0.05%)</title><rect x="88.1" y="1205" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="91.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>sys_epoll_wait (53 samples, 0.06%)</title><rect x="1188.1" y="1125" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>java/util/HashMap:::resize (12 samples, 0.01%)</title><rect x="567.1" y="389" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="570.07" 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/SocketChannelImpl:::read (146 samples, 0.17%)</title><rect x="58.8" y="1141" width="2.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="61.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>net_rx_action (18 samples, 0.02%)</title><rect x="468.3" y="293" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.26" 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>skb_release_all (10 samples, 0.01%)</title><rect x="53.1" y="661" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.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>tcp_v4_do_rcv (9 samples, 0.01%)</title><rect x="72.9" y="757" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.92" 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>net_rx_action (58 samples, 0.07%)</title><rect x="948.5" y="373" width="0.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.53" 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>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::isFitArea (365 samples, 0.44%)</title><rect x="1122.1" y="341" width="5.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1125.06" 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_recvmsg (9 samples, 0.01%)</title><rect x="1183.6" y="901" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.58" 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/BaijiServiceHost:::processRequest (76,224 samples, 91.19%)</title><rect x="101.9" y="741" width="1076.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="104.94" y="751.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>sys_read (1,485 samples, 1.78%)</title><rect x="33.7" y="1013" width="21.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.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>java/io/ObjectInputStream:::readObject0 (76 samples, 0.09%)</title><rect x="1154.6" y="389" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.62" 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/fasterxml/jackson/databind/ser/BeanSerializer:::serialize (46 samples, 0.06%)</title><rect x="1169.4" y="517" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1172.39" 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_rcv_finish (13 samples, 0.02%)</title><rect x="302.3" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.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>jbyte_disjoint_arraycopy (15 samples, 0.02%)</title><rect x="527.6" y="373" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="530.59" 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_page_fault (13 samples, 0.02%)</title><rect x="1105.8" y="469" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1108.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>sun/reflect/GeneratedMethodAccessor77:::invoke (31 samples, 0.04%)</title><rect x="977.2" y="453" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="980.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/generics/parser/SignatureParser:::parseClassTypeSignature (27 samples, 0.03%)</title><rect x="118.3" y="421" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::parseEscapedName (134 samples, 0.16%)</title><rect x="525.6" y="373" width="1.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__softirqentry_text_start (14 samples, 0.02%)</title><rect x="176.0" y="341" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="178.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>com/google/gson/internal/Excluder:::excludeClass (30 samples, 0.04%)</title><rect x="119.4" y="485" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="122.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>dev_gro_receive (9 samples, 0.01%)</title><rect x="528.0" y="261" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.03" 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 (30 samples, 0.04%)</title><rect x="85.8" y="1077" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.84" 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_InternString (16 samples, 0.02%)</title><rect x="117.1" y="373" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.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>Java_java_lang_Throwable_fillInStackTrace (42 samples, 0.05%)</title><rect x="1031.1" y="485" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.09" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::buildLogEvent (26 samples, 0.03%)</title><rect x="124.4" y="565" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="127.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>do_syscall_64 (82 samples, 0.10%)</title><rect x="92.4" y="1125" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>sun/nio/ch/FileDispatcherImpl:::read0 (10 samples, 0.01%)</title><rect x="1183.6" y="1061" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>tcp_push (21 samples, 0.03%)</title><rect x="85.0" y="933" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.00" 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>__wake_up_sync_key (9 samples, 0.01%)</title><rect x="793.5" y="165" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.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>__netif_receive_skb_core (248 samples, 0.30%)</title><rect x="49.0" y="645" width="3.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.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/lang/Class:::getSimpleName (11 samples, 0.01%)</title><rect x="108.7" y="501" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="111.72" 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>tcf_action_exec (16 samples, 0.02%)</title><rect x="52.0" y="597" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.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>com/ctriposs/baiji/rpc/server/handler/RpcRequestHandler:::processOperationData (9 samples, 0.01%)</title><rect x="103.4" y="709" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="106.44" 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/nio/ch/FileDispatcherImpl:::write0 (57 samples, 0.07%)</title><rect x="1175.6" y="533" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>entry_SYSCALL_64_after_hwframe (38 samples, 0.05%)</title><rect x="84.8" y="1093" width="0.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>__netif_receive_skb (8 samples, 0.01%)</title><rect x="810.8" y="325" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.79" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__libc_recv (635 samples, 0.76%)</title><rect x="66.1" y="1125" width="8.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="69.07" 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/generics/parser/SignatureParser:::parsePackageNameAndSimpleClassTypeSignature (15 samples, 0.02%)</title><rect x="118.5" y="357" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.47" 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>org/apache/coyote/http11/AbstractHttp11Processor:::prepareResponse (30 samples, 0.04%)</title><rect x="1174.4" y="581" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1177.36" 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/search/builder/SearchSourceBuilder:::toXContent (24 samples, 0.03%)</title><rect x="1146.1" y="501" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.12" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/google/gson/internal/Excluder:::create (11 samples, 0.01%)</title><rect x="112.3" y="405" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_local_out (36 samples, 0.04%)</title><rect x="60.0" y="853" width="0.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.04" 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>tcp_established_options (9 samples, 0.01%)</title><rect x="54.0" y="837" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.03" 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/Throwable:::fillInStackTrace (22 samples, 0.03%)</title><rect x="1183.1" y="1077" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>ip_rcv (25 samples, 0.03%)</title><rect x="1107.1" y="373" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.15" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__wake_up_sync_key (10 samples, 0.01%)</title><rect x="946.7" y="165" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.70" 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>BacktraceBuilder::push (34 samples, 0.04%)</title><rect x="110.9" y="341" width="0.5" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.88" 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_rcv_established (18 samples, 0.02%)</title><rect x="562.6" y="181" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.62" 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>__vfs_write (24 samples, 0.03%)</title><rect x="581.3" y="277" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.30" 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>vfs_read (79 samples, 0.09%)</title><rect x="59.5" y="1029" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.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>net_rx_action (21 samples, 0.03%)</title><rect x="1030.0" y="389" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.01" 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>net_rx_action (14 samples, 0.02%)</title><rect x="301.3" y="325" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.30" 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>smp_apic_timer_interrupt (19 samples, 0.02%)</title><rect x="701.3" y="421" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.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>org/apache/coyote/http11/InternalNioOutputBuffer:::flushBuffer (73 samples, 0.09%)</title><rect x="1181.3" y="1093" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>__qdisc_run (8 samples, 0.01%)</title><rect x="946.1" y="101" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.06" 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>tcp_send_ack (48 samples, 0.06%)</title><rect x="59.9" y="917" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.87" 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>ip_rcv (8 samples, 0.01%)</title><rect x="810.8" y="293" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.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>do_syscall_64 (31 samples, 0.04%)</title><rect x="1184.1" y="1077" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>_raw_spin_unlock_irqrestore (36 samples, 0.04%)</title><rect x="1157.7" y="245" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.74" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_write (37 samples, 0.04%)</title><rect x="84.8" y="1061" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>i40e_napi_poll (31 samples, 0.04%)</title><rect x="73.4" y="885" width="0.5" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.41" 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>skb_copy_datagram_iter (756 samples, 0.90%)</title><rect x="36.2" y="901" width="10.7" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="39.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>smp_apic_timer_interrupt (17 samples, 0.02%)</title><rect x="940.0" y="405" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="943.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>hrtimer_cancel (11 samples, 0.01%)</title><rect x="1187.0" y="1013" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.04" 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>__irqentry_text_start (30 samples, 0.04%)</title><rect x="788.6" y="421" width="0.4" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.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>masked_flow_lookup (8 samples, 0.01%)</title><rect x="253.9" y="149" width="0.1" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.87" 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>__alloc_skb (8 samples, 0.01%)</title><rect x="61.2" y="917" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.22" 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>vfs_write (28 samples, 0.03%)</title><rect x="1184.1" y="1045" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>netdev_frame_hook (10 samples, 0.01%)</title><rect x="302.0" y="229" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.99" 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>java/lang/Class:::forName0 (8 samples, 0.01%)</title><rect x="118.7" y="421" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/apache/http/message/TokenParser:::parseToken (8 samples, 0.01%)</title><rect x="23.8" y="1125" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="26.78" 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_Class_forName0 (8 samples, 0.01%)</title><rect x="579.7" y="309" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.67" 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>net_rx_action (19 samples, 0.02%)</title><rect x="825.0" y="373" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="828.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>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::process (319 samples, 0.38%)</title><rect x="1151.5" y="469" width="4.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1154.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>frame::sender (35 samples, 0.04%)</title><rect x="111.4" y="341" width="0.5" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="114.40" 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/ConstructorConstructor:::get (9 samples, 0.01%)</title><rect x="109.0" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.04" 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/bind/CollectionTypeAdapterFactory:::create (326 samples, 0.39%)</title><rect x="112.4" y="405" width="4.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.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>jshort_disjoint_arraycopy (10 samples, 0.01%)</title><rect x="1150.0" y="485" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1153.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>__softirqentry_text_start (74 samples, 0.09%)</title><rect x="973.0" y="405" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="975.97" 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>G1RemSet::refine_card (40 samples, 0.05%)</title><rect x="15.4" y="1205" width="0.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.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>_raw_spin_unlock_irqrestore (10 samples, 0.01%)</title><rect x="793.8" y="117" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.78" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__irqentry_text_start (19 samples, 0.02%)</title><rect x="701.3" y="437" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.27" 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>do_IRQ (28 samples, 0.03%)</title><rect x="469.6" y="373" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.59" 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/common/xcontent/ObjectParser:::parse (318 samples, 0.38%)</title><rect x="1140.2" y="517" width="4.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1143.15" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sock_write_iter (43 samples, 0.05%)</title><rect x="1181.7" y="933" width="0.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.73" 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>__netif_receive_skb_core (17 samples, 0.02%)</title><rect x="60.1" y="677" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.14" 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/databind/deser/BeanDeserializerBase:::handleUnknownVanilla (14 samples, 0.02%)</title><rect x="1162.2" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.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>jshort_disjoint_arraycopy (15 samples, 0.02%)</title><rect x="582.9" y="501" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="585.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/util/LinkedHashMap:::newNode (10 samples, 0.01%)</title><rect x="80.5" y="1093" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="83.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>try_to_wake_up (17 samples, 0.02%)</title><rect x="90.8" y="1013" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.79" 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>process_backlog (27 samples, 0.03%)</title><rect x="973.6" y="373" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.63" 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_read (36 samples, 0.04%)</title><rect x="76.6" y="1077" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.63" 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>process_backlog (9 samples, 0.01%)</title><rect x="73.9" y="885" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.85" 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>ip_local_deliver_finish (18 samples, 0.02%)</title><rect x="813.9" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.87" 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>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (8 samples, 0.01%)</title><rect x="1160.1" y="533" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1163.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_hrtimeout_range_clock (40 samples, 0.05%)</title><rect x="1188.3" y="1077" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>io/netty/buffer/UnpooledByteBufAllocator:::newDirectBuffer (18 samples, 0.02%)</title><rect x="83.2" y="1157" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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>ip_rcv (22 samples, 0.03%)</title><rect x="973.7" y="325" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.67" 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>G1RootProcessor::scan_remembered_sets (50 samples, 0.06%)</title><rect x="15.4" y="1301" width="0.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.38" 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>__netif_receive_skb (30 samples, 0.04%)</title><rect x="562.5" y="309" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.52" 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/lang/String:::intern (16 samples, 0.02%)</title><rect x="117.1" y="389" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.13" 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/client/HeapBufferedAsyncResponseConsumer:::onEntityEnclosed (232 samples, 0.28%)</title><rect x="24.3" y="1125" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="27.29" 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>page_fault (22 samples, 0.03%)</title><rect x="449.9" y="357" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="452.88" 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_local_out (25 samples, 0.03%)</title><rect x="1175.8" y="261" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.78" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>netif_receive_skb_internal (14 samples, 0.02%)</title><rect x="973.4" y="325" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_loadMore (25 samples, 0.03%)</title><rect x="811.4" y="421" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="814.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseName (12 samples, 0.01%)</title><rect x="588.5" y="469" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="591.49" 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>StringTable::intern (12 samples, 0.01%)</title><rect x="117.2" y="341" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.16" 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>__softirqentry_text_start (20 samples, 0.02%)</title><rect x="608.8" y="405" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_rcv_finish (11 samples, 0.01%)</title><rect x="72.9" y="821" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.89" 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>futex_wait (66 samples, 0.08%)</title><rect x="1186.3" y="1029" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.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>java/io/ObjectInputStream$BlockDataInputStream:::readUTFBody (8 samples, 0.01%)</title><rect x="1152.8" y="405" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1155.82" 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>ovs_vport_receive (18 samples, 0.02%)</title><rect x="946.0" y="229" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.00" 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/ch/SocketChannelImpl:::write (73 samples, 0.09%)</title><rect x="1175.4" y="549" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.36" 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/databind/ObjectMapper:::_readMapAndClose (31,724 samples, 37.95%)</title><rect x="583.1" y="517" width="447.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="586.09" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/fasterxml/jackson/databind/ObjectMapper:::_readMapAndClose</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>GangWorker::loop (289 samples, 0.35%)</title><rect x="12.2" y="1333" width="4.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.20" 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>ovs_execute_actions (13 samples, 0.02%)</title><rect x="562.2" y="181" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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>org/apache/coyote/http11/AbstractHttp11Processor:::action (150 samples, 0.18%)</title><rect x="1174.3" y="597" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1177.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>org/elasticsearch/search/SearchHit$$Lambda$358/31533537:::parse (296 samples, 0.35%)</title><rect x="1140.5" y="501" width="4.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1143.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>__netif_receive_skb (31 samples, 0.04%)</title><rect x="1107.1" y="405" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__softirqentry_text_start (95 samples, 0.11%)</title><rect x="1106.2" y="453" width="1.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>ret_from_intr (20 samples, 0.02%)</title><rect x="608.8" y="453" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/codehaus/jackson/impl/ByteSourceBootstrapper:::constructParser (8 samples, 0.01%)</title><rect x="1172.6" y="645" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.62" 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/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (71 samples, 0.08%)</title><rect x="78.6" y="1173" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (76,726 samples, 91.79%)</title><rect x="96.8" y="1045" width="1083.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="99.83" y="1055.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>__softirqentry_text_start (15 samples, 0.02%)</title><rect x="44.5" y="805" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.46" 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>i40e_clean_rx_irq (23 samples, 0.03%)</title><rect x="301.8" y="309" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.84" 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/ObjectInputStream:::readSerialData (106 samples, 0.13%)</title><rect x="1154.3" y="437" width="1.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.33" 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>G1ParScanClosure::do_oop_nv<unsigned int> (9 samples, 0.01%)</title><rect x="14.0" y="1237" width="0.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="16.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>com/ctriposs/baiji/specific/SpecificJsonWriter$DatetimeWriter:::write (8 samples, 0.01%)</title><rect x="1174.0" y="597" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.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>java/util/stream/AbstractPipeline:::wrapAndCopyInto (117 samples, 0.14%)</title><rect x="1129.7" y="485" width="1.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1132.69" 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>audit_filter_syscall (16 samples, 0.02%)</title><rect x="74.6" y="1045" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="77.56" 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>__dev_queue_xmit (10 samples, 0.01%)</title><rect x="60.4" y="773" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.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>java/lang/String:::intern (13 samples, 0.02%)</title><rect x="82.3" y="1093" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="85.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>sock_read_iter (1,441 samples, 1.72%)</title><rect x="34.2" y="965" width="20.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.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>Unsafe_Park (85 samples, 0.10%)</title><rect x="574.9" y="469" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="577.86" 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_hrtimeout_range (351 samples, 0.42%)</title><rect x="69.0" y="1045" width="5.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="72.04" 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:::createFromMap (12 samples, 0.01%)</title><rect x="1144.7" y="517" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1147.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>futex_wait (33 samples, 0.04%)</title><rect x="79.1" y="1029" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.09" 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/bind/ReflectiveTypeAdapterFactory:::getBoundFields (848 samples, 1.01%)</title><rect x="109.2" y="517" width="12.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.20" 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>__irqentry_text_start (10 samples, 0.01%)</title><rect x="872.5" y="437" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.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>net_rx_action (10 samples, 0.01%)</title><rect x="563.0" y="357" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.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>sys_futex (58 samples, 0.07%)</title><rect x="57.6" y="1029" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.63" 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/stream/AbstractPipeline:::evaluate (794 samples, 0.95%)</title><rect x="1118.2" y="517" width="11.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.16" 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_core (38 samples, 0.05%)</title><rect x="946.5" y="309" width="0.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.51" 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>irq_exit (12 samples, 0.01%)</title><rect x="290.1" y="325" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>irq_exit (9 samples, 0.01%)</title><rect x="969.7" y="389" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="972.68" 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/util/concurrent/ScheduledThreadPoolExecutor$DelayedWorkQueue:::take (80 samples, 0.10%)</title><rect x="86.9" y="1173" width="1.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.92" 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/JsonReadContext:::_checkDup (174 samples, 0.21%)</title><rect x="304.4" y="421" width="2.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="307.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>do_syscall_64 (23 samples, 0.03%)</title><rect x="100.8" y="693" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.79" 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>entry_SYSCALL_64_after_hwframe (39 samples, 0.05%)</title><rect x="79.0" y="1093" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.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>__schedule (37 samples, 0.04%)</title><rect x="92.9" y="1029" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>java/io/ObjectInputStream:::readSerialData (8 samples, 0.01%)</title><rect x="579.9" y="341" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.88" 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:::fillInStackTrace (68 samples, 0.08%)</title><rect x="116.1" y="357" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.06" 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 (39 samples, 0.05%)</title><rect x="60.0" y="869" width="0.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.00" 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 (12 samples, 0.01%)</title><rect x="78.1" y="1109" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.11" 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 (25 samples, 0.03%)</title><rect x="1134.4" y="309" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.37" 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>JVM_FindClassFromCaller (18 samples, 0.02%)</title><rect x="120.6" y="453" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.58" 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/circuitbreaker/DefaultCircuitBreaker:::allowExecution (21 samples, 0.03%)</title><rect x="102.3" y="709" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="105.31" 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>ip_local_deliver_finish (21 samples, 0.03%)</title><rect x="562.6" y="229" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.59" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__schedule (32 samples, 0.04%)</title><rect x="1188.4" y="1045" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.38" 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>redis/clients/jedis/Jedis:::get (97 samples, 0.12%)</title><rect x="1133.9" y="517" width="1.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1136.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>__memmove_ssse3_back (24 samples, 0.03%)</title><rect x="14.3" y="1269" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="17.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>__dev_forward_skb (8 samples, 0.01%)</title><rect x="53.3" y="677" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.34" 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/reflect/GeneratedMethodAccessor89:::invoke (70 samples, 0.08%)</title><rect x="1013.0" y="469" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1015.96" 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>sch_direct_xmit (10 samples, 0.01%)</title><rect x="61.9" y="517" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>java/lang/Exception:::<init> (102 samples, 0.12%)</title><rect x="1135.3" y="549" width="1.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.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>sock_def_readable (10 samples, 0.01%)</title><rect x="946.7" y="181" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.70" 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>get_current_dir_name (22 samples, 0.03%)</title><rect x="1184.7" y="1077" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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/lang/String:::intern (16 samples, 0.02%)</title><rect x="99.9" y="741" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.92" 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>__tcp_ack_snd_check (9 samples, 0.01%)</title><rect x="36.0" y="837" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="39.00" 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/JsonReadContext:::_checkDup (9 samples, 0.01%)</title><rect x="127.5" y="453" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.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>net_rx_action (13 samples, 0.02%)</title><rect x="176.0" y="325" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="178.97" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (55 samples, 0.07%)</title><rect x="575.2" y="437" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.24" 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_v4_do_rcv (19 samples, 0.02%)</title><rect x="562.6" y="197" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.62" 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>org/apache/catalina/core/StandardHostValve:::invoke (76,771 samples, 91.84%)</title><rect x="96.5" y="1109" width="1083.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="99.52" y="1119.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>__softirqentry_text_start (10 samples, 0.01%)</title><rect x="403.5" y="325" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="406.52" 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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseNegNumber (1,182 samples, 1.41%)</title><rect x="794.2" y="437" width="16.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="797.22" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/apache/catalina/connector/CoyoteAdapter:::service (77,009 samples, 92.13%)</title><rect x="95.3" y="1125" width="1087.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="98.29" y="1135.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>__netif_receive_skb (26 samples, 0.03%)</title><rect x="813.9" y="341" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.86" 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/apache/http/impl/nio/client/MainClientExec:::prepare (465 samples, 0.56%)</title><rect x="1150.7" y="485" width="6.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1153.68" 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>tcp_rcv_established (13 samples, 0.02%)</title><rect x="973.7" y="229" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.72" 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>fput (9 samples, 0.01%)</title><rect x="74.2" y="1061" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="77.19" 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/FileDispatcherImpl:::write0 (41 samples, 0.05%)</title><rect x="84.7" y="1125" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>__vfs_read (24 samples, 0.03%)</title><rect x="76.7" y="1045" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.73" 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_internal (29 samples, 0.03%)</title><rect x="253.6" y="261" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.60" 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>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::applyPreRequestFilters (127 samples, 0.15%)</title><rect x="104.9" y="693" width="1.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="107.85" 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/spi/internal/DefaultMessageTree:::beforeSend (16 samples, 0.02%)</title><rect x="84.0" y="1189" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>entry_SYSCALL_64_after_hwframe (87 samples, 0.10%)</title><rect x="1147.6" y="469" width="1.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.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>finish_task_switch (30 samples, 0.04%)</title><rect x="575.5" y="309" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.46" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/String:::format (24 samples, 0.03%)</title><rect x="106.0" y="645" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="108.95" 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>__netif_receive_skb_core (9 samples, 0.01%)</title><rect x="1030.2" y="341" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.18" 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/NestedQueryBuilder:::doXContent (83 samples, 0.10%)</title><rect x="573.4" y="405" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.38" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>SystemDictionary::resolve_instance_class_or_null (8 samples, 0.01%)</title><rect x="1153.5" y="341" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.51" 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>netdev_frame_hook (25 samples, 0.03%)</title><rect x="61.8" y="661" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>i40e_clean_rx_irq (28 samples, 0.03%)</title><rect x="973.2" y="357" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.18" 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_rcv_space_adjust (11 samples, 0.01%)</title><rect x="54.2" y="901" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.24" 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>__local_bh_enable_ip (297 samples, 0.36%)</title><rect x="48.6" y="757" width="4.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.57" 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>SafepointSynchronize::do_cleanup_tasks (19 samples, 0.02%)</title><rect x="1189.3" y="1285" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.29" 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>ip_rcv_finish (8 samples, 0.01%)</title><rect x="378.2" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_local_deliver (24 samples, 0.03%)</title><rect x="1107.1" y="341" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.15" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/base/ParserBase:::close (8 samples, 0.01%)</title><rect x="583.3" y="501" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="586.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/dianping/cat/message/internal/DefaultMessageProducer:::newTransaction (21 samples, 0.03%)</title><rect x="97.7" y="821" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.69" 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>_raw_spin_unlock_irqrestore (17 samples, 0.02%)</title><rect x="581.3" y="213" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.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>ip_rcv (15 samples, 0.02%)</title><rect x="469.0" y="245" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.00" 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>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::handleInternal (76,089 samples, 91.03%)</title><rect x="103.6" y="709" width="1074.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="106.62" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::handleInternal</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (53 samples, 0.06%)</title><rect x="583.4" y="501" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="586.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>org/springframework/aop/aspectj/AspectJAroundAdvice:::invoke (75,333 samples, 90.12%)</title><rect x="107.5" y="613" width="1063.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.49" y="623.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>com/ctrip/es/apache/http/message/BasicTokenIterator:::findNext (8 samples, 0.01%)</title><rect x="20.0" y="1125" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="23.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>__tcp_transmit_skb (45 samples, 0.05%)</title><rect x="59.9" y="885" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.92" 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>__dev_queue_xmit (13 samples, 0.02%)</title><rect x="62.3" y="773" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="65.26" 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>__do_page_fault (9 samples, 0.01%)</title><rect x="571.5" y="405" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.53" 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>kmem_cache_free (10 samples, 0.01%)</title><rect x="34.9" y="869" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.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>java/lang/StringCoding:::encode (9 samples, 0.01%)</title><rect x="22.8" y="1093" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="25.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>com/ctriposs/baiji/rpc/client/ribbon/HttpContextFilter:::doFilter (76,666 samples, 91.72%)</title><rect x="97.4" y="917" width="1082.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.36" y="927.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>i40e_clean_rx_irq (32 samples, 0.04%)</title><rect x="1106.5" y="405" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sk_stream_alloc_skb (8 samples, 0.01%)</title><rect x="61.2" y="933" width="0.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.22" 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>i40e_napi_poll (71 samples, 0.08%)</title><rect x="253.1" y="309" width="1.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.15" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseName (133 samples, 0.16%)</title><rect x="643.6" y="453" width="1.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="646.58" 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>page_fault (17 samples, 0.02%)</title><rect x="1097.6" y="453" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.58" 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/jackson/core/JsonGenerator:::copyCurrentStructure (172 samples, 0.21%)</title><rect x="1140.5" y="469" width="2.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1143.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>java/lang/Class:::getSimpleName (10 samples, 0.01%)</title><rect x="118.0" y="405" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.99" 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/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$526/1789821154:::test (513 samples, 0.61%)</title><rect x="1120.0" y="357" width="7.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1123.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>org/apache/coyote/http11/InternalNioInputBuffer:::readSocket (53 samples, 0.06%)</title><rect x="1183.1" y="1109" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>java/io/ObjectStreamField:::<init> (14 samples, 0.02%)</title><rect x="578.4" y="373" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="581.44" 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>SYSC_recvfrom (16 samples, 0.02%)</title><rect x="10.3" y="1301" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.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>com/fasterxml/jackson/databind/ObjectMapper:::_configAndWriteValue (72 samples, 0.09%)</title><rect x="1169.2" y="549" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1172.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>do_IRQ (74 samples, 0.09%)</title><rect x="973.0" y="437" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="975.97" 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/reflect/GeneratedMethodAccessor119:::invoke (45 samples, 0.05%)</title><rect x="579.4" y="389" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.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>org/apache/tomcat/util/net/NioChannel:::close (23 samples, 0.03%)</title><rect x="1184.6" y="1125" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.65" 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/HashMap:::put (113 samples, 0.14%)</title><rect x="560.0" y="405" width="1.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="563.04" 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_rcv_established (14 samples, 0.02%)</title><rect x="949.1" y="213" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.07" 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>_raw_spin_unlock_irqrestore (8 samples, 0.01%)</title><rect x="788.7" y="133" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.71" 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>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serialize (8 samples, 0.01%)</title><rect x="1109.8" y="469" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.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/util/HashMap:::putMapEntries (9 samples, 0.01%)</title><rect x="576.3" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="579.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>frame::sender (44 samples, 0.05%)</title><rect x="1167.5" y="453" width="0.6" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1170.50" 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/ObjectInputStream:::readClassDesc (91 samples, 0.11%)</title><rect x="577.9" y="405" width="1.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="580.92" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/hotel/htlorgarea/core/service/impl/AreaServiceImpl:::queryAreasByHotel (69,707 samples, 83.39%)</title><rect x="124.8" y="565" width="984.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="127.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hotel/htlorgarea/core/service/impl/AreaServiceImpl:::queryAreasByHotel</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>Java_java_lang_Throwable_fillInStackTrace (38 samples, 0.05%)</title><rect x="113.7" y="245" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.69" 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>ovs_vport_send (15 samples, 0.02%)</title><rect x="61.8" y="565" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>__schedule (49 samples, 0.06%)</title><rect x="1147.9" y="357" width="0.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.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>entry_SYSCALL_64_after_hwframe (1,532 samples, 1.83%)</title><rect x="33.6" y="1045" width="21.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.58" y="1055.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>Java_java_lang_Class_forName0 (22 samples, 0.03%)</title><rect x="120.6" y="469" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>irq_exit (24 samples, 0.03%)</title><rect x="1030.0" y="421" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1032.97" 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/concurrent/ConcurrentHashMap:::putVal (18 samples, 0.02%)</title><rect x="1151.2" y="453" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1154.22" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::makeStatsBasicTags (11 samples, 0.01%)</title><rect x="1171.1" y="693" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1174.13" 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>sock_sendmsg (43 samples, 0.05%)</title><rect x="1175.6" y="405" width="0.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::create (510 samples, 0.61%)</title><rect x="111.9" y="469" width="7.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="114.91" 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/common/xcontent/XContentBuilder:::ensureNoSelfReferences (21 samples, 0.03%)</title><rect x="574.2" y="309" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="577.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>com/ctrip/es/jackson/core/base/ParserBase:::_parseNumericValue (702 samples, 0.84%)</title><rect x="166.3" y="405" width="9.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="169.26" 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 (26 samples, 0.03%)</title><rect x="1172.2" y="645" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.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>SystemDictionary::resolve_or_fail (8 samples, 0.01%)</title><rect x="1172.4" y="581" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.37" 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>key_extract (8 samples, 0.01%)</title><rect x="51.6" y="581" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.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>org/elasticsearch/search/SearchHit$$Lambda$358/31533537:::parse (31,452 samples, 37.63%)</title><rect x="128.2" y="469" width="444.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.17" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/elasticsearch/search/SearchHit$$Lambda$358/31533537:::pa..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>JVM_LatestUserDefinedLoader (33 samples, 0.04%)</title><rect x="1153.8" y="405" width="0.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.85" 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/GeneratedMethodAccessor79:::invoke (65 samples, 0.08%)</title><rect x="1004.9" y="469" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1007.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>__softirqentry_text_start (68 samples, 0.08%)</title><rect x="948.4" y="389" width="0.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.39" 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_FillInStackTrace (99 samples, 0.12%)</title><rect x="1135.3" y="485" width="1.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.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>__irqentry_text_start (12 samples, 0.01%)</title><rect x="44.3" y="853" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.29" 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/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::isFitArea (8 samples, 0.01%)</title><rect x="1127.3" y="357" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1130.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>CodeHeap::find_start (14 samples, 0.02%)</title><rect x="111.6" y="309" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="114.64" 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>ovs_vport_receive (25 samples, 0.03%)</title><rect x="61.8" y="645" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>__dev_queue_xmit (106 samples, 0.13%)</title><rect x="49.8" y="501" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/generics/parser/SignatureParser:::parsePackageNameAndSimpleClassTypeSignature (12 samples, 0.01%)</title><rect x="115.6" y="309" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.57" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__tcp_transmit_skb (77 samples, 0.09%)</title><rect x="61.4" y="885" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>java/util/HashMap:::putMapEntries (10 samples, 0.01%)</title><rect x="1170.3" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1173.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>pthread_cond_timedwait@@GLIBC_2.3.2 (62 samples, 0.07%)</title><rect x="575.2" y="453" width="0.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.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>__netif_receive_skb (26 samples, 0.03%)</title><rect x="528.4" y="293" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.37" 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>ret_from_intr (113 samples, 0.14%)</title><rect x="945.5" y="421" width="1.5" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.45" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>finish_task_switch (32 samples, 0.04%)</title><rect x="1188.4" y="1029" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>org/apache/catalina/authenticator/AuthenticatorBase:::invoke (76,759 samples, 91.83%)</title><rect x="96.6" y="1093" width="1083.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="99.62" y="1103.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/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (28 samples, 0.03%)</title><rect x="1142.0" y="453" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1145.05" 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>credis/java/client/monitor/impl/DefaultCRedisMonitor:::logMetric (47 samples, 0.06%)</title><rect x="1132.8" y="501" width="0.7" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1135.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>process_backlog (8 samples, 0.01%)</title><rect x="701.3" y="357" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.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>Java_java_lang_Throwable_fillInStackTrace (68 samples, 0.08%)</title><rect x="116.1" y="341" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.06" 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/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$490/53689389:::test (10 samples, 0.01%)</title><rect x="1110.2" y="485" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.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>sun/reflect/GeneratedConstructorAccessor53:::newInstance (9 samples, 0.01%)</title><rect x="988.5" y="469" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="991.50" 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_common_lock (17 samples, 0.02%)</title><rect x="581.3" y="229" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.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/ch/ServerSocketChannelImpl:::accept0 (49 samples, 0.06%)</title><rect x="89.0" y="1189" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>ip_local_deliver_finish (24 samples, 0.03%)</title><rect x="1107.1" y="325" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.15" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_rcv_established (35 samples, 0.04%)</title><rect x="793.4" y="197" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.44" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__tcp_transmit_skb (29 samples, 0.03%)</title><rect x="1175.7" y="293" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.73" 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>sock_write_iter (35 samples, 0.04%)</title><rect x="84.8" y="1013" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>__netif_receive_skb_core (12 samples, 0.01%)</title><rect x="948.7" y="277" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.73" 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>sun/nio/ch/EPollArrayWrapper:::epollWait (65 samples, 0.08%)</title><rect x="1188.0" y="1189" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>Java_java_lang_Class_forName0 (17 samples, 0.02%)</title><rect x="118.9" y="373" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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>inet_sendmsg (39 samples, 0.05%)</title><rect x="11.3" y="1269" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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_java_net_SocketInputStream_socketRead0 (66 samples, 0.08%)</title><rect x="1134.2" y="437" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.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>tcp_recvmsg (14 samples, 0.02%)</title><rect x="10.4" y="1253" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.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>do_sys_poll (41 samples, 0.05%)</title><rect x="1134.3" y="357" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.27" 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>org/apache/tomcat/websocket/server/WsFilter:::doFilter (76,300 samples, 91.28%)</title><rect x="101.7" y="789" width="1077.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="104.66" y="799.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>irq_exit (9 samples, 0.01%)</title><rect x="1097.8" y="421" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.82" 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 (12 samples, 0.01%)</title><rect x="78.1" y="1125" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.11" 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>copy_user_enhanced_fast_string (412 samples, 0.49%)</title><rect x="38.9" y="869" width="5.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="41.85" 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>__softirqentry_text_start (67 samples, 0.08%)</title><rect x="527.8" y="341" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="530.81" 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>entry_SYSCALL_64_after_hwframe (24 samples, 0.03%)</title><rect x="83.6" y="1093" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.63" 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:::newNode (240 samples, 0.29%)</title><rect x="403.7" y="389" width="3.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="406.66" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/Class:::getConstructor0 (119 samples, 0.14%)</title><rect x="110.2" y="453" width="1.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>net_rx_action (19 samples, 0.02%)</title><rect x="1181.9" y="645" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.94" 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>__GI___strcasecmp_l (16 samples, 0.02%)</title><rect x="12.3" y="1301" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.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>__netif_receive_skb_core (17 samples, 0.02%)</title><rect x="1106.7" y="341" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.68" 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/apache/http/nio/protocol/HttpAsyncRequestExecutor:::responseReceived (314 samples, 0.38%)</title><rect x="23.2" y="1141" width="4.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="26.19" 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>__vfs_write (117 samples, 0.14%)</title><rect x="61.1" y="1029" width="1.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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/core/JsonFactory:::createParser (22 samples, 0.03%)</title><rect x="1159.7" y="549" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1162.66" 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>__netif_receive_skb (32 samples, 0.04%)</title><rect x="254.2" y="293" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.15" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/Throwable:::fillInStackTrace (42 samples, 0.05%)</title><rect x="1031.1" y="501" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.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>inet_recvmsg (1,425 samples, 1.70%)</title><rect x="34.3" y="933" width="20.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.34" 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/net/NioEndpoint$Poller:::run (316 samples, 0.38%)</title><rect x="89.8" y="1221" width="4.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.76" 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_page_fault (17 samples, 0.02%)</title><rect x="1097.6" y="437" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.58" 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_write_xmit (21 samples, 0.03%)</title><rect x="85.0" y="901" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.00" 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>ip_local_deliver (12 samples, 0.01%)</title><rect x="788.7" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.69" 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>napi_gro_receive (23 samples, 0.03%)</title><rect x="1106.6" y="389" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.60" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__fget_light (11 samples, 0.01%)</title><rect x="33.7" y="981" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.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>net_rx_action (20 samples, 0.02%)</title><rect x="558.5" y="325" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.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>sch_direct_xmit (71 samples, 0.08%)</title><rect x="50.3" y="485" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="53.26" 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>ret_from_intr (10 samples, 0.01%)</title><rect x="403.5" y="373" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="406.52" 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>com/google/gson/internal/Excluder:::excludeField (17 samples, 0.02%)</title><rect x="115.1" y="325" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.07" 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>net_rx_action (14 samples, 0.02%)</title><rect x="1175.9" y="133" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.85" 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>smp_apic_timer_interrupt (12 samples, 0.01%)</title><rect x="44.3" y="837" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.29" 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 (737 samples, 0.88%)</title><rect x="291.1" y="405" width="10.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="294.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>StringTable::intern (8 samples, 0.01%)</title><rect x="114.3" y="261" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.30" 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>schedule_hrtimeout_range_clock (23 samples, 0.03%)</title><rect x="85.9" y="1045" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>com/google/gson/internal/bind/CollectionTypeAdapterFactory:::create (81 samples, 0.10%)</title><rect x="113.1" y="309" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.10" 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>jshort_disjoint_arraycopy (31 samples, 0.04%)</title><rect x="810.0" y="389" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="812.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>com/dianping/cat/message/internal/DefaultTransaction:::complete (10 samples, 0.01%)</title><rect x="582.6" y="533" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="585.55" 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_futex (13 samples, 0.02%)</title><rect x="1147.2" y="437" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.18" 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_rcv_established (11 samples, 0.01%)</title><rect x="788.7" y="197" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.70" 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>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (8,587 samples, 10.27%)</title><rect x="828.1" y="453" width="121.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="831.13" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/fasterxml/j..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb (10 samples, 0.01%)</title><rect x="528.2" y="245" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.17" 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>sun/nio/ch/EPollArrayWrapper:::epollCtl (45 samples, 0.05%)</title><rect x="91.6" y="1173" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="94.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>ip_finish_output2 (24 samples, 0.03%)</title><rect x="11.4" y="1093" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>java/util/stream/ReferencePipeline$Head:::forEach (577 samples, 0.69%)</title><rect x="1119.2" y="389" width="8.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1122.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>org/elasticsearch/client/RequestConverters$EndpointBuilder:::addPathPart (38 samples, 0.05%)</title><rect x="1145.3" y="517" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1148.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>__netif_receive_skb (8 samples, 0.01%)</title><rect x="1106.9" y="341" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>__wake_up_common_lock (36 samples, 0.04%)</title><rect x="1157.7" y="261" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.74" 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>TypeArrayKlass::allocate_common (8 samples, 0.01%)</title><rect x="25.0" y="1077" width="0.1" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="27.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>inet_csk_accept (9 samples, 0.01%)</title><rect x="89.4" y="1077" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>ip_rcv (23 samples, 0.03%)</title><rect x="813.9" y="309" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.86" 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>sock_sendmsg (35 samples, 0.04%)</title><rect x="84.8" y="997" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.81" 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_local_deliver_finish (15 samples, 0.02%)</title><rect x="949.1" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.07" 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>ovs_dp_process_packet (18 samples, 0.02%)</title><rect x="946.0" y="213" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.00" 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/jackson/core/json/UTF8JsonGenerator:::writeEndObject (71 samples, 0.08%)</title><rect x="307.2" y="421" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="310.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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::getBoundFields (22 samples, 0.03%)</title><rect x="113.3" y="261" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.26" 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>ovs_vport_send (15 samples, 0.02%)</title><rect x="792.8" y="149" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.75" 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/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (35 samples, 0.04%)</title><rect x="585.6" y="485" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="588.63" 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/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::excludeField (44 samples, 0.05%)</title><rect x="114.7" y="341" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.69" 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/databind/type/TypeFactory:::_fromAny (9 samples, 0.01%)</title><rect x="1030.9" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_execute_actions (17 samples, 0.02%)</title><rect x="253.6" y="149" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.63" 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>do_softirq_own_stack (45 samples, 0.05%)</title><rect x="61.6" y="757" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.63" 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>__dev_queue_xmit (14 samples, 0.02%)</title><rect x="253.7" y="85" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.67" 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>perf_event_wakeup (8 samples, 0.01%)</title><rect x="1189.9" y="1269" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>java/lang/Class:::forName0 (17 samples, 0.02%)</title><rect x="118.9" y="389" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (123 samples, 0.15%)</title><rect x="588.8" y="469" width="1.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="591.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>page_fault (25 samples, 0.03%)</title><rect x="945.1" y="421" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.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>tcp_rcv_established (11 samples, 0.01%)</title><rect x="302.3" y="181" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.29" 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>call_stub (83,090 samples, 99.40%)</title><rect x="16.3" y="1253" width="1173.0" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1263.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>sun/misc/Unsafe:::unpark (9 samples, 0.01%)</title><rect x="1187.5" y="1173" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>tcp_send_ack (8 samples, 0.01%)</title><rect x="36.0" y="821" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="39.02" 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>_new_array_nozero_Java (17 samples, 0.02%)</title><rect x="1097.9" y="501" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.94" 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>sch_direct_xmit (10 samples, 0.01%)</title><rect x="253.7" y="53" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.71" 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>_raw_spin_unlock_irqrestore (17 samples, 0.02%)</title><rect x="90.8" y="997" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.79" 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>pipe_write (18 samples, 0.02%)</title><rect x="1175.1" y="437" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>org/apache/tomcat/util/buf/StringCache:::toString (19 samples, 0.02%)</title><rect x="1179.3" y="821" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1182.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>ip_finish_output (24 samples, 0.03%)</title><rect x="11.4" y="1109" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>sun/nio/ch/SocketChannelImpl:::read (20 samples, 0.02%)</title><rect x="1183.5" y="1093" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (32 samples, 0.04%)</title><rect x="1144.0" y="453" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1146.95" 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 (22 samples, 0.03%)</title><rect x="1175.0" y="501" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$493/1516886129:::test (17 samples, 0.02%)</title><rect x="1110.4" y="453" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.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>finish_task_switch (27 samples, 0.03%)</title><rect x="87.6" y="949" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.57" 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>Copy::fill_to_memory_atomic (9 samples, 0.01%)</title><rect x="83.3" y="1093" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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/dianping/cat/aggregator/DefaultEventAggregator:::makeSureEventExist (19 samples, 0.02%)</title><rect x="99.7" y="741" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.66" 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>__netif_receive_skb (63 samples, 0.08%)</title><rect x="793.3" y="325" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.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>com/ctrip/framework/clogging/domain/thrift/Chunk$ChunkStandardScheme:::write (36 samples, 0.04%)</title><rect x="88.1" y="1189" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="91.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>Parker::park (9 samples, 0.01%)</title><rect x="1147.0" y="485" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.99" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_finish_output2 (34 samples, 0.04%)</title><rect x="60.1" y="805" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.07" 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 (15 samples, 0.02%)</title><rect x="1185.7" y="1077" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.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>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6:::encodeMessage (77 samples, 0.09%)</title><rect x="81.8" y="1141" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="84.77" 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/web/filter/OncePerRequestFilter:::doFilter (76,725 samples, 91.79%)</title><rect x="96.8" y="1013" width="1083.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="99.85" y="1023.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>do_IRQ (95 samples, 0.11%)</title><rect x="1106.2" y="485" width="1.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.19" 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>__netif_receive_skb_core (9 samples, 0.01%)</title><rect x="468.8" y="213" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.80" 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/fasterxml/jackson/databind/deser/std/StringDeserializer:::deserialize (89 samples, 0.11%)</title><rect x="986.9" y="469" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="989.87" 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>tpacket_rcv (19 samples, 0.02%)</title><rect x="50.5" y="437" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="53.47" 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>__softirqentry_text_start (8 samples, 0.01%)</title><rect x="986.8" y="405" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="989.76" 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>_raw_spin_unlock_irqrestore (40 samples, 0.05%)</title><rect x="57.9" y="965" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.87" 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_lock (12 samples, 0.01%)</title><rect x="1181.5" y="917" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.50" 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>do_IRQ (22 samples, 0.03%)</title><rect x="450.2" y="341" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.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>org/elasticsearch/client/RestClient$1:::completed (92 samples, 0.11%)</title><rect x="57.3" y="1125" width="1.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>[libc-2.17.so] (34 samples, 0.04%)</title><rect x="65.1" y="1125" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="68.07" 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>ret_from_intr (19 samples, 0.02%)</title><rect x="963.3" y="437" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.34" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/nio/ch/IOUtil:::drain (23 samples, 0.03%)</title><rect x="1189.0" y="1189" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>dev_hard_start_xmit (9 samples, 0.01%)</title><rect x="60.4" y="757" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.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>schedule (27 samples, 0.03%)</title><rect x="87.6" y="981" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.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/elasticsearch/client/RestClient:::buildUri (69 samples, 0.08%)</title><rect x="1149.4" y="517" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1152.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>sun/nio/ch/EPollArrayWrapper:::epollCtl (38 samples, 0.05%)</title><rect x="65.0" y="1141" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="68.01" 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 (159 samples, 0.19%)</title><rect x="791.9" y="389" width="2.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="794.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>net_rx_action (11 samples, 0.01%)</title><rect x="963.2" y="357" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.16" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb_core (8 samples, 0.01%)</title><rect x="810.8" y="309" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.79" 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 (37 samples, 0.04%)</title><rect x="92.9" y="1045" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.85" 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_dp_process_packet (15 samples, 0.02%)</title><rect x="1106.7" y="293" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.70" 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 (28 samples, 0.03%)</title><rect x="469.6" y="341" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.59" 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>__netif_receive_skb_core (22 samples, 0.03%)</title><rect x="946.0" y="261" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.99" 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>jbyte_disjoint_arraycopy (24 samples, 0.03%)</title><rect x="29.7" y="1077" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="32.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>__lll_timedwait_tid (8 samples, 0.01%)</title><rect x="78.8" y="1109" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>java/util/Calendar:::createCalendar (14 samples, 0.02%)</title><rect x="122.9" y="549" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="125.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>net_rx_action (9 samples, 0.01%)</title><rect x="607.3" y="373" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="610.30" 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>sun/nio/ch/SelectorImpl:::select (106 samples, 0.13%)</title><rect x="1187.8" y="1221" width="1.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>do_IRQ (9 samples, 0.01%)</title><rect x="1097.8" y="437" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.82" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_read (15 samples, 0.02%)</title><rect x="86.4" y="1093" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.37" 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>jshort_disjoint_arraycopy (45 samples, 0.05%)</title><rect x="583.5" y="469" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="586.51" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ClassLoaderData::oops_do (9 samples, 0.01%)</title><rect x="14.9" y="1269" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="17.94" 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 (10 samples, 0.01%)</title><rect x="1183.6" y="1013" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.56" 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/reflect/GeneratedMethodAccessor413:::invoke (47 samples, 0.06%)</title><rect x="989.4" y="469" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="992.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>java/lang/Class:::getSimpleBinaryName (8 samples, 0.01%)</title><rect x="118.0" y="389" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>netif_receive_skb_internal (12 samples, 0.01%)</title><rect x="73.6" y="837" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.64" 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>entry_SYSCALL_64_after_hwframe (50 samples, 0.06%)</title><rect x="1157.6" y="373" width="0.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.63" 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>__local_bh_enable_ip (8 samples, 0.01%)</title><rect x="1184.8" y="757" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.82" 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>__softirqentry_text_start (17 samples, 0.02%)</title><rect x="378.2" y="357" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" 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 (15 samples, 0.02%)</title><rect x="1167.8" y="421" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1170.82" 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>G1ParCleanupCTTask::work (27 samples, 0.03%)</title><rect x="12.2" y="1317" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.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>smp_apic_timer_interrupt (39 samples, 0.05%)</title><rect x="72.8" y="949" width="0.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.81" 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/elasticsearch/client/RestClient:::buildUri (45 samples, 0.05%)</title><rect x="576.4" y="485" width="0.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="579.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>find_class_from_class_loader (10 samples, 0.01%)</title><rect x="1155.2" y="309" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.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>InstanceKlass::oop_oop_iterate_backwards_nv (16 samples, 0.02%)</title><rect x="13.9" y="1253" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="16.85" 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="80.4" y="1109" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="83.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>__fput (21 samples, 0.03%)</title><rect x="1184.7" y="981" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.68" 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>G1CollectedHeap::iterate_dirty_card_closure (45 samples, 0.05%)</title><rect x="15.4" y="1269" width="0.6" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.38" 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_recvmsg (73 samples, 0.09%)</title><rect x="59.5" y="965" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.54" 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>__irqentry_text_start (39 samples, 0.05%)</title><rect x="72.8" y="965" width="0.6" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.81" 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>netif_receive_skb_internal (17 samples, 0.02%)</title><rect x="1106.7" y="373" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.68" 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>__softirqentry_text_start (8 samples, 0.01%)</title><rect x="1148.5" y="277" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1151.50" 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>ret_from_intr (64 samples, 0.08%)</title><rect x="301.6" y="405" width="0.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.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>io/netty/channel/nio/NioEventLoop:::run (163 samples, 0.20%)</title><rect x="84.3" y="1205" width="2.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>poll_schedule_timeout (26 samples, 0.03%)</title><rect x="1134.4" y="341" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.35" 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>entry_SYSCALL_64_after_hwframe (44 samples, 0.05%)</title><rect x="11.3" y="1349" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.27" 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 (23 samples, 0.03%)</title><rect x="79.1" y="965" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.14" 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 (55 samples, 0.07%)</title><rect x="575.2" y="421" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.24" 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/json/UTF8StreamJsonParser:::slowParseName (154 samples, 0.18%)</title><rect x="525.6" y="389" width="2.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.63" 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>Interpreter (4,343 samples, 5.20%)</title><rect x="16.3" y="1205" width="61.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/util/stream/Collectors$$Lambda$500/369322460:::accept (636 samples, 0.76%)</title><rect x="1118.5" y="469" width="9.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.54" 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_IRQ (34 samples, 0.04%)</title><rect x="810.4" y="405" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.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>com/ctriposs/baiji/specific/SpecificJsonWriter$RecordWriter:::write (38 samples, 0.05%)</title><rect x="1173.7" y="613" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.71" 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/EPollArrayWrapper:::interrupt (24 samples, 0.03%)</title><rect x="83.6" y="1125" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.63" 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/bind/ReflectiveTypeAdapterFactory:::excludeField (26 samples, 0.03%)</title><rect x="117.8" y="437" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.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>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeStartObject (139 samples, 0.17%)</title><rect x="312.4" y="421" width="1.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="315.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>__do_page_fault (11 samples, 0.01%)</title><rect x="468.1" y="325" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.06" 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>itable stub (28 samples, 0.03%)</title><rect x="95.5" y="1109" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="98.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>ovs_vport_receive (174 samples, 0.21%)</title><rect x="49.4" y="613" width="2.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.36" 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>irq_exit (11 samples, 0.01%)</title><rect x="563.0" y="389" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.97" 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>all (83,588 samples, 100%)</title><rect x="10.0" y="1397" width="1180.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.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>ip_queue_xmit (26 samples, 0.03%)</title><rect x="1181.9" y="789" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.90" 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>napi_gro_receive (23 samples, 0.03%)</title><rect x="813.4" y="325" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.36" 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>__netif_receive_skb (9 samples, 0.01%)</title><rect x="468.8" y="229" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.80" 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>inet_recvmsg (15 samples, 0.02%)</title><rect x="10.3" y="1269" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.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>page_fault (8 samples, 0.01%)</title><rect x="942.7" y="405" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="945.69" 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/google/gson/internal/bind/TypeAdapters$30:::create (28 samples, 0.03%)</title><rect x="117.1" y="405" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_finish_output (63 samples, 0.08%)</title><rect x="61.6" y="821" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>sock_close (18 samples, 0.02%)</title><rect x="1184.7" y="965" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.72" 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/regex/Pattern$GroupHead:::match (15 samples, 0.02%)</title><rect x="1177.2" y="613" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1180.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>smp_apic_timer_interrupt (17 samples, 0.02%)</title><rect x="378.2" y="389" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" 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_page_fault (11 samples, 0.01%)</title><rect x="972.8" y="421" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="975.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>com/fasterxml/jackson/databind/ser/impl/IndexedListSerializer:::serialize (9 samples, 0.01%)</title><rect x="1170.0" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1173.04" 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:::excludeClass (27 samples, 0.03%)</title><rect x="114.7" y="325" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.69" 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>__netif_receive_skb_core (12 samples, 0.01%)</title><rect x="73.6" y="805" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.64" 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>irq_exit (22 samples, 0.03%)</title><rect x="825.0" y="405" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="827.97" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ep_scan_ready_list.isra.11 (104 samples, 0.12%)</title><rect x="67.3" y="1045" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="70.33" 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>irq_exit (10 samples, 0.01%)</title><rect x="475.3" y="341" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="478.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>StringTable::intern (12 samples, 0.01%)</title><rect x="99.9" y="709" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.94" 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>syscall_slow_exit_work (11 samples, 0.01%)</title><rect x="1148.7" y="437" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1151.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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::createBoundField (396 samples, 0.47%)</title><rect x="112.2" y="437" width="5.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.19" 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>OptoRuntime::new_array_nozero_C (9 samples, 0.01%)</title><rect x="128.3" y="437" width="0.1" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.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>__wake_up_common_lock (21 samples, 0.03%)</title><rect x="1184.1" y="981" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.09" 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>credis/java/client/sync/config/SyncRedisServer:::execute (228 samples, 0.27%)</title><rect x="1132.0" y="533" width="3.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1135.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>ovs_dp_process_packet (14 samples, 0.02%)</title><rect x="562.2" y="197" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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>__netif_receive_skb (9 samples, 0.01%)</title><rect x="73.9" y="869" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.85" 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/nio/client/AbstractClientExchangeHandler$1:::completed (72 samples, 0.09%)</title><rect x="1157.3" y="453" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.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>net_rx_action (86 samples, 0.10%)</title><rect x="1106.3" y="437" width="1.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.32" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/util/concurrent/ThreadPoolExecutor:::execute (41 samples, 0.05%)</title><rect x="90.5" y="1173" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.54" 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>irq_exit (17 samples, 0.02%)</title><rect x="940.0" y="389" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="943.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (41 samples, 0.05%)</title><rect x="1168.5" y="533" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1171.46" 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>__wake_up_common_lock (8 samples, 0.01%)</title><rect x="1189.9" y="1237" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>ip_queue_xmit (18 samples, 0.02%)</title><rect x="85.0" y="869" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.02" 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:::get (37 samples, 0.04%)</title><rect x="56.6" y="1141" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="59.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>ip_local_out (24 samples, 0.03%)</title><rect x="1181.9" y="773" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.93" 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:::getSimpleName (12 samples, 0.01%)</title><rect x="1179.7" y="981" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1182.69" 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/regex/Pattern$BmpCharProperty:::match (12 samples, 0.01%)</title><rect x="1136.9" y="517" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.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>do_output (11 samples, 0.01%)</title><rect x="1106.7" y="245" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.70" 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>com/ctriposs/baiji/rpc/client/ribbon/HttpContext:::init (9 samples, 0.01%)</title><rect x="97.2" y="933" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.20" 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>VMThread::evaluate_operation (10 samples, 0.01%)</title><rect x="1189.6" y="1301" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.59" 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>SYSC_accept4 (16 samples, 0.02%)</title><rect x="89.4" y="1109" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>irq_exit (13 samples, 0.02%)</title><rect x="290.4" y="341" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.37" 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/Class:::forName0 (42 samples, 0.05%)</title><rect x="1153.3" y="421" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.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>_raw_spin_unlock_irqrestore (16 samples, 0.02%)</title><rect x="83.7" y="965" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.70" 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:::_loadMore (13 samples, 0.02%)</title><rect x="809.8" y="405" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="812.80" 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_v4_do_rcv (14 samples, 0.02%)</title><rect x="36.0" y="869" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.96" 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>dev_queue_xmit (9 samples, 0.01%)</title><rect x="1106.7" y="213" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.72" 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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseNumber2 (60 samples, 0.07%)</title><rect x="810.9" y="437" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.91" 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:::afterNodeInsertion (40 samples, 0.05%)</title><rect x="433.7" y="373" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="436.70" 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>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (11,762 samples, 14.07%)</title><rect x="136.5" y="421" width="166.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="139.52" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/es/jackson/..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctriposs/baiji/rpc/server/cat/SyncServiceCatTransaction:::startTransaction (43 samples, 0.05%)</title><rect x="102.8" y="709" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="105.83" 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>net_rx_action (272 samples, 0.33%)</title><rect x="48.8" y="693" width="3.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.76" 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 (32 samples, 0.04%)</title><rect x="1188.4" y="1061" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.38" 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 (101 samples, 0.12%)</title><rect x="1135.3" y="517" width="1.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.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>do_softirq (8 samples, 0.01%)</title><rect x="1184.8" y="741" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.82" 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/protocol/RequestTargetHost:::process (11 samples, 0.01%)</title><rect x="1156.8" y="469" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1159.83" 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$4:::handle (76,643 samples, 91.69%)</title><rect x="97.6" y="837" width="1082.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.61" y="847.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>com/ctrip/es/apache/http/message/BufferedHeader:::<init> (8 samples, 0.01%)</title><rect x="20.9" y="1125" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="23.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>__softirqentry_text_start (16 samples, 0.02%)</title><rect x="11.4" y="1029" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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/EPollArrayWrapper:::interrupt (23 samples, 0.03%)</title><rect x="1175.0" y="549" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.02" 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/misc/Unsafe:::park (65 samples, 0.08%)</title><rect x="78.7" y="1141" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>vfs_write (44 samples, 0.05%)</title><rect x="1181.7" y="965" width="0.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>jshort_disjoint_arraycopy (79 samples, 0.09%)</title><rect x="811.8" y="421" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="814.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>netdev_frame_hook (16 samples, 0.02%)</title><rect x="562.2" y="229" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.20" 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>ep_poll (516 samples, 0.62%)</title><rect x="66.9" y="1061" width="7.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="69.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>org/elasticsearch/client/RestClient$SyncResponseListener:::get (172 samples, 0.21%)</title><rect x="1146.5" y="533" width="2.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.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>do_softirq_own_stack (22 samples, 0.03%)</title><rect x="60.1" y="757" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.10" 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/ctriposs/baiji/JsonSerializer:::serialize (243 samples, 0.29%)</title><rect x="1173.4" y="645" width="3.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.37" 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>net_rx_action (36 samples, 0.04%)</title><rect x="549.2" y="325" width="0.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.22" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_softirq_own_stack (8 samples, 0.01%)</title><rect x="1184.8" y="725" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.82" 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/jackson/core/json/UTF8StreamJsonParser:::_skipColon2 (37 samples, 0.04%)</title><rect x="558.8" y="405" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.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>ret_from_intr (74 samples, 0.09%)</title><rect x="973.0" y="453" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="975.97" 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>ClassLoaderDataGraph::roots_cld_do (9 samples, 0.01%)</title><rect x="14.9" y="1285" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="17.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>org/springframework/beans/factory/support/DefaultListableBeanFactory:::resolveNamedBean (8 samples, 0.01%)</title><rect x="107.2" y="677" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.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>syscall_trace_enter (10 samples, 0.01%)</title><rect x="55.0" y="1013" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.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>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (76,300 samples, 91.28%)</title><rect x="101.7" y="805" width="1077.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="104.66" y="815.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>java/io/ByteArrayOutputStream:::write (8 samples, 0.01%)</title><rect x="301.5" y="405" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.50" 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/tomcat/util/net/NioEndpoint$Poller:::add (39 samples, 0.05%)</title><rect x="1184.0" y="1141" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>org/elasticsearch/client/RequestConverters:::search (146 samples, 0.17%)</title><rect x="572.5" y="501" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="575.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>jshort_disjoint_arraycopy (42 samples, 0.05%)</title><rect x="969.1" y="421" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="972.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>tcp_sendmsg_locked (34 samples, 0.04%)</title><rect x="84.8" y="949" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>com/google/gson/internal/Excluder:::excludeClass (11 samples, 0.01%)</title><rect x="112.3" y="389" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.28" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/Class:::forName0 (27 samples, 0.03%)</title><rect x="578.6" y="389" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="581.64" 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/json/UTF8StreamJsonParser:::_parseName (3,653 samples, 4.37%)</title><rect x="477.2" y="405" width="51.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="480.18" y="415.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>__netif_receive_skb (8 samples, 0.01%)</title><rect x="701.3" y="341" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.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>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseName (464 samples, 0.56%)</title><rect x="600.9" y="453" width="6.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="603.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (65 samples, 0.08%)</title><rect x="1160.8" y="517" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1163.79" 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>_raw_spin_unlock_irqrestore (14 samples, 0.02%)</title><rect x="1175.1" y="389" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>com/ctrip/es/apache/http/client/protocol/RequestAuthCache:::doPreemptiveAuth (14 samples, 0.02%)</title><rect x="1151.7" y="453" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1154.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>do_futex (8 samples, 0.01%)</title><rect x="1187.5" y="1077" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.47" 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/ConcurrentHashMap:::transfer (17 samples, 0.02%)</title><rect x="1151.2" y="437" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1154.24" 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>SafepointSynchronize::begin (19 samples, 0.02%)</title><rect x="1189.3" y="1301" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.29" 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/common/util/NetworkUtil:::refineIPAddress (14 samples, 0.02%)</title><rect x="103.0" y="677" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="106.00" 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/reflect/generics/visitor/Reifier:::visitClassTypeSignature (17 samples, 0.02%)</title><rect x="118.9" y="405" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::executeService (75,386 samples, 90.19%)</title><rect x="106.9" y="693" width="1064.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="109.91" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::executeService</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/io/ObjectInputStream:::readClassDesc (160 samples, 0.19%)</title><rect x="1152.1" y="437" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1155.07" 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>i40e_clean_rx_irq (40 samples, 0.05%)</title><rect x="561.9" y="309" width="0.6" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="564.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>do_softirq (46 samples, 0.06%)</title><rect x="61.6" y="773" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.61" 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/internal/DefaultMessageManager$TransactionHelper:::validate (17 samples, 0.02%)</title><rect x="104.6" y="661" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="107.58" 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>net_rx_action (45 samples, 0.05%)</title><rect x="468.6" y="309" width="0.6" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.60" 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>pipe_write (17 samples, 0.02%)</title><rect x="83.7" y="1013" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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>ip_local_deliver (16 samples, 0.02%)</title><rect x="973.7" y="293" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.70" 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 (598 samples, 0.72%)</title><rect x="66.5" y="1093" width="8.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="69.52" 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>syscall_slow_exit_work (24 samples, 0.03%)</title><rect x="54.7" y="1013" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.65" 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/fasterxml/jackson/databind/ser/BeanPropertyWriter:::serializeAsField (21 samples, 0.03%)</title><rect x="1169.5" y="501" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1172.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>com/ctrip/es/apache/http/impl/nio/client/InternalHttpAsyncClient:::execute (606 samples, 0.72%)</title><rect x="1150.5" y="501" width="8.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1153.53" 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/apache/http/nio/pool/AbstractNIOConnPool:::fireCallbacks (86 samples, 0.10%)</title><rect x="1157.3" y="485" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>irq_exit (15 samples, 0.02%)</title><rect x="44.5" y="821" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.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>sock_recvmsg (10 samples, 0.01%)</title><rect x="1183.6" y="933" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.56" 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/util/stream/ReferencePipeline$2$1:::accept (116 samples, 0.14%)</title><rect x="1127.7" y="485" width="1.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1130.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:::parseLongName (9 samples, 0.01%)</title><rect x="1144.3" y="437" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1147.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>i40e_clean_rx_irq (18 samples, 0.02%)</title><rect x="810.5" y="325" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.51" 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/nio/channels/spi/AbstractSelectableChannel:::implCloseChannel (22 samples, 0.03%)</title><rect x="1184.7" y="1109" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.66" 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>ret_from_intr (9 samples, 0.01%)</title><rect x="1097.8" y="453" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.82" 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>Unsafe_Park (65 samples, 0.08%)</title><rect x="87.1" y="1109" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.12" 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>__softirqentry_text_start (13 samples, 0.02%)</title><rect x="1117.6" y="357" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1120.59" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb (8 samples, 0.01%)</title><rect x="251.4" y="293" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.40" 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>smp_apic_timer_interrupt (14 samples, 0.02%)</title><rect x="515.0" y="373" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="518.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/GeneratedMethodAccessor85:::invoke (31 samples, 0.04%)</title><rect x="979.7" y="453" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="982.73" 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_after_hwframe (44 samples, 0.05%)</title><rect x="1134.3" y="405" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.27" 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/net/URI$Parser:::parse (11 samples, 0.01%)</title><rect x="1150.2" y="501" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1153.23" 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/rpc/server/plugin/safelist/buwhitelist/BuWhiteListPlugin:::getWhiteListSetting (25 samples, 0.03%)</title><rect x="106.0" y="661" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="108.95" 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>ret_from_intr (8 samples, 0.01%)</title><rect x="1148.5" y="325" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1151.50" 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>netif_receive_skb_internal (10 samples, 0.01%)</title><rect x="468.8" y="245" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.80" 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>napi_gro_receive (11 samples, 0.01%)</title><rect x="549.3" y="277" width="0.2" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.32" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>i40e_napi_poll (8 samples, 0.01%)</title><rect x="468.3" y="277" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.26" 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>tcp_sendmsg (43 samples, 0.05%)</title><rect x="1181.7" y="885" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.73" 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/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$543/1700404070:::test (106 samples, 0.13%)</title><rect x="1129.8" y="469" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1132.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>jbyte_disjoint_arraycopy (30 samples, 0.04%)</title><rect x="558.9" y="389" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.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>io/netty/channel/ChannelOutboundBuffer:::removeBytes (10 samples, 0.01%)</title><rect x="84.5" y="1141" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.52" 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>__netif_receive_skb_core (63 samples, 0.08%)</title><rect x="793.3" y="309" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.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>do_output (12 samples, 0.01%)</title><rect x="946.0" y="165" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.02" 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>__netif_receive_skb (253 samples, 0.30%)</title><rect x="49.0" y="661" width="3.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.03" 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 (9 samples, 0.01%)</title><rect x="378.2" y="293" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" 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>java/lang/Class:::getSimpleName (13 samples, 0.02%)</title><rect x="115.1" y="309" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.13" 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/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (76,299 samples, 91.28%)</title><rect x="101.7" y="773" width="1077.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="104.67" y="783.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/framework/clogging/agent/log/impl/CLoggingLogger$FreewayLogSender:::send (18 samples, 0.02%)</title><rect x="1109.2" y="501" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.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>i40e_napi_poll (17 samples, 0.02%)</title><rect x="290.6" y="309" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.64" 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/apache/tomcat/util/threads/TaskThread$WrappingRunnable:::run (77,452 samples, 92.66%)</title><rect x="94.2" y="1221" width="1093.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.22" y="1231.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>_raw_spin_unlock_irqrestore (12 samples, 0.01%)</title><rect x="73.2" y="853" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.19" 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 (50 samples, 0.06%)</title><rect x="468.5" y="373" width="0.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.53" 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>DirtyCardQueueSet::apply_closure_to_completed_buffer (44 samples, 0.05%)</title><rect x="15.4" y="1253" width="0.6" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.38" 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>ip_rcv (15 samples, 0.02%)</title><rect x="549.5" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.49" 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>java/io/ObjectInputStream:::defaultReadFields (77 samples, 0.09%)</title><rect x="1154.6" y="405" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.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>ip_rcv (9 samples, 0.01%)</title><rect x="73.9" y="837" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.85" 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>jni_NewObject (11 samples, 0.01%)</title><rect x="89.2" y="1141" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>java_lang_Throwable::fill_in_stack_trace (42 samples, 0.05%)</title><rect x="1031.1" y="453" width="0.6" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.09" 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_poll (52 samples, 0.06%)</title><rect x="1188.1" y="1109" width="0.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.09" 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>i40e_napi_poll (12 samples, 0.01%)</title><rect x="469.6" y="309" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.64" 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>ip_rcv_finish (20 samples, 0.02%)</title><rect x="973.7" y="309" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.69" 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>__softirqentry_text_start (34 samples, 0.04%)</title><rect x="810.4" y="373" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.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>ip_finish_output2 (388 samples, 0.46%)</title><rect x="48.4" y="773" width="5.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.44" 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 (39 samples, 0.05%)</title><rect x="946.5" y="325" width="0.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.50" 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>inet_sendmsg (43 samples, 0.05%)</title><rect x="1175.6" y="389" width="0.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>__tcp_send_ack.part.29 (520 samples, 0.62%)</title><rect x="46.9" y="869" width="7.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="49.90" 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/Cat:::logTags (29 samples, 0.03%)</title><rect x="107.9" y="565" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.86" 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/fasterxml/jackson/core/JsonFactory:::createParser (25 samples, 0.03%)</title><rect x="582.7" y="517" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="585.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>do_syscall_64 (44 samples, 0.05%)</title><rect x="1134.3" y="389" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.27" 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>net_rx_action (8 samples, 0.01%)</title><rect x="1184.8" y="693" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>tcp_send_ack (520 samples, 0.62%)</title><rect x="46.9" y="885" width="7.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="49.90" 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>tcp_v4_do_rcv (15 samples, 0.02%)</title><rect x="949.1" y="229" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.07" 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>G1ParEvacuateFollowersClosure::do_void (158 samples, 0.19%)</title><rect x="12.7" y="1301" width="2.2" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.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>do_IRQ (94 samples, 0.11%)</title><rect x="812.9" y="421" width="1.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="815.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_write (30 samples, 0.04%)</title><rect x="581.2" y="309" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.24" 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>__vdso_gettimeofday (9 samples, 0.01%)</title><rect x="58.6" y="1125" width="0.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="61.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>java/lang/String:::regionMatches (34 samples, 0.04%)</title><rect x="1130.8" y="453" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1133.84" 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>process_backlog (12 samples, 0.01%)</title><rect x="290.9" y="309" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.88" 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/google/gson/internal/Excluder:::excludeClass (9 samples, 0.01%)</title><rect x="113.4" y="229" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.36" 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>__wake_up_sync_key (36 samples, 0.04%)</title><rect x="1157.7" y="277" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.74" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>perf_event_exit_task (8 samples, 0.01%)</title><rect x="1189.9" y="1285" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>sun/reflect/GeneratedMethodAccessor73:::invoke (34 samples, 0.04%)</title><rect x="975.5" y="453" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="978.54" 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 (14 samples, 0.02%)</title><rect x="576.6" y="453" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="579.62" 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>veth_xmit (27 samples, 0.03%)</title><rect x="53.3" y="709" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.30" 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/dianping/cat/message/spi/codec/CodecHelper:::writeString (62 samples, 0.07%)</title><rect x="80.9" y="1125" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="83.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>entry_SYSCALL_64_after_hwframe (10 samples, 0.01%)</title><rect x="1183.6" y="1029" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (8 samples, 0.01%)</title><rect x="567.3" y="421" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="570.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>__softirqentry_text_start (11 samples, 0.01%)</title><rect x="963.2" y="373" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.16" 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/index/query/BaseTermQueryBuilder:::doXContent (9 samples, 0.01%)</title><rect x="573.2" y="405" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.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>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (73 samples, 0.09%)</title><rect x="573.5" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.52" 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/index/query/AbstractQueryBuilder:::toXContent (12 samples, 0.01%)</title><rect x="1146.3" y="453" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.29" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>pipe_write (42 samples, 0.05%)</title><rect x="1157.7" y="293" width="0.6" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.69" 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 (10 samples, 0.01%)</title><rect x="872.5" y="389" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.51" 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>__schedule (27 samples, 0.03%)</title><rect x="87.6" y="965" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.57" 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>net_rx_action (17 samples, 0.02%)</title><rect x="72.8" y="901" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.82" 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/misc/VM:::latestUserDefinedLoader0 (13 samples, 0.02%)</title><rect x="579.0" y="389" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>net_tx_action (9 samples, 0.01%)</title><rect x="73.1" y="901" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.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>entry_SYSCALL_64_after_hwframe (33 samples, 0.04%)</title><rect x="65.1" y="1109" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="68.08" 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>netdev_frame_hook (26 samples, 0.03%)</title><rect x="792.7" y="245" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.70" 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>select_estimate_accuracy (11 samples, 0.01%)</title><rect x="74.0" y="1045" width="0.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.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>__tcp_send_ack.part.29 (8 samples, 0.01%)</title><rect x="36.0" y="805" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="39.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>Unsafe_Park (144 samples, 0.17%)</title><rect x="1185.4" y="1125" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.41" 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$Branch:::match (8 samples, 0.01%)</title><rect x="1177.2" y="533" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1180.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>java/util/regex/Pattern$Curly:::match (15 samples, 0.02%)</title><rect x="1177.2" y="597" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1180.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/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::fireCallbacks (48 samples, 0.06%)</title><rect x="581.1" y="453" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.06" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__ip_local_out (8 samples, 0.01%)</title><rect x="48.2" y="805" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.16" 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 (8 samples, 0.01%)</title><rect x="1189.9" y="1349" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>do_syscall_64 (119 samples, 0.14%)</title><rect x="61.1" y="1077" width="1.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>sun/reflect/generics/tree/ClassTypeSignature:::accept (17 samples, 0.02%)</title><rect x="120.9" y="485" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>OptoRuntime::new_array_nozero_C (10 samples, 0.01%)</title><rect x="940.4" y="405" width="0.1" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="943.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>do_syscall_64 (1,527 samples, 1.83%)</title><rect x="33.6" y="1029" width="21.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.58" y="1039.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/google/gson/internal/Excluder:::excludeClass (15 samples, 0.02%)</title><rect x="109.8" y="453" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.76" 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>netdev_frame_hook (11 samples, 0.01%)</title><rect x="813.5" y="261" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.48" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/generics/parser/SignatureParser:::parseFieldTypeSignature (27 samples, 0.03%)</title><rect x="118.3" y="437" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.30" 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 (9 samples, 0.01%)</title><rect x="78.1" y="1013" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.13" 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>RefineRecordRefsIntoCSCardTableEntryClosure::do_card_ptr (40 samples, 0.05%)</title><rect x="15.4" y="1221" width="0.6" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.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>HeapRegion::oops_on_card_seq_iterate_careful (30 samples, 0.04%)</title><rect x="15.5" y="1189" width="0.5" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.53" 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/UTF8JsonGenerator:::_writeStringSegment (27 samples, 0.03%)</title><rect x="306.8" y="421" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="309.84" 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/GeneratedMethodAccessor82:::invoke (28 samples, 0.03%)</title><rect x="979.0" y="453" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="982.01" 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>kfree_skb (8 samples, 0.01%)</title><rect x="35.3" y="853" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.28" 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>JVM_LatestUserDefinedLoader (12 samples, 0.01%)</title><rect x="579.0" y="373" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>net_rx_action (84 samples, 0.10%)</title><rect x="561.8" y="341" width="1.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="564.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_rcv_finish (11 samples, 0.01%)</title><rect x="469.8" y="245" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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>frame::sender (24 samples, 0.03%)</title><rect x="1108.4" y="453" width="0.4" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1111.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>[libc-2.17.so] (42 samples, 0.05%)</title><rect x="91.6" y="1157" width="0.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="94.58" 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:::awaitNanos (166 samples, 0.20%)</title><rect x="1185.1" y="1173" width="2.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.12" 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>pipe_read (19 samples, 0.02%)</title><rect x="76.8" y="1029" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.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>org/springframework/aop/aspectj/AspectJExpressionPointcut:::matches (9 samples, 0.01%)</title><rect x="1171.0" y="613" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1173.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>futex_wait_queue_me (63 samples, 0.08%)</title><rect x="1147.7" y="389" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.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>com/dianping/cat/message/io/DefaultMessageQueue:::poll (83 samples, 0.10%)</title><rect x="78.5" y="1189" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.45" 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/bind/TypeAdapters$30:::create (17 samples, 0.02%)</title><rect x="114.2" y="309" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.24" 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>__netif_receive_skb (9 samples, 0.01%)</title><rect x="1030.2" y="357" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.18" 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>copy_user_enhanced_fast_string (84 samples, 0.10%)</title><rect x="45.6" y="853" width="1.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="48.62" 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>netdev_frame_hook (9 samples, 0.01%)</title><rect x="468.8" y="197" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.80" 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>io/netty/util/concurrent/SingleThreadEventExecutor:::runAllTasks (73 samples, 0.09%)</title><rect x="84.4" y="1189" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>ovs_vport_receive (28 samples, 0.03%)</title><rect x="253.6" y="197" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.60" 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>com/dianping/cat/servlet/CatFilter:::doFilter (76,661 samples, 91.71%)</title><rect x="97.4" y="885" width="1082.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.41" y="895.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>java/util/concurrent/ThreadPoolExecutor:::getTask (81 samples, 0.10%)</title><rect x="86.9" y="1189" width="1.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.92" 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_release_all (40 samples, 0.05%)</title><rect x="35.1" y="885" width="0.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.07" 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/es/jackson/core/json/UTF8StreamJsonParser:::_parseNegNumber (1,487 samples, 1.78%)</title><rect x="528.8" y="405" width="20.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.75" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb_core (14 samples, 0.02%)</title><rect x="1175.9" y="85" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.85" 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>jlong_disjoint_arraycopy (160 samples, 0.19%)</title><rect x="940.6" y="421" width="2.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="943.57" 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>VM_G1IncCollectionPause::doit (8 samples, 0.01%)</title><rect x="1189.6" y="1269" width="0.1" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>__wake_up_common_lock (16 samples, 0.02%)</title><rect x="83.7" y="981" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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>java/lang/ReflectiveOperationException:::<init> (39 samples, 0.05%)</title><rect x="113.7" y="277" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.67" 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>ovs_vport_receive (8 samples, 0.01%)</title><rect x="528.2" y="197" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.17" 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>ovs_flow_key_extract (14 samples, 0.02%)</title><rect x="51.6" y="597" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.57" 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/ObjectStreamClass:::readNonProxy (41 samples, 0.05%)</title><rect x="1152.7" y="421" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1155.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>irq_exit (13 samples, 0.02%)</title><rect x="1117.6" y="373" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1120.59" 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/io/ByteArrayOutputStream:::write (18 samples, 0.02%)</title><rect x="571.9" y="437" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.91" 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>__local_bh_enable_ip (16 samples, 0.02%)</title><rect x="11.4" y="1077" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>ovs_vport_receive (8 samples, 0.01%)</title><rect x="1106.9" y="293" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.94" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::getNextChar (31 samples, 0.04%)</title><rect x="810.0" y="405" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="812.99" 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/jackson/core/json/JsonReadContext:::_checkDup (31 samples, 0.04%)</title><rect x="566.8" y="421" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="569.83" 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/json/UTF8JsonGenerator:::writeFieldName (159 samples, 0.19%)</title><rect x="308.2" y="421" width="2.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="311.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>java/io/ObjectInputStream:::readClassDesc (30 samples, 0.04%)</title><rect x="579.5" y="341" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.46" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (76,692 samples, 91.75%)</title><rect x="97.0" y="997" width="1082.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.03" y="1007.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>pthread_cond_timedwait@@GLIBC_2.3.2 (42 samples, 0.05%)</title><rect x="79.0" y="1109" width="0.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.00" 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/GeneratedMethodAccessor81:::invoke (43 samples, 0.05%)</title><rect x="1006.7" y="469" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1009.72" 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/stream/AbstractPipeline:::evaluate (601 samples, 0.72%)</title><rect x="1119.0" y="437" width="8.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.99" 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>SymbolTable::lookup (9 samples, 0.01%)</title><rect x="1153.4" y="373" width="0.1" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.37" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.02%)</title><rect x="89.4" y="1157" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>__schedule (256 samples, 0.31%)</title><rect x="70.4" y="997" width="3.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="73.38" 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_lang_Throwable_fillInStackTrace (162 samples, 0.19%)</title><rect x="1165.9" y="517" width="2.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.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>do_futex (33 samples, 0.04%)</title><rect x="87.5" y="1029" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.49" 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/dianping/cat/message/internal/DefaultTransaction:::complete (11 samples, 0.01%)</title><rect x="107.0" y="677" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="109.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>org/elasticsearch/client/RestClient$1:::completed (93 samples, 0.11%)</title><rect x="57.3" y="1141" width="1.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>JavaCalls::call_helper (83,090 samples, 99.40%)</title><rect x="16.3" y="1269" width="1173.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1279.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>sun/reflect/GeneratedMethodAccessor76:::invoke (153 samples, 0.18%)</title><rect x="998.0" y="469" width="2.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1001.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>netif_receive_skb_internal (10 samples, 0.01%)</title><rect x="528.2" y="261" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.17" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_poll (8 samples, 0.01%)</title><rect x="68.4" y="997" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="71.42" 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_InternString (10 samples, 0.01%)</title><rect x="578.5" y="341" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="581.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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::create (866 samples, 1.04%)</title><rect x="109.0" y="533" width="12.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.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_lang_Class_forName0 (41 samples, 0.05%)</title><rect x="1153.3" y="405" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.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>sock_recvmsg (16 samples, 0.02%)</title><rect x="10.3" y="1285" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.34" 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/DefaultTransactionAggregator$TransactionData:::add (17 samples, 0.02%)</title><rect x="100.4" y="773" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.40" 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>i40e_napi_poll (33 samples, 0.04%)</title><rect x="948.6" y="357" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.56" 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>sys_futex (33 samples, 0.04%)</title><rect x="87.5" y="1045" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.49" 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>irq_exit (34 samples, 0.04%)</title><rect x="810.4" y="389" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.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>java_lang_Throwable::fill_in_stack_trace (102 samples, 0.12%)</title><rect x="110.5" y="357" width="1.4" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.47" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_finish_output (9 samples, 0.01%)</title><rect x="1184.8" y="789" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.82" 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>do_page_fault (12 samples, 0.01%)</title><rect x="289.9" y="341" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="292.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>BacktraceBuilder::push (35 samples, 0.04%)</title><rect x="1135.7" y="437" width="0.5" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.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>__kmalloc_node_track_caller (11 samples, 0.01%)</title><rect x="47.1" y="821" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="50.13" 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/apache/http/message/TokenParser:::parseToken (9 samples, 0.01%)</title><rect x="1156.5" y="437" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1159.49" 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/hotel/htlorgarea/core/service/impl/HotelClassInfoServiceImpl:::queryHotelClassInfo (405 samples, 0.48%)</title><rect x="1131.4" y="565" width="5.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1134.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>org/apache/tomcat/util/net/NioEndpoint$Poller:::processKey (56 samples, 0.07%)</title><rect x="90.3" y="1205" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.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/databind/ObjectMapper:::readValue (31,762 samples, 38.00%)</title><rect x="582.7" y="533" width="448.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="585.71" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/fasterxml/jackson/databind/ObjectMapper:::readValue</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ovs_dp_process_packet (23 samples, 0.03%)</title><rect x="792.7" y="213" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.70" 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/jackson/core/sym/ByteQuadsCanonicalizer:::findName (8 samples, 0.01%)</title><rect x="527.4" y="357" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="530.41" 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>ovs_execute_actions (17 samples, 0.02%)</title><rect x="61.8" y="613" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.78" 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 (96 samples, 0.11%)</title><rect x="59.3" y="1061" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.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>java/lang/String:::toLowerCase (18 samples, 0.02%)</title><rect x="585.9" y="469" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="588.87" 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/json/UTF8StreamJsonParser:::nextToken (12 samples, 0.01%)</title><rect x="127.0" y="485" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.03" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>StringTable::possibly_parallel_oops_do (12 samples, 0.01%)</title><rect x="15.1" y="1285" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.12" 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_IRQ (45 samples, 0.05%)</title><rect x="73.4" y="949" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.36" 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>net_rx_action (12 samples, 0.01%)</title><rect x="1117.6" y="341" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1120.61" 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>ret_from_intr (10 samples, 0.01%)</title><rect x="607.3" y="437" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="610.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sock_read_iter (75 samples, 0.09%)</title><rect x="59.5" y="997" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.52" 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>net_rx_action (9 samples, 0.01%)</title><rect x="403.5" y="309" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="406.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>_raw_spin_unlock_irqrestore (45 samples, 0.05%)</title><rect x="69.2" y="997" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="72.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>java/util/stream/AbstractPipeline:::evaluate (24 samples, 0.03%)</title><rect x="1170.6" y="565" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1173.56" 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>StringTable::intern (9 samples, 0.01%)</title><rect x="99.1" y="709" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.06" 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>schedule (16 samples, 0.02%)</title><rect x="86.0" y="1029" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.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>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (16 samples, 0.02%)</title><rect x="1146.2" y="485" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.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>futex_wait (45 samples, 0.05%)</title><rect x="575.3" y="373" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.30" 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/Thread:::sleep (40 samples, 0.05%)</title><rect x="77.8" y="1189" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="80.78" 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 (8 samples, 0.01%)</title><rect x="1097.8" y="389" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.83" 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_IRQ (8 samples, 0.01%)</title><rect x="986.8" y="437" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="989.76" 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>BacktraceBuilder::expand (8 samples, 0.01%)</title><rect x="1166.5" y="453" width="0.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.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>ret_from_intr (9 samples, 0.01%)</title><rect x="1106.0" y="485" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.03" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__libc_sendmsg (44 samples, 0.05%)</title><rect x="11.3" y="1365" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.27" 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 (32 samples, 0.04%)</title><rect x="575.4" y="341" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.44" 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/json/ReaderBasedJsonParser:::_parseName (22 samples, 0.03%)</title><rect x="584.6" y="469" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="587.60" 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/Throwable:::fillInStackTrace (42 samples, 0.05%)</title><rect x="1031.1" y="517" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.09" 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_core (29 samples, 0.03%)</title><rect x="562.5" y="293" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.52" 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>rebalance_domains (8 samples, 0.01%)</title><rect x="251.5" y="309" width="0.1" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.53" 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>process_backlog (10 samples, 0.01%)</title><rect x="468.4" y="277" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.37" 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>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseName (397 samples, 0.47%)</title><rect x="788.6" y="437" width="5.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.62" 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_FindClassFromCaller (17 samples, 0.02%)</title><rect x="1155.1" y="325" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.13" 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/fasterxml/jackson/databind/ser/std/MapSerializer:::serialize (8 samples, 0.01%)</title><rect x="1109.8" y="453" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.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>do_execute_actions (17 samples, 0.02%)</title><rect x="792.7" y="181" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.72" 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>do_IRQ (22 samples, 0.03%)</title><rect x="825.0" y="421" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="827.97" 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/GeneratedMethodAccessor82:::invoke (164 samples, 0.20%)</title><rect x="1007.3" y="469" width="2.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1010.33" 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>OptoRuntime::is_deoptimized_caller_frame (12 samples, 0.01%)</title><rect x="282.8" y="341" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="285.79" 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>vtable stub (11 samples, 0.01%)</title><rect x="1030.8" y="501" width="0.1" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.78" 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>netif_receive_skb_internal (10 samples, 0.01%)</title><rect x="549.3" y="261" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.33" 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>ObjectSynchronizer::deflate_idle_monitors (13 samples, 0.02%)</title><rect x="1189.4" y="1269" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.38" 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>[libpthread-2.17.so] (39 samples, 0.05%)</title><rect x="84.8" y="1109" width="0.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>dev_queue_xmit (10 samples, 0.01%)</title><rect x="60.4" y="789" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.41" 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_Throwable::fill_in_stack_trace (41 samples, 0.05%)</title><rect x="1031.1" y="437" width="0.6" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.09" 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/nio/ch/EPollArrayWrapper:::interrupt (17 samples, 0.02%)</title><rect x="1181.4" y="1061" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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 (41 samples, 0.05%)</title><rect x="549.2" y="357" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.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>process_backlog (14 samples, 0.02%)</title><rect x="1175.9" y="117" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.85" 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>copy_page_to_iter (545 samples, 0.65%)</title><rect x="37.1" y="885" width="7.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="40.15" 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/ser/DefaultSerializerProvider:::serializeValue (10 samples, 0.01%)</title><rect x="1109.8" y="485" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb (15 samples, 0.02%)</title><rect x="788.7" y="325" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.67" 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>__softirqentry_text_start (13 samples, 0.02%)</title><rect x="290.4" y="325" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.37" 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>i40e_clean_rx_irq (47 samples, 0.06%)</title><rect x="253.4" y="293" width="0.6" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.37" 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/ctriposs/baiji/rpc/server/cat/ServiceCatTransaction:::newServiceCatTransaction (12 samples, 0.01%)</title><rect x="102.6" y="709" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="105.65" 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>netdev_frame_hook (12 samples, 0.01%)</title><rect x="73.6" y="789" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.64" 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_event_new_data_sent (9 samples, 0.01%)</title><rect x="62.5" y="885" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="65.53" 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>smp_apic_timer_interrupt (22 samples, 0.03%)</title><rect x="251.3" y="373" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.34" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_v4_rcv (11 samples, 0.01%)</title><rect x="469.8" y="197" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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>smp_apic_timer_interrupt (10 samples, 0.01%)</title><rect x="548.7" y="373" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.71" 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>BacktraceBuilder::push (16 samples, 0.02%)</title><rect x="1031.3" y="421" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.34" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>net_rx_action (106 samples, 0.13%)</title><rect x="253.1" y="325" width="1.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>SystemDictionary::resolve_or_fail (9 samples, 0.01%)</title><rect x="1153.5" y="357" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.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>java/lang/String:::toLowerCase (5,264 samples, 6.30%)</title><rect x="872.8" y="437" width="74.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.81" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/lan..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_IRQ (10 samples, 0.01%)</title><rect x="475.3" y="357" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="478.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>ovs_vport_receive (15 samples, 0.02%)</title><rect x="1106.7" y="309" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.70" 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/apache/catalina/valves/AccessLogValve:::log (48 samples, 0.06%)</title><rect x="1180.6" y="1109" width="0.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.56" 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>i40e_napi_poll (9 samples, 0.01%)</title><rect x="301.3" y="309" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.30" 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>ovs_vport_send (107 samples, 0.13%)</title><rect x="49.8" y="533" width="1.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.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>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="1000.0" y="405" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1003.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>__do_page_fault (17 samples, 0.02%)</title><rect x="1097.6" y="421" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.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>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlDecode (13 samples, 0.02%)</title><rect x="580.3" y="405" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="583.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>ovs_vport_send (13 samples, 0.02%)</title><rect x="562.2" y="133" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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>do_IRQ (10 samples, 0.01%)</title><rect x="607.3" y="421" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="610.28" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/common/xcontent/ObjectParser:::parse (31,518 samples, 37.71%)</title><rect x="127.3" y="485" width="444.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.27" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/elasticsearch/common/xcontent/ObjectParser:::parse</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_rcv_finish (35 samples, 0.04%)</title><rect x="946.5" y="277" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.54" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>smp_apic_timer_interrupt (10 samples, 0.01%)</title><rect x="872.5" y="421" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.51" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctriposs/baiji/rpc/server/util/ResponseUtil:::writeResponse (332 samples, 0.40%)</title><rect x="1173.0" y="693" width="4.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.98" 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>tcp_v4_rcv (26 samples, 0.03%)</title><rect x="254.2" y="197" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.17" 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>org/elasticsearch/action/search/SearchResponse:::innerFromXContent (31,579 samples, 37.78%)</title><rect x="126.7" y="501" width="445.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="129.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/elasticsearch/action/search/SearchResponse:::innerFromXC..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/databind/deser/std/StringCollectionDeserializer:::deserialize (30 samples, 0.04%)</title><rect x="1163.8" y="517" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1166.78" 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>__audit_syscall_entry (8 samples, 0.01%)</title><rect x="55.0" y="997" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="58.00" 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>TypeArrayKlass::allocate_common (8 samples, 0.01%)</title><rect x="1098.1" y="469" width="0.1" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1101.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>ip_local_deliver_finish (11 samples, 0.01%)</title><rect x="72.9" y="789" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.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>com/dianping/cat/aggregator/DefaultLocalAggregator:::analyzerProcessEvent (42 samples, 0.05%)</title><rect x="98.6" y="773" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="101.63" 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>schedule_hrtimeout_range_clock (349 samples, 0.42%)</title><rect x="69.1" y="1029" width="4.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="72.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>__netif_receive_skb (22 samples, 0.03%)</title><rect x="949.0" y="341" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.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>dev_queue_xmit_nit (8 samples, 0.01%)</title><rect x="60.4" y="741" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.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>do_syscall_64 (78 samples, 0.09%)</title><rect x="1186.3" y="1077" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.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>JVM_FindClassFromCaller (9 samples, 0.01%)</title><rect x="118.9" y="357" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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>__softirqentry_text_start (19 samples, 0.02%)</title><rect x="963.3" y="389" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.34" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sock_sendmsg (115 samples, 0.14%)</title><rect x="61.1" y="997" width="1.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.09" 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>vtable stub (385 samples, 0.46%)</title><rect x="470.0" y="389" width="5.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.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>do_futex (68 samples, 0.08%)</title><rect x="1186.3" y="1045" width="0.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.26" 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 (207 samples, 0.25%)</title><rect x="91.3" y="1189" width="2.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="94.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>ret_from_intr (17 samples, 0.02%)</title><rect x="301.3" y="389" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.26" 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/json/UTF8StreamJsonParser:::nextToken (15 samples, 0.02%)</title><rect x="127.5" y="469" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.49" 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_transmit_skb (27 samples, 0.03%)</title><rect x="1181.9" y="805" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.90" 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>process_backlog (27 samples, 0.03%)</title><rect x="813.8" y="357" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.84" 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/reflect/Field:::declaredAnnotations (8 samples, 0.01%)</title><rect x="120.0" y="501" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.03" 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_recvmsg (10 samples, 0.01%)</title><rect x="1183.6" y="917" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.56" 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/nio/ch/Util:::getTemporaryDirectBuffer (10 samples, 0.01%)</title><rect x="60.7" y="1109" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.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>SystemDictionary::resolve_or_fail (8 samples, 0.01%)</title><rect x="120.7" y="421" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.70" 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_rcv_established (10 samples, 0.01%)</title><rect x="528.4" y="165" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.44" 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>JVM_FindClassFromCaller (18 samples, 0.02%)</title><rect x="1172.2" y="613" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.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>process_backlog (9 samples, 0.01%)</title><rect x="1030.2" y="373" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.18" 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_syscall_64 (33 samples, 0.04%)</title><rect x="581.2" y="325" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.21" 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>pipe_read (8 samples, 0.01%)</title><rect x="86.4" y="1045" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.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>__netif_receive_skb (17 samples, 0.02%)</title><rect x="549.5" y="293" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.49" 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 (29 samples, 0.03%)</title><rect x="788.6" y="373" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.62" 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>io/netty/channel/AbstractChannelHandlerContext$WriteAndFlushTask:::write (63 samples, 0.08%)</title><rect x="84.5" y="1173" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>java/util/HashMap:::resize (22 samples, 0.03%)</title><rect x="469.2" y="389" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.24" 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>entry_SYSCALL_64_after_hwframe (82 samples, 0.10%)</title><rect x="92.4" y="1141" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>__softirqentry_text_start (17 samples, 0.02%)</title><rect x="940.0" y="373" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="943.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ovs_vport_receive (9 samples, 0.01%)</title><rect x="1175.9" y="53" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.88" 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>__softirqentry_text_start (22 samples, 0.03%)</title><rect x="825.0" y="389" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="827.97" 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 (8 samples, 0.01%)</title><rect x="85.1" y="693" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>ret_from_intr (9 samples, 0.01%)</title><rect x="969.7" y="421" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="972.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>do_IRQ (24 samples, 0.03%)</title><rect x="1030.0" y="437" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1032.97" 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/plugin/ratelimiter/RateLimiterPlugin:::apply (35 samples, 0.04%)</title><rect x="105.1" y="677" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="108.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>sys_write (21 samples, 0.03%)</title><rect x="1175.0" y="485" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.04" 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 (192 samples, 0.23%)</title><rect x="789.2" y="405" width="2.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="792.19" 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>i40e_napi_poll (12 samples, 0.01%)</title><rect x="1030.0" y="373" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.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>process_backlog (32 samples, 0.04%)</title><rect x="254.2" y="309" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.15" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>JavaCalls::call_virtual (83,090 samples, 99.40%)</title><rect x="16.3" y="1285" width="1173.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1295.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>[libpthread-2.17.so] (56 samples, 0.07%)</title><rect x="1175.6" y="517" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>ret_from_intr (41 samples, 0.05%)</title><rect x="549.2" y="389" width="0.5" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.17" 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 (18 samples, 0.02%)</title><rect x="60.1" y="693" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.14" 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 (18 samples, 0.02%)</title><rect x="1134.5" y="277" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.46" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctriposs/baiji/rpc/server/cat/SyncServiceCatTransaction:::endTransaction (31 samples, 0.04%)</title><rect x="104.4" y="693" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="107.41" 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>find_class_from_class_loader (9 samples, 0.01%)</title><rect x="120.7" y="437" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.70" 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/index/query/BoolQueryBuilder:::doXArrayContent (24 samples, 0.03%)</title><rect x="1168.7" y="517" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1171.70" 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 (13 samples, 0.02%)</title><rect x="290.4" y="357" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.37" 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>org/elasticsearch/index/query/AbstractQueryBuilder:::toXContent (93 samples, 0.11%)</title><rect x="573.2" y="421" width="1.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.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>com/google/gson/Gson:::getAdapter (246 samples, 0.29%)</title><rect x="112.5" y="389" width="3.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.47" 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_write (15 samples, 0.02%)</title><rect x="1181.5" y="965" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>com/ctrip/hotel/htlorgarea/data/elastic/impl/OrgEsRepoImpl$$Lambda$483/345426591:::call (32,288 samples, 38.63%)</title><rect x="126.4" y="517" width="455.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="129.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hotel/htlorgarea/data/elastic/impl/OrgEsRepoImpl$$La..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>net_rx_action (57 samples, 0.07%)</title><rect x="301.7" y="341" width="0.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.71" 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>i40e_lan_xmit_frame (26 samples, 0.03%)</title><rect x="50.7" y="453" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="53.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>sun/reflect/GeneratedMethodAccessor83:::invoke (47 samples, 0.06%)</title><rect x="1009.6" y="469" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1012.64" 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>_raw_spin_unlock_irqrestore (12 samples, 0.01%)</title><rect x="1147.7" y="357" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.72" 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>__vfs_read (10 samples, 0.01%)</title><rect x="94.0" y="1077" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.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>__tcp_transmit_skb (13 samples, 0.02%)</title><rect x="1184.8" y="853" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.78" 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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseNegNumber (151 samples, 0.18%)</title><rect x="645.5" y="453" width="2.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="648.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>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="1097.8" y="405" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.82" 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>__netif_receive_skb (12 samples, 0.01%)</title><rect x="290.9" y="293" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.88" 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>dev_hard_start_xmit (60 samples, 0.07%)</title><rect x="52.8" y="725" width="0.9" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.83" 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/ctriposs/baiji/rpc/server/ContentFormatConfig:::getFormatterFromRequest (9 samples, 0.01%)</title><rect x="1173.1" y="677" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.09" 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/reflect/GeneratedMethodAccessor111:::invoke (12 samples, 0.01%)</title><rect x="1155.5" y="357" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.51" 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>com/fasterxml/jackson/databind/deser/BeanDeserializer:::vanillaDeserialize (24 samples, 0.03%)</title><rect x="585.3" y="485" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="588.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_output (24 samples, 0.03%)</title><rect x="11.4" y="1125" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>JVM_FillInStackTrace (38 samples, 0.05%)</title><rect x="113.7" y="229" width="0.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.69" 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>tcp_sendmsg_locked (42 samples, 0.05%)</title><rect x="1181.7" y="869" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>rebalance_domains (12 samples, 0.01%)</title><rect x="73.2" y="885" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.19" 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>copyout (8 samples, 0.01%)</title><rect x="44.7" y="869" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.67" 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>_new_array_nozero_Java (24 samples, 0.03%)</title><rect x="282.8" y="373" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="285.75" 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_v4_do_rcv (11 samples, 0.01%)</title><rect x="469.8" y="181" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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_hrtimeout_range (40 samples, 0.05%)</title><rect x="1188.3" y="1093" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>__softirqentry_text_start (45 samples, 0.05%)</title><rect x="73.4" y="917" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.36" 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>hrtimer_try_to_cancel (35 samples, 0.04%)</title><rect x="69.8" y="1013" width="0.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="72.84" 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>__audit_syscall_exit (9 samples, 0.01%)</title><rect x="1187.2" y="1045" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>ovs_vport_receive (11 samples, 0.01%)</title><rect x="11.4" y="933" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.41" 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/fasterxml/jackson/databind/deser/std/NumberDeserializers$IntegerDeserializer:::deserialize (1,010 samples, 1.21%)</title><rect x="949.3" y="453" width="14.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.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>java/lang/String:::intern (11 samples, 0.01%)</title><rect x="578.5" y="357" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="581.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>irq_exit (30 samples, 0.04%)</title><rect x="788.6" y="389" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.62" 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>napi_gro_receive (14 samples, 0.02%)</title><rect x="810.6" y="309" width="0.2" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.57" 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/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (74,171 samples, 88.73%)</title><rect x="123.9" y="581" width="1047.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="126.88" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_new_array_nozero_Java (10 samples, 0.01%)</title><rect x="128.3" y="453" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.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>jlong_disjoint_arraycopy (566 samples, 0.68%)</title><rect x="1098.2" y="501" width="8.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1101.18" 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>smp_apic_timer_interrupt (12 samples, 0.01%)</title><rect x="1092.7" y="485" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.75" 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>_raw_spin_unlock_irqrestore (11 samples, 0.01%)</title><rect x="1187.0" y="981" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.04" 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_sendmsg_locked (38 samples, 0.05%)</title><rect x="11.3" y="1237" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory$Adapter:::write (31 samples, 0.04%)</title><rect x="121.6" y="549" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="124.62" 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>irq_exit (28 samples, 0.03%)</title><rect x="469.6" y="357" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.59" 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 (20 samples, 0.02%)</title><rect x="100.8" y="629" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.80" 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_rcv_established (12 samples, 0.01%)</title><rect x="469.0" y="149" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.02" 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>jbyte_disjoint_arraycopy (10 samples, 0.01%)</title><rect x="559.4" y="389" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="562.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>do_IRQ (8 samples, 0.01%)</title><rect x="1148.5" y="309" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1151.50" 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>smp_apic_timer_interrupt (10 samples, 0.01%)</title><rect x="276.5" y="373" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="279.50" 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>ovs_vport_receive (10 samples, 0.01%)</title><rect x="948.7" y="245" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.73" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_futex (49 samples, 0.06%)</title><rect x="575.2" y="405" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.24" 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>sock_rfree (8 samples, 0.01%)</title><rect x="35.5" y="869" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.52" 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>i40e_napi_poll (65 samples, 0.08%)</title><rect x="945.6" y="341" width="0.9" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.57" 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/apache/tomcat/util/net/NioBlockingSelector:::write (71 samples, 0.08%)</title><rect x="1181.4" y="1077" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>futex_wake (9 samples, 0.01%)</title><rect x="1185.8" y="1029" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.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>ovs_vport_receive (11 samples, 0.01%)</title><rect x="813.5" y="245" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.48" 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_softirq (22 samples, 0.03%)</title><rect x="60.1" y="773" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.10" 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>skb_copy_datagram_iter (13 samples, 0.02%)</title><rect x="59.7" y="933" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.69" 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>ip_finish_output2 (24 samples, 0.03%)</title><rect x="1181.9" y="725" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.93" 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>__softirqentry_text_start (10 samples, 0.01%)</title><rect x="475.3" y="325" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="478.28" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (95 samples, 0.11%)</title><rect x="573.2" y="437" width="1.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.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>itable stub (25 samples, 0.03%)</title><rect x="1110.7" y="453" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.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>__softirqentry_text_start (21 samples, 0.03%)</title><rect x="468.2" y="309" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.22" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>net_rx_action (17 samples, 0.02%)</title><rect x="963.4" y="373" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.37" 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>__fget_light (8 samples, 0.01%)</title><rect x="33.9" y="997" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.86" 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>pipe_read (9 samples, 0.01%)</title><rect x="94.0" y="1061" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.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>com/ctrip/es/apache/http/client/protocol/RequestAddCookies:::process (22 samples, 0.03%)</title><rect x="577.3" y="437" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="580.34" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::find (156 samples, 0.19%)</title><rect x="981.0" y="469" width="2.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="984.04" 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>credis/java/client/sync/client/SyncClientImpl:::get (232 samples, 0.28%)</title><rect x="1132.0" y="549" width="3.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1134.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>ovs_execute_actions (17 samples, 0.02%)</title><rect x="253.6" y="165" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.63" 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>__netif_receive_skb_core (17 samples, 0.02%)</title><rect x="469.0" y="261" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.00" 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>com/fasterxml/jackson/databind/deser/std/StringDeserializer:::deserialize (8 samples, 0.01%)</title><rect x="1164.2" y="517" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1167.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>net_rx_action (29 samples, 0.03%)</title><rect x="290.6" y="325" width="0.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.64" 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/io/DataSizeLimitedMessageQueue:::offer (30 samples, 0.04%)</title><rect x="100.7" y="789" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.70" 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>jbyte_disjoint_arraycopy (104 samples, 0.12%)</title><rect x="525.9" y="341" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.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>com/dianping/cat/message/internal/DefaultMessageManager$TransactionHelper:::validate (10 samples, 0.01%)</title><rect x="107.0" y="661" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="109.97" 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>ip_local_deliver_finish (11 samples, 0.01%)</title><rect x="469.8" y="213" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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>exit_to_usermode_loop (21 samples, 0.03%)</title><rect x="1184.7" y="1029" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>sock_sendmsg (39 samples, 0.05%)</title><rect x="11.3" y="1285" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>CodeHeap::find_start (18 samples, 0.02%)</title><rect x="1136.4" y="405" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.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>java/lang/Throwable:::fillInStackTrace (112 samples, 0.13%)</title><rect x="110.3" y="421" width="1.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.33" 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>smp_apic_timer_interrupt (12 samples, 0.01%)</title><rect x="166.1" y="389" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="169.09" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/generics/parser/SignatureParser:::parseTypeArgument (8 samples, 0.01%)</title><rect x="115.6" y="293" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.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>java/util/stream/ReferencePipeline$2$1:::accept (547 samples, 0.65%)</title><rect x="1110.2" y="501" width="7.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.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>inet_accept (9 samples, 0.01%)</title><rect x="89.4" y="1093" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeNumber (132 samples, 0.16%)</title><rect x="310.5" y="421" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="313.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (96 samples, 0.11%)</title><rect x="59.3" y="1077" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.32" 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/GeneratedMethodAccessor76:::invoke (31 samples, 0.04%)</title><rect x="976.8" y="453" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="979.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>i40e_clean_rx_irq (18 samples, 0.02%)</title><rect x="948.6" y="341" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.64" 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>__softirqentry_text_start (10 samples, 0.01%)</title><rect x="276.5" y="341" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="279.50" 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>ret_from_intr (31 samples, 0.04%)</title><rect x="290.6" y="389" width="0.5" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.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>com/ctrip/es/apache/http/impl/nio/reactor/AbstractIOReactor:::processEvent (3,236 samples, 3.87%)</title><rect x="17.2" y="1157" width="45.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="20.21" y="1167.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>ip_rcv (29 samples, 0.03%)</title><rect x="254.2" y="261" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.15" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/apache/http/impl/nio/client/DefaultClientExchangeHandlerImpl:::produceContent (22 samples, 0.03%)</title><rect x="18.7" y="1141" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="21.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>ip_local_deliver_finish (16 samples, 0.02%)</title><rect x="973.7" y="277" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.70" 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>__check_object_size (14 samples, 0.02%)</title><rect x="36.4" y="885" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="39.36" 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/io/DefaultTreeSender:::run (420 samples, 0.50%)</title><rect x="78.4" y="1205" width="5.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.35" 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/Class:::forName0 (8 samples, 0.01%)</title><rect x="579.7" y="325" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.67" 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/reflect/generics/parser/SignatureParser:::parseClassTypeSignature (15 samples, 0.02%)</title><rect x="118.5" y="373" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.47" 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/stream/AbstractPipeline:::wrapAndCopyInto (789 samples, 0.94%)</title><rect x="1118.2" y="501" width="11.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.19" 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/String:::format (25 samples, 0.03%)</title><rect x="1136.7" y="549" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.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>JavaThread::thread_main_inner (83,093 samples, 99.41%)</title><rect x="16.3" y="1333" width="1173.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.28" y="1343.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>__softirqentry_text_start (12 samples, 0.01%)</title><rect x="44.3" y="805" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.29" 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/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (76,680 samples, 91.74%)</title><rect x="97.2" y="965" width="1082.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.16" y="975.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>entry_SYSCALL_64_after_hwframe (58 samples, 0.07%)</title><rect x="1188.1" y="1157" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::createBoundField (697 samples, 0.83%)</title><rect x="109.5" y="501" width="9.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.52" 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_read (75 samples, 0.09%)</title><rect x="59.5" y="1013" width="1.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.52" 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/String:::toLowerCase (37 samples, 0.04%)</title><rect x="1162.9" y="501" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.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>i40e_clean_rx_irq (30 samples, 0.04%)</title><rect x="813.3" y="341" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>irq_exit (113 samples, 0.14%)</title><rect x="945.5" y="389" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.45" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ret_from_intr (11 samples, 0.01%)</title><rect x="563.0" y="421" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.97" 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_sun_nio_ch_ServerSocketChannelImpl_accept0 (24 samples, 0.03%)</title><rect x="89.1" y="1173" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>napi_gro_receive (17 samples, 0.02%)</title><rect x="301.9" y="293" width="0.2" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.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>tcp_write_xmit (92 samples, 0.11%)</title><rect x="61.4" y="901" width="1.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>__do_page_fault (9 samples, 0.01%)</title><rect x="974.7" y="405" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="977.69" 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 (39 samples, 0.05%)</title><rect x="72.8" y="917" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.81" 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>[unknown] (49 samples, 0.06%)</title><rect x="10.6" y="1365" width="0.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.58" 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>__libc_close (44 samples, 0.05%)</title><rect x="76.6" y="1125" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.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>sun/reflect/GeneratedMethodAccessor77:::invoke (154 samples, 0.18%)</title><rect x="1000.2" y="469" width="2.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1003.16" 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>syscall_slow_exit_work (9 samples, 0.01%)</title><rect x="1187.2" y="1061" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>java (83,545 samples, 99.95%)</title><rect x="10.3" y="1381" width="1179.4" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.34" y="1391.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>skb_release_data (23 samples, 0.03%)</title><rect x="35.1" y="869" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.10" 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>entry_SYSCALL_64_after_hwframe (603 samples, 0.72%)</title><rect x="66.5" y="1109" width="8.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="69.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/lang/Class:::getSimpleBinaryName (8 samples, 0.01%)</title><rect x="112.3" y="357" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.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>napi_gro_receive (29 samples, 0.03%)</title><rect x="945.9" y="309" width="0.4" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.89" 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>napi_complete_done (8 samples, 0.01%)</title><rect x="1106.9" y="405" width="0.1" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>com/dianping/cat/aggregator/DefaultTransactionAggregator$TransactionData:::add (15 samples, 0.02%)</title><rect x="100.2" y="741" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.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>tcp_v4_do_rcv (11 samples, 0.01%)</title><rect x="302.3" y="197" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.29" 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>com/ctrip/es/apache/http/nio/entity/ContentInputStream:::read (108 samples, 0.13%)</title><rect x="525.9" y="357" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.89" 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_local_deliver (15 samples, 0.02%)</title><rect x="549.5" y="229" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.49" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/util/regex/Pattern$BmpCharProperty:::match (16 samples, 0.02%)</title><rect x="1177.2" y="645" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1180.15" 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/jackson/core/json/UTF8StreamJsonParser:::_nextTokenNotInObject (14 samples, 0.02%)</title><rect x="314.3" y="421" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="317.35" 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/stream/AbstractPipeline:::evaluate (557 samples, 0.67%)</title><rect x="1110.2" y="533" width="7.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.16" 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/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (75,346 samples, 90.14%)</title><rect x="107.5" y="629" width="1063.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.46" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/common/xcontent/XContentHelper:::toXContent (115 samples, 0.14%)</title><rect x="573.0" y="485" width="1.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="575.95" 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/commons/beanutils/PropertyUtilsBean:::getSimpleProperty (8 samples, 0.01%)</title><rect x="123.6" y="549" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="126.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>G1ParScanThreadState::copy_to_survivor_space (54 samples, 0.06%)</title><rect x="13.5" y="1269" width="0.7" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="16.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/ThreadPoolExecutor:::runWorker (77,440 samples, 92.64%)</title><rect x="94.4" y="1205" width="1093.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.38" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/util/concurrent/ThreadPoolExecutor:::runWorker</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="11.4" y="917" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.41" 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>vfs_write (44 samples, 0.05%)</title><rect x="1157.7" y="325" width="0.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.67" 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>ret_from_intr (11 samples, 0.01%)</title><rect x="963.2" y="421" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.16" 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>process_backlog (13 samples, 0.02%)</title><rect x="72.9" y="885" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.88" 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>napi_gro_receive (19 samples, 0.02%)</title><rect x="73.5" y="853" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.54" 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>tcp_v4_rcv (17 samples, 0.02%)</title><rect x="813.9" y="245" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.88" 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>com/ctrip/framework/clogging/agent/util/CatTagHelper:::addCatTag (19 samples, 0.02%)</title><rect x="1138.0" y="533" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1140.99" 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>irq_exit (12 samples, 0.01%)</title><rect x="525.5" y="341" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.46" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/apache/coyote/http11/InternalNioInputBuffer:::parseRequestLine (60 samples, 0.07%)</title><rect x="1183.0" y="1125" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.97" 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_local_deliver (14 samples, 0.02%)</title><rect x="469.0" y="213" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.00" 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>__netif_receive_skb_core (41 samples, 0.05%)</title><rect x="61.7" y="677" width="0.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.68" 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>__softirqentry_text_start (10 samples, 0.01%)</title><rect x="548.7" y="341" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.71" 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>__netif_receive_skb_core (12 samples, 0.01%)</title><rect x="290.9" y="277" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.88" 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>sun/nio/ch/SocketChannelImpl:::write (44 samples, 0.05%)</title><rect x="84.7" y="1141" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.71" 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 (15 samples, 0.02%)</title><rect x="792.8" y="117" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.75" 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>com/google/gson/Gson:::toJson (980 samples, 1.17%)</title><rect x="108.6" y="565" width="13.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="111.58" 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>net_rx_action (15 samples, 0.02%)</title><rect x="11.4" y="1013" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>java/util/HashMap:::newNode (1,151 samples, 1.38%)</title><rect x="434.3" y="373" width="16.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="437.27" 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>irq_exit (39 samples, 0.05%)</title><rect x="72.8" y="933" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.81" 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>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="1187.5" y="1125" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>irq_exit (19 samples, 0.02%)</title><rect x="963.3" y="405" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.34" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/client/RestClient:::performRequestAsyncNoCatch (732 samples, 0.88%)</title><rect x="1148.9" y="533" width="10.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1151.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>__tcp_transmit_skb (20 samples, 0.02%)</title><rect x="85.0" y="885" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.00" 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>do_IRQ (11 samples, 0.01%)</title><rect x="563.0" y="405" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.97" 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>__libc_recv (59 samples, 0.07%)</title><rect x="1188.1" y="1173" width="0.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>netif_receive_skb_internal (8 samples, 0.01%)</title><rect x="1106.9" y="357" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>org/apache/commons/beanutils/PropertyUtilsBean:::getNestedProperty (16 samples, 0.02%)</title><rect x="123.4" y="565" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="126.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>java/util/HashMap:::newNode (12 samples, 0.01%)</title><rect x="76.0" y="1125" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="78.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_IRQ (68 samples, 0.08%)</title><rect x="948.4" y="421" width="0.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.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>jshort_disjoint_arraycopy (13 samples, 0.02%)</title><rect x="809.8" y="389" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="812.80" 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/io/ObjectInputStream$BlockDataInputStream:::readUTFBody (10 samples, 0.01%)</title><rect x="1154.8" y="341" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.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>ip_rcv (25 samples, 0.03%)</title><rect x="562.6" y="277" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.58" 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/lang/String:::hashCode (84 samples, 0.10%)</title><rect x="432.5" y="373" width="1.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="435.52" 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_sync_key (14 samples, 0.02%)</title><rect x="1175.1" y="421" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (76,668 samples, 91.72%)</title><rect x="97.3" y="933" width="1082.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.33" y="943.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>org/apache/commons/pool2/impl/GenericObjectPool:::borrowObject (8 samples, 0.01%)</title><rect x="1133.6" y="517" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1136.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>page_fault (11 samples, 0.01%)</title><rect x="972.8" y="453" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="975.81" 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>JVM_FillInStackTrace (84 samples, 0.10%)</title><rect x="1107.6" y="501" width="1.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>dev_queue_xmit (11 samples, 0.01%)</title><rect x="946.0" y="133" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.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>sun/nio/ch/FileDispatcherImpl:::write0 (46 samples, 0.06%)</title><rect x="1181.7" y="1045" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.73" 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>irq_exit (12 samples, 0.01%)</title><rect x="44.3" y="821" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.29" 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 (43 samples, 0.05%)</title><rect x="76.6" y="1093" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.59" 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 (42 samples, 0.05%)</title><rect x="87.4" y="1093" width="0.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.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>__irqentry_text_start (17 samples, 0.02%)</title><rect x="940.0" y="421" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="943.02" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb (8 samples, 0.01%)</title><rect x="1184.8" y="661" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.82" 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>ip_rcv (9 samples, 0.01%)</title><rect x="1030.2" y="325" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.18" 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/ctrip/es/apache/http/client/protocol/RequestAuthCache:::process (175 samples, 0.21%)</title><rect x="577.7" y="437" width="2.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="580.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/util/regex/Pattern$GroupHead:::match (8 samples, 0.01%)</title><rect x="1136.9" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.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>sun/misc/Unsafe:::park (97 samples, 0.12%)</title><rect x="574.7" y="485" width="1.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="577.74" 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_page_fault (13 samples, 0.02%)</title><rect x="1105.8" y="453" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1108.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>do_softirq (9 samples, 0.01%)</title><rect x="85.0" y="773" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.05" 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/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeNumber (2,579 samples, 3.09%)</title><rect x="254.7" y="405" width="36.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.66" y="415.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/apache/lucene/util/BytesRef:::utf8ToString (5,365 samples, 6.42%)</title><rect x="1031.9" y="517" width="75.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.88" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctri..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_queue_xmit (429 samples, 0.51%)</title><rect x="47.9" y="837" width="6.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="50.95" 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>ip_local_deliver_finish (12 samples, 0.01%)</title><rect x="788.7" y="245" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.69" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_read (20 samples, 0.02%)</title><rect x="1189.0" y="1125" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>com/ctrip/soa/caravan/hystrix/DefaultExecutionContext:::markSuccess (13 samples, 0.02%)</title><rect x="104.0" y="693" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="107.05" 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>ovs_vport_receive (11 samples, 0.01%)</title><rect x="1182.0" y="565" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.97" 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>net_rx_action (69 samples, 0.08%)</title><rect x="973.0" y="389" width="1.0" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.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>JVM_FindClassFromCaller (8 samples, 0.01%)</title><rect x="579.7" y="293" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.67" 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>ovs_dp_process_packet (10 samples, 0.01%)</title><rect x="973.4" y="245" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.41" 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_syscall_64 (55 samples, 0.07%)</title><rect x="1175.6" y="485" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>java/net/URI$Parser:::parse (19 samples, 0.02%)</title><rect x="1178.3" y="741" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1181.25" 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/tomcat/util/buf/StringCache:::toString (11 samples, 0.01%)</title><rect x="1178.9" y="789" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1181.93" 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 (17 samples, 0.02%)</title><rect x="469.0" y="277" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.00" 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>ExceptionBlob (9 samples, 0.01%)</title><rect x="109.6" y="469" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.64" 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 (8 samples, 0.01%)</title><rect x="1184.8" y="709" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>com/ctrip/es/apache/http/nio/pool/AbstractNIOConnPool:::processPendingRequest (14 samples, 0.02%)</title><rect x="1158.5" y="485" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1161.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>[libpthread-2.17.so] (17 samples, 0.02%)</title><rect x="1181.4" y="1045" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>netif_rx_internal (13 samples, 0.02%)</title><rect x="53.5" y="677" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.48" 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 (35 samples, 0.04%)</title><rect x="85.8" y="1109" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.81" 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_deliver (32 samples, 0.04%)</title><rect x="946.5" y="261" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.54" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (35 samples, 0.04%)</title><rect x="85.8" y="1125" width="0.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.81" 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/ObjectStreamClass:::lookup (12 samples, 0.01%)</title><rect x="1152.5" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1155.49" 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>schedule (50 samples, 0.06%)</title><rect x="1147.9" y="373" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.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>java/lang/String:::intern (9 samples, 0.01%)</title><rect x="82.6" y="1109" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="85.63" 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_unlock_irqrestore (15 samples, 0.02%)</title><rect x="1186.3" y="981" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.29" 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_flow_tbl_lookup_stats (8 samples, 0.01%)</title><rect x="253.9" y="165" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.87" 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>__netif_receive_skb (17 samples, 0.02%)</title><rect x="1182.0" y="613" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>ret_from_intr (13 samples, 0.02%)</title><rect x="1117.6" y="405" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1120.59" 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_softirq (16 samples, 0.02%)</title><rect x="11.4" y="1061" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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/ctriposs/baiji/JsonSerializer:::deserialize (87 samples, 0.10%)</title><rect x="1171.6" y="677" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1174.61" 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>__wake_up_sync_key (12 samples, 0.01%)</title><rect x="1181.5" y="933" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.50" 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/jackson/core/json/UTF8StreamJsonParser:::_parsePosNumber (641 samples, 0.77%)</title><rect x="549.8" y="405" width="9.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.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>ip_local_out (24 samples, 0.03%)</title><rect x="11.4" y="1141" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>netif_receive_skb_internal (12 samples, 0.01%)</title><rect x="948.7" y="309" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.73" 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 (24 samples, 0.03%)</title><rect x="79.1" y="997" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.13" 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>net_rx_action (8 samples, 0.01%)</title><rect x="969.7" y="357" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="972.69" 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_local_deliver (11 samples, 0.01%)</title><rect x="469.8" y="229" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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>ret_from_intr (68 samples, 0.08%)</title><rect x="948.4" y="437" width="0.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.39" 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>jshort_disjoint_arraycopy (224 samples, 0.27%)</title><rect x="30.0" y="1077" width="3.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="33.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>ip_rcv_finish (8 samples, 0.01%)</title><rect x="810.8" y="277" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.79" 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>sock_recvmsg (75 samples, 0.09%)</title><rect x="59.5" y="981" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.52" 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:::_skipWS2 (10 samples, 0.01%)</title><rect x="559.4" y="405" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="562.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>sun/nio/ch/EPollSelectorImpl:::implDereg (14 samples, 0.02%)</title><rect x="93.5" y="1173" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="96.53" 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_output (17 samples, 0.02%)</title><rect x="85.0" y="837" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.03" 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>rw_verify_area (10 samples, 0.01%)</title><rect x="54.5" y="981" width="0.1" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.50" 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_output (16 samples, 0.02%)</title><rect x="61.8" y="581" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.78" 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_broadcast@@GLIBC_2.3.2 (8 samples, 0.01%)</title><rect x="1187.5" y="1141" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.47" 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>ip_output (67 samples, 0.08%)</title><rect x="61.5" y="837" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.51" 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/framework/clogging/domain/thrift/AgentTByteBufferTransport:::writeUTF (19 samples, 0.02%)</title><rect x="88.3" y="1157" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="91.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>net_rx_action (12 samples, 0.01%)</title><rect x="27.3" y="997" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="30.32" 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>Unsafe_Park (142 samples, 0.17%)</title><rect x="1146.9" y="501" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.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_hrtimeout_range (25 samples, 0.03%)</title><rect x="1134.4" y="325" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.37" 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>Unsafe_Park (61 samples, 0.07%)</title><rect x="78.7" y="1125" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>JVM_FindClassFromCaller (14 samples, 0.02%)</title><rect x="578.7" y="357" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="581.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_syscall_64 (37 samples, 0.04%)</title><rect x="87.5" y="1061" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.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>__netif_receive_skb_core (26 samples, 0.03%)</title><rect x="528.4" y="277" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.37" 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>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::buildLogEvent (17 samples, 0.02%)</title><rect x="1109.4" y="501" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.42" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ovs_vport_receive (10 samples, 0.01%)</title><rect x="302.0" y="213" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.99" 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>audit_filter_rules.isra.9 (12 samples, 0.01%)</title><rect x="74.6" y="1029" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="77.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>__netif_receive_skb_core (9 samples, 0.01%)</title><rect x="468.4" y="245" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.37" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ret_from_intr (15 samples, 0.02%)</title><rect x="44.5" y="853" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.46" 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>i40e_clean_rx_irq (47 samples, 0.06%)</title><rect x="792.4" y="325" width="0.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.44" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_local_deliver_finish (15 samples, 0.02%)</title><rect x="549.5" y="213" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.49" 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>java/util/concurrent/LinkedBlockingQueue:::offer (40 samples, 0.05%)</title><rect x="90.6" y="1157" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.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>dev_hard_start_xmit (9 samples, 0.01%)</title><rect x="253.7" y="37" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.71" 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>java/io/ObjectStreamClass:::getReflector (13 samples, 0.02%)</title><rect x="1152.3" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1155.31" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__schedule (37 samples, 0.04%)</title><rect x="1186.5" y="981" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.50" 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>__netif_receive_skb_core (13 samples, 0.02%)</title><rect x="72.9" y="853" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.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>sys_epoll_ctl (22 samples, 0.03%)</title><rect x="65.2" y="1077" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="68.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>schedule (18 samples, 0.02%)</title><rect x="1134.5" y="293" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.46" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ret_from_intr (92 samples, 0.11%)</title><rect x="561.6" y="405" width="1.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="564.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>sys_futex (11 samples, 0.01%)</title><rect x="1185.7" y="1061" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.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>ip_output (10 samples, 0.01%)</title><rect x="1184.8" y="805" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.80" 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>__netif_receive_skb_core (15 samples, 0.02%)</title><rect x="1182.0" y="597" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.97" 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>finish_task_switch (37 samples, 0.04%)</title><rect x="1186.5" y="965" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.50" 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>vfs_read (12 samples, 0.01%)</title><rect x="94.0" y="1093" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.00" 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 (67 samples, 0.08%)</title><rect x="87.1" y="1125" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.11" 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>Interpreter (5,082 samples, 6.08%)</title><rect x="16.3" y="1221" width="71.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpre..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__wake_up_common_lock (10 samples, 0.01%)</title><rect x="793.8" y="133" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.78" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_syscall_64 (8 samples, 0.01%)</title><rect x="1187.5" y="1109" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.47" 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/core/service/impl/HotelStaticInfoServiceImpl:::queryHotelStaticInfo (2,265 samples, 2.71%)</title><rect x="1137.1" y="565" width="32.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1140.13" y="575.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>futex_wait_queue_me (10 samples, 0.01%)</title><rect x="78.1" y="1045" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.11" 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/client/AbstractClientExchangeHandler:::connectionAllocated (43 samples, 0.05%)</title><rect x="581.1" y="405" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.10" 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/framework/clogging/agent/metrics/aggregator/MetricsAggregator:::add (15 samples, 0.02%)</title><rect x="103.8" y="693" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="106.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>net_rx_action (9 samples, 0.01%)</title><rect x="378.2" y="341" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" 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>sun/reflect/GeneratedMethodAccessor78:::invoke (32 samples, 0.04%)</title><rect x="977.7" y="453" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="980.67" 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>itable stub (11 samples, 0.01%)</title><rect x="122.2" y="549" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="125.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>__schedule (31 samples, 0.04%)</title><rect x="575.5" y="325" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__vfs_write (43 samples, 0.05%)</title><rect x="1181.7" y="949" width="0.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>wake_up_q (17 samples, 0.02%)</title><rect x="90.8" y="1029" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.79" 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>__softirqentry_text_start (12 samples, 0.01%)</title><rect x="1092.7" y="453" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.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>tcp_v4_rcv (24 samples, 0.03%)</title><rect x="1107.1" y="309" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.15" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::doRun (77,244 samples, 92.41%)</title><rect x="94.5" y="1173" width="1090.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.55" y="1183.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>net_rx_action (9 samples, 0.01%)</title><rect x="1000.0" y="389" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1003.03" 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/ReflectiveTypeAdapterFactory:::getBoundFields (508 samples, 0.61%)</title><rect x="111.9" y="453" width="7.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="114.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>ovs_vport_receive (15 samples, 0.02%)</title><rect x="562.2" y="213" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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/apache/catalina/core/ApplicationFilterFactory:::createFilterChain (13 samples, 0.02%)</title><rect x="1180.0" y="1045" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1182.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>redis/clients/jedis/Protocol:::process (73 samples, 0.09%)</title><rect x="1134.1" y="485" width="1.1" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.13" 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>vfs_read (17 samples, 0.02%)</title><rect x="1189.0" y="1109" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.03" 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_queue_xmit (25 samples, 0.03%)</title><rect x="11.3" y="1157" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>org/apache/coyote/http11/InternalNioInputBuffer:::parseHeader (12 samples, 0.01%)</title><rect x="1182.8" y="1125" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.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>futex_wait_queue_me (52 samples, 0.06%)</title><rect x="1186.3" y="1013" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.29" 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 (38 samples, 0.05%)</title><rect x="113.7" y="213" width="0.5" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.69" 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>__vfs_write (43 samples, 0.05%)</title><rect x="1175.6" y="437" width="0.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>do_IRQ (41 samples, 0.05%)</title><rect x="549.2" y="373" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.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>do_group_exit (8 samples, 0.01%)</title><rect x="1189.9" y="1317" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>_raw_spin_lock (21 samples, 0.03%)</title><rect x="49.9" y="485" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.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>java/io/ByteArrayOutputStream:::write (89 samples, 0.11%)</title><rect x="251.7" y="389" width="1.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.65" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/nio/ch/Util:::getTemporaryDirectBuffer (25 samples, 0.03%)</title><rect x="55.4" y="1077" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="58.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>__softirqentry_text_start (12 samples, 0.01%)</title><rect x="525.5" y="325" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.46" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_rcv_finish (25 samples, 0.03%)</title><rect x="1107.1" y="357" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.15" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__bpf_prog_run32 (16 samples, 0.02%)</title><rect x="52.3" y="613" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.27" 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/message/io/DefaultTreeSender:::sendInternal (312 samples, 0.37%)</title><rect x="79.6" y="1189" width="4.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.62" 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 (17 samples, 0.02%)</title><rect x="301.3" y="341" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.26" 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>SystemDictionary::resolve_or_fail (10 samples, 0.01%)</title><rect x="1155.2" y="293" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.23" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_softirq_own_stack (16 samples, 0.02%)</title><rect x="11.4" y="1045" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>__netif_receive_skb_core (13 samples, 0.02%)</title><rect x="973.4" y="293" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.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>java/io/IOException:::<init> (23 samples, 0.03%)</title><rect x="1183.1" y="1093" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.11" 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/IOUtil:::read (18 samples, 0.02%)</title><rect x="1183.5" y="1077" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.53" 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/databind/deser/BeanDeserializer:::vanillaDeserialize (26,341 samples, 31.51%)</title><rect x="609.0" y="469" width="371.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="612.05" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/fasterxml/jackson/databind/deser/BeanDeseriali..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/GeneratedMethodAccessor75:::invoke (33 samples, 0.04%)</title><rect x="976.3" y="453" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="979.33" 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 (50 samples, 0.06%)</title><rect x="92.7" y="1061" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>basic_classify (23 samples, 0.03%)</title><rect x="51.9" y="613" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.86" 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>netdev_frame_hook (8 samples, 0.01%)</title><rect x="528.2" y="213" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.17" 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>java/util/stream/AbstractPipeline:::wrapAndCopyInto (489 samples, 0.59%)</title><rect x="1111.0" y="453" width="6.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1114.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>__tcp_send_ack.part.29 (48 samples, 0.06%)</title><rect x="59.9" y="901" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.87" 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/nio/ch/EPollSelectorImpl:::doSelect (75 samples, 0.09%)</title><rect x="85.5" y="1173" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.54" 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/ObjectInputStream:::readObject0 (275 samples, 0.33%)</title><rect x="1152.0" y="453" width="3.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1155.01" 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_deliver_finish (43 samples, 0.05%)</title><rect x="793.4" y="245" width="0.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.42" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/framework/clogging/domain/thrift/LogEvent$LogEventStandardScheme:::write (33 samples, 0.04%)</title><rect x="88.2" y="1173" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="91.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>java/io/ObjectStreamClass:::initNonProxy (19 samples, 0.02%)</title><rect x="578.0" y="389" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="580.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>sys_futex (76 samples, 0.09%)</title><rect x="1147.6" y="437" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.62" 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 (12 samples, 0.01%)</title><rect x="1147.7" y="373" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.72" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_output (405 samples, 0.48%)</title><rect x="48.3" y="805" width="5.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.27" 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>__dev_queue_xmit (8 samples, 0.01%)</title><rect x="11.6" y="1061" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.58" 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>ret_from_intr (13 samples, 0.02%)</title><rect x="290.4" y="373" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.37" 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>i40e_clean_rx_irq (9 samples, 0.01%)</title><rect x="48.8" y="661" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.85" 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>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (17 samples, 0.02%)</title><rect x="120.9" y="469" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>java/lang/Class:::getConstructor0 (40 samples, 0.05%)</title><rect x="113.7" y="293" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.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>run_rebalance_domains (12 samples, 0.01%)</title><rect x="73.2" y="901" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.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>com/ctriposs/baiji/rpc/server/stats/StatsRecorder:::lambda$static$0 (10 samples, 0.01%)</title><rect x="1171.4" y="693" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1174.38" 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>JVM_InternString (15 samples, 0.02%)</title><rect x="1153.0" y="373" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.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>org/apache/catalina/connector/CoyoteAdapter:::postParseRequest (34 samples, 0.04%)</title><rect x="95.9" y="1109" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="98.94" 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/OrgEsRepoImpl:::query (69,611 samples, 83.28%)</title><rect x="124.9" y="549" width="982.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="127.94" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hotel/htlorgarea/data/elastic/impl/OrgEsRepoImpl:::query</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="102.3" y="693" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="105.31" 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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (10 samples, 0.01%)</title><rect x="1162.2" y="501" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.23" 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 (19 samples, 0.02%)</title><rect x="701.3" y="405" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.27" 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>credis/java/client/monitor/message/impl/DashboardMetric:::doWriteData (16 samples, 0.02%)</title><rect x="1132.8" y="485" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1135.84" 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/ObjectStreamClass:::getClassDataLayout0 (13 samples, 0.02%)</title><rect x="1154.4" y="421" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>G1ParScanThreadState::trim_queue (126 samples, 0.15%)</title><rect x="12.8" y="1285" width="1.8" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.84" 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$$Lambda$372/2044307999:::apply (17 samples, 0.02%)</title><rect x="127.8" y="453" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.81" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__tcp_push_pending_frames (33 samples, 0.04%)</title><rect x="11.3" y="1205" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>ret_from_intr (12 samples, 0.01%)</title><rect x="27.3" y="1061" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="30.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>com/ctrip/es/apache/http/message/TokenParser:::copyContent (8 samples, 0.01%)</title><rect x="1156.5" y="421" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1159.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>java/lang/Class:::getSimpleBinaryName (12 samples, 0.01%)</title><rect x="115.1" y="293" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>i40e_napi_poll (40 samples, 0.05%)</title><rect x="973.1" y="373" width="0.5" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.07" 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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::excludeField (13 samples, 0.02%)</title><rect x="113.4" y="245" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.36" 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>com/ctrip/es/apache/http/message/HeaderGroup:::getHeaders (13 samples, 0.02%)</title><rect x="21.1" y="1141" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="24.08" 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_unlock_irqrestore (21 samples, 0.03%)</title><rect x="67.0" y="1045" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="70.03" 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 (71 samples, 0.08%)</title><rect x="1134.1" y="469" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_v4_rcv (14 samples, 0.02%)</title><rect x="469.0" y="181" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.00" 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>com/ctrip/es/apache/http/impl/nio/DefaultNHttpClientConnection:::submitRequest (39 samples, 0.05%)</title><rect x="21.4" y="1125" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="24.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>do_syscall_64 (26 samples, 0.03%)</title><rect x="90.7" y="1077" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.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>JVM_FindClassFromCaller (12 samples, 0.01%)</title><rect x="120.9" y="421" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>com/ctrip/es/apache/http/nio/protocol/HttpAsyncRequestExecutor:::requestReady (132 samples, 0.16%)</title><rect x="21.3" y="1141" width="1.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="24.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>java/lang/Throwable:::fillInStackTrace (84 samples, 0.10%)</title><rect x="1107.6" y="533" width="1.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.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>org/apache/tomcat/util/net/NioEndpoint:::processSocket (48 samples, 0.06%)</title><rect x="90.4" y="1189" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.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>do_IRQ (159 samples, 0.19%)</title><rect x="791.9" y="405" width="2.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="794.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>G1RootProcessor::evacuate_roots (31 samples, 0.04%)</title><rect x="14.9" y="1301" width="0.5" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="17.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>ep_send_events_proc (74 samples, 0.09%)</title><rect x="67.7" y="1029" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="70.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseNumber2 (11 samples, 0.01%)</title><rect x="549.0" y="389" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.01" 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>__softirqentry_text_start (93 samples, 0.11%)</title><rect x="812.9" y="389" width="1.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="815.91" 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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseName (41 samples, 0.05%)</title><rect x="1161.1" y="501" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.07" 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 (8 samples, 0.01%)</title><rect x="1184.8" y="677" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.82" 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/client/utils/URLEncodedUtils:::parse (42 samples, 0.05%)</title><rect x="1156.1" y="453" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1159.13" 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>irq_exit (68 samples, 0.08%)</title><rect x="948.4" y="405" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.39" 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 (9 samples, 0.01%)</title><rect x="82.4" y="1061" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="85.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>sun/nio/ch/SelectorImpl:::select (79 samples, 0.09%)</title><rect x="85.5" y="1189" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>java/text/SimpleDateFormat:::<init> (30 samples, 0.04%)</title><rect x="122.7" y="565" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="125.68" 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/index/query/IdsQueryBuilder:::doXContent (11 samples, 0.01%)</title><rect x="1168.9" y="485" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1171.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>jbyte_disjoint_arraycopy (509 samples, 0.61%)</title><rect x="283.1" y="373" width="7.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="286.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_futex (36 samples, 0.04%)</title><rect x="79.1" y="1061" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.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>ip_rcv (53 samples, 0.06%)</title><rect x="793.3" y="293" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.33" 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_futex (54 samples, 0.06%)</title><rect x="57.7" y="1013" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.67" 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>JVM_FillInStackTrace (68 samples, 0.08%)</title><rect x="116.1" y="325" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.06" 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>_copy_to_iter (11 samples, 0.01%)</title><rect x="45.0" y="869" width="0.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.97" 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>CodeHeap::find_start (11 samples, 0.01%)</title><rect x="1108.6" y="421" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1111.56" 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/nio/ch/EPollSelectorImpl:::updateSelectedKeys (88 samples, 0.11%)</title><rect x="75.3" y="1141" width="1.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="78.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>Interpreter (5,518 samples, 6.60%)</title><rect x="16.3" y="1237" width="77.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1247.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>sys_write (119 samples, 0.14%)</title><rect x="61.1" y="1061" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>dev_queue_xmit (14 samples, 0.02%)</title><rect x="253.7" y="101" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.67" 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>netdev_frame_hook (18 samples, 0.02%)</title><rect x="946.0" y="245" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.00" 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>org/elasticsearch/common/Strings:::toString (56 samples, 0.07%)</title><rect x="1168.2" y="549" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1171.25" 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:::wrapAndCopyInto (600 samples, 0.72%)</title><rect x="1119.0" y="421" width="8.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.99" 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/servlet/CatFilter$CatHandler$1:::handle (76,659 samples, 91.71%)</title><rect x="97.4" y="869" width="1082.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.43" y="879.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>ovs_dp_process_packet (11 samples, 0.01%)</title><rect x="813.5" y="229" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.48" 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/fasterxml/jackson/core/util/TextBuffer:::contentsAsInt (400 samples, 0.48%)</title><rect x="957.7" y="437" width="5.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="960.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>find_class_from_class_loader (9 samples, 0.01%)</title><rect x="1172.4" y="597" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.35" 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>os::javaTimeMillis (10 samples, 0.01%)</title><rect x="58.6" y="1141" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="61.58" 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 (28 samples, 0.03%)</title><rect x="469.6" y="389" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.59" 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>credis/java/client/model/RedisGroupModel:::getRedisGroupModel (14 samples, 0.02%)</title><rect x="1131.7" y="533" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1134.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>redis/clients/jedis/Connection:::getBinaryBulkReply (88 samples, 0.11%)</title><rect x="1133.9" y="501" width="1.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1136.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>inet_sendmsg (43 samples, 0.05%)</title><rect x="1181.7" y="901" width="0.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.73" 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>irq_exit (74 samples, 0.09%)</title><rect x="973.0" y="421" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="975.97" 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>irq_exit (10 samples, 0.01%)</title><rect x="548.7" y="357" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.71" 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>com/dianping/cat/message/internal/DefaultTransaction:::complete (226 samples, 0.27%)</title><rect x="98.0" y="821" width="3.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.99" 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_execute_actions (13 samples, 0.02%)</title><rect x="946.0" y="197" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.00" 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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::createBoundField (127 samples, 0.15%)</title><rect x="112.9" y="341" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.90" 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/common/xcontent/ObjectParser:::parseValue (17 samples, 0.02%)</title><rect x="127.8" y="469" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.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>__irqentry_text_start (10 samples, 0.01%)</title><rect x="276.5" y="389" width="0.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="279.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>tcp_push (31 samples, 0.04%)</title><rect x="1181.9" y="853" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.90" 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>tcp_recvmsg (1,412 samples, 1.69%)</title><rect x="34.5" y="917" width="20.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.52" 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:::unpark (32 samples, 0.04%)</title><rect x="90.7" y="1141" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.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>vframeStreamCommon::skip_reflection_related_frames (12 samples, 0.01%)</title><rect x="1154.1" y="389" width="0.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.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>_raw_spin_unlock_irqrestore (20 samples, 0.02%)</title><rect x="100.8" y="613" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.80" 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>tcp_recvmsg (72 samples, 0.09%)</title><rect x="59.6" y="949" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.55" 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_syscall_64 (38 samples, 0.05%)</title><rect x="84.8" y="1077" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.76" 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_IRQ (122 samples, 0.15%)</title><rect x="252.9" y="373" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="255.91" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_rcv (13 samples, 0.02%)</title><rect x="788.7" y="293" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.67" 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>BacktraceBuilder::push (12 samples, 0.01%)</title><rect x="113.9" y="181" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.90" 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>sun/misc/Unsafe:::unpark (70 samples, 0.08%)</title><rect x="57.6" y="1109" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>sock_def_readable (10 samples, 0.01%)</title><rect x="793.8" y="165" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.78" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>hrtimer_start_range_ns (15 samples, 0.02%)</title><rect x="1186.3" y="997" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.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>do_page_fault (9 samples, 0.01%)</title><rect x="974.7" y="421" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="977.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>__netif_receive_skb_core (32 samples, 0.04%)</title><rect x="254.2" y="277" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.15" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>schedule_hrtimeout_range (23 samples, 0.03%)</title><rect x="85.9" y="1061" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>irq_exit (22 samples, 0.03%)</title><rect x="450.2" y="325" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.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>__softirqentry_text_start (12 samples, 0.01%)</title><rect x="27.3" y="1013" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="30.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>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::urlEncode (25 samples, 0.03%)</title><rect x="1149.7" y="485" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1152.65" 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/framework/clogging/agent/log/impl/CommonLogger:::doWriteLog (10 samples, 0.01%)</title><rect x="1109.0" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ret_from_intr (94 samples, 0.11%)</title><rect x="812.9" y="437" width="1.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="815.91" 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>netif_receive_skb_internal (12 samples, 0.01%)</title><rect x="810.6" y="293" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.60" 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_deliver (15 samples, 0.02%)</title><rect x="949.1" y="277" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (22 samples, 0.03%)</title><rect x="1142.5" y="453" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1145.54" 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>Unsafe_Unpark (25 samples, 0.03%)</title><rect x="100.8" y="741" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.77" 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>ret_from_intr (122 samples, 0.15%)</title><rect x="252.9" y="389" width="1.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="255.91" 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>smp_apic_timer_interrupt (30 samples, 0.04%)</title><rect x="788.6" y="405" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.62" 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>ovs_execute_actions (8 samples, 0.01%)</title><rect x="973.4" y="229" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.41" 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/reflect/GeneratedMethodAccessor85:::invoke (137 samples, 0.16%)</title><rect x="1010.3" y="469" width="1.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1013.31" 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 (21 samples, 0.03%)</title><rect x="100.8" y="677" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.79" 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>__dev_queue_xmit (14 samples, 0.02%)</title><rect x="61.8" y="533" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>tcp_send_fin (15 samples, 0.02%)</title><rect x="1184.8" y="901" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.76" 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/impl/nio/reactor/AbstractIOReactor:::execute (4,327 samples, 5.18%)</title><rect x="16.3" y="1189" width="61.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1199.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>__softirqentry_text_start (18 samples, 0.02%)</title><rect x="32.9" y="1013" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="35.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>__irqentry_text_start (10 samples, 0.01%)</title><rect x="548.7" y="389" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.71" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_execute_actions (13 samples, 0.02%)</title><rect x="946.0" y="181" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.00" 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>sun/nio/ch/IOUtil:::drain (16 samples, 0.02%)</title><rect x="94.0" y="1173" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="96.97" 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/json/ReaderBasedJsonParser:::_parseNumber2 (44 samples, 0.05%)</title><rect x="809.8" y="421" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="812.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/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseNumber2 (23 samples, 0.03%)</title><rect x="558.2" y="389" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.20" 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_IRQ (18 samples, 0.02%)</title><rect x="32.9" y="1045" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="35.94" 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>Unsafe_Unpark (64 samples, 0.08%)</title><rect x="57.6" y="1093" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>java/util/regex/Pattern$BranchConn:::match (10 samples, 0.01%)</title><rect x="1177.2" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1180.24" 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>__local_bh_enable_ip (23 samples, 0.03%)</title><rect x="60.1" y="789" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.09" 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/cs/UTF_8$Encoder:::encode (16 samples, 0.02%)</title><rect x="81.5" y="1109" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="84.52" 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>__softirqentry_text_start (16 samples, 0.02%)</title><rect x="1175.8" y="149" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.84" 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>__schedule (24 samples, 0.03%)</title><rect x="79.1" y="981" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.13" 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/reflect/generics/parser/SignatureParser:::parseClassTypeSignature (8 samples, 0.01%)</title><rect x="115.6" y="277" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.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>tcf_act_police (8 samples, 0.01%)</title><rect x="52.1" y="581" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.07" 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/index/query/TermsQueryBuilder:::doXContent (71 samples, 0.08%)</title><rect x="573.5" y="341" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.55" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::parseLongName (737 samples, 0.88%)</title><rect x="515.2" y="389" width="10.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="518.23" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>frame::sender (10 samples, 0.01%)</title><rect x="1154.0" y="373" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.99" 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_write (24 samples, 0.03%)</title><rect x="83.6" y="1061" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.63" 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 (17 samples, 0.02%)</title><rect x="10.3" y="1333" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.34" 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/reflect/DefaultSchemaProvider:::getSchema (13 samples, 0.02%)</title><rect x="1171.6" y="661" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1174.65" 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>sun/nio/ch/SocketChannelImpl:::write (49 samples, 0.06%)</title><rect x="1181.7" y="1061" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>release_sock (19 samples, 0.02%)</title><rect x="35.9" y="901" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.90" 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>ret_from_intr (14 samples, 0.02%)</title><rect x="176.0" y="389" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="178.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>java/io/ObjectInputStream:::readSerialData (16 samples, 0.02%)</title><rect x="1155.5" y="373" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.46" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextFieldName (31 samples, 0.04%)</title><rect x="584.5" y="485" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="587.47" 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/Class:::getSimpleName (9 samples, 0.01%)</title><rect x="112.3" y="373" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.30" 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 (47 samples, 0.06%)</title><rect x="575.3" y="389" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.27" 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/FileDispatcherImpl:::read0 (1,573 samples, 1.88%)</title><rect x="33.2" y="1077" width="22.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.22" y="1087.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>ip_finish_output (394 samples, 0.47%)</title><rect x="48.4" y="789" width="5.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.41" 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/util/HashMap:::put (4,405 samples, 5.27%)</title><rect x="407.1" y="389" width="62.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="410.05" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/u..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>frame::sender (8 samples, 0.01%)</title><rect x="282.9" y="325" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="285.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>ip_local_deliver_finish (26 samples, 0.03%)</title><rect x="254.2" y="213" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.17" 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>java/nio/DirectByteBuffer:::<init> (16 samples, 0.02%)</title><rect x="83.2" y="1141" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.24" 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:::hashCode (201 samples, 0.24%)</title><rect x="398.2" y="389" width="2.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="401.24" 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>process_backlog (256 samples, 0.31%)</title><rect x="49.0" y="677" width="3.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.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>do_IRQ (9 samples, 0.01%)</title><rect x="1106.0" y="469" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.03" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/generics/parser/SignatureParser:::parseIdentifier (11 samples, 0.01%)</title><rect x="118.5" y="341" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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>run_rebalance_domains (8 samples, 0.01%)</title><rect x="251.5" y="325" width="0.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.53" 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_java_lang_Class_forName0 (8 samples, 0.01%)</title><rect x="118.7" y="405" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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>com/ctrip/es/apache/http/impl/nio/client/MainClientExec:::generateRequest (76 samples, 0.09%)</title><rect x="22.0" y="1125" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="25.00" 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/threads/TaskQueue:::poll (184 samples, 0.22%)</title><rect x="1185.0" y="1189" width="2.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.99" 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_execute_actions (129 samples, 0.15%)</title><rect x="49.5" y="581" width="1.8" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.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>i40e_napi_poll (10 samples, 0.01%)</title><rect x="963.4" y="357" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.37" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb_core (30 samples, 0.04%)</title><rect x="1107.1" y="389" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.11" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__lll_timedwait_tid (8 samples, 0.01%)</title><rect x="78.0" y="1141" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="80.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>ip_finish_output2 (9 samples, 0.01%)</title><rect x="1184.8" y="773" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.82" 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/elasticsearch/client/RequestConverters$EndpointBuilder:::addPathPart (17 samples, 0.02%)</title><rect x="572.7" y="485" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="575.66" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_rcv_finish (24 samples, 0.03%)</title><rect x="562.6" y="261" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.59" 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>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseName (6,167 samples, 7.38%)</title><rect x="701.5" y="437" width="87.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.54" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/faster..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>vfs_write (119 samples, 0.14%)</title><rect x="61.1" y="1045" width="1.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>Unsafe_SetMemory2 (9 samples, 0.01%)</title><rect x="83.3" y="1109" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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>java/util/regex/Pattern:::compile (12 samples, 0.01%)</title><rect x="1145.6" y="501" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1148.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_local_deliver_finish (14 samples, 0.02%)</title><rect x="469.0" y="197" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.00" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_sendmsg (38 samples, 0.05%)</title><rect x="11.3" y="1253" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>com/google/gson/internal/Excluder:::excludeClass (8 samples, 0.01%)</title><rect x="112.5" y="357" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.47" 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 (41 samples, 0.05%)</title><rect x="91.6" y="1125" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="94.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>sys_epoll_ctl (38 samples, 0.05%)</title><rect x="91.6" y="1109" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="94.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>do_page_fault (10 samples, 0.01%)</title><rect x="571.5" y="421" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.53" 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>ip_rcv_finish (10 samples, 0.01%)</title><rect x="290.9" y="245" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.91" 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>java/util/stream/AbstractPipeline:::evaluate (139 samples, 0.17%)</title><rect x="1129.4" y="549" width="2.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1132.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>process_backlog (9 samples, 0.01%)</title><rect x="608.9" y="373" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.92" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/hotel/htlorgarea/core/service/impl/AreaServiceImpl:::convertToTermsQuery (58 samples, 0.07%)</title><rect x="125.1" y="517" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="128.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseNegNumber (10 samples, 0.01%)</title><rect x="588.7" y="469" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="591.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>tcp_v4_rcv (16 samples, 0.02%)</title><rect x="973.7" y="261" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.70" 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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_loadMoreGuaranteed (11 samples, 0.01%)</title><rect x="548.9" y="389" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.85" 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 (153 samples, 0.18%)</title><rect x="1166.0" y="469" width="2.1" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.97" 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:::read (66 samples, 0.08%)</title><rect x="1171.8" y="661" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1174.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>sun/reflect/GeneratedMethodAccessor81:::invoke (28 samples, 0.03%)</title><rect x="978.6" y="453" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="981.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>ovs_execute_actions (11 samples, 0.01%)</title><rect x="1106.7" y="277" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.70" 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>process_backlog (30 samples, 0.04%)</title><rect x="562.5" y="325" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.52" 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>i40e_napi_poll (8 samples, 0.01%)</title><rect x="1117.6" y="325" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1120.61" 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_softirq (16 samples, 0.02%)</title><rect x="1175.8" y="181" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.84" 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>netif_receive_skb_internal (23 samples, 0.03%)</title><rect x="946.0" y="293" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.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>ip_rcv (8 samples, 0.01%)</title><rect x="468.4" y="229" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.37" 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/reflect/GeneratedMethodAccessor73:::invoke (166 samples, 0.20%)</title><rect x="990.7" y="469" width="2.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="993.73" 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_vport_receive (12 samples, 0.01%)</title><rect x="973.4" y="261" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.38" 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>org/apache/coyote/http11/InternalNioOutputBuffer:::flushBuffer (109 samples, 0.13%)</title><rect x="1174.9" y="581" width="1.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1177.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>netif_receive_skb_internal (17 samples, 0.02%)</title><rect x="813.4" y="309" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ovs_flow_tbl_lookup_stats (17 samples, 0.02%)</title><rect x="51.3" y="581" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.32" 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 (9 samples, 0.01%)</title><rect x="1106.0" y="421" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.03" 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 (24 samples, 0.03%)</title><rect x="1030.0" y="405" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1032.97" 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$BlockDataInputStream:::readUTFBody (9 samples, 0.01%)</title><rect x="578.3" y="373" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="581.30" 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>__netif_receive_skb_core (10 samples, 0.01%)</title><rect x="549.3" y="229" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.33" 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/reflect/GeneratedMethodAccessor75:::invoke (155 samples, 0.19%)</title><rect x="995.8" y="469" width="2.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="998.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>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$493/1516886129:::test (468 samples, 0.56%)</title><rect x="1111.2" y="437" width="6.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1114.24" 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/stream/ReferencePipeline$2$1:::accept (9 samples, 0.01%)</title><rect x="1119.1" y="389" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1122.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>ep_scan_ready_list.isra.11 (12 samples, 0.01%)</title><rect x="92.5" y="1077" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>i40e_napi_poll (8 samples, 0.01%)</title><rect x="290.4" y="293" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.39" 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/message/internal/DefaultMessageManager$TransactionHelper:::validate (15 samples, 0.02%)</title><rect x="98.0" y="805" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.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>StringTable::intern (8 samples, 0.01%)</title><rect x="100.0" y="693" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.98" 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/fasterxml/jackson/core/util/TextBuffer:::contentsAsInt (126 samples, 0.15%)</title><rect x="825.3" y="453" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="828.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>com/ctriposs/baiji/rpc/server/plugin/safelist/SafeListPlugin:::apply (20 samples, 0.02%)</title><rect x="105.6" y="677" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="108.64" 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>tcp_sendmsg (35 samples, 0.04%)</title><rect x="84.8" y="965" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.81" 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>sun/reflect/generics/parser/SignatureParser:::parsePackageNameAndSimpleClassTypeSignature (11 samples, 0.01%)</title><rect x="120.3" y="469" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>org/elasticsearch/search/SearchHit:::createFromMap (16 samples, 0.02%)</title><rect x="572.3" y="485" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="575.26" 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/google/gson/internal/Excluder:::excludeField (8 samples, 0.01%)</title><rect x="119.8" y="485" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="122.79" 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>i40e_napi_poll (19 samples, 0.02%)</title><rect x="549.2" y="309" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.22" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process (77,206 samples, 92.36%)</title><rect x="94.6" y="1157" width="1089.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.60" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/nio/ch/IOUtil:::drain (47 samples, 0.06%)</title><rect x="76.6" y="1141" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.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>pthread_cond_timedwait@@GLIBC_2.3.2 (15 samples, 0.02%)</title><rect x="78.1" y="1141" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>java/lang/String:::intern (10 samples, 0.01%)</title><rect x="114.3" y="293" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.27" 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/client/RequestConverters:::addSearchRequestParams (17 samples, 0.02%)</title><rect x="1145.8" y="517" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1148.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>java/util/Formatter:::format (23 samples, 0.03%)</title><rect x="106.0" y="629" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="108.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>java/util/stream/AbstractPipeline:::evaluate (531 samples, 0.64%)</title><rect x="1110.4" y="469" width="7.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.42" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_epoll_wait (545 samples, 0.65%)</title><rect x="66.7" y="1077" width="7.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="69.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>entry_SYSCALL_64_after_hwframe (60 samples, 0.07%)</title><rect x="57.6" y="1061" width="0.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>vframeStreamCommon::next (17 samples, 0.02%)</title><rect x="1153.9" y="389" width="0.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.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>com/ctrip/hotel/htlorgarea/core/utils/RetryUtils:::retry (32,301 samples, 38.64%)</title><rect x="126.3" y="533" width="456.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="129.34" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/hotel/htlorgarea/core/utils/RetryUtils:::retry</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_page_fault (8 samples, 0.01%)</title><rect x="942.7" y="389" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="945.69" 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 (254 samples, 0.30%)</title><rect x="70.4" y="981" width="3.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="73.41" 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 (21 samples, 0.03%)</title><rect x="85.0" y="917" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.00" 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>do_output (15 samples, 0.02%)</title><rect x="792.8" y="165" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.75" 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>dev_queue_xmit (15 samples, 0.02%)</title><rect x="792.8" y="133" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.75" 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>StringTable::intern (12 samples, 0.01%)</title><rect x="99.0" y="725" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.02" 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>__softirqentry_text_start (22 samples, 0.03%)</title><rect x="450.2" y="309" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.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_IRQ (19 samples, 0.02%)</title><rect x="963.3" y="421" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.34" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__softirqentry_text_start (50 samples, 0.06%)</title><rect x="468.5" y="325" width="0.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.53" 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_syscall_64 (32 samples, 0.04%)</title><rect x="65.1" y="1093" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="68.08" 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_page_fault (22 samples, 0.03%)</title><rect x="449.9" y="341" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="452.88" 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/apache/commons/codec/binary/Base64:::encode (17 samples, 0.02%)</title><rect x="22.5" y="1093" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="25.54" 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_page_fault (12 samples, 0.01%)</title><rect x="289.9" y="325" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="292.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>sock_def_readable (8 samples, 0.01%)</title><rect x="788.7" y="181" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.71" 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>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseNegNumber (80 samples, 0.10%)</title><rect x="607.4" y="453" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="610.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>do_execute_actions (11 samples, 0.01%)</title><rect x="1106.7" y="261" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.70" 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>page_fault (11 samples, 0.01%)</title><rect x="468.1" y="357" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.06" 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>net_rx_action (8 samples, 0.01%)</title><rect x="85.1" y="725" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.06" 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>sun/nio/ch/EPollArrayWrapper:::epollWait (95 samples, 0.11%)</title><rect x="92.2" y="1173" width="1.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>ret_from_intr (9 samples, 0.01%)</title><rect x="1000.0" y="453" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1003.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>__audit_syscall_exit (24 samples, 0.03%)</title><rect x="54.7" y="997" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.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>com/ctrip/framework/clogging/agent/log/impl/CommonLogger:::info (39 samples, 0.05%)</title><rect x="1109.2" y="533" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.17" 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>_new_instance_Java (21 samples, 0.03%)</title><rect x="449.6" y="357" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="452.58" 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>page_fault (12 samples, 0.01%)</title><rect x="289.9" y="357" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="292.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>com/ctriposs/baiji/rpc/server/util/ResponseUtil:::writeResponseContent (257 samples, 0.31%)</title><rect x="1173.3" y="677" width="3.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.26" 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>__netif_receive_skb (29 samples, 0.03%)</title><rect x="253.6" y="245" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.60" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sock_def_readable (8 samples, 0.01%)</title><rect x="254.2" y="149" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.24" 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>do_softirq (296 samples, 0.35%)</title><rect x="48.6" y="741" width="4.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.58" 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 (9 samples, 0.01%)</title><rect x="78.1" y="1029" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>sys_read (89 samples, 0.11%)</title><rect x="59.4" y="1045" width="1.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.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>__tcp_transmit_skb (25 samples, 0.03%)</title><rect x="11.3" y="1173" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>java/util/regex/Pattern:::compile (10 samples, 0.01%)</title><rect x="572.7" y="469" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="575.74" 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_IRQ (92 samples, 0.11%)</title><rect x="561.6" y="389" width="1.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="564.64" 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:::fillInStackTrace (39 samples, 0.05%)</title><rect x="113.7" y="261" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.67" 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>__softirqentry_text_start (12 samples, 0.01%)</title><rect x="290.1" y="309" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_v4_do_rcv (26 samples, 0.03%)</title><rect x="946.6" y="213" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.63" 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/nio/ch/EPollArrayWrapper:::interrupt (52 samples, 0.06%)</title><rect x="1157.6" y="405" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.62" 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>validate_xmit_skb (10 samples, 0.01%)</title><rect x="51.1" y="453" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.12" 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_rcv_finish (8 samples, 0.01%)</title><rect x="1030.2" y="309" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.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>OptoRuntime::new_instance_C (18 samples, 0.02%)</title><rect x="449.6" y="341" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="452.63" 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>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="1106.0" y="437" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.03" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/databind/deser/BeanDeserializerBase:::handleUnknownVanilla (54 samples, 0.06%)</title><rect x="827.3" y="453" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="830.32" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__vfs_write (43 samples, 0.05%)</title><rect x="1157.7" y="309" width="0.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.67" 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/stream/AbstractPipeline:::wrapAndCopyInto (8 samples, 0.01%)</title><rect x="125.7" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="128.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>com/dianping/cat/message/spi/internal/DefaultMessageTreeV2:::toBytes (248 samples, 0.30%)</title><rect x="79.7" y="1157" width="3.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.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>JVM_InternString (15 samples, 0.02%)</title><rect x="99.9" y="725" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.92" 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>i40e_napi_poll (11 samples, 0.01%)</title><rect x="48.8" y="677" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.84" 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/springframework/web/filter/OncePerRequestFilter:::doFilter (76,691 samples, 91.75%)</title><rect x="97.0" y="981" width="1082.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.04" y="991.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>__netif_receive_skb_core (8 samples, 0.01%)</title><rect x="1106.9" y="325" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>com/google/gson/Gson:::getAdapter (684 samples, 0.82%)</title><rect x="109.6" y="485" width="9.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.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>do_softirq_own_stack (19 samples, 0.02%)</title><rect x="1181.9" y="677" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.94" 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>__netif_receive_skb (13 samples, 0.02%)</title><rect x="973.4" y="309" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.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>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6$Context:::addEncodedTokens (68 samples, 0.08%)</title><rect x="79.9" y="1141" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.85" 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/BaijiServlet:::service (76,288 samples, 91.27%)</title><rect x="101.7" y="757" width="1077.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="104.72" y="767.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>enqueue_to_backlog (8 samples, 0.01%)</title><rect x="53.5" y="661" width="0.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.52" 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/gson/Gson:::getAdapter (914 samples, 1.09%)</title><rect x="108.6" y="549" width="12.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="111.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>java/lang/Throwable:::fillInStackTrace (21 samples, 0.03%)</title><rect x="1183.1" y="1061" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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/io/ObjectInputStream:::readClassDesc (58 samples, 0.07%)</title><rect x="1154.6" y="373" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.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>ip_local_deliver (43 samples, 0.05%)</title><rect x="793.4" y="261" width="0.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.42" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/apache/http/impl/nio/codecs/AbstractMessageParser:::parse (42 samples, 0.05%)</title><rect x="20.4" y="1141" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="23.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>napi_gro_complete (8 samples, 0.01%)</title><rect x="1106.9" y="373" width="0.1" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>__virt_addr_valid (9 samples, 0.01%)</title><rect x="36.4" y="869" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="39.43" 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>net_rx_action (84 samples, 0.10%)</title><rect x="813.0" y="373" width="1.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.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>org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::run (77,249 samples, 92.42%)</title><rect x="94.5" y="1189" width="1090.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.48" y="1199.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>Java_java_lang_Throwable_fillInStackTrace (99 samples, 0.12%)</title><rect x="1135.3" y="501" width="1.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.31" 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:::parseFieldTypeSignature (12 samples, 0.01%)</title><rect x="115.6" y="341" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.57" 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_rcv (10 samples, 0.01%)</title><rect x="290.9" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.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>irq_exit (12 samples, 0.01%)</title><rect x="27.3" y="1029" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="30.32" 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/ObjectStreamClass:::getClassDataLayout0 (12 samples, 0.01%)</title><rect x="579.3" y="389" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.26" 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/fasterxml/jackson/databind/ser/std/NumberSerializers$IntegerSerializer:::serialize (9 samples, 0.01%)</title><rect x="1169.6" y="485" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1172.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>__softirqentry_text_start (12 samples, 0.01%)</title><rect x="166.1" y="357" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="169.09" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>hrtimer_start_range_ns (45 samples, 0.05%)</title><rect x="69.2" y="1013" width="0.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="72.21" 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>process_backlog (16 samples, 0.02%)</title><rect x="302.3" y="325" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.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>__libc_recv (38 samples, 0.05%)</title><rect x="85.8" y="1141" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.77" 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 (22 samples, 0.03%)</title><rect x="558.5" y="357" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.52" 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/misc/Unsafe:::park (150 samples, 0.18%)</title><rect x="1146.8" y="517" width="2.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.79" 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>skb_clone (16 samples, 0.02%)</title><rect x="52.9" y="693" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.87" 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/regex/Pattern$Branch:::match (15 samples, 0.02%)</title><rect x="1177.2" y="629" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1180.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>java/util/concurrent/locks/LockSupport:::parkNanos (153 samples, 0.18%)</title><rect x="1185.3" y="1157" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.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>G1CollectedHeap::do_collection_pause_at_safepoint (8 samples, 0.01%)</title><rect x="1189.6" y="1253" width="0.1" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parsePosNumber (30 samples, 0.04%)</title><rect x="318.7" y="421" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="321.65" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>napi_gro_receive (30 samples, 0.04%)</title><rect x="562.1" y="293" width="0.4" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.05" 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/ctriposs/baiji/rpc/server/HttpServletResponseWrapper:::serialize (250 samples, 0.30%)</title><rect x="1173.3" y="661" width="3.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.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>do_softirq_own_stack (292 samples, 0.35%)</title><rect x="48.6" y="725" width="4.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.64" 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>find_class_from_class_loader (9 samples, 0.01%)</title><rect x="1153.5" y="373" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.49" 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>ep_remove (11 samples, 0.01%)</title><rect x="91.9" y="1093" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="94.88" 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/GeneratedMethodAccessor80:::invoke (13 samples, 0.02%)</title><rect x="978.4" y="453" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="981.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>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="78.0" y="1125" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="80.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>__tcp_push_pending_frames (31 samples, 0.04%)</title><rect x="1181.9" y="837" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>java/io/ObjectStreamClass:::readNonProxy (22 samples, 0.03%)</title><rect x="1154.8" y="357" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.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>com/fasterxml/jackson/databind/ObjectMapper:::writeValueAsString (75 samples, 0.09%)</title><rect x="1169.1" y="565" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1172.15" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::anyMatch (1,601 samples, 1.92%)</title><rect x="1108.8" y="565" width="22.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1111.81" y="575.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>netdev_frame_hook (11 samples, 0.01%)</title><rect x="1182.0" y="581" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.97" 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/regex/Pattern$BmpCharProperty:::match (8 samples, 0.01%)</title><rect x="106.1" y="613" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="109.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>dev_queue_xmit (13 samples, 0.02%)</title><rect x="62.3" y="789" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="65.26" 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>sock_write_iter (43 samples, 0.05%)</title><rect x="1175.6" y="421" width="0.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.61" 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>consume_skb (11 samples, 0.01%)</title><rect x="53.1" y="677" width="0.2" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.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>com/google/gson/Gson:::getAdapter (111 samples, 0.13%)</title><rect x="113.0" y="325" width="1.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.98" 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/catalina/valves/AccessLogValve$HeaderElement:::addElement (11 samples, 0.01%)</title><rect x="1180.8" y="1093" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.82" 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>skb_release_data (10 samples, 0.01%)</title><rect x="53.1" y="645" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.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>i40e_clean_rx_irq (16 samples, 0.02%)</title><rect x="549.2" y="293" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.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>__irqentry_text_start (12 samples, 0.01%)</title><rect x="166.1" y="405" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="169.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::isFitArea (277 samples, 0.33%)</title><rect x="1113.9" y="421" width="3.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1116.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>__netif_receive_skb (9 samples, 0.01%)</title><rect x="608.9" y="357" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.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>com/dianping/cat/aggregator/DefaultTransactionAggregator$TransactionData:::add (18 samples, 0.02%)</title><rect x="100.2" y="757" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.15" 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>__vfs_read (10 samples, 0.01%)</title><rect x="1183.6" y="965" width="0.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.56" 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>__audit_syscall_exit (35 samples, 0.04%)</title><rect x="74.4" y="1061" width="0.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="77.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_up_sync_key (16 samples, 0.02%)</title><rect x="83.7" y="997" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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>com/ctrip/es/apache/http/impl/nio/client/MainClientExec:::responseCompleted (96 samples, 0.11%)</title><rect x="19.1" y="1141" width="1.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="22.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>java/lang/String:::format (38 samples, 0.05%)</title><rect x="1132.1" y="501" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1135.15" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/net/URI$Parser:::parseServer (8 samples, 0.01%)</title><rect x="1178.3" y="725" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1181.34" 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 (15 samples, 0.02%)</title><rect x="1181.5" y="1029" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.47" 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 (8 samples, 0.01%)</title><rect x="942.7" y="373" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="945.69" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_rcv (8 samples, 0.01%)</title><rect x="378.2" y="277" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" 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>entry_SYSCALL_64_after_hwframe (79 samples, 0.09%)</title><rect x="1186.3" y="1093" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.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>__netif_receive_skb (12 samples, 0.01%)</title><rect x="948.7" y="293" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.73" 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 (42 samples, 0.05%)</title><rect x="73.4" y="901" width="0.6" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.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>__qdisc_run (11 samples, 0.01%)</title><rect x="562.2" y="85" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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>java/io/ByteArrayOutputStream:::write (912 samples, 1.09%)</title><rect x="277.7" y="389" width="12.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="280.70" 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:::releaseConnection (45 samples, 0.05%)</title><rect x="19.4" y="1125" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="22.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>__sock_release (18 samples, 0.02%)</title><rect x="1184.7" y="949" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.72" 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/elasticsearch/common/xcontent/XContentType:::fromMediaTypeOrFormat (12 samples, 0.01%)</title><rect x="1159.4" y="533" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1162.39" 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/HashMap:::resize (1,276 samples, 1.53%)</title><rect x="450.5" y="373" width="18.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.52" 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>irq_exit (8 samples, 0.01%)</title><rect x="986.8" y="421" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="989.76" 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/nio/ch/IOUtil:::read (1,888 samples, 2.26%)</title><rect x="29.1" y="1093" width="26.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="32.13" y="1103.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>napi_complete_done (8 samples, 0.01%)</title><rect x="948.9" y="341" width="0.1" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.90" 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/apache/http/message/HeaderGroup:::getHeaders (12 samples, 0.01%)</title><rect x="20.2" y="1125" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="23.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>do_syscall_64 (8 samples, 0.01%)</title><rect x="78.0" y="1109" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="80.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>sun/reflect/GeneratedMethodAccessor74:::invoke (194 samples, 0.23%)</title><rect x="993.1" y="469" width="2.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="996.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_nextTokenNotInObject (121 samples, 0.14%)</title><rect x="475.5" y="405" width="1.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="478.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_IRQ (21 samples, 0.03%)</title><rect x="468.2" y="341" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.22" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_rcv_established (24 samples, 0.03%)</title><rect x="946.6" y="197" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.64" 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>do_IRQ (17 samples, 0.02%)</title><rect x="301.3" y="373" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.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>ksize (13 samples, 0.02%)</title><rect x="47.4" y="837" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="50.38" 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>OptoRuntime::new_array_C (180 samples, 0.22%)</title><rect x="24.9" y="1093" width="2.6" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="27.95" 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_syscall_64 (18 samples, 0.02%)</title><rect x="89.4" y="1141" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>sun/reflect/GeneratedConstructorAccessor54:::newInstance (53 samples, 0.06%)</title><rect x="974.1" y="453" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="977.10" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_v4_do_rcv (11 samples, 0.01%)</title><rect x="528.4" y="181" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.44" 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>vfs_read (13 samples, 0.02%)</title><rect x="86.4" y="1077" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.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>sun/misc/Unsafe:::unpark (26 samples, 0.03%)</title><rect x="100.8" y="757" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.76" 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/elasticsearch/client/RequestConverters:::search (111 samples, 0.13%)</title><rect x="1144.9" y="533" width="1.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1147.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>[libpthread-2.17.so] (51 samples, 0.06%)</title><rect x="1157.6" y="389" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.62" 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>irq_exit (45 samples, 0.05%)</title><rect x="73.4" y="933" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.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>java/io/ObjectStreamClass:::initNonProxy (10 samples, 0.01%)</title><rect x="1154.7" y="357" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.67" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__libc_close (22 samples, 0.03%)</title><rect x="1189.0" y="1173" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.97" 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 (28 samples, 0.03%)</title><rect x="1119.5" y="373" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1122.47" 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_v4_rcv (11 samples, 0.01%)</title><rect x="72.9" y="773" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.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>java/lang/Throwable:::fillInStackTrace (102 samples, 0.12%)</title><rect x="1135.3" y="533" width="1.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.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>sys_recvfrom (16 samples, 0.02%)</title><rect x="10.3" y="1317" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.34" 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/Gson:::getAdapter (383 samples, 0.46%)</title><rect x="112.2" y="421" width="5.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.22" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/apache/http/impl/nio/client/AbstractClientExchangeHandler:::connectionAllocated (72 samples, 0.09%)</title><rect x="1157.3" y="437" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.35" 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:::toLowerCase (200 samples, 0.24%)</title><rect x="970.0" y="453" width="2.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="972.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>[libpthread-2.17.so] (34 samples, 0.04%)</title><rect x="581.2" y="357" width="0.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.20" 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>__softirqentry_text_start (14 samples, 0.02%)</title><rect x="515.0" y="341" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="518.02" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ovs_vport_receive (10 samples, 0.01%)</title><rect x="60.2" y="645" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.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/ctrip/es/apache/http/impl/nio/client/MainClientExec:::prepare (270 samples, 0.32%)</title><rect x="577.2" y="453" width="3.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="580.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__vfs_read (10 samples, 0.01%)</title><rect x="86.4" y="1061" width="0.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.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 (70 samples, 0.08%)</title><rect x="1147.7" y="405" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.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>com/ctrip/hotel/htlorgarea/core/service/impl/AreaServiceImpl:::buildConditionNestedQuery (87 samples, 0.10%)</title><rect x="125.1" y="533" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="128.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>JVM_FindClassFromCaller (23 samples, 0.03%)</title><rect x="1153.3" y="389" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.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>copy_page_to_iter (123 samples, 0.15%)</title><rect x="45.1" y="869" width="1.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="48.12" 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/framework/clogging/agent/log/impl/CommonLogger:::doWriteLog (36 samples, 0.04%)</title><rect x="1109.2" y="517" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.17" 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>ConcurrentG1RefineThread::run_young_rs_sampling (10 samples, 0.01%)</title><rect x="12.1" y="1317" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.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>__qdisc_run (9 samples, 0.01%)</title><rect x="73.1" y="885" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.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>java/lang/RuntimeException:::<init> (84 samples, 0.10%)</title><rect x="1107.6" y="549" width="1.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.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>sun/reflect/GeneratedMethodAccessor60:::invoke (9 samples, 0.01%)</title><rect x="990.2" y="469" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="993.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>Java_java_lang_Throwable_fillInStackTrace (84 samples, 0.10%)</title><rect x="1107.6" y="517" width="1.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.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>inet_sendmsg (35 samples, 0.04%)</title><rect x="84.8" y="981" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.81" 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/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::handle (76,198 samples, 91.16%)</title><rect x="102.3" y="725" width="1075.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="105.25" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::handle</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/ReflectiveOperationException:::<init> (113 samples, 0.14%)</title><rect x="110.3" y="437" width="1.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.31" 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 (16 samples, 0.02%)</title><rect x="1185.7" y="1093" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.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>ip_local_deliver_finish (11 samples, 0.01%)</title><rect x="302.3" y="229" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.29" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_futex (9 samples, 0.01%)</title><rect x="1185.8" y="1045" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.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>ip_local_out (68 samples, 0.08%)</title><rect x="61.5" y="853" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.50" 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/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$531/1445277595:::test (116 samples, 0.14%)</title><rect x="1127.7" y="469" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1130.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>ovs_vport_send (9 samples, 0.01%)</title><rect x="1106.7" y="229" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.72" 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>java/lang/Class:::forName0 (25 samples, 0.03%)</title><rect x="120.6" y="485" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>net_rx_action (33 samples, 0.04%)</title><rect x="810.4" y="357" width="0.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.44" 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_push_pending_frames (94 samples, 0.11%)</title><rect x="61.3" y="917" width="1.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.34" 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/BaijiServiceHost:::applyPostResponseFilters (12 samples, 0.01%)</title><rect x="102.0" y="725" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="105.00" 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>__netif_receive_skb (12 samples, 0.01%)</title><rect x="469.8" y="293" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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>__netif_receive_skb_core (12 samples, 0.01%)</title><rect x="302.0" y="245" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.98" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_sendto (42 samples, 0.05%)</title><rect x="11.3" y="1317" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>entry_SYSCALL_64_after_hwframe (119 samples, 0.14%)</title><rect x="61.1" y="1093" width="1.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeEndObject (16 samples, 0.02%)</title><rect x="563.2" y="437" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="566.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>java/io/ObjectInputStream:::readSerialData (61 samples, 0.07%)</title><rect x="579.2" y="405" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.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_java_lang_Throwable_fillInStackTrace (21 samples, 0.03%)</title><rect x="1183.1" y="1045" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>[libpthread-2.17.so] (23 samples, 0.03%)</title><rect x="1175.0" y="533" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>org/apache/coyote/http11/AbstractHttp11Processor:::process (77,132 samples, 92.28%)</title><rect x="95.0" y="1141" width="1088.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="98.01" y="1151.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>_raw_spin_unlock_irqrestore (28 samples, 0.03%)</title><rect x="69.9" y="997" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="72.86" 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>sys_futex (23 samples, 0.03%)</title><rect x="90.7" y="1061" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.71" 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 (22 samples, 0.03%)</title><rect x="90.7" y="1045" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.72" 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 (17 samples, 0.02%)</title><rect x="1175.8" y="197" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.83" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_v4_do_rcv (40 samples, 0.05%)</title><rect x="793.4" y="213" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.43" 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>do_execute_actions (17 samples, 0.02%)</title><rect x="61.8" y="597" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.78" 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>ip_finish_output (34 samples, 0.04%)</title><rect x="60.1" y="821" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.07" 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>vfs_read (33 samples, 0.04%)</title><rect x="76.7" y="1061" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.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>sun/reflect/GeneratedMethodAccessor78:::invoke (185 samples, 0.22%)</title><rect x="1002.3" y="469" width="2.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1005.33" 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/io/ObjectInputStream:::defaultReadFields (42 samples, 0.05%)</title><rect x="579.4" y="373" width="0.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.45" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/util/concurrent/locks/LockSupport:::parkNanos (67 samples, 0.08%)</title><rect x="87.1" y="1141" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.11" 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_unlock_irqrestore (8 samples, 0.01%)</title><rect x="251.5" y="277" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.53" 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>wake_up_q (43 samples, 0.05%)</title><rect x="57.8" y="997" width="0.6" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.83" 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>_new_array_nozero_Java (10 samples, 0.01%)</title><rect x="940.4" y="421" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="943.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>com/ctrip/es/apache/http/nio/util/SimpleInputBuffer:::consumeContent (2,005 samples, 2.40%)</title><rect x="27.6" y="1141" width="28.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="30.62" y="1151.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>pipe_write (26 samples, 0.03%)</title><rect x="1184.1" y="1013" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>irq_exit (17 samples, 0.02%)</title><rect x="378.2" y="373" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.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>do_softirq (19 samples, 0.02%)</title><rect x="1181.9" y="693" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.94" 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_lang_Throwable::fill_in_stack_trace (65 samples, 0.08%)</title><rect x="116.1" y="293" width="0.9" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/springframework/web/context/request/async/WebAsyncUtils:::getAsyncManager (20 samples, 0.02%)</title><rect x="1179.7" y="997" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1182.68" 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/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::applyResponseFilters (10 samples, 0.01%)</title><rect x="106.8" y="693" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="109.77" 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/google/gson/internal/bind/ReflectiveTypeAdapterFactory$1:::write (14 samples, 0.02%)</title><rect x="121.7" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="124.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__qdisc_run (13 samples, 0.02%)</title><rect x="253.7" y="69" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.67" 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>irq_exit (50 samples, 0.06%)</title><rect x="468.5" y="341" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.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>do_IRQ (15 samples, 0.02%)</title><rect x="44.5" y="837" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.46" 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>ip_local_deliver (11 samples, 0.01%)</title><rect x="72.9" y="805" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.89" 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>__softirqentry_text_start (8 samples, 0.01%)</title><rect x="85.1" y="741" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.06" 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>finish_task_switch (18 samples, 0.02%)</title><rect x="1134.5" y="261" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.46" 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>org/elasticsearch/common/xcontent/XContentBuilder:::<init> (10 samples, 0.01%)</title><rect x="571.7" y="453" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.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>__GI___strcasecmp_l (347 samples, 0.42%)</title><rect x="1093.0" y="469" width="4.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1096.05" 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_instance_class_or_null (8 samples, 0.01%)</title><rect x="1172.4" y="565" width="0.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.37" 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>ip_local_deliver (21 samples, 0.03%)</title><rect x="562.6" y="245" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.59" 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>tcp_v4_rcv (43 samples, 0.05%)</title><rect x="793.4" y="229" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.42" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/search/SearchHit:::getSourceAsString (5,369 samples, 6.42%)</title><rect x="1031.8" y="533" width="75.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/elas..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb (15 samples, 0.02%)</title><rect x="11.4" y="981" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>java/lang/Throwable:::fillInStackTrace (163 samples, 0.20%)</title><rect x="1165.9" y="533" width="2.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.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>CodeCache::find_blob (18 samples, 0.02%)</title><rect x="1136.4" y="421" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.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>com/fasterxml/jackson/core/util/TextBuffer:::contentsAsString (19 samples, 0.02%)</title><rect x="827.1" y="453" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="830.06" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>jbyte_disjoint_arraycopy (10 samples, 0.01%)</title><rect x="549.0" y="373" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/util/HashMap:::putMapEntries (8 samples, 0.01%)</title><rect x="108.1" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="111.14" 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>process_backlog (17 samples, 0.02%)</title><rect x="549.5" y="309" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.49" 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/fasterxml/jackson/databind/deser/BeanDeserializer:::deserialize (26 samples, 0.03%)</title><rect x="1161.8" y="517" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.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>JVM_FillInStackTrace (162 samples, 0.19%)</title><rect x="1165.9" y="501" width="2.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.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>entry_SYSCALL_64_after_hwframe (17 samples, 0.02%)</title><rect x="10.3" y="1349" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.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>com/dianping/cat/message/spi/codec/BinaryMessageEncoder6$Context:::addEncodedTokens (41 samples, 0.05%)</title><rect x="80.1" y="1125" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="83.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>java/lang/Class:::forName0 (16 samples, 0.02%)</title><rect x="120.9" y="453" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>napi_gro_receive (20 samples, 0.02%)</title><rect x="973.3" y="341" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/dianping/cat/message/internal/DefaultMessageManager:::flush (209 samples, 0.25%)</title><rect x="98.2" y="805" width="3.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="101.20" 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>___bpf_prog_run (15 samples, 0.02%)</title><rect x="52.3" y="597" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.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>com/dianping/cat/aggregator/DefaultEventAggregator:::makeSureEventExist (23 samples, 0.03%)</title><rect x="98.7" y="757" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="101.68" 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_java_lang_Class_forName0 (24 samples, 0.03%)</title><rect x="1172.2" y="629" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.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>net_rx_action (14 samples, 0.02%)</title><rect x="33.0" y="997" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="35.97" 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/impl/auth/HttpAuthenticator:::generateAuthResponse (44 samples, 0.05%)</title><rect x="22.4" y="1109" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="25.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>ip_queue_xmit (71 samples, 0.08%)</title><rect x="61.5" y="869" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.47" 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>JVM_FillInStackTrace (111 samples, 0.13%)</title><rect x="110.3" y="389" width="1.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.34" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/Class:::getEnclosingMethod0 (11 samples, 0.01%)</title><rect x="114.9" y="277" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.92" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>process_backlog (9 samples, 0.01%)</title><rect x="378.2" y="325" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" 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/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::isFitAreaOther (116 samples, 0.14%)</title><rect x="1127.7" y="453" width="1.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1130.67" 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/HashMap:::put (18 samples, 0.02%)</title><rect x="1143.7" y="437" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1146.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (280 samples, 0.33%)</title><rect x="1140.5" y="485" width="4.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1143.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>do_execute_actions (13 samples, 0.02%)</title><rect x="562.2" y="165" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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>sun/misc/VM:::latestUserDefinedLoader0 (34 samples, 0.04%)</title><rect x="1153.8" y="421" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.85" 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>i40e_napi_poll (9 samples, 0.01%)</title><rect x="608.8" y="373" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.79" 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>net_rx_action (18 samples, 0.02%)</title><rect x="608.8" y="389" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.79" 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>process_backlog (63 samples, 0.08%)</title><rect x="793.3" y="341" width="0.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (38 samples, 0.05%)</title><rect x="87.5" y="1077" width="0.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.47" 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/google/gson/internal/Excluder:::create (15 samples, 0.02%)</title><rect x="109.8" y="469" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.76" 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>process_backlog (8 samples, 0.01%)</title><rect x="85.1" y="709" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.06" 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>__tcp_transmit_skb (468 samples, 0.56%)</title><rect x="47.6" y="853" width="6.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="50.58" 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_syscall_64 (39 samples, 0.05%)</title><rect x="79.0" y="1077" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.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/io/ObjectInputStream:::readObject0 (156 samples, 0.19%)</title><rect x="577.9" y="421" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="580.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/util/stream/AbstractPipeline:::wrapAndCopyInto (554 samples, 0.66%)</title><rect x="1110.2" y="517" width="7.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.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>net_rx_action (12 samples, 0.01%)</title><rect x="290.1" y="293" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.11" 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_deliver_finish (32 samples, 0.04%)</title><rect x="946.5" y="245" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.54" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (96 samples, 0.11%)</title><rect x="1147.5" y="485" width="1.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>process_backlog (31 samples, 0.04%)</title><rect x="1107.1" y="421" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.09" 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>__vfs_write (19 samples, 0.02%)</title><rect x="83.7" y="1029" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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>CodeCache::find_blob (12 samples, 0.01%)</title><rect x="1108.5" y="437" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1111.55" 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_FillInStackTrace (21 samples, 0.03%)</title><rect x="1183.1" y="1029" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.14" 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>G1ParTask::work (246 samples, 0.29%)</title><rect x="12.7" y="1317" width="3.5" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.70" 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 (15 samples, 0.02%)</title><rect x="567.0" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="570.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>com/fasterxml/jackson/databind/deser/BeanDeserializer:::vanillaDeserialize (297 samples, 0.36%)</title><rect x="1160.3" y="533" width="4.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1163.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>frame::sender (9 samples, 0.01%)</title><rect x="116.9" y="277" width="0.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.85" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/io/ObjectStreamClass:::initNonProxy (30 samples, 0.04%)</title><rect x="1152.2" y="421" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1155.24" 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_epoll_wait (31 samples, 0.04%)</title><rect x="85.8" y="1093" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>do_output (13 samples, 0.02%)</title><rect x="562.2" y="149" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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/ctriposs/baiji/rpc/server/plugin/safelist/buwhitelist/BuWhiteListPlugin:::apply (27 samples, 0.03%)</title><rect x="105.9" y="677" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="108.92" 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>ip_rcv (11 samples, 0.01%)</title><rect x="469.8" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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>__bpf_prog_run32 (11 samples, 0.01%)</title><rect x="50.5" y="421" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="53.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>jshort_disjoint_arraycopy (47 samples, 0.06%)</title><rect x="947.7" y="437" width="0.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="950.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>__softirqentry_text_start (45 samples, 0.05%)</title><rect x="61.6" y="741" width="0.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>do_syscall_64 (21 samples, 0.03%)</title><rect x="1189.0" y="1141" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>ip_rcv_finish (15 samples, 0.02%)</title><rect x="549.5" y="245" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.49" 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 (22 samples, 0.03%)</title><rect x="60.1" y="741" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.10" 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>net_rx_action (25 samples, 0.03%)</title><rect x="469.6" y="325" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.63" 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>napi_gro_receive (37 samples, 0.04%)</title><rect x="792.6" y="309" width="0.5" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.58" 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/lang/Class:::getSimpleName (16 samples, 0.02%)</title><rect x="114.8" y="309" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.85" 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>netif_receive_skb_internal (20 samples, 0.02%)</title><rect x="562.2" y="277" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.20" 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>ep_send_events_proc (8 samples, 0.01%)</title><rect x="68.8" y="1045" width="0.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="71.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>__wake_up_sync_key (8 samples, 0.01%)</title><rect x="788.7" y="165" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.71" 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>sun/nio/ch/FileDispatcherImpl:::write0 (126 samples, 0.15%)</title><rect x="61.0" y="1125" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>java/lang/Class:::getConstructor0 (69 samples, 0.08%)</title><rect x="116.0" y="389" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.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>com/ctrip/es/apache/http/impl/nio/codecs/AbstractMessageWriter:::write (23 samples, 0.03%)</title><rect x="21.6" y="1109" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="24.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/io/ObjectStreamClass:::readNonProxy (11 samples, 0.01%)</title><rect x="579.5" y="325" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="582.52" 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>sys_read (10 samples, 0.01%)</title><rect x="1183.6" y="997" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.56" 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 (9 samples, 0.01%)</title><rect x="78.1" y="997" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.13" 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 (25 samples, 0.03%)</title><rect x="1175.8" y="277" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.78" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator:::close (20 samples, 0.02%)</title><rect x="571.9" y="453" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>update_blocked_averages (12 samples, 0.01%)</title><rect x="73.2" y="869" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.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>ovs_vport_receive (8 samples, 0.01%)</title><rect x="549.3" y="197" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.33" 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>OptoRuntime::new_array_nozero_C (24 samples, 0.03%)</title><rect x="282.8" y="357" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="285.75" 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>com/ctrip/es/apache/http/message/BasicLineParser:::parseProtocolVersion (8 samples, 0.01%)</title><rect x="20.8" y="1125" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="23.77" 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>jshort_disjoint_arraycopy (161 samples, 0.19%)</title><rect x="942.8" y="421" width="2.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="945.83" 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/Excluder:::excludeField (14 samples, 0.02%)</title><rect x="117.9" y="421" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.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>__vfs_read (1,450 samples, 1.73%)</title><rect x="34.0" y="981" width="20.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.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>JVM_InternString (12 samples, 0.01%)</title><rect x="82.3" y="1077" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="85.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>entry_SYSCALL_64_after_hwframe (17 samples, 0.02%)</title><rect x="1147.2" y="469" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.17" 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_IRQ (14 samples, 0.02%)</title><rect x="176.0" y="373" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="178.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>handle_mm_fault (11 samples, 0.01%)</title><rect x="450.0" y="309" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.04" 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>ip_rcv_finish (14 samples, 0.02%)</title><rect x="469.0" y="229" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.00" 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>__netif_receive_skb (10 samples, 0.01%)</title><rect x="549.3" y="245" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.33" 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>sun/nio/ch/FileDispatcherImpl:::preClose0 (22 samples, 0.03%)</title><rect x="1184.7" y="1093" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.66" 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_write (28 samples, 0.03%)</title><rect x="1184.1" y="1061" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>tcp_stream_memory_free (9 samples, 0.01%)</title><rect x="68.5" y="997" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="71.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>vfs_write (15 samples, 0.02%)</title><rect x="1181.5" y="981" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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/io/ObjectStreamField:::<init> (19 samples, 0.02%)</title><rect x="1153.0" y="405" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1155.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>dev_hard_start_xmit (8 samples, 0.01%)</title><rect x="61.9" y="501" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>ip_local_deliver_finish (13 samples, 0.02%)</title><rect x="528.4" y="213" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.41" 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>__softirqentry_text_start (10 samples, 0.01%)</title><rect x="563.0" y="373" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.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>Java_java_lang_Throwable_fillInStackTrace (111 samples, 0.13%)</title><rect x="110.3" y="405" width="1.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.34" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_new_array_Java (356 samples, 0.43%)</title><rect x="1092.9" y="501" width="5.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.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>sun/reflect/GeneratedMethodAccessor80:::invoke (61 samples, 0.07%)</title><rect x="1005.9" y="469" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1008.86" 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/apache/coyote/Request:::recycle (8 samples, 0.01%)</title><rect x="1182.5" y="1125" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.52" 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 (113 samples, 0.14%)</title><rect x="945.5" y="373" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.45" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/apache/http/client/utils/URLEncodedUtils:::parse (33 samples, 0.04%)</title><rect x="580.2" y="421" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="583.22" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_local_out (17 samples, 0.02%)</title><rect x="85.0" y="853" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.03" 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/ReflectiveOperationException:::<init> (68 samples, 0.08%)</title><rect x="116.1" y="373" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.06" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (21 samples, 0.03%)</title><rect x="1189.0" y="1157" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.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>do_syscall_64 (17 samples, 0.02%)</title><rect x="1147.2" y="453" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.17" 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>masked_flow_lookup (15 samples, 0.02%)</title><rect x="51.3" y="565" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.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>jlong_disjoint_arraycopy (43 samples, 0.05%)</title><rect x="947.1" y="437" width="0.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="950.12" 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>__netif_receive_skb (13 samples, 0.02%)</title><rect x="72.9" y="869" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.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>__netif_receive_skb_core (11 samples, 0.01%)</title><rect x="810.6" y="261" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.60" 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>handle_mm_fault (10 samples, 0.01%)</title><rect x="945.3" y="373" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.30" 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>start_thread (83,423 samples, 99.80%)</title><rect x="12.1" y="1365" width="1177.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.06" y="1375.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>SYSC_sendto (42 samples, 0.05%)</title><rect x="11.3" y="1301" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>page_fault (10 samples, 0.01%)</title><rect x="571.5" y="437" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.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>__kfree_skb (51 samples, 0.06%)</title><rect x="34.9" y="901" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.92" 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>__wake_up_common_lock (9 samples, 0.01%)</title><rect x="793.5" y="149" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.54" 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>irq_exit (31 samples, 0.04%)</title><rect x="290.6" y="357" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.61" 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_write_xmit (14 samples, 0.02%)</title><rect x="1184.8" y="869" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.78" 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/spi/codec/BinaryMessageEncoder6:::encodeMessage (54 samples, 0.06%)</title><rect x="82.0" y="1125" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="85.01" 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>page_fault (13 samples, 0.02%)</title><rect x="1105.8" y="485" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1108.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>ret_from_intr (10 samples, 0.01%)</title><rect x="475.3" y="373" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="478.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>com/ctrip/framework/clogging/agent/log/impl/CLoggingLogger$FreewayLogSender:::send (14 samples, 0.02%)</title><rect x="1137.8" y="549" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1140.78" 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>ip_finish_output (17 samples, 0.02%)</title><rect x="85.0" y="821" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>irq_exit (20 samples, 0.02%)</title><rect x="608.8" y="421" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.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>com/ctrip/framework/clogging/agent/log/impl/CLoggingLogger$FreewayLogSender:::send (23 samples, 0.03%)</title><rect x="124.0" y="565" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="127.04" 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>tcf_classify (26 samples, 0.03%)</title><rect x="51.8" y="629" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.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>i40e_napi_poll (8 samples, 0.01%)</title><rect x="290.1" y="277" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.11" 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>VM_Operation::evaluate (10 samples, 0.01%)</title><rect x="1189.6" y="1285" width="0.1" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.59" 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 (41 samples, 0.05%)</title><rect x="61.7" y="693" width="0.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>i40e_napi_poll (41 samples, 0.05%)</title><rect x="301.7" y="325" width="0.6" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.71" 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>irq_exit (17 samples, 0.02%)</title><rect x="301.3" y="357" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.26" 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_rcv (12 samples, 0.01%)</title><rect x="72.9" y="837" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="75.89" 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/URIBuilder:::digestURI (44 samples, 0.05%)</title><rect x="1156.1" y="469" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1159.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>com/fasterxml/jackson/databind/deser/std/StringDeserializer:::deserialize (452 samples, 0.54%)</title><rect x="963.6" y="453" width="6.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.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>java_lang_Throwable::fill_in_stack_trace (98 samples, 0.12%)</title><rect x="1135.3" y="469" width="1.4" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.33" 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 (32 samples, 0.04%)</title><rect x="1184.1" y="1125" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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/ctrip/framework/clogging/agent/log/impl/CommonLogger:::buildLogEvent (26 samples, 0.03%)</title><rect x="1138.0" y="549" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1140.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>pipe_write (13 samples, 0.02%)</title><rect x="1181.5" y="949" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.50" 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/es/apache/http/impl/nio/reactor/AbstractIOReactor:::processEvents (3,307 samples, 3.96%)</title><rect x="16.8" y="1173" width="46.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.85" y="1183.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>finish_task_switch (16 samples, 0.02%)</title><rect x="86.0" y="997" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.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>pthread_cond_timedwait@@GLIBC_2.3.2 (94 samples, 0.11%)</title><rect x="1186.0" y="1109" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.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>com/ctriposs/baiji/rpc/server/cat/ServiceCatUtils:::continueCatTransaction (30 samples, 0.04%)</title><rect x="102.9" y="693" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="105.95" 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 (45 samples, 0.05%)</title><rect x="1181.7" y="997" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>G1ParPreserveCMReferentsTask::work (8 samples, 0.01%)</title><rect x="12.6" y="1317" width="0.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.58" 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>net_rx_action (19 samples, 0.02%)</title><rect x="788.6" y="357" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.62" 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>napi_gro_flush (8 samples, 0.01%)</title><rect x="1106.9" y="389" width="0.1" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>tcp_v4_do_rcv (25 samples, 0.03%)</title><rect x="254.2" y="181" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.18" 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>do_futex (75 samples, 0.09%)</title><rect x="1147.6" y="421" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.64" 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>__handle_mm_fault (10 samples, 0.01%)</title><rect x="450.1" y="293" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.05" 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>java/util/regex/Pattern$Branch:::match (11 samples, 0.01%)</title><rect x="1136.9" y="501" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.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>ovs_dp_process_packet (10 samples, 0.01%)</title><rect x="73.6" y="757" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.64" 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/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::create (23 samples, 0.03%)</title><rect x="113.3" y="277" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.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>do_futex (9 samples, 0.01%)</title><rect x="1147.2" y="421" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.21" 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/String:::intern (15 samples, 0.02%)</title><rect x="99.0" y="757" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.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>__netif_receive_skb_core (9 samples, 0.01%)</title><rect x="73.9" y="853" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.85" 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/net/SocketOutputStream:::socketWrite0 (11 samples, 0.01%)</title><rect x="1134.0" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1136.97" 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/fasterxml/jackson/databind/deser/std/CollectionDeserializer:::deserialize (31,465 samples, 37.64%)</title><rect x="586.1" y="485" width="444.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="589.12" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/fasterxml/jackson/databind/deser/std/CollectionDeseriali..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/nio/ch/SelectorImpl:::select (211 samples, 0.25%)</title><rect x="91.2" y="1205" width="3.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="94.24" 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/reflect/generics/parser/SignatureParser:::parseTypeArgument (15 samples, 0.02%)</title><rect x="118.5" y="389" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.47" 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/io/ObjectStreamClass:::readNonProxy (27 samples, 0.03%)</title><rect x="578.3" y="389" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="581.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>dev_queue_xmit (15 samples, 0.02%)</title><rect x="61.8" y="549" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>java_lang_Throwable::fill_in_stack_trace (83 samples, 0.10%)</title><rect x="1107.6" y="485" width="1.2" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.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>java_lang_Throwable::fill_in_stack_trace (33 samples, 0.04%)</title><rect x="113.7" y="197" width="0.5" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.73" 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>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (73 samples, 0.09%)</title><rect x="573.5" y="373" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.52" 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>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (52 samples, 0.06%)</title><rect x="1143.2" y="453" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1146.20" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_rcv_established (12 samples, 0.01%)</title><rect x="813.9" y="213" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.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>JavaCalls::call_virtual (83,090 samples, 99.40%)</title><rect x="16.3" y="1301" width="1173.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1311.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>org/apache/catalina/connector/OutputBuffer:::doFlush (158 samples, 0.19%)</title><rect x="1174.3" y="613" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1177.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::parseLongName (36 samples, 0.04%)</title><rect x="559.5" y="405" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="562.50" 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/jackson/core/json/UTF8JsonGenerator:::_writeStringSegment (25 samples, 0.03%)</title><rect x="1141.7" y="453" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1144.68" 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>hrtimer_try_to_cancel (11 samples, 0.01%)</title><rect x="1187.0" y="997" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.04" 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>[libpthread-2.17.so] (17 samples, 0.02%)</title><rect x="10.3" y="1365" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.34" 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>org/apache/tomcat/util/http/NamesEnumerator:::findNext (16 samples, 0.02%)</title><rect x="1178.9" y="805" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1181.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>do_syscall_64 (59 samples, 0.07%)</title><rect x="57.6" y="1045" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (47 samples, 0.06%)</title><rect x="120.5" y="501" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_write (45 samples, 0.05%)</title><rect x="1157.7" y="341" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>netdev_frame_hook (8 samples, 0.01%)</title><rect x="549.3" y="213" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.33" 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/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::mappingCalc (1,456 samples, 1.74%)</title><rect x="1108.8" y="549" width="20.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1111.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>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl:::lambda$mappingCalc$6 (21 samples, 0.03%)</title><rect x="1118.6" y="437" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.55" 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>netdev_frame_hook (177 samples, 0.21%)</title><rect x="49.3" y="629" width="2.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.32" 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_v4_do_rcv (19 samples, 0.02%)</title><rect x="1107.2" y="293" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.22" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>jlong_disjoint_arraycopy (299 samples, 0.36%)</title><rect x="567.5" y="453" width="4.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="570.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>sun/reflect/generics/tree/ClassTypeSignature:::accept (17 samples, 0.02%)</title><rect x="118.9" y="421" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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>tcp_v4_do_rcv (12 samples, 0.01%)</title><rect x="549.5" y="181" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.53" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_rcv_established (9 samples, 0.01%)</title><rect x="469.8" y="165" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (12 samples, 0.01%)</title><rect x="115.7" y="341" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/util/regex/Pattern$GroupTail:::match (10 samples, 0.01%)</title><rect x="1177.2" y="581" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1180.24" 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_write_xmit (34 samples, 0.04%)</title><rect x="1175.7" y="309" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.73" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_rcv_established (23 samples, 0.03%)</title><rect x="254.2" y="165" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.18" 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>net_rx_action (8 samples, 0.01%)</title><rect x="986.8" y="389" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="989.76" 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>entry_SYSCALL_64_after_hwframe (44 samples, 0.05%)</title><rect x="76.6" y="1109" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.58" 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>__netif_receive_skb_core (15 samples, 0.02%)</title><rect x="11.4" y="965" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>pthread_cond_broadcast@@GLIBC_2.3.2 (60 samples, 0.07%)</title><rect x="57.6" y="1077" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.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>sun/nio/ch/SocketChannelImpl:::read (1,966 samples, 2.35%)</title><rect x="28.1" y="1109" width="27.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="31.10" y="1119.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>__softirqentry_text_start (10 samples, 0.01%)</title><rect x="607.3" y="389" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="610.28" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_exit_group (8 samples, 0.01%)</title><rect x="1189.9" y="1333" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>do_execute_actions (121 samples, 0.14%)</title><rect x="49.6" y="565" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.56" 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/tomcat/util/net/NioEndpoint$Poller:::cancelledKey (30 samples, 0.04%)</title><rect x="1184.6" y="1141" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>irq_exit (10 samples, 0.01%)</title><rect x="872.5" y="405" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.51" 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 (13 samples, 0.02%)</title><rect x="1189.1" y="1093" width="0.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>ip_output (24 samples, 0.03%)</title><rect x="1175.8" y="245" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.80" 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>sun/nio/ch/EPollSelectorImpl:::updateSelectedKeys (13 samples, 0.02%)</title><rect x="77.2" y="1157" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="80.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>com/google/gson/Gson:::getAdapter (34 samples, 0.04%)</title><rect x="113.1" y="293" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="116.11" 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>validate_xmit_skb_list (10 samples, 0.01%)</title><rect x="51.1" y="469" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.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>org/elasticsearch/client/RestClient:::performRequestAsyncNoCatch (416 samples, 0.50%)</title><rect x="576.1" y="501" width="5.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="579.13" 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 (8 samples, 0.01%)</title><rect x="1148.5" y="293" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1151.50" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (33 samples, 0.04%)</title><rect x="581.2" y="341" width="0.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.21" 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_local_deliver (26 samples, 0.03%)</title><rect x="254.2" y="229" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="257.17" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_IRQ (13 samples, 0.02%)</title><rect x="1117.6" y="389" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1120.59" 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>CollectedHeap::allocate_from_tlab_slow (11 samples, 0.01%)</title><rect x="449.7" y="309" width="0.2" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="452.70" 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>netdev_frame_hook (11 samples, 0.01%)</title><rect x="11.4" y="949" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.41" 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>i40e_napi_poll (55 samples, 0.07%)</title><rect x="813.1" y="357" width="0.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.07" 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>org/apache/catalina/core/StandardContextValve:::invoke (76,750 samples, 91.82%)</title><rect x="96.7" y="1077" width="1083.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="99.69" y="1087.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>tcp_v4_rcv (11 samples, 0.01%)</title><rect x="302.3" y="213" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.29" 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>java_lang_Throwable::fill_in_stack_trace (20 samples, 0.02%)</title><rect x="1183.2" y="997" width="0.2" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>__tcp_push_pending_frames (14 samples, 0.02%)</title><rect x="1184.8" y="885" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$516/1524993275:::apply (611 samples, 0.73%)</title><rect x="1118.9" y="453" width="8.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.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>java_lang_Throwable::fill_in_stack_trace (21 samples, 0.03%)</title><rect x="1183.1" y="1013" width="0.3" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.14" 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_IRQ (11 samples, 0.01%)</title><rect x="963.2" y="405" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.16" 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>process_backlog (9 samples, 0.01%)</title><rect x="251.4" y="309" width="0.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.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>vfs_write (21 samples, 0.03%)</title><rect x="83.7" y="1045" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (17,276 samples, 20.67%)</title><rect x="319.1" y="421" width="243.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="322.09" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/es/jackson/core/json/U..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::getBoundFields (231 samples, 0.28%)</title><rect x="112.7" y="357" width="3.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_write_xmit (31 samples, 0.04%)</title><rect x="1181.9" y="821" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.90" 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_common_lock (8 samples, 0.01%)</title><rect x="788.7" y="149" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.71" 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>dev_queue_xmit (13 samples, 0.02%)</title><rect x="562.2" y="117" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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>dev_queue_xmit_nit (30 samples, 0.04%)</title><rect x="52.8" y="709" width="0.5" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.84" 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>__netif_receive_skb (12 samples, 0.01%)</title><rect x="302.0" y="261" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.98" 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>do_IRQ (22 samples, 0.03%)</title><rect x="558.5" y="373" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.52" 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>com/google/gson/internal/Excluder:::excludeClass (14 samples, 0.02%)</title><rect x="108.7" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="111.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>do_syscall_64 (87 samples, 0.10%)</title><rect x="1147.6" y="453" width="1.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>vfs_read (10 samples, 0.01%)</title><rect x="1183.6" y="981" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.56" 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>BacktraceBuilder::push (22 samples, 0.03%)</title><rect x="116.5" y="277" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.48" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/String:::join (10 samples, 0.01%)</title><rect x="1145.1" y="517" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1148.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>vfs_write (20 samples, 0.02%)</title><rect x="1175.1" y="469" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.05" 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/client/InternalHttpAsyncClient:::execute (341 samples, 0.41%)</title><rect x="577.1" y="469" width="4.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="580.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>try_to_wake_up (40 samples, 0.05%)</title><rect x="57.9" y="981" width="0.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="60.87" 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 (8 samples, 0.01%)</title><rect x="468.8" y="149" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.80" 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/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (780 samples, 0.93%)</title><rect x="814.3" y="453" width="11.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="817.27" 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_IRQ (50 samples, 0.06%)</title><rect x="468.5" y="357" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.53" 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_v4_do_rcv (12 samples, 0.01%)</title><rect x="469.0" y="165" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.02" 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>com/ctrip/framework/clogging/agent/util/CatTagHelper:::addCatTag (13 samples, 0.02%)</title><rect x="1109.4" y="485" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.45" 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 (31 samples, 0.04%)</title><rect x="50.3" y="453" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="53.30" 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_after_hwframe (17 samples, 0.02%)</title><rect x="86.4" y="1125" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.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>ret_from_intr (18 samples, 0.02%)</title><rect x="32.9" y="1061" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="35.94" 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 (8 samples, 0.01%)</title><rect x="1187.5" y="1093" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>ovs_dp_process_packet (8 samples, 0.01%)</title><rect x="1175.9" y="37" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.88" 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>i40e_napi_poll (50 samples, 0.06%)</title><rect x="561.8" y="325" width="0.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="564.81" 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/catalina/core/ApplicationFilterChain:::internalDoFilter (76,663 samples, 91.72%)</title><rect x="97.4" y="901" width="1082.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.40" y="911.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>ret_from_intr (34 samples, 0.04%)</title><rect x="810.4" y="421" width="0.5" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.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>sun/nio/ch/EPollArrayWrapper:::interrupt (34 samples, 0.04%)</title><rect x="581.2" y="373" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.20" 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/Class:::getSimpleBinaryName (8 samples, 0.01%)</title><rect x="108.8" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="111.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>do_futex (36 samples, 0.04%)</title><rect x="79.1" y="1045" width="0.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.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>pthread_cond_broadcast@@GLIBC_2.3.2 (26 samples, 0.03%)</title><rect x="90.7" y="1109" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.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>schedule (259 samples, 0.31%)</title><rect x="70.3" y="1013" width="3.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="73.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>Unsafe_Unpark (30 samples, 0.04%)</title><rect x="90.7" y="1125" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.66" 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/GeneratedMethodAccessor79:::invoke (22 samples, 0.03%)</title><rect x="978.1" y="453" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="981.12" 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>napi_gro_receive (14 samples, 0.02%)</title><rect x="948.7" y="325" width="0.2" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.70" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_rcv_finish (12 samples, 0.01%)</title><rect x="788.7" y="277" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.69" 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>com/fasterxml/jackson/databind/deser/std/StringCollectionDeserializer:::deserialize (27 samples, 0.03%)</title><rect x="1163.8" y="501" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1166.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>org/elasticsearch/search/builder/SearchSourceBuilder:::toXContent (108 samples, 0.13%)</title><rect x="573.1" y="469" width="1.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.05" 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>CodeCache::find_blob (16 samples, 0.02%)</title><rect x="111.6" y="325" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="114.61" 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_syscall_64 (44 samples, 0.05%)</title><rect x="11.3" y="1333" width="0.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>com/ctriposs/baiji/specific/SpecificJsonWriter:::write (217 samples, 0.26%)</title><rect x="1173.5" y="629" width="3.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.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>ovs_dp_process_packet (152 samples, 0.18%)</title><rect x="49.4" y="597" width="2.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.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>__dev_queue_xmit (8 samples, 0.01%)</title><rect x="1106.7" y="197" width="0.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.72" 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>entry_SYSCALL_64_after_hwframe (22 samples, 0.03%)</title><rect x="1175.0" y="517" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.04" 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/Formatter:::format (38 samples, 0.05%)</title><rect x="1176.9" y="661" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1179.89" 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/HashMap$EntrySpliterator:::forEachRemaining (642 samples, 0.77%)</title><rect x="1118.5" y="485" width="9.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.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>__netif_receive_skb_core (29 samples, 0.03%)</title><rect x="792.7" y="261" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.70" 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>com/dianping/cat/aggregator/DefaultLocalAggregator:::analyzerProcessTransaction (84 samples, 0.10%)</title><rect x="99.2" y="773" width="1.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.22" 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/StandardWrapperValve:::invoke (76,747 samples, 91.82%)</title><rect x="96.7" y="1061" width="1083.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="99.73" y="1071.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>StringTable::intern (15 samples, 0.02%)</title><rect x="117.1" y="357" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.13" 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/reflect/GeneratedMethodAccessor83:::invoke (23 samples, 0.03%)</title><rect x="979.4" y="453" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="982.40" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ret_from_intr (45 samples, 0.05%)</title><rect x="73.4" y="965" width="0.6" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.36" 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>credis/java/client/config/route/DefaultRoute:::getV3GroupIdByKey (15 samples, 0.02%)</title><rect x="1131.7" y="549" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1134.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>__softirqentry_text_start (31 samples, 0.04%)</title><rect x="290.6" y="341" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.61" 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>__GI___strcasecmp_l (171 samples, 0.20%)</title><rect x="25.1" y="1077" width="2.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="28.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>com/ctrip/framework/clogging/agent/util/CatTagHelper:::addCatTag (15 samples, 0.02%)</title><rect x="124.4" y="549" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="127.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>com/google/gson/Gson:::<init> (22 samples, 0.03%)</title><rect x="108.3" y="565" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="111.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>org/apache/coyote/http11/AbstractHttp11Processor:::prepareRequest (11 samples, 0.01%)</title><rect x="1182.6" y="1125" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.63" 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_Class_forName0 (26 samples, 0.03%)</title><rect x="578.7" y="373" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="581.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/dianping/cat/message/io/NettyMessageTreeSender:::send (307 samples, 0.37%)</title><rect x="79.7" y="1173" width="4.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.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>do_syscall_64 (17 samples, 0.02%)</title><rect x="86.4" y="1109" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.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>entry_SYSCALL_64_after_hwframe (14 samples, 0.02%)</title><rect x="94.0" y="1141" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="96.97" 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/GeneratedMethodAccessor86:::invoke (51 samples, 0.06%)</title><rect x="1012.2" y="469" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1015.24" 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>i40e_napi_poll (79 samples, 0.09%)</title><rect x="792.2" y="341" width="1.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.16" 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_write_xmit (33 samples, 0.04%)</title><rect x="11.3" y="1189" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>ip_finish_output2 (23 samples, 0.03%)</title><rect x="1175.8" y="213" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.81" 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>__netif_receive_skb_core (22 samples, 0.03%)</title><rect x="949.0" y="325" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.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>java/io/ObjectStreamField:::<init> (8 samples, 0.01%)</title><rect x="1155.0" y="341" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.00" 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>__fdget_pos (11 samples, 0.01%)</title><rect x="33.7" y="997" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.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>__dev_queue_xmit (11 samples, 0.01%)</title><rect x="946.0" y="117" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.03" 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>sys_write (51 samples, 0.06%)</title><rect x="1175.6" y="469" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.59" 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/utils/URIBuilder:::digestURI (34 samples, 0.04%)</title><rect x="580.2" y="437" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="583.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>java/util/HashMap:::afterNodeInsertion (183 samples, 0.22%)</title><rect x="401.1" y="389" width="2.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="404.08" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_v4_rcv (32 samples, 0.04%)</title><rect x="946.5" y="229" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.54" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_exit (8 samples, 0.01%)</title><rect x="1189.9" y="1301" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>Unsafe_Unpark (8 samples, 0.01%)</title><rect x="1187.5" y="1157" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>java/lang/Thread:::run (77,452 samples, 92.66%)</title><rect x="94.2" y="1237" width="1093.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="97.22" y="1247.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>InstanceKlass::allocate_instance (14 samples, 0.02%)</title><rect x="449.7" y="325" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="452.68" 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>kfree_skbmem (11 samples, 0.01%)</title><rect x="34.9" y="885" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.92" 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>do_syscall_64 (15 samples, 0.02%)</title><rect x="1181.5" y="1013" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.47" 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 (12 samples, 0.01%)</title><rect x="78.1" y="1061" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>com/fasterxml/jackson/databind/type/TypeFactory:::_fromClass (8 samples, 0.01%)</title><rect x="1031.0" y="501" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.96" 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/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$538/1930464743:::test (132 samples, 0.16%)</title><rect x="1129.5" y="517" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1132.48" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>irq_exit (12 samples, 0.01%)</title><rect x="1092.7" y="469" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.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>ep_poll (70 samples, 0.08%)</title><rect x="92.4" y="1093" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>sun/reflect/generics/parser/SignatureParser:::parseClassTypeSignature (15 samples, 0.02%)</title><rect x="120.2" y="485" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>org/elasticsearch/index/query/BoolQueryBuilder:::doXContent (99 samples, 0.12%)</title><rect x="573.2" y="453" width="1.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.18" 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_vport_receive (12 samples, 0.01%)</title><rect x="73.6" y="773" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.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/util/HashMap:::put (24 samples, 0.03%)</title><rect x="76.2" y="1125" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.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>com/ctriposs/baiji/rpc/server/plugin/ratelimiter/AbstractRateLimiter:::isRateLimited (21 samples, 0.03%)</title><rect x="105.1" y="661" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="108.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>TypeArrayKlass::allocate_common (9 samples, 0.01%)</title><rect x="283.0" y="341" width="0.1" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="285.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>__softirqentry_text_start (21 samples, 0.03%)</title><rect x="558.5" y="341" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.52" 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_rcv_finish (9 samples, 0.01%)</title><rect x="73.9" y="821" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.85" 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>itable stub (10 samples, 0.01%)</title><rect x="1118.3" y="485" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.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>net_rx_action (60 samples, 0.07%)</title><rect x="527.9" y="325" width="0.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="530.89" 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>sys_read (14 samples, 0.02%)</title><rect x="94.0" y="1109" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="96.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>com/ctriposs/baiji/rpc/client/ribbon/HttpContextFilter:::doFilter (76,680 samples, 91.74%)</title><rect x="97.2" y="949" width="1082.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.16" y="959.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>sock_read_iter (10 samples, 0.01%)</title><rect x="1183.6" y="949" width="0.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.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>irq_exit (10 samples, 0.01%)</title><rect x="276.5" y="357" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="279.50" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_IRQ (12 samples, 0.01%)</title><rect x="290.1" y="341" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::nextToken (1,311 samples, 1.57%)</title><rect x="590.5" y="469" width="18.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="593.54" 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>skb_copy_datagram_iter (143 samples, 0.17%)</title><rect x="44.8" y="885" width="2.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.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>task_work_run (21 samples, 0.03%)</title><rect x="1184.7" y="1013" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>do_IRQ (113 samples, 0.14%)</title><rect x="945.5" y="405" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>[libpthread-2.17.so] (24 samples, 0.03%)</title><rect x="83.6" y="1109" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.63" 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_finish_output (23 samples, 0.03%)</title><rect x="1175.8" y="229" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.81" 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>napi_gro_receive (20 samples, 0.02%)</title><rect x="528.0" y="277" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.03" 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>dev_hard_start_xmit (59 samples, 0.07%)</title><rect x="50.3" y="469" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="53.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>com/ctrip/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$503/1540633696:::apply (22 samples, 0.03%)</title><rect x="1118.5" y="453" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.54" 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>__netif_receive_skb (29 samples, 0.03%)</title><rect x="792.7" y="277" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.70" 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_Class_forName0 (16 samples, 0.02%)</title><rect x="120.9" y="437" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.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>i40e_napi_poll (14 samples, 0.02%)</title><rect x="558.5" y="309" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.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>com/fasterxml/jackson/databind/ObjectMapper:::_configAndWriteValue (13 samples, 0.02%)</title><rect x="1109.7" y="501" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.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>ip_rcv_finish (18 samples, 0.02%)</title><rect x="528.4" y="245" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.41" 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>__fget (11 samples, 0.01%)</title><rect x="33.7" y="965" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.70" 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>os::sleep (27 samples, 0.03%)</title><rect x="77.9" y="1157" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="80.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>org/apache/coyote/http11/AbstractHttp11Processor:::action (79 samples, 0.09%)</title><rect x="1181.3" y="1109" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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/es/apache/http/client/utils/URLEncodedUtils:::urlDecode (21 samples, 0.03%)</title><rect x="1156.2" y="437" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1159.19" 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>irq_exit (94 samples, 0.11%)</title><rect x="812.9" y="405" width="1.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="815.91" 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/internal/DefaultTransaction:::complete (20 samples, 0.02%)</title><rect x="104.6" y="677" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="107.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>__netif_receive_skb (9 samples, 0.01%)</title><rect x="378.2" y="309" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" 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>pthread_cond_broadcast@@GLIBC_2.3.2 (23 samples, 0.03%)</title><rect x="100.8" y="725" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.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>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (31,105 samples, 37.21%)</title><rect x="128.4" y="453" width="439.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.40" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (285 samples, 0.34%)</title><rect x="563.5" y="437" width="4.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="566.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>irq_exit (92 samples, 0.11%)</title><rect x="561.6" y="373" width="1.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="564.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>vfs_write (49 samples, 0.06%)</title><rect x="1175.6" y="453" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>inet_ntop (15 samples, 0.02%)</title><rect x="75.1" y="1125" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="78.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>com/google/gson/internal/bind/CollectionTypeAdapterFactory:::create (135 samples, 0.16%)</title><rect x="110.0" y="469" width="1.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.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>finish_task_switch (37 samples, 0.04%)</title><rect x="92.9" y="1013" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>net_rx_action (44 samples, 0.05%)</title><rect x="61.6" y="725" width="0.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.64" 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>update_blocked_averages (8 samples, 0.01%)</title><rect x="251.5" y="293" width="0.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.53" 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>tcp_push (34 samples, 0.04%)</title><rect x="1175.7" y="341" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.73" 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>dev_queue_xmit (8 samples, 0.01%)</title><rect x="11.6" y="1077" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>__netif_receive_skb_core (8 samples, 0.01%)</title><rect x="251.4" y="277" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.40" 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>com/ctrip/es/jackson/core/JsonGenerator:::copyCurrentStructure (27 samples, 0.03%)</title><rect x="1141.2" y="453" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1144.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb (17 samples, 0.02%)</title><rect x="1106.7" y="357" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.68" 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/util/regex/Pattern$Branch:::match (9 samples, 0.01%)</title><rect x="1177.2" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1180.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>Dictionary::find (9 samples, 0.01%)</title><rect x="1155.2" y="261" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.24" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (26 samples, 0.03%)</title><rect x="90.7" y="1093" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.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>com/dianping/cat/servlet/CatFilter$CatHandler$2:::handle (76,652 samples, 91.70%)</title><rect x="97.5" y="853" width="1082.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="100.52" y="863.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>com/ctrip/framework/clogging/agent/MessageConsumer:::run (41 samples, 0.05%)</title><rect x="88.1" y="1221" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="91.07" 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_syscall_64 (58 samples, 0.07%)</title><rect x="1188.1" y="1141" width="0.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.08" 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/EPollSelectorImpl:::doSelect (102 samples, 0.12%)</title><rect x="1187.8" y="1205" width="1.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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/lang/String:::hashCode (12 samples, 0.01%)</title><rect x="56.1" y="1141" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="59.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>entry_SYSCALL_64_after_hwframe (56 samples, 0.07%)</title><rect x="1175.6" y="501" width="0.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>__statvfs_getflags (45 samples, 0.05%)</title><rect x="1134.3" y="421" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.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>futex_wait_queue_me (30 samples, 0.04%)</title><rect x="87.5" y="997" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.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>tcp_cleanup_rbuf (523 samples, 0.63%)</title><rect x="46.9" y="901" width="7.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="49.86" 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/fasterxml/jackson/databind/ObjectMapper:::_readMapAndClose (413 samples, 0.49%)</title><rect x="1160.0" y="549" width="5.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1162.97" 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>irq_exit (14 samples, 0.02%)</title><rect x="176.0" y="357" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="178.96" 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_local_deliver (8 samples, 0.01%)</title><rect x="290.9" y="229" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.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>YoungList::rs_length_sampling_next (9 samples, 0.01%)</title><rect x="12.1" y="1301" width="0.1" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.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>do_IRQ (64 samples, 0.08%)</title><rect x="301.6" y="389" width="0.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.64" 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>ret_from_intr (95 samples, 0.11%)</title><rect x="1106.2" y="501" width="1.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.19" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>futex_wait_queue_me (41 samples, 0.05%)</title><rect x="575.3" y="357" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="578.31" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__softirqentry_text_start (92 samples, 0.11%)</title><rect x="561.6" y="357" width="1.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="564.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>com/ctrip/hotel/htlorgarea/data/elastic/impl/HotelBasicInfoRepoImpl$$Lambda$306/1541562650:::call (1,500 samples, 1.79%)</title><rect x="1138.5" y="549" width="21.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1141.47" 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/ctriposs/baiji/specific/SpecificJsonReader:::readRecord (24 samples, 0.03%)</title><rect x="1171.9" y="645" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1174.89" 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/stream/AbstractPipeline:::evaluate (127 samples, 0.15%)</title><rect x="1129.6" y="501" width="1.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1132.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>do_output (113 samples, 0.14%)</title><rect x="49.7" y="549" width="1.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.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>org/apache/tomcat/util/buf/StringCache:::findClosest (9 samples, 0.01%)</title><rect x="1179.0" y="773" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1181.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>com/ctrip/es/apache/http/client/protocol/RequestAddCookies:::process (37 samples, 0.04%)</title><rect x="1151.0" y="469" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1153.95" 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 (21 samples, 0.03%)</title><rect x="1184.7" y="1061" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>ret_from_intr (159 samples, 0.19%)</title><rect x="791.9" y="421" width="2.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="794.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>net_rx_action (13 samples, 0.02%)</title><rect x="44.5" y="789" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.47" 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 (79 samples, 0.09%)</title><rect x="52.8" y="757" width="1.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.76" 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>irq_exit (64 samples, 0.08%)</title><rect x="301.6" y="373" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.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>irq_exit (22 samples, 0.03%)</title><rect x="251.3" y="357" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.34" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ret_from_intr (12 samples, 0.01%)</title><rect x="525.5" y="373" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.46" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_skipColon2 (82 samples, 0.10%)</title><rect x="811.8" y="437" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="814.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>tcp_v4_rcv (15 samples, 0.02%)</title><rect x="949.1" y="245" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.07" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ret_from_intr (22 samples, 0.03%)</title><rect x="450.2" y="357" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.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>BacktraceBuilder::push (56 samples, 0.07%)</title><rect x="1166.6" y="453" width="0.8" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.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_IRQ (12 samples, 0.01%)</title><rect x="525.5" y="357" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.46" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/index/query/BoolQueryBuilder:::doXArrayContent (13 samples, 0.02%)</title><rect x="1146.3" y="469" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.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>sock_sendmsg (43 samples, 0.05%)</title><rect x="1181.7" y="917" width="0.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.73" 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>ip_output (36 samples, 0.04%)</title><rect x="60.0" y="837" width="0.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.04" 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/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (71 samples, 0.08%)</title><rect x="87.0" y="1157" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.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/es/jackson/core/io/NumberOutput:::_leading3 (20 samples, 0.02%)</title><rect x="277.4" y="389" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="280.42" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ovs_vport_receive (26 samples, 0.03%)</title><rect x="792.7" y="229" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.70" 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>ovs_vport_receive (9 samples, 0.01%)</title><rect x="468.8" y="181" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.80" 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>__softirqentry_text_start (22 samples, 0.03%)</title><rect x="251.3" y="341" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.34" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>GenericTaskQueueSet<OverflowTaskQueue<StarTask, (12 samples, 0.01%)</title><rect x="14.6" y="1285" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
|
|
<text text-anchor="" x="17.63" 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 (19 samples, 0.02%)</title><rect x="86.3" y="1157" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.33" 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 (8 samples, 0.01%)</title><rect x="701.3" y="325" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.30" 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_page_fault (25 samples, 0.03%)</title><rect x="945.1" y="405" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.10" 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>ConcurrentG1RefineThread::run (10 samples, 0.01%)</title><rect x="12.1" y="1333" width="0.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.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>sun/reflect/GeneratedMethodAccessor129:::invoke (75,325 samples, 90.11%)</title><rect x="107.6" y="597" width="1063.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.60" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun/reflect/GeneratedMethodAccessor129:::invoke</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>netdev_frame_hook (9 samples, 0.01%)</title><rect x="1175.9" y="69" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.88" 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>org/elasticsearch/index/query/IdsQueryBuilder:::doXContent (11 samples, 0.01%)</title><rect x="1146.3" y="437" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.31" 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>[snappy-1.1.2-d23b6898-4268-4147-bcd2-77196ffb4a63-libsnappyjava.so] (38 samples, 0.05%)</title><rect x="10.6" y="1349" width="0.5" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.58" 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/Excluder:::create (15 samples, 0.02%)</title><rect x="108.7" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="111.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>__netif_receive_skb_core (9 samples, 0.01%)</title><rect x="608.9" y="341" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.92" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ovs_dp_process_packet (10 samples, 0.01%)</title><rect x="810.6" y="213" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.60" 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/dianping/cat/message/io/DefaultTreeSender$MergeAtomicTask:::run (43 samples, 0.05%)</title><rect x="77.7" y="1205" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="80.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>sun/reflect/GeneratedConstructorAccessor54:::newInstance (57 samples, 0.07%)</title><rect x="988.6" y="469" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="991.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>netdev_frame_hook (10 samples, 0.01%)</title><rect x="60.2" y="661" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.19" 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/message/spi/codec/BinaryMessageEncoder6$Codec$4:::encode (25 samples, 0.03%)</title><rect x="82.2" y="1109" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="85.19" 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/concurrent/ArrayBlockingQueue:::offer (26 samples, 0.03%)</title><rect x="100.8" y="773" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.76" 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>net_rx_action (10 samples, 0.01%)</title><rect x="701.3" y="373" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.27" 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>com/ctrip/es/apache/http/message/TokenParser:::parseToken (9 samples, 0.01%)</title><rect x="580.4" y="405" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="583.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>irq_exit (9 samples, 0.01%)</title><rect x="1000.0" y="421" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1003.03" 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_rcv_established (17 samples, 0.02%)</title><rect x="1107.2" y="277" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.22" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>i40e_napi_poll (12 samples, 0.01%)</title><rect x="825.0" y="357" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="828.01" 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>org/elasticsearch/client/RestClient$SyncResponseListener:::get (109 samples, 0.13%)</title><rect x="574.6" y="501" width="1.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="577.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>process_backlog (12 samples, 0.01%)</title><rect x="469.8" y="309" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.81" 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_lang_Throwable::fill_in_stack_trace (160 samples, 0.19%)</title><rect x="1165.9" y="485" width="2.3" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.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>JVM_FillInStackTrace (42 samples, 0.05%)</title><rect x="1031.1" y="469" width="0.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.09" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/hotel/htlorgarea/service/utils/TraceUtility:::writeLog (1,134 samples, 1.36%)</title><rect x="107.7" y="581" width="16.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.72" 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/client/AbstractClientExchangeHandler$1:::completed (43 samples, 0.05%)</title><rect x="581.1" y="421" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.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>java/util/HashMap:::resize (12 samples, 0.01%)</title><rect x="1143.7" y="421" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1146.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/ctrip/es/apache/http/impl/nio/conn/PoolingNHttpClientConnectionManager:::releaseConnection (32 samples, 0.04%)</title><rect x="19.5" y="1109" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="22.50" 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>__netif_receive_skb (14 samples, 0.02%)</title><rect x="1175.9" y="101" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.85" 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>__softirqentry_text_start (19 samples, 0.02%)</title><rect x="1181.9" y="661" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.94" 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>ip_rcv (35 samples, 0.04%)</title><rect x="946.5" y="293" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.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>net_rx_action (21 samples, 0.03%)</title><rect x="60.1" y="725" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.11" 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 (8 samples, 0.01%)</title><rect x="1189.9" y="1365" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>net_rx_action (9 samples, 0.01%)</title><rect x="475.3" y="309" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="478.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>DirtyCardQueueSet::apply_closure_to_completed_buffer_helper (43 samples, 0.05%)</title><rect x="15.4" y="1237" width="0.6" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.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>process_backlog (17 samples, 0.02%)</title><rect x="1182.0" y="629" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.97" 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_IRQ (20 samples, 0.02%)</title><rect x="608.8" y="437" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_syscall_64 (24 samples, 0.03%)</title><rect x="83.6" y="1077" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.63" 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>i40e_clean_rx_irq (23 samples, 0.03%)</title><rect x="528.0" y="293" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.00" 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/tomcat/util/buf/StringCache:::findClosest (8 samples, 0.01%)</title><rect x="1179.4" y="805" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1182.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>com/ctrip/es/jackson/core/io/NumberOutput:::_full3 (55 samples, 0.07%)</title><rect x="276.6" y="389" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="279.64" 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_IRQ (12 samples, 0.01%)</title><rect x="27.3" y="1045" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="30.32" 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_dp_process_packet (23 samples, 0.03%)</title><rect x="61.8" y="629" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.75" 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>__softirqentry_text_start (40 samples, 0.05%)</title><rect x="549.2" y="341" width="0.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.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>wake_up_q (20 samples, 0.02%)</title><rect x="100.8" y="645" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.80" 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/hotel/htlorgarea/core/service/impl/HotelAreaMappingCalcServiceImpl$$Lambda$491/1448559568:::test (535 samples, 0.64%)</title><rect x="1110.4" y="485" width="7.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1113.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::nextToken (100 samples, 0.12%)</title><rect x="1143.1" y="469" width="1.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1146.06" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/core/util/TextBuffer:::contentsAsString (248 samples, 0.30%)</title><rect x="966.3" y="437" width="3.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="969.30" 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>__irqentry_text_start (17 samples, 0.02%)</title><rect x="378.2" y="405" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.24" 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>____fput (21 samples, 0.03%)</title><rect x="1184.7" y="997" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.68" 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>vtable stub (29 samples, 0.03%)</title><rect x="1165.4" y="533" width="0.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.39" 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/misc/Unsafe:::park (150 samples, 0.18%)</title><rect x="1185.3" y="1141" width="2.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.34" 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 (68 samples, 0.08%)</title><rect x="1186.3" y="1061" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.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>__handle_mm_fault (9 samples, 0.01%)</title><rect x="945.3" y="357" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.31" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_finish_output2 (62 samples, 0.07%)</title><rect x="61.6" y="805" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.57" 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>thread_entry (83,090 samples, 99.40%)</title><rect x="16.3" y="1317" width="1173.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="19.32" y="1327.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>ret_from_intr (67 samples, 0.08%)</title><rect x="527.8" y="389" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="530.81" 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/lucene/util/BytesRef:::utf8ToString (31 samples, 0.04%)</title><rect x="1137.3" y="549" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1140.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>__libc_close (18 samples, 0.02%)</title><rect x="86.3" y="1141" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.34" 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>__netif_receive_skb_core (9 samples, 0.01%)</title><rect x="528.2" y="229" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.17" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap:::_findWithAlias (9 samples, 0.01%)</title><rect x="872.7" y="437" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.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>credis/java/client/sync/util/SyncServerUtils:::printingExecuteSuccess (43 samples, 0.05%)</title><rect x="1132.1" y="517" width="0.6" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1135.08" 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/HashSet:::iterator (15 samples, 0.02%)</title><rect x="63.1" y="1157" width="0.3" height="15.0" fill="rgb(77,224,77)" 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>i40e_napi_poll (9 samples, 0.01%)</title><rect x="44.5" y="773" width="0.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.47" 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>__softirqentry_text_start (158 samples, 0.19%)</title><rect x="791.9" y="373" width="2.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="794.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>napi_gro_receive (35 samples, 0.04%)</title><rect x="253.5" y="277" width="0.5" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.52" 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>com/dianping/cat/servlet/CatFilter$CatHandler$3:::handle (76,333 samples, 91.32%)</title><rect x="101.2" y="821" width="1077.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="104.24" y="831.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>io/netty/channel/AbstractChannelHandlerContext:::write (36 samples, 0.04%)</title><rect x="83.5" y="1157" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.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>netdev_frame_hook (12 samples, 0.01%)</title><rect x="973.4" y="277" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.38" 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>netdev_frame_hook (15 samples, 0.02%)</title><rect x="1106.7" y="325" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.70" 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>tcp_sendmsg_locked (113 samples, 0.14%)</title><rect x="61.1" y="949" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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>com/ctrip/es/jackson/core/json/JsonReadContext:::_checkDup (6,867 samples, 8.22%)</title><rect x="378.5" y="405" width="96.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="381.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctrip/e..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_IRQ (67 samples, 0.08%)</title><rect x="527.8" y="373" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="530.81" 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_sendmsg (115 samples, 0.14%)</title><rect x="61.1" y="965" width="1.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.09" 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>i40e_clean_rx_irq (41 samples, 0.05%)</title><rect x="945.7" y="325" width="0.6" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.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>__tcp_push_pending_frames (34 samples, 0.04%)</title><rect x="1175.7" y="325" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.73" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (23 samples, 0.03%)</title><rect x="100.8" y="709" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.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>ip_rcv_finish (22 samples, 0.03%)</title><rect x="813.9" y="293" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.87" 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/message/internal/DefaultMessageManager$Context:::add (10 samples, 0.01%)</title><rect x="106.3" y="677" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="109.35" 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/reflect/generics/parser/SignatureParser:::parseFieldTypeSignature (17 samples, 0.02%)</title><rect x="120.2" y="501" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/dianping/cat/servlet/CatFilter$CatHandler$4:::restoreTraceContext (19 samples, 0.02%)</title><rect x="1178.8" y="821" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1181.82" 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>__netif_receive_skb_core (19 samples, 0.02%)</title><rect x="562.2" y="245" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.20" 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>com/ctrip/es/apache/http/impl/nio/reactor/IOSessionImpl:::setEvent (67 samples, 0.08%)</title><rect x="1157.4" y="421" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/GeneratedMethodAccessor74:::invoke (22 samples, 0.03%)</title><rect x="976.0" y="453" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="979.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>com/google/gson/internal/Excluder:::create (8 samples, 0.01%)</title><rect x="112.5" y="373" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>vfs_read (1,462 samples, 1.75%)</title><rect x="34.0" y="997" width="20.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.01" 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_Throwable::fill_in_stack_trace (80 samples, 0.10%)</title><rect x="1107.7" y="469" width="1.1" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1110.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_lang_Throwable::fill_in_stack_trace (68 samples, 0.08%)</title><rect x="116.1" y="309" width="0.9" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="119.06" 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>i40e_napi_poll (15 samples, 0.02%)</title><rect x="450.2" y="277" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.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>org/elasticsearch/index/query/QueryBuilders:::termsQuery (16 samples, 0.02%)</title><rect x="126.1" y="517" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="129.05" 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>process_backlog (15 samples, 0.02%)</title><rect x="11.4" y="997" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>process_backlog (15 samples, 0.02%)</title><rect x="788.7" y="341" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.67" 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>_raw_spin_unlock_irqrestore (12 samples, 0.01%)</title><rect x="1181.5" y="901" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.50" 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>process_backlog (19 samples, 0.02%)</title><rect x="60.1" y="709" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.14" 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/HashMap:::newNode (12 samples, 0.01%)</title><rect x="76.3" y="1109" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="79.31" 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_v4_rcv (12 samples, 0.01%)</title><rect x="788.7" y="229" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.69" 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>org/apache/tomcat/util/net/NioBlockingSelector$BlockPoller:::events (13 samples, 0.02%)</title><rect x="1187.6" y="1221" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.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>sys_accept (18 samples, 0.02%)</title><rect x="89.4" y="1125" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>__vfs_write (26 samples, 0.03%)</title><rect x="1184.1" y="1029" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>net_rx_action (144 samples, 0.17%)</title><rect x="792.1" y="357" width="2.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.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>com/ctrip/es/apache/http/impl/nio/codecs/LengthDelimitedDecoder:::read (1,990 samples, 2.38%)</title><rect x="27.8" y="1125" width="28.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="30.76" y="1135.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>jbyte_disjoint_arraycopy (61 samples, 0.07%)</title><rect x="252.0" y="373" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="255.02" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>napi_gro_receive (13 samples, 0.02%)</title><rect x="468.8" y="261" width="0.1" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.76" 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>sys_write (15 samples, 0.02%)</title><rect x="1181.5" y="997" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.47" 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>vfs_write (36 samples, 0.04%)</title><rect x="84.8" y="1045" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.79" 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:::collect (801 samples, 0.96%)</title><rect x="1118.1" y="533" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.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>__libc_close (1,550 samples, 1.85%)</title><rect x="33.3" y="1061" width="21.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.34" 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:::format (38 samples, 0.05%)</title><rect x="1176.9" y="677" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1179.89" 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>tcp_close (17 samples, 0.02%)</title><rect x="1184.7" y="917" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.73" 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>irq_exit (67 samples, 0.08%)</title><rect x="527.8" y="357" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="530.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>tcp_v4_do_rcv (11 samples, 0.01%)</title><rect x="788.7" y="213" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="791.70" 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/fasterxml/jackson/databind/deser/BeanDeserializerBase:::handleUnknownVanilla (10 samples, 0.01%)</title><rect x="980.9" y="469" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="983.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>java_start (83,423 samples, 99.80%)</title><rect x="12.1" y="1349" width="1177.6" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
|
|
<text text-anchor="" x="15.06" y="1359.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>tcp_rcv_established (12 samples, 0.01%)</title><rect x="549.5" y="165" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.53" 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>process_backlog (26 samples, 0.03%)</title><rect x="528.4" y="309" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.37" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_new_array_Java (180 samples, 0.22%)</title><rect x="24.9" y="1109" width="2.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="27.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>netdev_frame_hook (8 samples, 0.01%)</title><rect x="1106.9" y="309" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_parseNumber2 (15 samples, 0.02%)</title><rect x="608.6" y="453" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="611.55" 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>netif_receive_skb_internal (12 samples, 0.01%)</title><rect x="302.0" y="277" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.98" 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>_raw_spin_unlock_irqrestore (9 samples, 0.01%)</title><rect x="793.5" y="133" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.54" 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>ip_finish_output (24 samples, 0.03%)</title><rect x="1181.9" y="741" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.93" 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>__libc_recv (88 samples, 0.11%)</title><rect x="92.3" y="1157" width="1.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.29" 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>ip_rcv (21 samples, 0.03%)</title><rect x="528.4" y="261" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.37" 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>ovs_vport_receive (10 samples, 0.01%)</title><rect x="810.6" y="229" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.60" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_output (17 samples, 0.02%)</title><rect x="253.6" y="133" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.63" 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>inet_sendmsg (115 samples, 0.14%)</title><rect x="61.1" y="981" width="1.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.09" 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_syscall_64 (50 samples, 0.06%)</title><rect x="1157.6" y="357" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb (16 samples, 0.02%)</title><rect x="302.3" y="309" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.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>java/util/stream/AbstractPipeline:::wrapAndCopyInto (15 samples, 0.02%)</title><rect x="1170.6" y="549" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1173.60" 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>__netif_receive_skb_core (17 samples, 0.02%)</title><rect x="549.5" y="277" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.49" 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>ovs_vport_send (12 samples, 0.01%)</title><rect x="946.0" y="149" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.02" 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>__netif_receive_skb (12 samples, 0.01%)</title><rect x="810.6" y="277" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.60" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb_core (25 samples, 0.03%)</title><rect x="813.9" y="325" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.86" 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_page_fault (11 samples, 0.01%)</title><rect x="972.8" y="437" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="975.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>do_softirq_own_stack (16 samples, 0.02%)</title><rect x="1175.8" y="165" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.84" 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>ip_rcv_finish (47 samples, 0.06%)</title><rect x="793.4" y="277" width="0.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.40" 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>_raw_spin_lock_bh (12 samples, 0.01%)</title><rect x="35.6" y="901" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.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>com/dianping/cat/aggregator/DefaultLocalAggregator:::analyzerProcessEvent (42 samples, 0.05%)</title><rect x="99.6" y="757" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="102.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>ovs_dp_process_packet (9 samples, 0.01%)</title><rect x="60.2" y="629" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.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>vfs_write (27 samples, 0.03%)</title><rect x="581.3" y="293" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>futex_wait (33 samples, 0.04%)</title><rect x="87.5" y="1013" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="90.49" 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>inet_release (17 samples, 0.02%)</title><rect x="1184.7" y="933" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.73" 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/elasticsearch/action/search/SearchResponse:::innerFromXContent (390 samples, 0.47%)</title><rect x="1139.4" y="533" width="5.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1142.39" 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_v4_rcv (13 samples, 0.02%)</title><rect x="528.4" y="197" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.41" 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>__irqentry_text_start (22 samples, 0.03%)</title><rect x="251.3" y="389" width="0.4" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.34" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>io/netty/channel/AbstractChannel$AbstractUnsafe:::flush0 (60 samples, 0.07%)</title><rect x="84.5" y="1157" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>ip_rcv_finish (8 samples, 0.01%)</title><rect x="468.4" y="213" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.37" 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/client/RestClient:::performRequestAsync (345 samples, 0.41%)</title><rect x="577.1" y="485" width="4.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="580.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/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::create (231 samples, 0.28%)</title><rect x="112.7" y="373" width="3.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="115.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java_lang_Throwable::fill_in_stack_trace (110 samples, 0.13%)</title><rect x="110.4" y="373" width="1.5" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.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>__netif_receive_skb_core (15 samples, 0.02%)</title><rect x="813.5" y="277" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.46" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>dev_queue_xmit (106 samples, 0.13%)</title><rect x="49.8" y="517" width="1.5" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/nio/ch/ServerSocketChannelImpl:::accept (56 samples, 0.07%)</title><rect x="88.9" y="1205" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="91.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>com/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseNegNumber (151 samples, 0.18%)</title><rect x="316.5" y="421" width="2.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="319.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>JVM_Sleep (31 samples, 0.04%)</title><rect x="77.9" y="1173" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="80.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>sock_recvmsg (1,433 samples, 1.71%)</title><rect x="34.3" y="949" width="20.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.27" 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/Excluder:::excludeClass (11 samples, 0.01%)</title><rect x="117.8" y="421" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="120.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>sock_def_readable (9 samples, 0.01%)</title><rect x="793.5" y="181" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.54" 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>sun/nio/ch/FileDispatcherImpl:::read0 (102 samples, 0.12%)</title><rect x="59.3" y="1109" width="1.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.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>__netif_receive_skb_core (26 samples, 0.03%)</title><rect x="973.6" y="341" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.65" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>copy_user_enhanced_fast_string (10 samples, 0.01%)</title><rect x="45.0" y="853" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.97" 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.01%)</title><rect x="468.1" y="341" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.06" 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/util/HashMap:::putMapEntries (10 samples, 0.01%)</title><rect x="1149.3" y="517" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1152.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>jshort_disjoint_arraycopy (25 samples, 0.03%)</title><rect x="811.4" y="405" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="814.40" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>netdev_frame_hook (10 samples, 0.01%)</title><rect x="810.6" y="245" width="0.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.60" 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>java/lang/Class:::getSimpleBinaryName (15 samples, 0.02%)</title><rect x="119.6" y="453" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="122.56" 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/deser/impl/BeanPropertyMap:::find (80 samples, 0.10%)</title><rect x="1162.4" y="517" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.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>__softirqentry_text_start (289 samples, 0.35%)</title><rect x="48.6" y="709" width="4.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.64" 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>tcp_push (95 samples, 0.11%)</title><rect x="61.3" y="933" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.34" 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>ovs_execute_actions (17 samples, 0.02%)</title><rect x="792.7" y="197" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.72" 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/util/stream/AbstractPipeline:::wrapAndCopyInto (135 samples, 0.16%)</title><rect x="1129.5" y="533" width="1.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1132.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>org/apache/catalina/connector/RequestFacade:::getHeader (8 samples, 0.01%)</title><rect x="123.3" y="565" width="0.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="126.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>com/ctriposs/baiji/rpc/server/handler/ServiceRequestHandlerBase:::applyRequestFilters (9 samples, 0.01%)</title><rect x="106.6" y="693" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="109.64" 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>ip_local_deliver (18 samples, 0.02%)</title><rect x="813.9" y="277" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.87" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>i40e_clean_rx_irq (10 samples, 0.01%)</title><rect x="450.2" y="261" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.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>org/elasticsearch/index/query/AbstractQueryBuilder:::toXContent (18 samples, 0.02%)</title><rect x="1168.8" y="501" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1171.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/GeneratedMethodAccessor121:::invoke (75,356 samples, 90.15%)</title><rect x="107.3" y="677" width="1063.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.34" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun/reflect/GeneratedMethodAccessor121:::invoke</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="940.0" y="357" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="943.03" 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>jbyte_disjoint_arraycopy (13 samples, 0.02%)</title><rect x="572.0" y="421" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.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>CodeCache::find_blob (17 samples, 0.02%)</title><rect x="1167.8" y="437" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1170.79" 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>ip_local_out (414 samples, 0.50%)</title><rect x="48.1" y="821" width="5.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.14" 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>ret_from_intr (21 samples, 0.03%)</title><rect x="468.2" y="357" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.22" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__local_bh_enable_ip (20 samples, 0.02%)</title><rect x="1181.9" y="709" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>__netif_receive_skb (19 samples, 0.02%)</title><rect x="562.2" y="261" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.20" 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>com/fasterxml/jackson/databind/ser/DefaultSerializerProvider:::serializeValue (59 samples, 0.07%)</title><rect x="1169.3" y="533" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1172.33" 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 (18 samples, 0.02%)</title><rect x="1175.1" y="453" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.05" 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>audit_filter_syscall (13 samples, 0.02%)</title><rect x="54.8" y="981" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.78" 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/client/utils/URIBuilder:::buildString (42 samples, 0.05%)</title><rect x="1149.6" y="501" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1152.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/lang/Class:::getSimpleName (24 samples, 0.03%)</title><rect x="119.4" y="469" width="0.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="122.45" 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/apache/tomcat/util/net/NioEndpoint$Poller:::events (24 samples, 0.03%)</title><rect x="90.0" y="1205" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="93.00" 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/jackson/core/json/UTF8StreamJsonParser:::parseEscapedName (10 samples, 0.01%)</title><rect x="525.3" y="373" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="528.32" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__alloc_skb (40 samples, 0.05%)</title><rect x="47.0" y="853" width="0.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="50.00" 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/reflect/generics/parser/SignatureParser:::parseClassTypeSignature (12 samples, 0.01%)</title><rect x="115.6" y="325" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="118.57" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__libc_connect (18 samples, 0.02%)</title><rect x="89.4" y="1173" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="92.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>irq_exit (10 samples, 0.01%)</title><rect x="403.5" y="341" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="406.52" 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>dev_hard_start_xmit (9 samples, 0.01%)</title><rect x="62.3" y="757" width="0.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="65.26" 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/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::close (32 samples, 0.04%)</title><rect x="1184.5" y="1157" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.54" 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 (44 samples, 0.05%)</title><rect x="1181.7" y="981" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>org/elasticsearch/index/query/TermsQueryBuilder:::convert (13 samples, 0.02%)</title><rect x="126.1" y="501" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="129.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>schedule (37 samples, 0.04%)</title><rect x="1186.5" y="997" width="0.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.50" 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 (18 samples, 0.02%)</title><rect x="32.9" y="1029" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="35.94" 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>jint_disjoint_arraycopy (24 samples, 0.03%)</title><rect x="988.1" y="469" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="991.13" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_queue_xmit (10 samples, 0.01%)</title><rect x="1184.8" y="837" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>tcp_v4_rcv (8 samples, 0.01%)</title><rect x="810.8" y="229" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.79" 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>java/io/PrintWriter:::println (9 samples, 0.01%)</title><rect x="1180.6" y="1093" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.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>ovs_vport_send (15 samples, 0.02%)</title><rect x="253.7" y="117" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.66" 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>__do_page_fault (25 samples, 0.03%)</title><rect x="945.1" y="389" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="948.10" 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 (10 samples, 0.01%)</title><rect x="468.4" y="261" width="0.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.37" 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>sun/reflect/GeneratedMethodAccessor59:::invoke (9 samples, 0.01%)</title><rect x="990.1" y="469" width="0.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="993.09" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ip_local_deliver (13 samples, 0.02%)</title><rect x="528.4" y="229" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="531.41" 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>BacktraceBuilder::push (21 samples, 0.03%)</title><rect x="1108.1" y="453" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1111.09" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__dev_queue_xmit (79 samples, 0.09%)</title><rect x="52.8" y="741" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.76" 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>tcp_v4_rcv (15 samples, 0.02%)</title><rect x="549.5" y="197" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.49" 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>__netif_receive_skb_core (15 samples, 0.02%)</title><rect x="302.3" y="293" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.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>com/ctrip/es/apache/http/impl/nio/conn/PoolingNHttpClientConnectionManager$InternalPoolEntryCallback:::completed (77 samples, 0.09%)</title><rect x="1157.3" y="469" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.33" 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>i40e_napi_poll (12 samples, 0.01%)</title><rect x="27.3" y="981" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="30.32" 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>net_rx_action (12 samples, 0.01%)</title><rect x="290.4" y="309" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.39" 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_lang_Throwable::fill_in_stack_trace (95 samples, 0.11%)</title><rect x="1135.4" y="453" width="1.3" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.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>com/ctrip/es/apache/http/client/utils/URIBuilder:::buildString (26 samples, 0.03%)</title><rect x="576.5" y="469" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="579.51" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__wake_up (8 samples, 0.01%)</title><rect x="1189.9" y="1253" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>ret_from_intr (24 samples, 0.03%)</title><rect x="1030.0" y="453" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1032.97" 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>VMThread::loop (31 samples, 0.04%)</title><rect x="1189.3" y="1317" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.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>sun/nio/ch/EPollSelectorImpl:::doSelect (946 samples, 1.13%)</title><rect x="63.9" y="1157" width="13.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="66.87" 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/ReaderBasedJsonParser:::nextFieldName (11,803 samples, 14.12%)</title><rect x="647.6" y="453" width="166.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="650.64" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/fasterxml/jackson..</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 (44 samples, 0.05%)</title><rect x="581.1" y="437" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.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>JVM_InternString (10 samples, 0.01%)</title><rect x="114.3" y="277" width="0.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.27" 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>irq_exit (11 samples, 0.01%)</title><rect x="963.2" y="389" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="966.16" 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>[libpthread-2.17.so] (45 samples, 0.05%)</title><rect x="1181.7" y="1029" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.73" 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/text/DateFormat:::format (14 samples, 0.02%)</title><rect x="122.5" y="565" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="125.48" 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_sun_nio_ch_EPollArrayWrapper_epollWait (11 samples, 0.01%)</title><rect x="65.9" y="1125" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="68.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>java/lang/RuntimeException:::<init> (163 samples, 0.20%)</title><rect x="1165.9" y="549" width="2.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.90" 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>finish_task_switch (48 samples, 0.06%)</title><rect x="1147.9" y="341" width="0.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.93" 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_local_out (10 samples, 0.01%)</title><rect x="1184.8" y="821" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>ovs_dp_process_packet (26 samples, 0.03%)</title><rect x="253.6" y="181" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.61" 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>do_futex (12 samples, 0.01%)</title><rect x="78.1" y="1077" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>i40e_xmit_frame_ring (21 samples, 0.03%)</title><rect x="50.8" y="437" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="53.80" 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/stream/ReferencePipeline$3$1:::accept (590 samples, 0.71%)</title><rect x="1119.1" y="405" width="8.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1122.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>ss (10 samples, 0.01%)</title><rect x="1189.9" y="1381" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.86" 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>__netif_receive_skb_core (29 samples, 0.03%)</title><rect x="253.6" y="229" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="256.60" 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>org/elasticsearch/index/query/TermsQueryBuilder:::convert (28 samples, 0.03%)</title><rect x="125.5" y="501" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="128.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>net_rx_action (21 samples, 0.03%)</title><rect x="450.2" y="293" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="453.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>do_IRQ (10 samples, 0.01%)</title><rect x="403.5" y="357" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="406.52" 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>__softirqentry_text_start (9 samples, 0.01%)</title><rect x="969.7" y="373" width="0.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="972.68" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>page_fault (9 samples, 0.01%)</title><rect x="974.7" y="437" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="977.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>_raw_spin_unlock_irqrestore (21 samples, 0.03%)</title><rect x="1184.1" y="965" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.09" 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>irq_exit (21 samples, 0.03%)</title><rect x="468.2" y="325" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.22" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/generics/visitor/Reifier:::visitClassTypeSignature (30 samples, 0.04%)</title><rect x="118.7" y="437" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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>java/util/stream/ReduceOps$3ReducingSink:::accept (8 samples, 0.01%)</title><rect x="1127.6" y="485" width="0.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1130.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>[libpthread-2.17.so] (119 samples, 0.14%)</title><rect x="61.1" y="1109" width="1.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.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/ctrip/es/jackson/core/io/NumberOutput:::_full3 (13 samples, 0.02%)</title><rect x="176.2" y="405" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="179.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>do_syscall_64 (8 samples, 0.01%)</title><rect x="78.8" y="1077" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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_poll (42 samples, 0.05%)</title><rect x="1134.3" y="373" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.27" 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>sun/misc/Unsafe:::setMemory (9 samples, 0.01%)</title><rect x="83.3" y="1125" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.34" 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>ovs_dp_process_packet (8 samples, 0.01%)</title><rect x="468.8" y="165" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.80" 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/springframework/aop/interceptor/ExposeInvocationInterceptor:::invoke (75,348 samples, 90.14%)</title><rect x="107.4" y="645" width="1063.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.43" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/aop/interceptor/ExposeInvocationInterceptor:::invoke</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_sendmsg_locked (40 samples, 0.05%)</title><rect x="1175.7" y="357" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.66" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__netif_receive_skb (12 samples, 0.01%)</title><rect x="73.6" y="821" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.64" 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/fasterxml/jackson/databind/ObjectMapper:::writeValueAsString (15 samples, 0.02%)</title><rect x="1109.7" y="517" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.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>copy_user_enhanced_fast_string (39 samples, 0.05%)</title><rect x="36.6" y="869" width="0.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="39.60" 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/reflect/GeneratedMethodAccessor413:::invoke (16 samples, 0.02%)</title><rect x="974.8" y="453" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="977.84" 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_after_hwframe (45 samples, 0.05%)</title><rect x="1181.7" y="1013" width="0.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.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>sock_poll (29 samples, 0.03%)</title><rect x="68.2" y="1013" width="0.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
|
<text text-anchor="" x="71.25" 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/IOUtil:::read (125 samples, 0.15%)</title><rect x="59.1" y="1125" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.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>java/util/concurrent/ThreadPoolExecutor:::runWorker (93 samples, 0.11%)</title><rect x="86.8" y="1205" width="1.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="89.75" 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/BinaryMessageEncoder6$Context:::encodeTokens (68 samples, 0.08%)</title><rect x="80.8" y="1141" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="83.81" 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 (21 samples, 0.03%)</title><rect x="1184.7" y="1045" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>org/apache/tomcat/util/net/NioBlockingSelector$BlockPoller:::run (120 samples, 0.14%)</title><rect x="1187.6" y="1237" width="1.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1190.60" 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_sync_key (17 samples, 0.02%)</title><rect x="581.3" y="245" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.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>com/ctrip/hotel/htlorgarea/core/utils/JsonUtil:::toJsonString (15 samples, 0.02%)</title><rect x="1109.7" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1112.72" 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/reflect/generics/parser/SignatureParser:::parsePackageNameAndSimpleClassTypeSignature (24 samples, 0.03%)</title><rect x="118.3" y="405" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.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>tcp_data_queue (12 samples, 0.01%)</title><rect x="793.8" y="181" width="0.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.77" 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>security_file_permission (8 samples, 0.01%)</title><rect x="54.5" y="965" width="0.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.52" 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>__lll_timedwait_tid (16 samples, 0.02%)</title><rect x="1185.7" y="1109" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.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>ip_local_deliver (11 samples, 0.01%)</title><rect x="302.3" y="245" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.29" 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>__netif_receive_skb (26 samples, 0.03%)</title><rect x="973.6" y="357" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.65" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ovs_dp_process_packet (9 samples, 0.01%)</title><rect x="302.0" y="197" width="0.1" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
|
|
<text text-anchor="" x="304.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>tcp_push (33 samples, 0.04%)</title><rect x="11.3" y="1221" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.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>JVM_GetEnclosingMethodInfo (8 samples, 0.01%)</title><rect x="114.9" y="261" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.94" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.01%)</title><rect x="78.8" y="1093" width="0.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.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>process_backlog (22 samples, 0.03%)</title><rect x="949.0" y="357" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="952.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>ip_finish_output2 (17 samples, 0.02%)</title><rect x="85.0" y="805" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="88.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>do_IRQ (9 samples, 0.01%)</title><rect x="1000.0" y="437" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1003.03" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>process_backlog (17 samples, 0.02%)</title><rect x="469.0" y="293" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="472.00" 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/core/json/ReaderBasedJsonParser:::_parseName2 (203 samples, 0.24%)</title><rect x="789.0" y="421" width="2.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="792.04" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__libc_close (14 samples, 0.02%)</title><rect x="94.0" y="1157" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="96.97" 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 (31 samples, 0.04%)</title><rect x="1184.1" y="1093" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.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>__local_bh_enable_ip (46 samples, 0.06%)</title><rect x="61.6" y="789" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="64.61" 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>__qdisc_run (10 samples, 0.01%)</title><rect x="792.8" y="101" width="0.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
|
|
<text text-anchor="" x="795.77" 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>com/fasterxml/jackson/core/json/ReaderBasedJsonParser:::_loadMore (47 samples, 0.06%)</title><rect x="583.5" y="485" width="0.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="586.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>__vfs_write (35 samples, 0.04%)</title><rect x="84.8" y="1029" width="0.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
|
|
<text text-anchor="" x="87.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>org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (75,349 samples, 90.14%)</title><rect x="107.4" y="661" width="1063.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="110.42" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>process_backlog (39 samples, 0.05%)</title><rect x="946.5" y="341" width="0.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.50" 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/SocketInputStream:::socketRead0 (69 samples, 0.08%)</title><rect x="1134.2" y="453" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1137.17" 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_sync_key (10 samples, 0.01%)</title><rect x="793.8" y="149" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="796.78" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_raw_spin_unlock_irqrestore (16 samples, 0.02%)</title><rect x="67.5" y="1029" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="70.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>i40e_clean_rx_irq (26 samples, 0.03%)</title><rect x="73.4" y="869" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="76.44" 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>G1RemSet::oops_into_collection_set_do (50 samples, 0.06%)</title><rect x="15.4" y="1285" width="0.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="18.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>irq_exit (95 samples, 0.11%)</title><rect x="1106.2" y="469" width="1.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>org/elasticsearch/common/xcontent/XContentBuilder:::unknownValue (51 samples, 0.06%)</title><rect x="573.8" y="325" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.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>sun/reflect/GeneratedMethodAccessor86:::invoke (20 samples, 0.02%)</title><rect x="980.2" y="453" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="983.17" 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/reflect/GeneratedMethodAccessor89:::invoke (31 samples, 0.04%)</title><rect x="980.4" y="453" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="983.45" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>org/elasticsearch/common/xcontent/XContentHelper:::toXContent (28 samples, 0.03%)</title><rect x="1146.1" y="517" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.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>pipe_write (24 samples, 0.03%)</title><rect x="581.3" y="261" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
|
|
<text text-anchor="" x="584.30" 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>StringTable::intern (10 samples, 0.01%)</title><rect x="1153.1" y="357" width="0.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1156.07" 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>Parker::park (11 samples, 0.01%)</title><rect x="1185.6" y="1109" width="0.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.57" 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>tpacket_rcv (25 samples, 0.03%)</title><rect x="52.2" y="629" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.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>com/google/gson/internal/bind/TypeAdapters$35:::create (8 samples, 0.01%)</title><rect x="121.3" y="533" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="124.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>ret_from_intr (8 samples, 0.01%)</title><rect x="986.8" y="453" width="0.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
|
|
<text text-anchor="" x="989.76" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcp_v4_do_rcv (13 samples, 0.02%)</title><rect x="973.7" y="245" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="976.72" 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>tcp_rcv_established (12 samples, 0.01%)</title><rect x="36.0" y="853" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.99" 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/ctrip/es/jackson/core/json/UTF8StreamJsonParser:::_parseName (140 samples, 0.17%)</title><rect x="314.5" y="421" width="2.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="317.54" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>jbyte_disjoint_arraycopy (11 samples, 0.01%)</title><rect x="548.9" y="373" width="0.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.85" 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>com/google/gson/internal/bind/ReflectiveTypeAdapterFactory:::excludeField (39 samples, 0.05%)</title><rect x="119.4" y="501" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="122.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>ip_local_deliver_finish (8 samples, 0.01%)</title><rect x="290.9" y="213" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.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>i40e_clean_rx_irq (17 samples, 0.02%)</title><rect x="468.7" y="277" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="471.70" 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:::setSocketOptions (18 samples, 0.02%)</title><rect x="88.7" y="1205" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="91.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>sun/reflect/GeneratedMethodAccessor66:::invoke (14 samples, 0.02%)</title><rect x="990.4" y="469" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="993.40" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>schedule_hrtimeout_range (50 samples, 0.06%)</title><rect x="92.7" y="1077" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="95.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>sun/nio/ch/EPollArrayWrapper:::epollWait (692 samples, 0.83%)</title><rect x="65.5" y="1141" width="9.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="68.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>org/apache/tomcat/util/net/NioEndpoint$Acceptor:::run (76 samples, 0.09%)</title><rect x="88.7" y="1221" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="91.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>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::writeFieldName (5,389 samples, 6.45%)</title><rect x="178.6" y="405" width="76.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="181.58" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >com/ctri..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>java/util/stream/ReferencePipeline$2$1:::accept (533 samples, 0.64%)</title><rect x="1119.9" y="373" width="7.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1122.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>do_futex (21 samples, 0.03%)</title><rect x="100.8" y="661" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="103.79" 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>i40e_napi_poll (25 samples, 0.03%)</title><rect x="810.4" y="341" width="0.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.44" 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>frame::sender (29 samples, 0.03%)</title><rect x="1136.3" y="437" width="0.4" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.29" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sun/reflect/GeneratedMethodAccessor119:::invoke (88 samples, 0.11%)</title><rect x="1154.6" y="421" width="1.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1157.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>irq_exit (12 samples, 0.01%)</title><rect x="166.1" y="373" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="169.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_IRQ (9 samples, 0.01%)</title><rect x="969.7" y="405" width="0.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
|
|
<text text-anchor="" x="972.68" 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 (19 samples, 0.02%)</title><rect x="701.3" y="389" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
|
|
<text text-anchor="" x="704.27" 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>OptoRuntime::new_array_nozero_C (17 samples, 0.02%)</title><rect x="1097.9" y="485" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1100.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>vtable stub (1,159 samples, 1.39%)</title><rect x="1013.9" y="469" width="16.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1016.95" 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:::getSimpleName (9 samples, 0.01%)</title><rect x="109.8" y="437" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="112.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>irq_exit (122 samples, 0.15%)</title><rect x="252.9" y="357" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="255.91" 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 (26 samples, 0.03%)</title><rect x="79.1" y="1013" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="82.10" 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 (22 samples, 0.03%)</title><rect x="449.9" y="325" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="452.88" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__dev_queue_xmit (12 samples, 0.01%)</title><rect x="562.2" y="101" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.21" 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>org/apache/tomcat/util/net/NioBlockingSelector:::write (105 samples, 0.13%)</title><rect x="1174.9" y="565" width="1.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1177.92" 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/SocketChannelImpl:::write (140 samples, 0.17%)</title><rect x="60.9" y="1141" width="2.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
|
<text text-anchor="" x="63.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>sys_futex (12 samples, 0.01%)</title><rect x="78.1" y="1093" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="81.11" 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:::getSimpleBinaryName (13 samples, 0.02%)</title><rect x="114.9" y="293" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="117.89" 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>io/netty/util/concurrent/SingleThreadEventExecutor:::execute (28 samples, 0.03%)</title><rect x="83.6" y="1141" width="0.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="86.58" 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 (10 samples, 0.01%)</title><rect x="948.7" y="261" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
|
|
<text text-anchor="" x="951.73" 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>org/springframework/boot/web/support/ErrorPageFilter:::doFilter (76,725 samples, 91.79%)</title><rect x="96.8" y="1029" width="1083.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
|
<text text-anchor="" x="99.85" y="1039.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>__netif_receive_skb (16 samples, 0.02%)</title><rect x="813.5" y="293" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
|
|
<text text-anchor="" x="816.46" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>Java_java_lang_Class_forName0 (17 samples, 0.02%)</title><rect x="1155.1" y="341" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1158.13" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__libc_close (10 samples, 0.01%)</title><rect x="1183.6" y="1045" width="0.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.56" 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>_raw_spin_unlock_irqrestore (10 samples, 0.01%)</title><rect x="946.7" y="133" width="0.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
|
|
<text text-anchor="" x="949.70" 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>__release_sock (15 samples, 0.02%)</title><rect x="35.9" y="885" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
|
|
<text text-anchor="" x="38.95" 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/BeanDeserializer:::vanillaDeserialize (13 samples, 0.02%)</title><rect x="1161.9" y="501" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.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>__libc_close (98 samples, 0.12%)</title><rect x="59.3" y="1093" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="62.30" 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:::extendLeafNode (10 samples, 0.01%)</title><rect x="1118.7" y="421" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1121.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>__irqentry_text_start (14 samples, 0.02%)</title><rect x="515.0" y="389" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
|
|
<text text-anchor="" x="518.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>jbyte_disjoint_arraycopy (18 samples, 0.02%)</title><rect x="558.3" y="373" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
|
<text text-anchor="" x="561.27" 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>irq_exit (9 samples, 0.01%)</title><rect x="1106.0" y="453" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1109.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>OptoRuntime::new_array_C (356 samples, 0.43%)</title><rect x="1092.9" y="485" width="5.0" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.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>i40e_napi_poll (11 samples, 0.01%)</title><rect x="33.0" y="981" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.00" 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:::nextToken (9 samples, 0.01%)</title><rect x="1140.2" y="501" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1143.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>com/google/gson/internal/$Gson$Types:::resolve (8 samples, 0.01%)</title><rect x="110.1" y="453" width="0.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="113.10" 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>___bpf_prog_run (11 samples, 0.01%)</title><rect x="50.5" y="405" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="53.50" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__wake_up_common_lock (14 samples, 0.02%)</title><rect x="1175.1" y="405" width="0.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1178.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>ip_local_deliver_finish (8 samples, 0.01%)</title><rect x="810.8" y="245" width="0.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
|
|
<text text-anchor="" x="813.79" 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>tpacket_rcv (12 samples, 0.01%)</title><rect x="53.1" y="693" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.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>com/ctrip/es/jackson/core/json/UTF8JsonGenerator:::_writeStringSegment (152 samples, 0.18%)</title><rect x="176.4" y="405" width="2.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
|
<text text-anchor="" x="179.44" 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 (41 samples, 0.05%)</title><rect x="91.6" y="1141" width="0.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
|
|
<text text-anchor="" x="94.60" 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 (35 samples, 0.04%)</title><rect x="1132.2" y="485" width="0.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1135.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
</svg>
|