You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18918 lines
934 KiB

<?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="1590" onload="init(evt)" viewBox="0 0 1200 1590" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1590.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1573" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="matched" x="1090.00" y="1573" > </text>
<g id="frames">
<g >
<title>java/lang/String:::toUpperCase (1 samples, 0.02%)</title><rect x="172.5" y="597" width="0.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="175.54" y="607.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal:::setInitialValue (1 samples, 0.02%)</title><rect x="145.0" y="901" width="0.2" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="147.99" y="911.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="775.2" y="517" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="778.16" y="527.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="374.8" y="309" width="0.2" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text x="377.79" y="319.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::remove (1 samples, 0.02%)</title><rect x="157.6" y="709" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="160.61" y="719.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="911.3" y="517" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="914.30" y="527.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::write (2 samples, 0.04%)</title><rect x="1097.5" y="1237" width="0.4" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1100.48" y="1247.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="532.3" y="357" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="535.28" y="367.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="859.4" y="325" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="862.42" y="335.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeTime (2 samples, 0.04%)</title><rect x="653.7" y="565" width="0.5" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="656.72" y="575.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/stats/Meter:::record (3 samples, 0.06%)</title><rect x="1106.0" y="1253" width="0.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="1108.98" y="1263.5" ></text>
</g>
<g >
<title>PhaseIdealLoop::build_and_optimize (12 samples, 0.23%)</title><rect x="30.0" y="1365" width="2.7" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="32.97" y="1375.5" ></text>
</g>
<g >
<title>java/io/RandomAccessFile:::writeBytes (41 samples, 0.80%)</title><rect x="1170.3" y="1285" width="9.4" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1173.26" y="1295.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="914.3" y="565" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="917.28" y="575.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="488.9" y="181" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="491.89" y="191.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseAuthority (1 samples, 0.02%)</title><rect x="39.8" y="773" width="0.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="42.84" y="783.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (1 samples, 0.02%)</title><rect x="46.0" y="613" width="0.3" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="49.04" y="623.5" ></text>
</g>
<g >
<title>__block_write_begin (1 samples, 0.02%)</title><rect x="1174.8" y="1077" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1177.85" y="1087.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="1062.8" y="1333" width="0.2" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="1065.82" y="1343.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="57.5" y="485" width="0.3" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="60.52" y="495.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1020.6" y="1029" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="1023.58" y="1039.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BranchConn:::match (1 samples, 0.02%)</title><rect x="1048.8" y="1173" width="0.2" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="1051.81" y="1183.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="583.7" y="389" width="0.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="586.70" y="399.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="207.7" y="485" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="210.66" y="495.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="858.7" y="485" width="0.3" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="861.73" y="495.5" ></text>
</g>
<g >
<title>Node::clone (1 samples, 0.02%)</title><rect x="23.5" y="1333" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="26.54" y="1343.5" ></text>
</g>
<g >
<title>Unsafe_Park (25 samples, 0.49%)</title><rect x="1162.7" y="1317" width="5.7" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="1165.68" y="1327.5" ></text>
</g>
<g >
<title>pipe_read (1 samples, 0.02%)</title><rect x="1128.5" y="1189" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1131.47" y="1199.5" ></text>
</g>
<g >
<title>sk_reset_timer (1 samples, 0.02%)</title><rect x="1061.2" y="965" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1064.21" y="975.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (2 samples, 0.04%)</title><rect x="91.0" y="1221" width="0.5" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="94.04" y="1231.5" ></text>
</g>
<g >
<title>file_remove_privs (1 samples, 0.02%)</title><rect x="1172.3" y="1109" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1175.32" y="1119.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="261.2" y="469" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="264.15" y="479.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="949.2" y="613" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="952.18" y="623.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/ProducesRequestCondition:::getMatchingCondition (16 samples, 0.31%)</title><rect x="259.1" y="597" width="3.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="262.09" y="607.5" ></text>
</g>
<g >
<title>sun/security/provider/DigestBase:::engineDigest (6 samples, 0.12%)</title><rect x="1044.2" y="1253" width="1.4" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1047.22" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getRemainingPath (1 samples, 0.02%)</title><rect x="288.0" y="629" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="291.01" y="639.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="125.5" y="1045" width="0.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="128.47" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="1182.4" y="1173" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="1185.42" y="1183.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="971.2" y="981" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="974.22" y="991.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (2 samples, 0.04%)</title><rect x="92.9" y="1189" width="0.4" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="95.88" y="1199.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::forEach (1 samples, 0.02%)</title><rect x="198.0" y="677" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="201.02" y="687.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/sentinel/SentinelHttpInterceptor:::preHandle (28 samples, 0.54%)</title><rect x="188.4" y="677" width="6.4" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="191.38" y="687.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="1168.4" y="1109" width="0.2" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text x="1171.42" y="1119.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/BooleanSerializer:::serialize (1 samples, 0.02%)</title><rect x="367.0" y="485" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="369.98" y="495.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy49:::annotationType (1 samples, 0.02%)</title><rect x="980.6" y="1029" width="0.3" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="983.63" y="1039.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1116.8" y="981" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="1119.77" y="991.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (1 samples, 0.02%)</title><rect x="210.6" y="629" width="0.3" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="213.65" y="639.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::prepareResponse (14 samples, 0.27%)</title><rect x="1008.2" y="1205" width="3.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="1011.18" y="1215.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::doGetSession (2 samples, 0.04%)</title><rect x="941.8" y="693" width="0.5" height="15.0" fill="rgb(100,245,100)" rx="2" ry="2" />
<text x="944.83" y="703.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="271.7" y="469" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="274.71" y="479.5" ></text>
</g>
<g >
<title>CodeBlob::is_zombie (1 samples, 0.02%)</title><rect x="152.6" y="789" width="0.2" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text x="155.56" y="799.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$8:::write (1 samples, 0.02%)</title><rect x="1095.0" y="1253" width="0.2" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1097.96" y="1263.5" ></text>
</g>
<g >
<title>java/util/Calendar$Builder:::build (1 samples, 0.02%)</title><rect x="647.3" y="533" width="0.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="650.29" y="543.5" ></text>
</g>
<g >
<title>CollectedHeap::common_mem_allocate_init (1 samples, 0.02%)</title><rect x="950.3" y="693" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="953.33" y="703.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1061.2" y="933" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1064.21" y="943.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="532.3" y="245" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="535.28" y="255.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="1020.6" y="869" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="1023.58" y="879.5" ></text>
</g>
<g >
<title>org/apache/coyote/AbstractProcessor:::action (6 samples, 0.12%)</title><rect x="86.7" y="1221" width="1.4" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="89.68" y="1231.5" ></text>
</g>
<g >
<title>java/text/DigitList:::getLong (1 samples, 0.02%)</title><rect x="654.9" y="533" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="657.87" y="543.5" ></text>
</g>
<g >
<title>com/google/gson/internal/$Gson$Types:::canonicalize (2 samples, 0.04%)</title><rect x="227.2" y="597" width="0.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="230.18" y="607.5" ></text>
</g>
<g >
<title>generic_write_end (5 samples, 0.10%)</title><rect x="1175.8" y="1077" width="1.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1178.77" y="1087.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="514.4" y="293" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="517.37" y="303.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/AbstractNamedValueMethodArgumentResolver:::resolveArgument (2 samples, 0.04%)</title><rect x="81.4" y="645" width="0.5" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="84.40" y="655.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (1 samples, 0.02%)</title><rect x="239.8" y="613" width="0.2" height="15.0" fill="rgb(96,243,96)" rx="2" ry="2" />
<text x="242.80" y="623.5" ></text>
</g>
<g >
<title>try_to_wake_up (3 samples, 0.06%)</title><rect x="1059.4" y="1157" width="0.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1062.37" y="1167.5" ></text>
</g>
<g >
<title>updateBytesCRC32 (1 samples, 0.02%)</title><rect x="81.2" y="597" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="84.17" y="607.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1033.9" y="1173" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="1036.89" y="1183.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="583.9" y="373" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="586.93" y="383.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/CtSph:::entryWithPriority (17 samples, 0.33%)</title><rect x="188.4" y="661" width="3.9" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="191.38" y="671.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/CipherCore:::init (19 samples, 0.37%)</title><rect x="167.0" y="613" width="4.4" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="170.03" y="623.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/web/trace/servlet/TraceableHttpServletRequest:::extractHeaders (5 samples, 0.10%)</title><rect x="84.2" y="741" width="1.1" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="87.15" y="751.5" ></text>
</g>
<g >
<title>com/google/gson/internal/bind/ArrayTypeAdapter:::write (1 samples, 0.02%)</title><rect x="44.2" y="597" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="47.21" y="607.5" ></text>
</g>
<g >
<title>itable stub (3 samples, 0.06%)</title><rect x="955.8" y="693" width="0.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="958.84" y="703.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="117.2" y="1029" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="120.21" y="1039.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/util/KafkaProducer:::send (59 samples, 1.15%)</title><rect x="1032.1" y="1285" width="13.5" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1035.05" y="1295.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (1 samples, 0.02%)</title><rect x="226.7" y="597" width="0.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="229.72" y="607.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (14 samples, 0.27%)</title><rect x="1185.2" y="1237" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1188.18" y="1247.5" ></text>
</g>
<g >
<title>jni_GetObjectField (5 samples, 0.10%)</title><rect x="879.6" y="549" width="1.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="882.62" y="559.5" ></text>
</g>
<g >
<title>futex_wake_op (1 samples, 0.02%)</title><rect x="101.6" y="1189" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="104.60" y="1199.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="293.5" y="549" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="296.52" y="559.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterSupport:::doConvert (2 samples, 0.04%)</title><rect x="81.4" y="629" width="0.5" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="84.40" y="639.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (3 samples, 0.06%)</title><rect x="121.1" y="1125" width="0.7" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="124.11" y="1135.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::removeEldestEntry (1 samples, 0.02%)</title><rect x="240.5" y="597" width="0.2" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="243.49" y="607.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="592.2" y="357" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="595.19" y="367.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl:::write0 (48 samples, 0.93%)</title><rect x="996.9" y="1125" width="11.0" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="999.93" y="1135.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="14.1" y="1493" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="17.13" y="1503.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="647.8" y="293" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="650.75" y="303.5" ></text>
</g>
<g >
<title>ParseGenerator::generate (1 samples, 0.02%)</title><rect x="33.4" y="1093" width="0.2" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text x="36.42" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="207.7" y="453" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="210.66" y="463.5" ></text>
</g>
<g >
<title>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.02%)</title><rect x="139.2" y="917" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="142.25" y="927.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::isInJavaLangAnnotationPackage (1 samples, 0.02%)</title><rect x="209.0" y="645" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="212.04" y="655.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="944.4" y="613" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="947.36" y="623.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="92.6" y="1141" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="95.65" y="1151.5" ></text>
</g>
<g >
<title>schedule (1 samples, 0.02%)</title><rect x="34.8" y="1109" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="37.79" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="1050.2" y="1125" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="1053.19" y="1135.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (1 samples, 0.02%)</title><rect x="142.5" y="965" width="0.2" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="145.46" y="975.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="466.6" y="533" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="469.62" y="543.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="510.2" y="389" width="0.3" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="513.24" y="399.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="981.1" y="1029" width="0.4" height="15.0" fill="rgb(87,233,87)" rx="2" ry="2" />
<text x="984.09" y="1039.5" ></text>
</g>
<g >
<title>io/micrometer/shaded/org/pcollections/IntTree:::get (1 samples, 0.02%)</title><rect x="975.8" y="1013" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="978.81" y="1023.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="117.2" y="1093" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="120.21" y="1103.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/requests/RequestHeader:::toStruct (2 samples, 0.04%)</title><rect x="1100.5" y="1253" width="0.4" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="1103.47" y="1263.5" ></text>
</g>
<g >
<title>io/micrometer/shaded/org/pcollections/IntTree:::get (1 samples, 0.02%)</title><rect x="975.6" y="997" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="978.58" y="1007.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::get (2 samples, 0.04%)</title><rect x="292.6" y="661" width="0.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="295.60" y="671.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="651.9" y="533" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="654.88" y="543.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="378.2" y="437" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="381.23" y="447.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (2 samples, 0.04%)</title><rect x="1117.2" y="1045" width="0.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1120.23" y="1055.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getRequestURL (1 samples, 0.02%)</title><rect x="85.3" y="741" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="88.30" y="751.5" ></text>
</g>
<g >
<title>JVM_GetArrayElement (2 samples, 0.04%)</title><rect x="217.5" y="581" width="0.5" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="220.53" y="591.5" ></text>
</g>
<g >
<title>CodeHeap::find_start (1 samples, 0.02%)</title><rect x="50.4" y="517" width="0.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text x="53.40" y="527.5" ></text>
</g>
<g >
<title>grab_cache_page_write_begin (1 samples, 0.02%)</title><rect x="1175.3" y="1077" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1178.31" y="1087.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy5:::annotationType (1 samples, 0.02%)</title><rect x="300.6" y="597" width="0.3" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="303.64" y="607.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils$AnnotationCollector:::process (1 samples, 0.02%)</title><rect x="86.4" y="1045" width="0.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="89.45" y="1055.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.02%)</title><rect x="57.5" y="501" width="0.3" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="60.52" y="511.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/spi/AbstractLogger:::logMessage (7 samples, 0.14%)</title><rect x="645.5" y="565" width="1.6" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="648.46" y="575.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decodeArrayLoop (6 samples, 0.12%)</title><rect x="139.9" y="933" width="1.4" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="142.94" y="943.5" ></text>
</g>
<g >
<title>schedule (10 samples, 0.19%)</title><rect x="1156.5" y="1189" width="2.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1159.48" y="1199.5" ></text>
</g>
<g >
<title>SYSC_sendto (6 samples, 0.12%)</title><rect x="14.4" y="1461" width="1.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="17.36" y="1471.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="938.2" y="645" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="941.16" y="655.5" ></text>
</g>
<g >
<title>sys_write (31 samples, 0.60%)</title><rect x="1170.7" y="1205" width="7.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1173.72" y="1215.5" ></text>
</g>
<g >
<title>org/apache/logging/slf4j/Log4jLogger:::isTraceEnabled (1 samples, 0.02%)</title><rect x="1043.8" y="1269" width="0.2" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="1046.76" y="1279.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="334.4" y="485" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="337.39" y="495.5" ></text>
</g>
<g >
<title>start_xmit (1 samples, 0.02%)</title><rect x="15.3" y="1205" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="18.28" y="1215.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="234.8" y="549" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="237.75" y="559.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11OutputBuffer:::write (9 samples, 0.18%)</title><rect x="1009.1" y="1189" width="2.1" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1012.10" y="1199.5" ></text>
</g>
<g >
<title>kmem_cache_free (1 samples, 0.02%)</title><rect x="1150.1" y="1205" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1153.05" y="1215.5" ></text>
</g>
<g >
<title>sock_poll (1 samples, 0.02%)</title><rect x="1121.6" y="1205" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1124.59" y="1215.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (3 samples, 0.06%)</title><rect x="467.8" y="549" width="0.7" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="470.77" y="559.5" ></text>
</g>
<g >
<title>frame::sender_for_compiled_frame (1 samples, 0.02%)</title><rect x="213.6" y="565" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="216.63" y="575.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="914.3" y="485" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="917.28" y="495.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/spi/AbstractLogger:::logMessage (60 samples, 1.17%)</title><rect x="900.3" y="597" width="13.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="903.28" y="607.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::nextToken (8 samples, 0.16%)</title><rect x="335.3" y="517" width="1.8" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="338.30" y="527.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.02%)</title><rect x="959.3" y="709" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="962.28" y="719.5" ></text>
</g>
<g >
<title>tcp_poll (1 samples, 0.02%)</title><rect x="1121.6" y="1189" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1124.59" y="1199.5" ></text>
</g>
<g >
<title>JVM_GetStackTraceElement (4 samples, 0.08%)</title><rect x="309.1" y="517" width="1.0" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="312.13" y="527.5" ></text>
</g>
<g >
<title>java/io/FilterOutputStream:::close (1 samples, 0.02%)</title><rect x="1079.6" y="1285" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1082.58" y="1295.5" ></text>
</g>
<g >
<title>org/springframework/util/ReflectionUtils:::makeAccessible (2 samples, 0.04%)</title><rect x="293.3" y="661" width="0.5" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="296.29" y="671.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/util/HttpUtil:::getPatternUrl (5 samples, 0.10%)</title><rect x="192.5" y="661" width="1.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="195.51" y="671.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$3:::validate (1 samples, 0.02%)</title><rect x="1097.9" y="1237" width="0.3" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text x="1100.94" y="1247.5" ></text>
</g>
<g >
<title>_new_array_Java (1 samples, 0.02%)</title><rect x="213.2" y="629" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="216.17" y="639.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="774.7" y="453" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="777.70" y="463.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.02%)</title><rect x="387.4" y="533" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="390.42" y="543.5" ></text>
</g>
<g >
<title>deflate_slow (1 samples, 0.02%)</title><rect x="308.9" y="485" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="311.90" y="495.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1075.2" y="1125" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1078.21" y="1135.5" ></text>
</g>
<g >
<title>Parse::Parse (1 samples, 0.02%)</title><rect x="33.4" y="1269" width="0.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="36.42" y="1279.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ObjectMapper:::writeValueAsString (1 samples, 0.02%)</title><rect x="53.2" y="549" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="56.16" y="559.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (203 samples, 3.95%)</title><rect x="38.9" y="901" width="46.6" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="41.93" y="911.5" >org/..</text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1148.2" y="1269" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1151.22" y="1279.5" ></text>
</g>
<g >
<title>do_sync_readv_writev (16 samples, 0.31%)</title><rect x="1116.1" y="1157" width="3.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="1119.08" y="1167.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/logger/LogSlot:::exit (15 samples, 0.29%)</title><rect x="243.9" y="597" width="3.5" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="246.93" y="607.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="23.3" y="1253" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="26.32" y="1263.5" ></text>
</g>
<g >
<title>Node::in (1 samples, 0.02%)</title><rect x="32.0" y="1269" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="35.04" y="1279.5" ></text>
</g>
<g >
<title>vfs_write (2 samples, 0.04%)</title><rect x="87.1" y="1061" width="0.5" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="90.14" y="1071.5" ></text>
</g>
<g >
<title>sys_poll (1 samples, 0.02%)</title><rect x="647.1" y="325" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="650.06" y="335.5" ></text>
</g>
<g >
<title>pthread_mutex_trylock (1 samples, 0.02%)</title><rect x="1058.7" y="1253" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1061.68" y="1263.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (1 samples, 0.02%)</title><rect x="623.4" y="261" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="626.42" y="271.5" ></text>
</g>
<g >
<title>java/util/ArrayList$Itr:::next (1 samples, 0.02%)</title><rect x="46.3" y="597" width="0.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="49.27" y="607.5" ></text>
</g>
<g >
<title>org/jboss/netty/util/internal/LinkedTransferQueue:::xfer (1 samples, 0.02%)</title><rect x="34.6" y="1237" width="0.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="37.56" y="1247.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.04%)</title><rect x="490.5" y="421" width="0.5" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="493.49" y="431.5" ></text>
</g>
<g >
<title>do_sync_write (1 samples, 0.02%)</title><rect x="86.7" y="1077" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="89.68" y="1087.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.04%)</title><rect x="894.3" y="357" width="0.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="897.31" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1 samples, 0.02%)</title><rect x="1003.8" y="773" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="1006.82" y="783.5" ></text>
</g>
<g >
<title>java/lang/ref/Finalizer:::runFinalizer (1 samples, 0.02%)</title><rect x="1159.5" y="1349" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1162.47" y="1359.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="1075.2" y="965" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1078.21" y="975.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMethodMapping:::lookupHandlerMethod (126 samples, 2.45%)</title><rect x="252.7" y="645" width="28.9" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="255.66" y="655.5" >or..</text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="949.2" y="645" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="952.18" y="655.5" ></text>
</g>
<g >
<title>redis/clients/jedis/JedisClusterCommand:::runWithRetries (1 samples, 0.02%)</title><rect x="648.9" y="421" width="0.2" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="651.90" y="431.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="374.1" y="453" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="377.10" y="463.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (2 samples, 0.04%)</title><rect x="271.0" y="549" width="0.5" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="274.02" y="559.5" ></text>
</g>
<g >
<title>JavaThread::thread_from_jni_environment (2 samples, 0.04%)</title><rect x="832.8" y="517" width="0.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="835.79" y="527.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::nextToken (1 samples, 0.02%)</title><rect x="343.8" y="501" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="346.80" y="511.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (2 samples, 0.04%)</title><rect x="124.1" y="1061" width="0.5" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="127.10" y="1071.5" ></text>
</g>
<g >
<title>ip_queue_xmit (6 samples, 0.12%)</title><rect x="1117.9" y="1029" width="1.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1120.91" y="1039.5" ></text>
</g>
<g >
<title>mod_timer (1 samples, 0.02%)</title><rect x="1117.5" y="997" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1120.46" y="1007.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableCollection:::isEmpty (1 samples, 0.02%)</title><rect x="252.9" y="629" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="255.89" y="639.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="961.8" y="645" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="964.81" y="655.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="628.2" y="469" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="631.24" y="479.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="155.3" y="725" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="158.32" y="735.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="514.4" y="357" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="517.37" y="367.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="995.6" y="1093" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="998.55" y="1103.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="80.0" y="437" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="83.02" y="447.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1020.6" y="1013" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1023.58" y="1023.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (2 samples, 0.04%)</title><rect x="412.2" y="293" width="0.5" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="415.21" y="303.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (1 samples, 0.02%)</title><rect x="154.9" y="789" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="157.86" y="799.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.04%)</title><rect x="468.0" y="485" width="0.5" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="471.00" y="495.5" ></text>
</g>
<g >
<title>JavaCallWrapper::JavaCallWrapper (1 samples, 0.02%)</title><rect x="677.1" y="517" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="680.14" y="527.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="560.7" y="309" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="563.74" y="319.5" ></text>
</g>
<g >
<title>sock_poll (1 samples, 0.02%)</title><rect x="647.1" y="293" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="650.06" y="303.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardWrapper:::allocate (1 samples, 0.02%)</title><rect x="986.8" y="1157" width="0.3" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="989.83" y="1167.5" ></text>
</g>
<g >
<title>YoungList::rs_length_sampling_next (3 samples, 0.06%)</title><rect x="17.8" y="1429" width="0.7" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="20.81" y="1439.5" ></text>
</g>
<g >
<title>alloc_pages_current (1 samples, 0.02%)</title><rect x="962.0" y="549" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="965.04" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="279.7" y="517" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="282.75" y="527.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="859.4" y="357" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="862.42" y="367.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="859.4" y="341" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="862.42" y="351.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="944.4" y="597" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="947.36" y="607.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/FieldDeserializer:::setValue (2 samples, 0.04%)</title><rect x="337.1" y="517" width="0.5" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="340.14" y="527.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getOurStackTrace (31 samples, 0.60%)</title><rect x="58.9" y="549" width="7.1" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="61.90" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (2 samples, 0.04%)</title><rect x="304.3" y="597" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="307.31" y="607.5" ></text>
</g>
<g >
<title>wake_up_state (29 samples, 0.56%)</title><rect x="904.0" y="405" width="6.6" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="906.95" y="415.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/resource/ResourceUrlProviderExposingInterceptor:::preHandle (1 samples, 0.02%)</title><rect x="940.7" y="693" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="943.68" y="703.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="801.3" y="485" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="804.33" y="495.5" ></text>
</g>
<g >
<title>__schedule (1 samples, 0.02%)</title><rect x="651.4" y="357" width="0.3" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="654.42" y="367.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (2 samples, 0.04%)</title><rect x="1033.0" y="1269" width="0.4" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1035.97" y="1279.5" ></text>
</g>
<g >
<title>org/apache/coyote/Response:::getWriteListener (1 samples, 0.02%)</title><rect x="987.7" y="1205" width="0.3" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="990.75" y="1215.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="64.4" y="341" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="67.41" y="351.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::nextToken (1 samples, 0.02%)</title><rect x="342.2" y="501" width="0.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="345.19" y="511.5" ></text>
</g>
<g >
<title>InstanceKlass::allocate_instance (1 samples, 0.02%)</title><rect x="950.3" y="709" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="953.33" y="719.5" ></text>
</g>
<g >
<title>wake_up_state (15 samples, 0.29%)</title><rect x="389.7" y="389" width="3.5" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="392.71" y="399.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater:::deflateBytes (1 samples, 0.02%)</title><rect x="308.7" y="533" width="0.2" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text x="311.67" y="543.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/web/trace/servlet/TraceableHttpServletRequest:::getUri (1 samples, 0.02%)</title><rect x="85.3" y="757" width="0.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="88.30" y="767.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::addEvent (60 samples, 1.17%)</title><rect x="52.7" y="581" width="13.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="55.70" y="591.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (1 samples, 0.02%)</title><rect x="1119.3" y="997" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="1122.29" y="1007.5" ></text>
</g>
<g >
<title>org/springframework/http/converter/AbstractHttpMessageConverter:::canWrite (1 samples, 0.02%)</title><rect x="82.5" y="629" width="0.3" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="85.54" y="639.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (3 samples, 0.06%)</title><rect x="629.2" y="357" width="0.6" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="632.16" y="367.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1182.4" y="1269" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1185.42" y="1279.5" ></text>
</g>
<g >
<title>ktime_get_real (1 samples, 0.02%)</title><rect x="1002.7" y="789" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1005.67" y="799.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="961.8" y="597" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="964.81" y="607.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/util/HttpUtil:::getPatternUrl (9 samples, 0.18%)</title><rect x="151.4" y="869" width="2.1" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text x="154.42" y="879.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1061.2" y="1269" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1064.21" y="1279.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (1 samples, 0.02%)</title><rect x="1000.6" y="933" width="0.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="1003.60" y="943.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/utils/ByteUtils:::writeVarint (1 samples, 0.02%)</title><rect x="1040.1" y="1221" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="1043.09" y="1231.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:::writeStartObject (1 samples, 0.02%)</title><rect x="364.5" y="533" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="367.46" y="543.5" ></text>
</g>
<g >
<title>ClassLoaderDataGraph::roots_cld_do (1 samples, 0.02%)</title><rect x="21.0" y="1413" width="0.2" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text x="24.02" y="1423.5" ></text>
</g>
<g >
<title>Matcher::match (1 samples, 0.02%)</title><rect x="23.5" y="1365" width="0.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text x="26.54" y="1375.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="965.2" y="549" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="968.25" y="559.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::hashCode (1 samples, 0.02%)</title><rect x="255.2" y="581" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="258.18" y="591.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (1 samples, 0.02%)</title><rect x="1182.4" y="1061" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1185.42" y="1071.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor53:::invoke (1 samples, 0.02%)</title><rect x="922.5" y="549" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="925.55" y="559.5" ></text>
</g>
<g >
<title>virtnet_select_queue (1 samples, 0.02%)</title><rect x="1118.1" y="917" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1121.14" y="927.5" ></text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (3 samples, 0.06%)</title><rect x="155.5" y="789" width="0.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="158.55" y="799.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::compile (1 samples, 0.02%)</title><rect x="51.6" y="501" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="54.55" y="511.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::findAnnotation (2 samples, 0.04%)</title><rect x="937.5" y="597" width="0.4" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="940.47" y="607.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="344.7" y="277" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="347.72" y="287.5" ></text>
</g>
<g >
<title>tcp_recvmsg (8 samples, 0.16%)</title><rect x="1020.8" y="1045" width="1.8" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1023.81" y="1055.5" ></text>
</g>
<g >
<title>java/util/LinkedList:::unlink (1 samples, 0.02%)</title><rect x="153.7" y="805" width="0.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="156.71" y="815.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::initializeData (1 samples, 0.02%)</title><rect x="231.1" y="613" width="0.2" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="234.08" y="623.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="117.0" y="1029" width="0.2" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="119.98" y="1039.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1053.6" y="1237" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1056.63" y="1247.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="914.3" y="277" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="917.28" y="287.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="234.8" y="309" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="237.75" y="319.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMethodMapping:::addMatchingMappings (4 samples, 0.08%)</title><rect x="46.0" y="629" width="1.0" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="49.04" y="639.5" ></text>
</g>
<g >
<title>dev_queue_xmit (19 samples, 0.37%)</title><rect x="1002.0" y="853" width="4.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="1004.98" y="863.5" ></text>
</g>
<g >
<title>java/util/HashMap:::putMapEntries (1 samples, 0.02%)</title><rect x="196.2" y="661" width="0.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="199.18" y="671.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/CipherCore:::doFinal (3 samples, 0.06%)</title><rect x="164.7" y="629" width="0.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="167.73" y="639.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getHeader (1 samples, 0.02%)</title><rect x="45.8" y="645" width="0.2" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="48.81" y="655.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="1022.0" y="901" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1024.95" y="911.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="984.1" y="1013" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="987.07" y="1023.5" ></text>
</g>
<g >
<title>jni_fast_GetIntField (1 samples, 0.02%)</title><rect x="1007.7" y="1109" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1010.72" y="1119.5" ></text>
</g>
<g >
<title>java/util/HashSet:::iterator (16 samples, 0.31%)</title><rect x="1134.4" y="1333" width="3.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1137.44" y="1343.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1050.2" y="1221" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1053.19" y="1231.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (1 samples, 0.02%)</title><rect x="1007.0" y="997" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="1010.03" y="1007.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (3 samples, 0.06%)</title><rect x="629.2" y="453" width="0.6" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="632.16" y="463.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.04%)</title><rect x="629.4" y="341" width="0.4" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="632.39" y="351.5" ></text>
</g>
<g >
<title>JvmtiVMObjectAllocEventCollector::JvmtiVMObjectAllocEventCollector (1 samples, 0.02%)</title><rect x="624.8" y="517" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="627.79" y="527.5" ></text>
</g>
<g >
<title>jni_GetPrimitiveArrayCritical (1 samples, 0.02%)</title><rect x="413.6" y="517" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="416.59" y="527.5" ></text>
</g>
<g >
<title>_new_array_Java (1 samples, 0.02%)</title><rect x="653.0" y="485" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="656.03" y="495.5" ></text>
</g>
<g >
<title>deflateReset (3 samples, 0.06%)</title><rect x="423.2" y="501" width="0.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="426.23" y="511.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="971.2" y="901" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="974.22" y="911.5" ></text>
</g>
<g >
<title>java/nio/charset/CharsetEncoder:::encode (5 samples, 0.10%)</title><rect x="1009.6" y="1173" width="1.1" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="1012.56" y="1183.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="651.9" y="469" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="654.88" y="479.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (3 samples, 0.06%)</title><rect x="386.5" y="517" width="0.7" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" />
<text x="389.50" y="527.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="1022.0" y="837" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="1024.95" y="847.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::encode (1 samples, 0.02%)</title><rect x="185.9" y="645" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="188.85" y="655.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (3 samples, 0.06%)</title><rect x="10.0" y="1509" width="0.7" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="13.00" y="1519.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl:::write (1 samples, 0.02%)</title><rect x="1129.2" y="1301" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="1132.16" y="1311.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="914.3" y="293" width="0.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="917.28" y="303.5" ></text>
</g>
<g >
<title>java/util/AbstractList$Itr:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="895.5" y="549" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="898.46" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor94:::invoke (1 samples, 0.02%)</title><rect x="337.4" y="501" width="0.2" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="340.37" y="511.5" ></text>
</g>
<g >
<title>hrtimer_cancel (4 samples, 0.08%)</title><rect x="1155.1" y="1189" width="0.9" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="1158.11" y="1199.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1053.6" y="1173" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1056.63" y="1183.5" ></text>
</g>
<g >
<title>do_softirq (2 samples, 0.04%)</title><rect x="891.1" y="533" width="0.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="894.10" y="543.5" ></text>
</g>
<g >
<title>sun/security/jca/ProviderList$ServiceList:::tryGet (2 samples, 0.04%)</title><rect x="41.9" y="613" width="0.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="44.91" y="623.5" ></text>
</g>
<g >
<title>org/springframework/web/method/HandlerMethod:::&lt;init&gt; (2 samples, 0.04%)</title><rect x="294.0" y="661" width="0.4" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="296.98" y="671.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="962.0" y="661" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="965.04" y="671.5" ></text>
</g>
<g >
<title>inflateStateCheck (4 samples, 0.08%)</title><rect x="779.5" y="533" width="0.9" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="782.53" y="543.5" ></text>
</g>
<g >
<title>netif_receive_skb_internal (1 samples, 0.02%)</title><rect x="884.4" y="389" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="887.44" y="399.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::equals (2 samples, 0.04%)</title><rect x="150.3" y="853" width="0.4" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="153.27" y="863.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/MeterRegistry:::registerMeterIfNecessary (2 samples, 0.04%)</title><rect x="85.8" y="1029" width="0.4" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="88.76" y="1039.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/FormContentFilter:::doFilterInternal (205 samples, 3.99%)</title><rect x="38.7" y="965" width="47.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="41.70" y="975.5" >org/..</text>
</g>
<g >
<title>CompileBroker::invoke_compiler_on_method (48 samples, 0.93%)</title><rect x="22.9" y="1429" width="11.0" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="25.86" y="1439.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="322.9" y="373" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="325.91" y="383.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="583.7" y="405" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="586.70" y="415.5" ></text>
</g>
<g >
<title>Parse::do_field_access (1 samples, 0.02%)</title><rect x="33.4" y="1013" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="36.42" y="1023.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="180.6" y="437" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="183.57" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (5 samples, 0.10%)</title><rect x="1075.4" y="1221" width="1.2" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="1078.44" y="1231.5" ></text>
</g>
<g >
<title>java/util/Formatter:::format (17 samples, 0.33%)</title><rect x="1046.7" y="1285" width="3.9" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1049.75" y="1295.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="81.6" y="597" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="84.63" y="607.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/FieldDeserializer:::setValue (2 samples, 0.04%)</title><rect x="332.3" y="533" width="0.5" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="335.32" y="543.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::iterator (1 samples, 0.02%)</title><rect x="933.3" y="629" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="936.34" y="639.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="779.3" y="469" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="782.30" y="479.5" ></text>
</g>
<g >
<title>org/jboss/netty/channel/socket/nio/SelectorUtil:::select (1 samples, 0.02%)</title><rect x="34.8" y="1269" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="37.79" y="1279.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (1 samples, 0.02%)</title><rect x="223.3" y="565" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="226.27" y="575.5" ></text>
</g>
<g >
<title>StringTable::intern (8 samples, 0.16%)</title><rect x="62.3" y="453" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="65.34" y="463.5" ></text>
</g>
<g >
<title>add_wait_queue (2 samples, 0.04%)</title><rect x="1151.7" y="1189" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1154.66" y="1199.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotatedElementUtils:::searchWithFindSemantics (26 samples, 0.51%)</title><rect x="297.9" y="629" width="6.0" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="300.88" y="639.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="303.6" y="597" width="0.3" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text x="306.62" y="607.5" ></text>
</g>
<g >
<title>ip_queue_xmit (3 samples, 0.06%)</title><rect x="14.8" y="1333" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="17.82" y="1343.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method:::hashCode (1 samples, 0.02%)</title><rect x="981.1" y="1013" width="0.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="984.09" y="1023.5" ></text>
</g>
<g >
<title>CodeCache::find_blob (8 samples, 0.16%)</title><rect x="512.5" y="421" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text x="515.53" y="431.5" ></text>
</g>
<g >
<title>path_put (1 samples, 0.02%)</title><rect x="388.6" y="437" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="391.56" y="447.5" ></text>
</g>
<g >
<title>Parse::do_one_bytecode (1 samples, 0.02%)</title><rect x="33.4" y="1221" width="0.2" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text x="36.42" y="1231.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/context/ContextUtil:::trueEnter (1 samples, 0.02%)</title><rect x="192.3" y="661" width="0.2" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="195.28" y="671.5" ></text>
</g>
<g >
<title>I2C/C2I adapters (1 samples, 0.02%)</title><rect x="33.9" y="1317" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="36.88" y="1327.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="1075.2" y="1045" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1078.21" y="1055.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::recycle (4 samples, 0.08%)</title><rect x="108.9" y="1253" width="1.0" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="111.95" y="1263.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$7:::write (1 samples, 0.02%)</title><rect x="1097.7" y="1221" width="0.2" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="1100.71" y="1231.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::scanNumber (1 samples, 0.02%)</title><rect x="335.5" y="501" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="338.53" y="511.5" ></text>
</g>
<g >
<title>__skb_clone (1 samples, 0.02%)</title><rect x="1118.6" y="885" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="1121.60" y="895.5" ></text>
</g>
<g >
<title>__netdev_alloc_skb (1 samples, 0.02%)</title><rect x="608.5" y="293" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="611.49" y="303.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1116.8" y="1045" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="1119.77" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="651.9" y="501" width="0.2" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="654.88" y="511.5" ></text>
</g>
<g >
<title>__ext4_handle_dirty_metadata (1 samples, 0.02%)</title><rect x="1176.0" y="1013" width="0.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="1179.00" y="1023.5" ></text>
</g>
<g >
<title>pipe_read (1 samples, 0.02%)</title><rect x="1159.0" y="1221" width="0.2" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="1162.01" y="1231.5" ></text>
</g>
<g >
<title>__page_cache_alloc (1 samples, 0.02%)</title><rect x="1175.3" y="1061" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1178.31" y="1071.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfo:::getMatchingCondition (3 samples, 0.06%)</title><rect x="46.3" y="613" width="0.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="49.27" y="623.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1053.2" y="1141" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1056.18" y="1151.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="961.8" y="549" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="964.81" y="559.5" ></text>
</g>
<g >
<title>java/text/DecimalFormat:::parse (3 samples, 0.06%)</title><rect x="654.4" y="549" width="0.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="657.41" y="559.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$3:::isSatisfiedBy (2 samples, 0.04%)</title><rect x="490.5" y="405" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="493.49" y="415.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="1089.0" y="1285" width="0.2" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="1091.99" y="1295.5" ></text>
</g>
<g >
<title>block_write_end (2 samples, 0.04%)</title><rect x="1176.5" y="1061" width="0.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1179.46" y="1071.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="378.2" y="421" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="381.23" y="431.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slotchain/DefaultProcessorSlotChain$1:::exit (15 samples, 0.29%)</title><rect x="243.9" y="645" width="3.5" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="246.93" y="655.5" ></text>
</g>
<g >
<title>G1CollectedHeap::mem_allocate (1 samples, 0.02%)</title><rect x="221.2" y="485" width="0.2" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text x="224.21" y="495.5" ></text>
</g>
<g >
<title>ep_poll (24 samples, 0.47%)</title><rect x="1153.3" y="1237" width="5.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1156.27" y="1247.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat$Timer:::observeDuration (2 samples, 0.04%)</title><rect x="648.4" y="469" width="0.5" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="651.44" y="479.5" ></text>
</g>
<g >
<title>AddPNode::Ideal (1 samples, 0.02%)</title><rect x="33.4" y="965" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="36.42" y="975.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="1120.4" y="1285" width="0.3" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="1123.44" y="1295.5" ></text>
</g>
<g >
<title>pthread_getspecific (1 samples, 0.02%)</title><rect x="548.1" y="437" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="551.12" y="447.5" ></text>
</g>
<g >
<title>OopMapCache::lookup (1 samples, 0.02%)</title><rect x="21.5" y="1333" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="24.48" y="1343.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$3ReducingSink:::accept (4 samples, 0.08%)</title><rect x="957.0" y="677" width="0.9" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="959.98" y="687.5" ></text>
</g>
<g >
<title>tcp_ack (1 samples, 0.02%)</title><rect x="910.4" y="101" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="913.38" y="111.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="877.3" y="469" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="880.32" y="479.5" ></text>
</g>
<g >
<title>deflate (166 samples, 3.23%)</title><rect x="426.0" y="501" width="38.1" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="428.98" y="511.5" >def..</text>
</g>
<g >
<title>jni_SetBooleanField (1 samples, 0.02%)</title><rect x="464.6" y="501" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="467.55" y="511.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::subFormat (3 samples, 0.06%)</title><rect x="652.6" y="565" width="0.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="655.57" y="575.5" ></text>
</g>
<g >
<title>ip_output (1 samples, 0.02%)</title><rect x="1022.4" y="949" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1025.41" y="959.5" ></text>
</g>
<g >
<title>G1SATBCardTableLoggingModRefBS::write_ref_field_work (3 samples, 0.06%)</title><rect x="531.4" y="469" width="0.6" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="534.36" y="479.5" ></text>
</g>
<g >
<title>fsnotify (3 samples, 0.06%)</title><rect x="1177.1" y="1173" width="0.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1180.14" y="1183.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (1 samples, 0.02%)</title><rect x="1045.8" y="1269" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1048.83" y="1279.5" ></text>
</g>
<g >
<title>JvmtiVMObjectAllocEventCollector::JvmtiVMObjectAllocEventCollector (1 samples, 0.02%)</title><rect x="44.2" y="565" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="47.21" y="575.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.02%)</title><rect x="1048.8" y="1109" width="0.2" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="1051.81" y="1119.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.02%)</title><rect x="630.3" y="501" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="633.30" y="511.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="949.4" y="757" width="0.2" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text x="952.41" y="767.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="412.7" y="421" width="0.2" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="415.67" y="431.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdDataManager:::setUserAdClickIntervalTimeStamp (2 samples, 0.04%)</title><rect x="649.4" y="565" width="0.4" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" />
<text x="652.36" y="575.5" ></text>
</g>
<g >
<title>tcp_send_ack (1 samples, 0.02%)</title><rect x="14.1" y="1381" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="17.13" y="1391.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1128.5" y="1157" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1131.47" y="1167.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpTrace$Request:::&lt;init&gt; (6 samples, 0.12%)</title><rect x="84.2" y="773" width="1.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="87.15" y="783.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="1182.4" y="1157" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="1185.42" y="1167.5" ></text>
</g>
<g >
<title>JVM_IHashCode (2 samples, 0.04%)</title><rect x="107.8" y="1221" width="0.5" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="110.80" y="1231.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="53.2" y="517" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="56.16" y="527.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal:::setInitialValue (3 samples, 0.06%)</title><rect x="970.1" y="885" width="0.7" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="973.07" y="895.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="15.1" y="1237" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="18.05" y="1247.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="392.9" y="309" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="395.93" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (13 samples, 0.25%)</title><rect x="11.1" y="1493" width="3.0" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="14.15" y="1503.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="250.8" y="549" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="253.82" y="559.5" ></text>
</g>
<g >
<title>JavaThread::handle_special_suspend_equivalent_condition (1 samples, 0.02%)</title><rect x="90.6" y="1205" width="0.2" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text x="93.58" y="1215.5" ></text>
</g>
<g >
<title>schedule (2 samples, 0.04%)</title><rect x="35.7" y="1125" width="0.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="38.71" y="1135.5" ></text>
</g>
<g >
<title>jni_ReleasePrimitiveArrayCritical (6 samples, 0.12%)</title><rect x="77.0" y="533" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="80.04" y="543.5" ></text>
</g>
<g >
<title>sys_futex (14 samples, 0.27%)</title><rect x="1165.0" y="1269" width="3.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1167.98" y="1279.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.06%)</title><rect x="1048.8" y="1253" width="0.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="1051.81" y="1263.5" ></text>
</g>
<g >
<title>rw_verify_area (2 samples, 0.04%)</title><rect x="1022.6" y="1109" width="0.5" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1025.64" y="1119.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender:::sendProduceRequests (47 samples, 0.91%)</title><rect x="1091.5" y="1301" width="10.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="1094.51" y="1311.5" ></text>
</g>
<g >
<title>security_file_permission (1 samples, 0.02%)</title><rect x="1113.8" y="1141" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1116.78" y="1151.5" ></text>
</g>
<g >
<title>__do_softirq (2 samples, 0.04%)</title><rect x="548.3" y="357" width="0.5" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text x="551.35" y="367.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="1182.4" y="1125" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1185.42" y="1135.5" ></text>
</g>
<g >
<title>HeapRegion::block_size (1 samples, 0.02%)</title><rect x="22.2" y="1333" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="25.17" y="1343.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap$LinkedKeyIterator:::next (2 samples, 0.04%)</title><rect x="266.0" y="597" width="0.4" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="268.97" y="607.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::getLibProperties (578 samples, 11.25%)</title><rect x="498.5" y="565" width="132.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="501.53" y="575.5" >com/coohuadata/a..</text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="983.8" y="1013" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="986.84" y="1023.5" ></text>
</g>
<g >
<title>JavaThread::last_frame (1 samples, 0.02%)</title><rect x="322.7" y="533" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="325.68" y="543.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils$AnnotationCollector:::&lt;init&gt; (4 samples, 0.08%)</title><rect x="202.8" y="661" width="1.0" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="205.84" y="671.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="234.8" y="501" width="0.2" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="237.75" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (14 samples, 0.27%)</title><rect x="389.7" y="357" width="3.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="392.71" y="367.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="583.9" y="357" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="586.93" y="367.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater:::init (2 samples, 0.04%)</title><rect x="68.8" y="581" width="0.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="71.77" y="591.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="234.8" y="373" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="237.75" y="383.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="914.3" y="309" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="917.28" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1 samples, 0.02%)</title><rect x="962.0" y="533" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="965.04" y="543.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater:::deflateBytes (171 samples, 3.33%)</title><rect x="426.0" y="533" width="39.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="428.98" y="543.5" >jav..</text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONScanner:::next (1 samples, 0.02%)</title><rect x="354.1" y="581" width="0.3" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="357.13" y="591.5" ></text>
</g>
<g >
<title>java/lang/Object:::toString (2 samples, 0.04%)</title><rect x="1045.6" y="1285" width="0.5" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="1048.60" y="1295.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfo:::hashCode (2 samples, 0.04%)</title><rect x="255.2" y="597" width="0.4" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="258.18" y="607.5" ></text>
</g>
<g >
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="1022.6" y="1077" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1025.64" y="1087.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/threads/TaskQueue:::offer (26 samples, 0.51%)</title><rect x="1138.3" y="1301" width="6.0" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1141.35" y="1311.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="764.1" y="405" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="767.14" y="415.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::encode (3 samples, 0.06%)</title><rect x="53.4" y="549" width="0.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="56.39" y="559.5" ></text>
</g>
<g >
<title>Interpreter (4,903 samples, 95.39%)</title><rect x="33.9" y="1365" width="1125.6" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="36.88" y="1375.5" >Interpreter</text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="514.6" y="389" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="517.60" y="399.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (11 samples, 0.21%)</title><rect x="181.0" y="581" width="2.6" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="184.03" y="591.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::epollCtl (16 samples, 0.31%)</title><rect x="1148.4" y="1301" width="3.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1151.45" y="1311.5" ></text>
</g>
<g >
<title>org/springframework/http/converter/AbstractGenericHttpMessageConverter:::canWrite (1 samples, 0.02%)</title><rect x="932.6" y="645" width="0.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="935.65" y="655.5" ></text>
</g>
<g >
<title>compress_block (4 samples, 0.08%)</title><rect x="55.9" y="453" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="58.91" y="463.5" ></text>
</g>
<g >
<title>redis/clients/jedis/JedisCluster$25:::execute (1 samples, 0.02%)</title><rect x="647.8" y="389" width="0.2" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text x="650.75" y="399.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1020.6" y="997" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1023.58" y="1007.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor62:::invoke (1 samples, 0.02%)</title><rect x="344.9" y="517" width="0.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="347.95" y="527.5" ></text>
</g>
<g >
<title>__libc_writev (1 samples, 0.02%)</title><rect x="15.7" y="1509" width="0.3" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="18.74" y="1519.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardContextValve:::invoke (216 samples, 4.20%)</title><rect x="37.1" y="1189" width="49.6" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="40.09" y="1199.5" >org/a..</text>
</g>
<g >
<title>ParseGenerator::generate (1 samples, 0.02%)</title><rect x="33.4" y="1381" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="36.42" y="1391.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.02%)</title><rect x="1047.4" y="1253" width="0.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="1050.44" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/util/NumberUtils:::parseNumber (3 samples, 0.06%)</title><rect x="922.8" y="597" width="0.7" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="925.78" y="607.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (1 samples, 0.02%)</title><rect x="967.3" y="725" width="0.2" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="970.32" y="735.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat:::setMax (1 samples, 0.02%)</title><rect x="38.9" y="853" width="0.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="41.93" y="863.5" ></text>
</g>
<g >
<title>java/nio/charset/Charset:::atBugLevel (1 samples, 0.02%)</title><rect x="1098.6" y="1221" width="0.3" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1101.63" y="1231.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1022.0" y="1013" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1024.95" y="1023.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="1112.4" y="1237" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1115.40" y="1247.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="466.6" y="485" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="469.62" y="495.5" ></text>
</g>
<g >
<title>ep_poll (19 samples, 0.37%)</title><rect x="1123.9" y="1205" width="4.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1126.88" y="1215.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="362.6" y="549" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="365.62" y="559.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::normalize (3 samples, 0.06%)</title><rect x="114.0" y="1205" width="0.7" height="15.0" fill="rgb(99,244,99)" rx="2" ry="2" />
<text x="117.00" y="1215.5" ></text>
</g>
<g >
<title>sun/nio/cs/ISO_8859_1$Encoder:::encodeBufferLoop (3 samples, 0.06%)</title><rect x="1010.0" y="1157" width="0.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="1013.02" y="1167.5" ></text>
</g>
<g >
<title>java/security/Provider:::getService (2 samples, 0.04%)</title><rect x="41.9" y="597" width="0.5" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="44.91" y="607.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (1 samples, 0.02%)</title><rect x="1113.3" y="1061" width="0.3" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="1116.32" y="1071.5" ></text>
</g>
<g >
<title>kmem_cache_free (1 samples, 0.02%)</title><rect x="1002.9" y="757" width="0.2" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="1005.90" y="767.5" ></text>
</g>
<g >
<title>org/springframework/http/converter/xml/Jaxb2RootElementHttpMessageConverter:::canWrite (3 samples, 0.06%)</title><rect x="937.2" y="629" width="0.7" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="940.24" y="639.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (4 samples, 0.08%)</title><rect x="1048.8" y="1269" width="0.9" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="1051.81" y="1279.5" ></text>
</g>
<g >
<title>do_sync_write (21 samples, 0.41%)</title><rect x="1025.9" y="1157" width="4.8" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="1028.86" y="1167.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="1168.4" y="1077" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1171.42" y="1087.5" ></text>
</g>
<g >
<title>com/google/gson/stream/JsonWriter:::string (21 samples, 0.41%)</title><rect x="218.5" y="565" width="4.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="221.45" y="575.5" ></text>
</g>
<g >
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="1025.6" y="1157" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1028.63" y="1167.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::matcher (2 samples, 0.04%)</title><rect x="271.9" y="565" width="0.5" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="274.94" y="575.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (1 samples, 0.02%)</title><rect x="965.2" y="741" width="0.3" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="968.25" y="751.5" ></text>
</g>
<g >
<title>CollectedHeap::post_allocation_setup_array (4 samples, 0.08%)</title><rect x="170.2" y="485" width="1.0" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="173.24" y="495.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::poll (46 samples, 0.89%)</title><rect x="1148.4" y="1317" width="10.6" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1151.45" y="1327.5" ></text>
</g>
<g >
<title>tcp_current_mss (1 samples, 0.02%)</title><rect x="1119.5" y="1077" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1122.52" y="1087.5" ></text>
</g>
<g >
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="34.8" y="1173" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="37.79" y="1183.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher:::chooseProvider (30 samples, 0.58%)</title><rect x="166.1" y="629" width="6.9" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="169.11" y="639.5" ></text>
</g>
<g >
<title>SharedRuntime::complete_monitor_locking_C (2 samples, 0.04%)</title><rect x="149.8" y="821" width="0.5" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text x="152.81" y="831.5" ></text>
</g>
<g >
<title>java/security/Provider:::getService (1 samples, 0.02%)</title><rect x="41.2" y="613" width="0.3" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="44.22" y="623.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (1 samples, 0.02%)</title><rect x="86.7" y="1157" width="0.2" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="89.68" y="1167.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="832.6" y="485" width="0.2" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="835.56" y="495.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="223.3" y="549" width="0.2" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="226.27" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1075.2" y="1189" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1078.21" y="1199.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="1188.6" y="1301" width="0.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1191.62" y="1311.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="944.4" y="549" width="0.2" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text x="947.36" y="559.5" ></text>
</g>
<g >
<title>_new_array_Java (2 samples, 0.04%)</title><rect x="362.9" y="549" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="365.85" y="559.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/DispatcherServlet:::doDispatch (187 samples, 3.64%)</title><rect x="40.5" y="693" width="43.0" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text x="43.53" y="703.5" >org/..</text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="392.9" y="341" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="395.93" y="351.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::afterCompletion (143 samples, 2.78%)</title><rect x="210.2" y="661" width="32.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="213.19" y="671.5" >co..</text>
</g>
<g >
<title>PhaseIdealLoop::split_if_with_blocks (1 samples, 0.02%)</title><rect x="31.6" y="1349" width="0.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="34.58" y="1359.5" ></text>
</g>
<g >
<title>java/lang/String:::toUpperCase (2 samples, 0.04%)</title><rect x="175.5" y="613" width="0.5" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="178.52" y="623.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardContext:::getApplicationEventListeners (1 samples, 0.02%)</title><rect x="126.6" y="997" width="0.3" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="129.62" y="1007.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::set (1 samples, 0.02%)</title><rect x="1169.1" y="1333" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1172.11" y="1343.5" ></text>
</g>
<g >
<title>java_lang_Thread::is_alive (1 samples, 0.02%)</title><rect x="1036.2" y="1221" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="1039.19" y="1231.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdLogTrackManager:::ecpTrack (9 samples, 0.18%)</title><rect x="645.0" y="581" width="2.1" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="648.00" y="591.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (14 samples, 0.27%)</title><rect x="1185.2" y="1221" width="3.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1188.18" y="1231.5" ></text>
</g>
<g >
<title>redis/clients/jedis/JedisClusterCommand:::runWithRetries (1 samples, 0.02%)</title><rect x="647.8" y="405" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="650.75" y="415.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.02%)</title><rect x="958.8" y="725" width="0.3" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="961.82" y="735.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="1020.6" y="901" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1023.58" y="911.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/B2CConverter:::convert (2 samples, 0.04%)</title><rect x="117.4" y="1205" width="0.5" height="15.0" fill="rgb(51,200,51)" rx="2" ry="2" />
<text x="120.44" y="1215.5" ></text>
</g>
<g >
<title>do_softirq (2 samples, 0.04%)</title><rect x="548.3" y="389" width="0.5" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="551.35" y="399.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/stats/Meter:::record (2 samples, 0.04%)</title><rect x="1109.0" y="1253" width="0.4" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="1111.96" y="1263.5" ></text>
</g>
<g >
<title>java/lang/Integer:::toString (1 samples, 0.02%)</title><rect x="1092.2" y="1269" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="1095.20" y="1279.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="117.2" y="1109" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="120.21" y="1119.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/AbstractEndpoint:::processSocket (27 samples, 0.53%)</title><rect x="1138.1" y="1333" width="6.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1141.12" y="1343.5" ></text>
</g>
<g >
<title>vfs_write (1 samples, 0.02%)</title><rect x="86.7" y="1093" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="89.68" y="1103.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="1047.4" y="1237" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1050.44" y="1247.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (34 samples, 0.66%)</title><rect x="903.0" y="533" width="7.8" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="906.04" y="543.5" ></text>
</g>
<g >
<title>tcp_poll (1 samples, 0.02%)</title><rect x="647.1" y="277" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="650.06" y="287.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/AbstractMessageConverterMethodProcessor:::writeWithMessageConverters (40 samples, 0.78%)</title><rect x="929.2" y="661" width="9.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="932.21" y="671.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="180.6" y="501" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="183.57" y="511.5" ></text>
</g>
<g >
<title>futex_wake_op (20 samples, 0.39%)</title><rect x="1139.3" y="1189" width="4.6" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1142.26" y="1199.5" ></text>
</g>
<g >
<title>pqdownheap (1 samples, 0.02%)</title><rect x="456.3" y="453" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="459.29" y="463.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/FrameworkServlet:::service (192 samples, 3.74%)</title><rect x="40.1" y="741" width="44.1" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="43.07" y="751.5" >org/..</text>
</g>
<g >
<title>__call_rcu (1 samples, 0.02%)</title><rect x="1149.8" y="1205" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1152.82" y="1215.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.02%)</title><rect x="66.2" y="549" width="0.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="69.25" y="559.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (2 samples, 0.04%)</title><rect x="969.2" y="869" width="0.4" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text x="972.15" y="879.5" ></text>
</g>
<g >
<title>java/lang/Thread:::sleep (12 samples, 0.23%)</title><rect x="1060.1" y="1333" width="2.7" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="1063.06" y="1343.5" ></text>
</g>
<g >
<title>ip_queue_xmit (1 samples, 0.02%)</title><rect x="1022.4" y="981" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1025.41" y="991.5" ></text>
</g>
<g >
<title>Symbol::as_klass_external_name (37 samples, 0.72%)</title><rect x="540.3" y="453" width="8.5" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="543.31" y="463.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="117.2" y="917" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="120.21" y="927.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="910.4" y="309" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="913.38" y="319.5" ></text>
</g>
<g >
<title>org/apache/coyote/AbstractProcessor:::action (1 samples, 0.02%)</title><rect x="942.3" y="693" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="945.29" y="703.5" ></text>
</g>
<g >
<title>ThreadStateTransition::trans_from_native (1 samples, 0.02%)</title><rect x="1052.0" y="1269" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="1055.03" y="1279.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="801.3" y="517" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="804.33" y="527.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_pre (2 samples, 0.04%)</title><rect x="153.0" y="821" width="0.5" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="156.02" y="831.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="628.2" y="405" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="631.24" y="415.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (1 samples, 0.02%)</title><rect x="84.2" y="709" width="0.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="87.15" y="719.5" ></text>
</g>
<g >
<title>G1CollectedHeap::can_elide_initializing_store_barrier (1 samples, 0.02%)</title><rect x="213.2" y="581" width="0.2" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text x="216.17" y="591.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="914.3" y="421" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="917.28" y="431.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="890.9" y="581" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="893.87" y="591.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy48:::annotationType (1 samples, 0.02%)</title><rect x="204.4" y="645" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="207.45" y="655.5" ></text>
</g>
<g >
<title>Compile::Process_OopMap_Node (2 samples, 0.04%)</title><rect x="22.9" y="1349" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text x="25.86" y="1359.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1 samples, 0.02%)</title><rect x="608.5" y="261" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="611.49" y="271.5" ></text>
</g>
<g >
<title>__irqentry_text_start (2 samples, 0.04%)</title><rect x="412.2" y="437" width="0.5" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="415.21" y="447.5" ></text>
</g>
<g >
<title>org/springframework/http/CacheControl:::getHeaderValue (1 samples, 0.02%)</title><rect x="209.5" y="677" width="0.2" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text x="212.50" y="687.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.04%)</title><rect x="899.6" y="485" width="0.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="902.59" y="495.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/util/KafkaProducerHandler:::run (82 samples, 1.60%)</title><rect x="1031.8" y="1301" width="18.8" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1034.82" y="1311.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="1137.9" y="1093" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1140.89" y="1103.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="764.4" y="469" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="767.37" y="479.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="1050.2" y="997" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1053.19" y="1007.5" ></text>
</g>
<g >
<title>sch_direct_xmit (1 samples, 0.02%)</title><rect x="15.3" y="1237" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="18.28" y="1247.5" ></text>
</g>
<g >
<title>Klass::external_name (52 samples, 1.01%)</title><rect x="537.8" y="469" width="11.9" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text x="540.79" y="479.5" ></text>
</g>
<g >
<title>JVM_GetStackTraceElement (463 samples, 9.01%)</title><rect x="518.5" y="517" width="106.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="521.50" y="527.5" >JVM_GetStackT..</text>
</g>
<g >
<title>generic_exec_single (2 samples, 0.04%)</title><rect x="412.2" y="309" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="415.21" y="319.5" ></text>
</g>
<g >
<title>sysret_audit (1 samples, 0.02%)</title><rect x="15.7" y="1493" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="18.74" y="1503.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/util/KafkaProducer$1:::onCompletion (31 samples, 0.60%)</title><rect x="1070.2" y="1269" width="7.1" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1073.16" y="1279.5" ></text>
</g>
<g >
<title>Compile::Compile (48 samples, 0.93%)</title><rect x="22.9" y="1397" width="11.0" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text x="25.86" y="1407.5" ></text>
</g>
<g >
<title>generic_file_aio_write (21 samples, 0.41%)</title><rect x="1172.1" y="1141" width="4.8" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text x="1175.09" y="1151.5" ></text>
</g>
<g >
<title>get_futex_key (1 samples, 0.02%)</title><rect x="91.3" y="1141" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="94.27" y="1151.5" ></text>
</g>
<g >
<title>release_sock (1 samples, 0.02%)</title><rect x="999.2" y="981" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="1002.23" y="991.5" ></text>
</g>
<g >
<title>__schedule (16 samples, 0.31%)</title><rect x="1054.8" y="1141" width="3.7" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="1057.78" y="1151.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/Selector$SelectorMetrics:::recordBytesReceived (5 samples, 0.10%)</title><rect x="1105.5" y="1285" width="1.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="1108.52" y="1295.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotatedElementUtils:::searchWithFindSemantics (2 samples, 0.04%)</title><rect x="303.2" y="581" width="0.4" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="306.16" y="591.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="775.2" y="453" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="778.16" y="463.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="250.8" y="613" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="253.82" y="623.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::equals (1 samples, 0.02%)</title><rect x="648.4" y="437" width="0.3" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="651.44" y="447.5" ></text>
</g>
<g >
<title>PhaseCFG::build_dominator_tree (1 samples, 0.02%)</title><rect x="23.8" y="1349" width="0.2" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="26.77" y="1359.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.02%)</title><rect x="165.4" y="629" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="168.42" y="639.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_C (1 samples, 0.02%)</title><rect x="363.1" y="533" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="366.08" y="543.5" ></text>
</g>
<g >
<title>java/util/Formatter:::format (15 samples, 0.29%)</title><rect x="384.7" y="549" width="3.4" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="387.66" y="559.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.02%)</title><rect x="150.0" y="805" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text x="153.04" y="815.5" ></text>
</g>
<g >
<title>RegMask::smear_to_sets (1 samples, 0.02%)</title><rect x="27.0" y="1333" width="0.2" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="29.99" y="1343.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="303.6" y="501" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="306.62" y="511.5" ></text>
</g>
<g >
<title>pqdownheap (2 samples, 0.04%)</title><rect x="55.5" y="437" width="0.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="58.46" y="447.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="294.4" y="645" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="297.44" y="655.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="271.7" y="485" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="274.71" y="495.5" ></text>
</g>
<g >
<title>mod_timer (1 samples, 0.02%)</title><rect x="1117.7" y="1013" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1120.68" y="1023.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Neg:::match (106 samples, 2.06%)</title><rect x="471.9" y="517" width="24.3" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="474.90" y="527.5" >j..</text>
</g>
<g >
<title>__skb_checksum (1 samples, 0.02%)</title><rect x="779.3" y="277" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="782.30" y="287.5" ></text>
</g>
<g >
<title>java/lang/Boolean:::equals (1 samples, 0.02%)</title><rect x="919.3" y="549" width="0.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="922.33" y="559.5" ></text>
</g>
<g >
<title>inet_gro_receive (1 samples, 0.02%)</title><rect x="1146.4" y="1173" width="0.2" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="1149.38" y="1183.5" ></text>
</g>
<g >
<title>ClassLoaderData::oops_do (1 samples, 0.02%)</title><rect x="21.0" y="1397" width="0.2" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text x="24.02" y="1407.5" ></text>
</g>
<g >
<title>OptoRuntime::register_finalizer (8 samples, 0.16%)</title><rect x="676.2" y="565" width="1.9" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="679.22" y="575.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl:::writev0 (21 samples, 0.41%)</title><rect x="1115.4" y="1253" width="4.8" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1118.39" y="1263.5" ></text>
</g>
<g >
<title>jni_GetObjectField (4 samples, 0.08%)</title><rect x="75.4" y="533" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="78.43" y="543.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="334.4" y="469" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="337.39" y="479.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="678.1" y="549" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="681.05" y="559.5" ></text>
</g>
<g >
<title>update_time (1 samples, 0.02%)</title><rect x="994.9" y="1045" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="997.86" y="1055.5" ></text>
</g>
<g >
<title>_multianewarray2_Java (11 samples, 0.21%)</title><rect x="168.6" y="565" width="2.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="171.63" y="575.5" ></text>
</g>
<g >
<title>IndexSetIterator::advance_and_next (2 samples, 0.04%)</title><rect x="26.5" y="1317" width="0.5" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="29.53" y="1327.5" ></text>
</g>
<g >
<title>__ext4_journal_stop (1 samples, 0.02%)</title><rect x="1172.8" y="1045" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1175.78" y="1055.5" ></text>
</g>
<g >
<title>__pollwait (1 samples, 0.02%)</title><rect x="647.1" y="261" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="650.06" y="271.5" ></text>
</g>
<g >
<title>org/springframework/http/converter/xml/Jaxb2RootElementHttpMessageConverter:::canWrite (1 samples, 0.02%)</title><rect x="933.8" y="645" width="0.2" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="936.80" y="655.5" ></text>
</g>
<g >
<title>Parse::do_one_bytecode (1 samples, 0.02%)</title><rect x="33.4" y="1029" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="36.42" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="592.4" y="293" width="0.3" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="595.42" y="303.5" ></text>
</g>
<g >
<title>tcp_sendmsg (5 samples, 0.10%)</title><rect x="14.6" y="1413" width="1.1" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="17.59" y="1423.5" ></text>
</g>
<g >
<title>jni_GetObjectField (92 samples, 1.79%)</title><rect x="780.4" y="533" width="21.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="783.44" y="543.5" ></text>
</g>
<g >
<title>PhaseAggressiveCoalesce::insert_copies (1 samples, 0.02%)</title><rect x="24.0" y="1349" width="0.2" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text x="27.00" y="1359.5" ></text>
</g>
<g >
<title>Compile::Optimize (16 samples, 0.31%)</title><rect x="29.7" y="1381" width="3.7" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="32.74" y="1391.5" ></text>
</g>
<g >
<title>sk_reset_timer (1 samples, 0.02%)</title><rect x="1117.5" y="1013" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1120.46" y="1023.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseServer (3 samples, 0.06%)</title><rect x="966.6" y="709" width="0.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="969.63" y="719.5" ></text>
</g>
<g >
<title>wake_futex (2 samples, 0.04%)</title><rect x="80.7" y="421" width="0.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="83.71" y="431.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpTrace$Request:::&lt;init&gt; (73 samples, 1.42%)</title><rect x="951.0" y="789" width="16.8" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="954.02" y="799.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/Selector:::attemptRead (21 samples, 0.41%)</title><rect x="1109.4" y="1285" width="4.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1112.42" y="1295.5" ></text>
</g>
<g >
<title>java/util/Formatter$Conversion:::isValid (1 samples, 0.02%)</title><rect x="54.1" y="533" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="57.08" y="543.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="938.2" y="517" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="941.16" y="527.5" ></text>
</g>
<g >
<title>java/lang/Long:::getChars (1 samples, 0.02%)</title><rect x="900.1" y="533" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="903.05" y="543.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_C (1 samples, 0.02%)</title><rect x="272.2" y="533" width="0.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="275.17" y="543.5" ></text>
</g>
<g >
<title>pthread_mutex_trylock (1 samples, 0.02%)</title><rect x="98.8" y="1221" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="101.84" y="1231.5" ></text>
</g>
<g >
<title>irq_exit (2 samples, 0.04%)</title><rect x="448.9" y="389" width="0.5" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="451.94" y="399.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="263.9" y="517" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="266.91" y="527.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1052.7" y="1109" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1055.72" y="1119.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="92.6" y="1189" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="95.65" y="1199.5" ></text>
</g>
<g >
<title>java/lang/ref/Reference$ReferenceHandler:::run (2 samples, 0.04%)</title><rect x="1159.7" y="1365" width="0.5" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="1162.70" y="1375.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::assertProperties (131 samples, 2.55%)</title><rect x="468.5" y="565" width="30.0" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="471.46" y="575.5" >co..</text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotatedElementUtils:::searchWithFindSemantics (11 samples, 0.21%)</title><rect x="304.1" y="629" width="2.5" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="307.08" y="639.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1100.2" y="1205" width="0.3" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="1103.24" y="1215.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="894.5" y="261" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="897.54" y="271.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="1050.4" y="1269" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1053.42" y="1279.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="374.8" y="277" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="377.79" y="287.5" ></text>
</g>
<g >
<title>pthread_getspecific (2 samples, 0.04%)</title><rect x="65.3" y="501" width="0.5" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="68.33" y="511.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="890.6" y="389" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="893.64" y="399.5" ></text>
</g>
<g >
<title>sys_write (12 samples, 0.23%)</title><rect x="1041.0" y="1205" width="2.8" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1044.01" y="1215.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="1148.2" y="1173" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1151.22" y="1183.5" ></text>
</g>
<g >
<title>ep_poll (18 samples, 0.35%)</title><rect x="1184.3" y="1253" width="4.1" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1187.26" y="1263.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1020.6" y="965" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1023.58" y="975.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="1146.4" y="1205" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="1149.38" y="1215.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1116.8" y="1029" width="0.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="1119.77" y="1039.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::doFilter (211 samples, 4.11%)</title><rect x="37.3" y="1061" width="48.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="40.32" y="1071.5" >org/..</text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1013.9" y="1221" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1016.92" y="1231.5" ></text>
</g>
<g >
<title>tcp_recvmsg (1 samples, 0.02%)</title><rect x="14.1" y="1413" width="0.3" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" />
<text x="17.13" y="1423.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (15 samples, 0.29%)</title><rect x="478.6" y="485" width="3.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="481.56" y="495.5" ></text>
</g>
<g >
<title>system_call_fastpath (12 samples, 0.23%)</title><rect x="1041.0" y="1221" width="2.8" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="1044.01" y="1231.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (2 samples, 0.04%)</title><rect x="971.4" y="997" width="0.5" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="974.45" y="1007.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.02%)</title><rect x="137.4" y="965" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="140.41" y="975.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics$KafkaConsumer:::send (490 samples, 9.53%)</title><rect x="355.3" y="565" width="112.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="358.28" y="575.5" >com/coohuadat..</text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::set (1 samples, 0.02%)</title><rect x="901.9" y="549" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="904.89" y="559.5" ></text>
</g>
<g >
<title>sg_next (1 samples, 0.02%)</title><rect x="1004.7" y="773" width="0.3" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="1007.74" y="783.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMapping:::handleMatch (1 samples, 0.02%)</title><rect x="47.9" y="629" width="0.2" height="15.0" fill="rgb(100,245,100)" rx="2" ry="2" />
<text x="50.88" y="639.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="412.7" y="245" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="415.67" y="255.5" ></text>
</g>
<g >
<title>checkcast_arraycopy (1 samples, 0.02%)</title><rect x="1047.2" y="1253" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1050.21" y="1263.5" ></text>
</g>
<g >
<title>do_futex (3 samples, 0.06%)</title><rect x="1059.4" y="1221" width="0.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="1062.37" y="1231.5" ></text>
</g>
<g >
<title>org/jboss/netty/channel/socket/nio/NioWorker:::write0 (1 samples, 0.02%)</title><rect x="34.6" y="1253" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="37.56" y="1263.5" ></text>
</g>
<g >
<title>pipe_write (21 samples, 0.41%)</title><rect x="990.3" y="1061" width="4.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="993.27" y="1071.5" ></text>
</g>
<g >
<title>pthread_getspecific (1 samples, 0.02%)</title><rect x="277.2" y="501" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="280.22" y="511.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="901.7" y="421" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="904.66" y="431.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="858.7" y="421" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="861.73" y="431.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="488.9" y="325" width="0.2" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="491.89" y="335.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="293.5" y="645" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="296.52" y="655.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.02%)</title><rect x="981.5" y="1029" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="984.55" y="1039.5" ></text>
</g>
<g >
<title>vfs_write (30 samples, 0.58%)</title><rect x="1170.9" y="1189" width="6.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="1173.95" y="1199.5" ></text>
</g>
<g >
<title>system_call_fastpath (25 samples, 0.49%)</title><rect x="1025.2" y="1205" width="5.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="1028.17" y="1215.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.02%)</title><rect x="647.1" y="373" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="650.06" y="383.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/Tags:::and (2 samples, 0.04%)</title><rect x="974.2" y="1045" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="977.20" y="1055.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/service/impl/AdDataServiceImpl:::checkAdValid (3 samples, 0.06%)</title><rect x="649.8" y="565" width="0.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="652.82" y="575.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="764.4" y="453" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="767.37" y="463.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/AESCrypt:::makeSessionKey (17 samples, 0.33%)</title><rect x="167.3" y="581" width="3.9" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="170.26" y="591.5" ></text>
</g>
<g >
<title>sys_epoll_wait (20 samples, 0.39%)</title><rect x="1123.7" y="1221" width="4.5" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="1126.65" y="1231.5" ></text>
</g>
<g >
<title>fget_light (1 samples, 0.02%)</title><rect x="998.1" y="1061" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1001.08" y="1071.5" ></text>
</g>
<g >
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="997.8" y="1061" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1000.85" y="1071.5" ></text>
</g>
<g >
<title>finish_task_switch (16 samples, 0.31%)</title><rect x="1054.8" y="1125" width="3.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="1057.78" y="1135.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/LockSupport:::parkNanos (5 samples, 0.10%)</title><rect x="35.0" y="1269" width="1.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="38.02" y="1279.5" ></text>
</g>
<g >
<title>ret_from_intr (2 samples, 0.04%)</title><rect x="412.2" y="453" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="415.21" y="463.5" ></text>
</g>
<g >
<title>ThreadInVMfromNative::~ThreadInVMfromNative (1 samples, 0.02%)</title><rect x="1170.5" y="1237" width="0.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="1173.49" y="1247.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/config/LoggerConfig:::log (3 samples, 0.06%)</title><rect x="80.5" y="581" width="0.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="83.48" y="591.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="930.8" y="645" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="933.81" y="655.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (18 samples, 0.35%)</title><rect x="990.5" y="1029" width="4.1" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="993.50" y="1039.5" ></text>
</g>
<g >
<title>__srcu_read_unlock (2 samples, 0.04%)</title><rect x="1007.3" y="1029" width="0.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1010.26" y="1039.5" ></text>
</g>
<g >
<title>sys_poll (1 samples, 0.02%)</title><rect x="647.8" y="277" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="650.75" y="287.5" ></text>
</g>
<g >
<title>java/util/Formatter$FixedString:::print (1 samples, 0.02%)</title><rect x="1047.4" y="1269" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1050.44" y="1279.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseServer (1 samples, 0.02%)</title><rect x="156.0" y="757" width="0.2" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="159.01" y="767.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="488.9" y="165" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="491.89" y="175.5" ></text>
</g>
<g >
<title>tcp_send_mss (2 samples, 0.04%)</title><rect x="87.1" y="981" width="0.5" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="90.14" y="991.5" ></text>
</g>
<g >
<title>__ext4_journal_get_write_access (1 samples, 0.02%)</title><rect x="1174.2" y="1013" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1177.16" y="1023.5" ></text>
</g>
<g >
<title>detach_buf (1 samples, 0.02%)</title><rect x="1004.5" y="741" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1007.51" y="751.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="645.9" y="469" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="648.91" y="479.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="263.9" y="613" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="266.91" y="623.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="412.7" y="213" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="415.67" y="223.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="80.0" y="501" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="83.02" y="511.5" ></text>
</g>
<g >
<title>poll_schedule_timeout (1 samples, 0.02%)</title><rect x="651.4" y="421" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="654.42" y="431.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.04%)</title><rect x="101.4" y="1221" width="0.4" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="104.37" y="1231.5" ></text>
</g>
<g >
<title>ThreadBlockInVM::ThreadBlockInVM (1 samples, 0.02%)</title><rect x="1163.4" y="1301" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="1166.37" y="1311.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/StdKeySerializers$StringKeySerializer:::serialize (7 samples, 0.14%)</title><rect x="370.7" y="469" width="1.6" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="373.66" y="479.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/rpc/MotanConfigPrintSpringListener:::onApplicationEvent (13 samples, 0.25%)</title><rect x="943.9" y="661" width="3.0" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="946.90" y="671.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serialize (37 samples, 0.72%)</title><rect x="366.8" y="501" width="8.4" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="369.75" y="511.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (2 samples, 0.04%)</title><rect x="107.8" y="1237" width="0.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="110.80" y="1247.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="332.1" y="437" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="335.09" y="447.5" ></text>
</g>
<g >
<title>inet_csk_destroy_sock (1 samples, 0.02%)</title><rect x="1182.4" y="981" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="1185.42" y="991.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="279.7" y="485" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="282.75" y="495.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (1 samples, 0.02%)</title><rect x="1061.2" y="981" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1064.21" y="991.5" ></text>
</g>
<g >
<title>com/google/gson/Gson:::getAdapter (3 samples, 0.06%)</title><rect x="216.4" y="597" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="219.39" y="607.5" ></text>
</g>
<g >
<title>tcp_sendmsg (36 samples, 0.70%)</title><rect x="998.8" y="997" width="8.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="1001.77" y="1007.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="971.2" y="885" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="974.22" y="895.5" ></text>
</g>
<g >
<title>sun/nio/cs/ISO_8859_1$Decoder:::decodeLoop (1 samples, 0.02%)</title><rect x="84.4" y="709" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="87.38" y="719.5" ></text>
</g>
<g >
<title>org/springframework/web/multipart/support/MultipartResolutionDelegate:::resolveMultipartArgument (4 samples, 0.08%)</title><rect x="928.1" y="629" width="0.9" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="931.06" y="639.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (4 samples, 0.08%)</title><rect x="912.0" y="533" width="0.9" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="914.99" y="543.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/TypeDescriptor:::equals (17 samples, 0.33%)</title><rect x="918.9" y="565" width="3.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="921.88" y="575.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService$ConverterCacheKey:::equals (19 samples, 0.37%)</title><rect x="918.4" y="581" width="4.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="921.42" y="591.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="961.8" y="565" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="964.81" y="575.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="901.7" y="389" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="904.66" y="399.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollSelectorImpl:::putEventOps (1 samples, 0.02%)</title><rect x="1146.6" y="1317" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="1149.61" y="1327.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="510.2" y="277" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="513.24" y="287.5" ></text>
</g>
<g >
<title>ConcurrentG1RefineThread::sample_young_list_rs_lengths (3 samples, 0.06%)</title><rect x="17.8" y="1445" width="0.7" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text x="20.81" y="1455.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="976.0" y="1045" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="979.04" y="1055.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="947.6" y="485" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="950.57" y="495.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/LoggerPatternConverter:::format (1 samples, 0.02%)</title><rect x="1180.1" y="1301" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1183.13" y="1311.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="884.4" y="405" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="887.44" y="415.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/Sensor:::record (1 samples, 0.02%)</title><rect x="1102.3" y="1317" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="1105.30" y="1327.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1086.5" y="1189" width="0.2" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="1089.46" y="1199.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="949.2" y="565" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="952.18" y="575.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::add (1 samples, 0.02%)</title><rect x="385.6" y="533" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="388.58" y="543.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_C (1 samples, 0.02%)</title><rect x="653.0" y="469" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="656.03" y="479.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::subFormat (3 samples, 0.06%)</title><rect x="231.5" y="613" width="0.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="234.54" y="623.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (6 samples, 0.12%)</title><rect x="380.1" y="533" width="1.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="383.07" y="543.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream:::write (89 samples, 1.73%)</title><rect x="393.6" y="549" width="20.4" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="396.61" y="559.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="901.0" y="501" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="903.97" y="511.5" ></text>
</g>
<g >
<title>netif_skb_features (1 samples, 0.02%)</title><rect x="1119.1" y="917" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1122.06" y="927.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryAcquireShared (1 samples, 0.02%)</title><rect x="942.1" y="677" width="0.2" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="945.06" y="687.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="901.0" y="533" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="903.97" y="543.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="583.7" y="373" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="586.70" y="383.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterDelegate:::convertIfNecessary (27 samples, 0.53%)</title><rect x="917.3" y="613" width="6.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="920.27" y="623.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.02%)</title><rect x="241.2" y="597" width="0.2" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="244.18" y="607.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="80.0" y="421" width="0.2" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" />
<text x="83.02" y="431.5" ></text>
</g>
<g >
<title>GangWorker::loop (19 samples, 0.37%)</title><rect x="18.5" y="1477" width="4.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="21.49" y="1487.5" ></text>
</g>
<g >
<title>Monitor::ILock (1 samples, 0.02%)</title><rect x="1052.7" y="1205" width="0.2" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text x="1055.72" y="1215.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="344.7" y="437" width="0.2" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="347.72" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (1 samples, 0.02%)</title><rect x="57.3" y="485" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="60.29" y="495.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::getProviderInstance (2 samples, 0.04%)</title><rect x="651.7" y="581" width="0.4" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="654.65" y="591.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (5 samples, 0.10%)</title><rect x="642.9" y="565" width="1.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="645.93" y="575.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="180.6" y="389" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="183.57" y="399.5" ></text>
</g>
<g >
<title>__schedule (10 samples, 0.19%)</title><rect x="1125.7" y="1141" width="2.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1128.72" y="1151.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal:::getMap (1 samples, 0.02%)</title><rect x="85.5" y="885" width="0.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="88.53" y="895.5" ></text>
</g>
<g >
<title>get_rps_cpu (1 samples, 0.02%)</title><rect x="764.1" y="357" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="767.14" y="367.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/spi/AbstractLogger:::logMessageSafely (3 samples, 0.06%)</title><rect x="894.1" y="485" width="0.7" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="897.08" y="495.5" ></text>
</g>
<g >
<title>TypeArrayKlass::allocate_common (1 samples, 0.02%)</title><rect x="221.2" y="501" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="224.21" y="511.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/Sensor:::record (5 samples, 0.10%)</title><rect x="1089.4" y="1285" width="1.2" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="1092.45" y="1295.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (2 samples, 0.04%)</title><rect x="80.7" y="517" width="0.5" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="83.71" y="527.5" ></text>
</g>
<g >
<title>org/joda/time/format/FormatUtils:::appendPaddedInteger (1 samples, 0.02%)</title><rect x="945.7" y="629" width="0.3" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="948.74" y="639.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="466.6" y="469" width="0.2" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="469.62" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="894.3" y="325" width="0.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="897.31" y="335.5" ></text>
</g>
<g >
<title>jbd2_journal_stop (1 samples, 0.02%)</title><rect x="1172.8" y="1029" width="0.2" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="1175.78" y="1039.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater:::deflateBytes (1 samples, 0.02%)</title><rect x="54.8" y="533" width="0.2" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="57.77" y="543.5" ></text>
</g>
<g >
<title>futex_wait (19 samples, 0.37%)</title><rect x="1054.3" y="1189" width="4.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1057.32" y="1199.5" ></text>
</g>
<g >
<title>wake_up_state (1 samples, 0.02%)</title><rect x="101.6" y="1157" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="104.60" y="1167.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::prepareRequest (1 samples, 0.02%)</title><rect x="1024.0" y="1237" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="1027.02" y="1247.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="947.6" y="629" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="950.57" y="639.5" ></text>
</g>
<g >
<title>fget_light (2 samples, 0.04%)</title><rect x="1019.9" y="1125" width="0.4" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1022.89" y="1135.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.02%)</title><rect x="308.4" y="597" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="311.44" y="607.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask:::run (82 samples, 1.60%)</title><rect x="1031.8" y="1317" width="18.8" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="1034.82" y="1327.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="884.4" y="517" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="887.44" y="527.5" ></text>
</g>
<g >
<title>org/joda/time/field/PreciseDateTimeField:::get (1 samples, 0.02%)</title><rect x="83.5" y="629" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="86.46" y="639.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/TypeDescriptor:::valueOf (2 samples, 0.04%)</title><rect x="917.3" y="597" width="0.4" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="920.27" y="607.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1137.9" y="1269" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1140.89" y="1279.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="646.6" y="437" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="649.60" y="447.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator:::hasNext (1 samples, 0.02%)</title><rect x="1085.8" y="1285" width="0.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="1088.77" y="1295.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="1168.4" y="1205" width="0.2" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="1171.42" y="1215.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="1182.4" y="1205" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1185.42" y="1215.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (5 samples, 0.10%)</title><rect x="35.0" y="1285" width="1.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="38.02" y="1295.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="303.6" y="581" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="306.62" y="591.5" ></text>
</g>
<g >
<title>JavaThread::run (5,080 samples, 98.83%)</title><rect x="22.9" y="1477" width="1166.2" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text x="25.86" y="1487.5" >JavaThread::run</text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="270.3" y="549" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="273.33" y="559.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (9 samples, 0.18%)</title><rect x="1172.6" y="1077" width="2.0" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1175.55" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="949.2" y="725" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="952.18" y="735.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="117.0" y="1045" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="119.98" y="1055.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="207.7" y="517" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="210.66" y="527.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::isInJavaLangAnnotationPackage (1 samples, 0.02%)</title><rect x="86.4" y="1029" width="0.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="89.45" y="1039.5" ></text>
</g>
<g >
<title>Interpreter (2 samples, 0.04%)</title><rect x="311.7" y="597" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="314.66" y="607.5" ></text>
</g>
<g >
<title>G1SATBCardTableLoggingModRefBS::invalidate (1 samples, 0.02%)</title><rect x="285.9" y="565" width="0.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text x="288.95" y="575.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::getProviderInstance (1 samples, 0.02%)</title><rect x="44.4" y="629" width="0.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="47.44" y="639.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="293.5" y="533" width="0.3" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="296.52" y="543.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="995.6" y="1109" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="998.55" y="1119.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::parseField (1 samples, 0.02%)</title><rect x="308.4" y="549" width="0.3" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="311.44" y="559.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (1 samples, 0.02%)</title><rect x="895.2" y="373" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="898.23" y="383.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="960.7" y="693" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="963.66" y="703.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="234.8" y="277" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="237.75" y="287.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="1037.1" y="1237" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="1040.11" y="1247.5" ></text>
</g>
<g >
<title>deflate (9 samples, 0.18%)</title><rect x="55.0" y="501" width="2.1" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="58.00" y="511.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="23.3" y="1141" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="26.32" y="1151.5" ></text>
</g>
<g >
<title>PhaseIterGVN::optimize (4 samples, 0.08%)</title><rect x="31.8" y="1349" width="0.9" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="34.81" y="1359.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="779.3" y="501" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="782.30" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor86:::invoke (1 samples, 0.02%)</title><rect x="347.0" y="517" width="0.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="350.01" y="527.5" ></text>
</g>
<g >
<title>__GI___libc_poll (1 samples, 0.02%)</title><rect x="647.1" y="357" width="0.2" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="650.06" y="367.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/Timer$Builder:::register (6 samples, 0.12%)</title><rect x="974.7" y="1045" width="1.3" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="977.66" y="1055.5" ></text>
</g>
<g >
<title>java/lang/ref/Finalizer:::register (1 samples, 0.02%)</title><rect x="677.4" y="501" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="680.37" y="511.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (1 samples, 0.02%)</title><rect x="21.9" y="1349" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="24.94" y="1359.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (2 samples, 0.04%)</title><rect x="519.6" y="501" width="0.5" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text x="522.65" y="511.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::size (1 samples, 0.02%)</title><rect x="256.8" y="597" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="259.79" y="607.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater:::deflateBytes (89 samples, 1.73%)</title><rect x="393.6" y="533" width="20.4" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="396.61" y="543.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="297.4" y="629" width="0.3" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="300.42" y="639.5" ></text>
</g>
<g >
<title>skb_checksum (1 samples, 0.02%)</title><rect x="80.0" y="341" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="83.02" y="351.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/LevelPatternConverter:::format (1 samples, 0.02%)</title><rect x="1179.7" y="1301" width="0.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1182.67" y="1311.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/block/degrade/DegradeSlot:::exit (1 samples, 0.02%)</title><rect x="246.9" y="533" width="0.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="249.92" y="543.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::equals (1 samples, 0.02%)</title><rect x="39.4" y="869" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="42.39" y="879.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::smartMatch (18 samples, 0.35%)</title><rect x="337.6" y="517" width="4.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="340.60" y="527.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="910.4" y="245" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="913.38" y="255.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="1008.9" y="1189" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1011.87" y="1199.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="592.4" y="101" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="595.42" y="111.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Deflater_deflateBytes (87 samples, 1.69%)</title><rect x="393.6" y="517" width="20.0" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="396.61" y="527.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="592.4" y="277" width="0.3" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="595.42" y="287.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (2 samples, 0.04%)</title><rect x="176.7" y="597" width="0.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="179.67" y="607.5" ></text>
</g>
<g >
<title>lock_sock_nested (1 samples, 0.02%)</title><rect x="999.0" y="981" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1002.00" y="991.5" ></text>
</g>
<g >
<title>frame::oops_interpreted_do (1 samples, 0.02%)</title><rect x="21.5" y="1381" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="24.48" y="1391.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="92.6" y="1205" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="95.65" y="1215.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat:::setMax (6 samples, 0.12%)</title><rect x="146.8" y="853" width="1.4" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="149.82" y="863.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="949.2" y="677" width="0.2" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="952.18" y="687.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="532.3" y="309" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="535.28" y="319.5" ></text>
</g>
<g >
<title>java/lang/Class:::getDeclaringClass0 (1 samples, 0.02%)</title><rect x="943.4" y="629" width="0.3" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="946.44" y="639.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="1007.9" y="1157" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1010.95" y="1167.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (5 samples, 0.10%)</title><rect x="1047.7" y="1269" width="1.1" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="1050.67" y="1279.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat:::observe (17 samples, 0.33%)</title><rect x="146.8" y="869" width="3.9" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="149.82" y="879.5" ></text>
</g>
<g >
<title>deflateStateCheck (1 samples, 0.02%)</title><rect x="413.4" y="501" width="0.2" height="15.0" fill="rgb(208,63,63)" rx="2" ry="2" />
<text x="416.36" y="511.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="381.2" y="389" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="384.22" y="399.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.isra.7 (4 samples, 0.08%)</title><rect x="1154.2" y="1221" width="0.9" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1157.19" y="1231.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="774.7" y="501" width="0.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="777.70" y="511.5" ></text>
</g>
<g >
<title>skb_put (1 samples, 0.02%)</title><rect x="14.4" y="1413" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="17.36" y="1423.5" ></text>
</g>
<g >
<title>java/io/ByteArrayOutputStream:::write (1 samples, 0.02%)</title><rect x="415.2" y="533" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="418.19" y="543.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1168.4" y="1221" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1171.42" y="1231.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="965.2" y="613" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="968.25" y="623.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="23.3" y="1333" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="26.32" y="1343.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getRemainingPath (1 samples, 0.02%)</title><rect x="283.2" y="629" width="0.2" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="286.19" y="639.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.04%)</title><rect x="196.4" y="645" width="0.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="199.41" y="655.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="832.6" y="453" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="835.56" y="463.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (2 samples, 0.04%)</title><rect x="628.7" y="501" width="0.5" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="631.70" y="511.5" ></text>
</g>
<g >
<title>java/util/Calendar:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="236.8" y="613" width="0.2" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="239.82" y="623.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="1137.9" y="1045" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1140.89" y="1055.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics$KafkaConsumer:::send (2 samples, 0.04%)</title><rect x="308.7" y="565" width="0.4" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="311.67" y="575.5" ></text>
</g>
<g >
<title>virtqueue_add_inbuf (1 samples, 0.02%)</title><rect x="303.6" y="469" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="306.62" y="479.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="344.7" y="501" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="347.72" y="511.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="532.3" y="261" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="535.28" y="271.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::parseField (68 samples, 1.32%)</title><rect x="332.8" y="533" width="15.6" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="335.78" y="543.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="322.9" y="357" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="325.91" y="367.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/ModelFactory:::findSessionAttributeArguments (2 samples, 0.04%)</title><rect x="294.9" y="645" width="0.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="297.90" y="655.5" ></text>
</g>
<g >
<title>CompressedReadStream::read_signed_int (4 samples, 0.08%)</title><rect x="530.2" y="469" width="0.9" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="533.21" y="479.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="334.4" y="453" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="337.39" y="463.5" ></text>
</g>
<g >
<title>org/springframework/core/DefaultParameterNameDiscoverer:::&lt;init&gt; (3 samples, 0.06%)</title><rect x="307.1" y="645" width="0.7" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="310.07" y="655.5" ></text>
</g>
<g >
<title>com/weibo/api/motan/proxy/AbstractRefererHandler:::invokeRequest (10 samples, 0.19%)</title><rect x="893.6" y="581" width="2.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="896.62" y="591.5" ></text>
</g>
<g >
<title>ret_from_intr (2 samples, 0.04%)</title><rect x="891.1" y="581" width="0.5" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="894.10" y="591.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="180.6" y="549" width="0.2" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text x="183.57" y="559.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="560.7" y="437" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="563.74" y="447.5" ></text>
</g>
<g >
<title>org/springframework/web/method/support/InvocableHandlerMethod:::invokeForRequest (141 samples, 2.74%)</title><rect x="49.5" y="661" width="32.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="52.49" y="671.5" >or..</text>
</g>
<g >
<title>CollectedHeap::new_store_pre_barrier (1 samples, 0.02%)</title><rect x="362.9" y="533" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="365.85" y="543.5" ></text>
</g>
<g >
<title>Parker::park (4 samples, 0.08%)</title><rect x="1052.5" y="1253" width="0.9" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="1055.49" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils$AnnotationCollector:::&lt;init&gt; (5 samples, 0.10%)</title><rect x="978.8" y="1045" width="1.1" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="981.79" y="1055.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/stats/Meter:::record (1 samples, 0.02%)</title><rect x="1105.1" y="1285" width="0.2" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="1108.06" y="1295.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="374.8" y="325" width="0.2" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="377.79" y="335.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="92.6" y="1061" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="95.65" y="1071.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method:::invoke (138 samples, 2.68%)</title><rect x="49.7" y="645" width="31.7" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="52.72" y="655.5" >ja..</text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (2 samples, 0.04%)</title><rect x="236.4" y="597" width="0.4" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="239.36" y="607.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace (4 samples, 0.08%)</title><rect x="58.0" y="485" width="0.9" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text x="60.98" y="495.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/sentinel/SentinelHttpInterceptor:::preHandle (2 samples, 0.04%)</title><rect x="42.8" y="677" width="0.5" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="45.83" y="687.5" ></text>
</g>
<g >
<title>java/io/DataOutputStream:::write (1 samples, 0.02%)</title><rect x="1038.5" y="1237" width="0.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1041.48" y="1247.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (4 samples, 0.08%)</title><rect x="629.2" y="485" width="0.9" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="632.16" y="495.5" ></text>
</g>
<g >
<title>org/apache/coyote/Response:::recycle (1 samples, 0.02%)</title><rect x="1014.4" y="1237" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1017.38" y="1247.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="1168.4" y="1173" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="1171.42" y="1183.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.02%)</title><rect x="647.1" y="389" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="650.06" y="399.5" ></text>
</g>
<g >
<title>org/springframework/util/AntPathMatcher:::match (49 samples, 0.95%)</title><rect x="266.4" y="597" width="11.3" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="269.43" y="607.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.04%)</title><rect x="1091.1" y="1269" width="0.4" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="1094.05" y="1279.5" ></text>
</g>
<g >
<title>G1BlockOffsetArrayContigSpace::zero_bottom_entry_raw (1 samples, 0.02%)</title><rect x="1189.8" y="1365" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="1192.77" y="1375.5" ></text>
</g>
<g >
<title>java_lang_StackTraceElement::create (420 samples, 8.17%)</title><rect x="524.0" y="485" width="96.4" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text x="527.01" y="495.5" >java_lang_S..</text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="449.2" y="261" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="452.17" y="271.5" ></text>
</g>
<g >
<title>sysret_audit (1 samples, 0.02%)</title><rect x="388.6" y="469" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="391.56" y="479.5" ></text>
</g>
<g >
<title>ObjArrayKlass::allocate (1 samples, 0.02%)</title><rect x="509.8" y="421" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text x="512.78" y="431.5" ></text>
</g>
<g >
<title>G1AllocRegion::new_alloc_region_and_allocate (1 samples, 0.02%)</title><rect x="221.2" y="453" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="224.21" y="463.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="322.9" y="389" width="0.2" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text x="325.91" y="399.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils$AnnotationCollector:::process (9 samples, 0.18%)</title><rect x="207.0" y="645" width="2.0" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="209.97" y="655.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="901.4" y="517" width="0.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="904.43" y="527.5" ></text>
</g>
<g >
<title>_copy_from_user (1 samples, 0.02%)</title><rect x="1148.9" y="1253" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1151.91" y="1263.5" ></text>
</g>
<g >
<title>sys_write (43 samples, 0.84%)</title><rect x="997.8" y="1077" width="9.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1000.85" y="1087.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1152.4" y="1221" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="1155.35" y="1231.5" ></text>
</g>
<g >
<title>PhaseRegAlloc::is_oop (1 samples, 0.02%)</title><rect x="23.1" y="1333" width="0.2" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text x="26.09" y="1343.5" ></text>
</g>
<g >
<title>netif_receive_skb_internal (1 samples, 0.02%)</title><rect x="293.5" y="501" width="0.3" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="296.52" y="511.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (1 samples, 0.02%)</title><rect x="42.4" y="629" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="45.37" y="639.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator:::hasNext (1 samples, 0.02%)</title><rect x="1078.2" y="1301" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1081.20" y="1311.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal:::getMap (1 samples, 0.02%)</title><rect x="195.3" y="661" width="0.2" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="198.26" y="671.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="1089.2" y="1269" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="1092.22" y="1279.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (2 samples, 0.04%)</title><rect x="57.3" y="549" width="0.5" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="60.29" y="559.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/HiddenHttpMethodFilter:::doFilterInternal (211 samples, 4.11%)</title><rect x="37.3" y="1013" width="48.5" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="40.32" y="1023.5" >org/..</text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.02%)</title><rect x="1076.6" y="1221" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="1079.59" y="1231.5" ></text>
</g>
<g >
<title>java/lang/Integer:::toString (2 samples, 0.04%)</title><rect x="976.3" y="1045" width="0.4" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="979.27" y="1055.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="1020.6" y="837" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1023.58" y="847.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="1184.5" y="1221" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="1187.49" y="1231.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/NameAbbreviator$PatternAbbreviator:::abbreviate (1 samples, 0.02%)</title><rect x="1180.1" y="1285" width="0.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="1183.13" y="1295.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="630.8" y="549" width="0.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="633.76" y="559.5" ></text>
</g>
<g >
<title>vfs_write (12 samples, 0.23%)</title><rect x="1041.0" y="1189" width="2.8" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="1044.01" y="1199.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClient$$FastClassBySpringCGLIB$$1bc9b45c:::invoke (2 samples, 0.04%)</title><rect x="648.9" y="453" width="0.5" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="651.90" y="463.5" ></text>
</g>
<g >
<title>org/springframework/cglib/proxy/MethodProxy:::invoke (1 samples, 0.02%)</title><rect x="647.1" y="469" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="650.06" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="322.9" y="245" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="325.91" y="255.5" ></text>
</g>
<g >
<title>UTF8::convert_to_unicode (22 samples, 0.43%)</title><rect x="603.7" y="453" width="5.0" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="606.67" y="463.5" ></text>
</g>
<g >
<title>G1UpdateRSOrPushRefOopClosure::do_oop (1 samples, 0.02%)</title><rect x="22.4" y="1317" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="25.40" y="1327.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::decodeInternal (6 samples, 0.12%)</title><rect x="278.6" y="581" width="1.4" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="281.60" y="591.5" ></text>
</g>
<g >
<title>org/apache/tomcat/websocket/server/WsFilter:::doFilter (3,448 samples, 67.08%)</title><rect x="156.9" y="773" width="791.6" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="159.93" y="783.5" >org/apache/tomcat/websocket/server/WsFilter:::doFilter</text>
</g>
<g >
<title>__audit_syscall_entry (1 samples, 0.02%)</title><rect x="388.3" y="453" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="391.33" y="463.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Dollar:::match (1 samples, 0.02%)</title><rect x="491.2" y="485" width="0.2" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="494.18" y="495.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (1 samples, 0.02%)</title><rect x="779.3" y="309" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="782.30" y="319.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="374.8" y="437" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="377.79" y="447.5" ></text>
</g>
<g >
<title>CodeCache::find_blob (1 samples, 0.02%)</title><rect x="50.4" y="533" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="53.40" y="543.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (6 samples, 0.12%)</title><rect x="386.0" y="533" width="1.4" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="389.04" y="543.5" ></text>
</g>
<g >
<title>__libc_writev (20 samples, 0.39%)</title><rect x="1115.6" y="1237" width="4.6" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="1118.62" y="1247.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/SynthesizedAnnotationInvocationHandler:::invoke (12 samples, 0.23%)</title><rect x="919.6" y="549" width="2.7" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="922.56" y="559.5" ></text>
</g>
<g >
<title>tcp_sendmsg (15 samples, 0.29%)</title><rect x="1116.3" y="1109" width="3.5" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1119.31" y="1119.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/BufferPool:::allocate (3 samples, 0.06%)</title><rect x="1039.2" y="1237" width="0.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1042.17" y="1247.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1033.9" y="1157" width="0.2" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="1036.89" y="1167.5" ></text>
</g>
<g >
<title>org/springframework/web/context/request/ServletWebRequest:::getNativeRequest (1 samples, 0.02%)</title><rect x="926.0" y="629" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="928.99" y="639.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/StringCodec:::deserialze (7 samples, 0.14%)</title><rect x="342.9" y="517" width="1.6" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="345.88" y="527.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService:::getConverter (22 samples, 0.43%)</title><rect x="917.7" y="597" width="5.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="920.73" y="607.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_post (1 samples, 0.02%)</title><rect x="276.5" y="549" width="0.3" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="279.53" y="559.5" ></text>
</g>
<g >
<title>ReferenceProcessor::process_discovered_references (3 samples, 0.06%)</title><rect x="1189.1" y="1349" width="0.7" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text x="1192.08" y="1359.5" ></text>
</g>
<g >
<title>__skb_checksum (1 samples, 0.02%)</title><rect x="795.6" y="277" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="798.60" y="287.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils$AnnotationCollector:::process (22 samples, 0.43%)</title><rect x="979.9" y="1045" width="5.1" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="982.94" y="1055.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1152.4" y="1253" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1155.35" y="1263.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="901.7" y="517" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="904.66" y="527.5" ></text>
</g>
<g >
<title>netif_receive_skb_internal (1 samples, 0.02%)</title><rect x="764.1" y="373" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="767.14" y="383.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::isInJavaLangAnnotationPackage (1 samples, 0.02%)</title><rect x="208.6" y="629" width="0.2" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="211.58" y="639.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="1182.4" y="1109" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1185.42" y="1119.5" ></text>
</g>
<g >
<title>TypeArrayKlass::allocate_common (1 samples, 0.02%)</title><rect x="504.5" y="437" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="507.50" y="447.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="466.6" y="549" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="469.62" y="559.5" ></text>
</g>
<g >
<title>JVM_IHashCode (1 samples, 0.02%)</title><rect x="1038.9" y="1205" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1041.94" y="1215.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="877.1" y="469" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="880.09" y="479.5" ></text>
</g>
<g >
<title>__irqentry_text_start (2 samples, 0.04%)</title><rect x="548.3" y="421" width="0.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="551.35" y="431.5" ></text>
</g>
<g >
<title>org/springframework/aop/aspectj/AbstractAspectJAdvice:::invokeAdviceMethod (1 samples, 0.02%)</title><rect x="310.1" y="517" width="0.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="313.05" y="527.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="961.8" y="533" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="964.81" y="543.5" ></text>
</g>
<g >
<title>_new_instance_Java (1 samples, 0.02%)</title><rect x="936.8" y="613" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="939.78" y="623.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::matcher (2 samples, 0.04%)</title><rect x="281.1" y="597" width="0.5" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="284.12" y="607.5" ></text>
</g>
<g >
<title>sock_aio_read (9 samples, 0.18%)</title><rect x="1020.6" y="1093" width="2.0" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="1023.58" y="1103.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (2 samples, 0.04%)</title><rect x="548.3" y="261" width="0.5" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="551.35" y="271.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="891.3" y="453" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="894.33" y="463.5" ></text>
</g>
<g >
<title>skb_release_all (1 samples, 0.02%)</title><rect x="910.4" y="69" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="913.38" y="79.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Deflater_deflateBytes (1 samples, 0.02%)</title><rect x="308.9" y="517" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="311.90" y="527.5" ></text>
</g>
<g >
<title>redis/clients/jedis/JedisCluster$21:::execute (1 samples, 0.02%)</title><rect x="649.6" y="405" width="0.2" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="652.59" y="415.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::assertProperties (4 samples, 0.08%)</title><rect x="57.1" y="565" width="0.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="60.06" y="575.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="193.7" y="581" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="196.66" y="591.5" ></text>
</g>
<g >
<title>Monitor::ILock (1 samples, 0.02%)</title><rect x="21.9" y="1365" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="24.94" y="1375.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeTime (3 samples, 0.06%)</title><rect x="235.2" y="613" width="0.7" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="238.21" y="623.5" ></text>
</g>
<g >
<title>do_futex (6 samples, 0.12%)</title><rect x="99.5" y="1189" width="1.4" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="102.53" y="1199.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="23.3" y="1173" width="0.2" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="26.32" y="1183.5" ></text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="645.5" y="357" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="648.46" y="367.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="117.2" y="965" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="120.21" y="975.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (3 samples, 0.06%)</title><rect x="1053.4" y="1253" width="0.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1056.40" y="1263.5" ></text>
</g>
<g >
<title>frame::is_interpreted_frame (1 samples, 0.02%)</title><rect x="510.9" y="453" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="513.93" y="463.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (206 samples, 4.01%)</title><rect x="38.5" y="997" width="47.3" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="41.47" y="1007.5" >org/..</text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace (74 samples, 1.44%)</title><rect x="499.2" y="485" width="17.0" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="502.22" y="495.5" ></text>
</g>
<g >
<title>Monitor::unlock (1 samples, 0.02%)</title><rect x="1052.9" y="1221" width="0.3" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="1055.95" y="1231.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (2 samples, 0.04%)</title><rect x="927.6" y="597" width="0.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="930.60" y="607.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy77:::annotationType (1 samples, 0.02%)</title><rect x="199.9" y="661" width="0.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="202.86" y="671.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="412.7" y="277" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="415.67" y="287.5" ></text>
</g>
<g >
<title>csum_partial_ext (1 samples, 0.02%)</title><rect x="1146.4" y="1093" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="1149.38" y="1103.5" ></text>
</g>
<g >
<title>org/springframework/util/MimeType$SpecificityComparator:::compare (1 samples, 0.02%)</title><rect x="932.2" y="597" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="935.19" y="607.5" ></text>
</g>
<g >
<title>itable stub (5 samples, 0.10%)</title><rect x="200.1" y="661" width="1.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="203.09" y="671.5" ></text>
</g>
<g >
<title>PhaseIdealLoop::build_loop_late (4 samples, 0.08%)</title><rect x="30.7" y="1349" width="0.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text x="33.66" y="1359.5" ></text>
</g>
<g >
<title>send_tree (9 samples, 0.18%)</title><rect x="457.7" y="453" width="2.0" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="460.67" y="463.5" ></text>
</g>
<g >
<title>java/nio/Buffer:::limit (1 samples, 0.02%)</title><rect x="112.4" y="1221" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="115.39" y="1231.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor:::execute (26 samples, 0.51%)</title><rect x="1138.3" y="1317" width="6.0" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1141.35" y="1327.5" ></text>
</g>
<g >
<title>sys_epoll_wait (25 samples, 0.49%)</title><rect x="1153.0" y="1253" width="5.8" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="1156.04" y="1263.5" ></text>
</g>
<g >
<title>__memset_sse2 (1 samples, 0.02%)</title><rect x="23.3" y="1349" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="26.32" y="1359.5" ></text>
</g>
<g >
<title>java/security/Provider$ServiceKey:::&lt;init&gt; (9 samples, 0.18%)</title><rect x="178.7" y="581" width="2.1" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="181.74" y="591.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (3 samples, 0.06%)</title><rect x="184.9" y="629" width="0.7" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="187.93" y="639.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher:::tokenizeTransformation (1 samples, 0.02%)</title><rect x="41.7" y="613" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="44.68" y="623.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="832.6" y="437" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="835.56" y="447.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/AsyncAppender$AsyncThread:::run (99 samples, 1.93%)</title><rect x="1160.2" y="1365" width="22.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="1163.16" y="1375.5" >o..</text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="971.2" y="869" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="974.22" y="879.5" ></text>
</g>
<g >
<title>sys_write (2 samples, 0.04%)</title><rect x="87.1" y="1077" width="0.5" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="90.14" y="1087.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="180.6" y="325" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="183.57" y="335.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Deflater_init (37 samples, 0.72%)</title><rect x="415.7" y="517" width="8.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="418.65" y="527.5" ></text>
</g>
<g >
<title>auditsys (1 samples, 0.02%)</title><rect x="1112.6" y="1205" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="1115.63" y="1215.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="49.0" y="597" width="0.3" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="52.03" y="607.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/config/MeterFilter:::map (1 samples, 0.02%)</title><rect x="86.2" y="1029" width="0.2" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="89.22" y="1039.5" ></text>
</g>
<g >
<title>pthread_getspecific (1 samples, 0.02%)</title><rect x="602.5" y="437" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="605.53" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="560.7" y="149" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="563.74" y="159.5" ></text>
</g>
<g >
<title>retint_careful (1 samples, 0.02%)</title><rect x="17.6" y="1493" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="20.58" y="1503.5" ></text>
</g>
<g >
<title>rcu_process_callbacks (1 samples, 0.02%)</title><rect x="592.2" y="325" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="595.19" y="335.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="293.5" y="597" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="296.52" y="607.5" ></text>
</g>
<g >
<title>pipe_poll (1 samples, 0.02%)</title><rect x="1184.9" y="1221" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="1187.95" y="1231.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decodeLoop (1 samples, 0.02%)</title><rect x="38.2" y="949" width="0.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="41.24" y="959.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (2 samples, 0.04%)</title><rect x="299.5" y="597" width="0.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="302.49" y="607.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="774.7" y="485" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="777.70" y="495.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.02%)</title><rect x="651.4" y="517" width="0.3" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="654.42" y="527.5" ></text>
</g>
<g >
<title>tcp_event_data_recv (1 samples, 0.02%)</title><rect x="344.7" y="229" width="0.2" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="347.72" y="239.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/IntegerCodec:::deserialze (3 samples, 0.06%)</title><rect x="341.7" y="517" width="0.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="344.73" y="527.5" ></text>
</g>
<g >
<title>DirtyCardQueueSet::apply_closure_to_completed_buffer (5 samples, 0.10%)</title><rect x="21.7" y="1397" width="1.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="24.71" y="1407.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="592.4" y="389" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="595.42" y="399.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::initialize (1 samples, 0.02%)</title><rect x="44.7" y="629" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="47.67" y="639.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="141.3" y="949" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="144.32" y="959.5" ></text>
</g>
<g >
<title>ipv4_mtu (1 samples, 0.02%)</title><rect x="1119.5" y="1061" width="0.3" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text x="1122.52" y="1071.5" ></text>
</g>
<g >
<title>java/util/Formatter:::format (23 samples, 0.45%)</title><rect x="625.5" y="549" width="5.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="628.48" y="559.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (25 samples, 0.49%)</title><rect x="1138.6" y="1285" width="5.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1141.58" y="1295.5" ></text>
</g>
<g >
<title>sun/nio/ch/SelectorImpl:::select (25 samples, 0.49%)</title><rect x="1183.3" y="1349" width="5.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="1186.34" y="1359.5" ></text>
</g>
<g >
<title>Interpreter (4,346 samples, 84.55%)</title><rect x="33.9" y="1333" width="997.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="36.88" y="1343.5" >Interpreter</text>
</g>
<g >
<title>org/apache/logging/log4j/core/impl/Log4jLogEvent:::&lt;init&gt; (5 samples, 0.10%)</title><rect x="912.9" y="565" width="1.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="915.91" y="575.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (2 samples, 0.04%)</title><rect x="196.4" y="661" width="0.5" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text x="199.41" y="671.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (3 samples, 0.06%)</title><rect x="1118.4" y="917" width="0.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1121.37" y="927.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="910.6" y="517" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="913.61" y="527.5" ></text>
</g>
<g >
<title>java/util/HashSet:::iterator (2 samples, 0.04%)</title><rect x="947.1" y="645" width="0.5" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="950.11" y="655.5" ></text>
</g>
<g >
<title>do_sys_poll (1 samples, 0.02%)</title><rect x="651.4" y="437" width="0.3" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="654.42" y="447.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="384.4" y="485" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="387.43" y="495.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="583.9" y="405" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="586.93" y="415.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.02%)</title><rect x="1048.8" y="1093" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="1051.81" y="1103.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="608.5" y="405" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="611.49" y="415.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="488.9" y="373" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="491.89" y="383.5" ></text>
</g>
<g >
<title>java/util/HashMap:::newNode (1 samples, 0.02%)</title><rect x="208.1" y="613" width="0.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="211.12" y="623.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="914.3" y="533" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="917.28" y="543.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (204 samples, 3.97%)</title><rect x="38.9" y="949" width="46.9" height="15.0" fill="rgb(96,243,96)" rx="2" ry="2" />
<text x="41.93" y="959.5" >org/..</text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/base/LeapArray:::currentWindow (1 samples, 0.02%)</title><rect x="246.7" y="565" width="0.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="249.69" y="575.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="532.3" y="325" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="535.28" y="335.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="381.2" y="517" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="384.22" y="527.5" ></text>
</g>
<g >
<title>jbd2__journal_start (1 samples, 0.02%)</title><rect x="1172.6" y="1029" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1175.55" y="1039.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor61:::invoke (1 samples, 0.02%)</title><rect x="344.7" y="517" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="347.72" y="527.5" ></text>
</g>
<g >
<title>tcp_data_queue (1 samples, 0.02%)</title><rect x="592.4" y="149" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="595.42" y="159.5" ></text>
</g>
<g >
<title>java/util/concurrent/LinkedBlockingQueue:::offer (22 samples, 0.43%)</title><rect x="388.1" y="533" width="5.1" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="391.11" y="543.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::&lt;init&gt; (78 samples, 1.52%)</title><rect x="498.5" y="549" width="17.9" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="501.53" y="559.5" ></text>
</g>
<g >
<title>ip_queue_xmit (23 samples, 0.45%)</title><rect x="1001.3" y="917" width="5.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1004.29" y="927.5" ></text>
</g>
<g >
<title>org/springframework/context/support/AbstractApplicationContext:::publishEvent (3 samples, 0.06%)</title><rect x="83.5" y="693" width="0.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="86.46" y="703.5" ></text>
</g>
<g >
<title>arrayOopDesc::base (1 samples, 0.02%)</title><rect x="72.2" y="533" width="0.2" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text x="75.21" y="543.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_C (1 samples, 0.02%)</title><rect x="249.7" y="597" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="252.67" y="607.5" ></text>
</g>
<g >
<title>org/springframework/context/event/SimpleApplicationEventMulticaster:::multicastEvent (22 samples, 0.43%)</title><rect x="942.8" y="677" width="5.0" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="945.75" y="687.5" ></text>
</g>
<g >
<title>org/jboss/netty/channel/DefaultChannelPipeline$DefaultChannelHandlerContext:::sendDownstream (2 samples, 0.04%)</title><rect x="895.0" y="421" width="0.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="898.00" y="431.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.02%)</title><rect x="645.5" y="469" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="648.46" y="479.5" ></text>
</g>
<g >
<title>OptoRuntime::new_instance_C (1 samples, 0.02%)</title><rect x="950.3" y="725" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="953.33" y="735.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="381.2" y="437" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="384.22" y="447.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (4 samples, 0.08%)</title><rect x="254.7" y="613" width="0.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="257.72" y="623.5" ></text>
</g>
<g >
<title>call_rcu_sched (1 samples, 0.02%)</title><rect x="1149.8" y="1221" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1152.82" y="1231.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="947.6" y="533" width="0.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="950.57" y="543.5" ></text>
</g>
<g >
<title>ip_finish_output (5 samples, 0.10%)</title><rect x="1118.1" y="981" width="1.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="1121.14" y="991.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioBlockingSelector:::write (85 samples, 1.65%)</title><rect x="988.4" y="1173" width="19.5" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="991.44" y="1183.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::validate (1 samples, 0.02%)</title><rect x="1097.3" y="1189" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1100.25" y="1199.5" ></text>
</g>
<g >
<title>org/joda/time/DateTimeFieldType$StandardDateTimeFieldType:::getField (1 samples, 0.02%)</title><rect x="945.3" y="629" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="948.28" y="639.5" ></text>
</g>
<g >
<title>system_call_after_swapgs (1 samples, 0.02%)</title><rect x="16.4" y="1493" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="19.43" y="1503.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="141.3" y="869" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="144.32" y="879.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (2 samples, 0.04%)</title><rect x="967.8" y="789" width="0.4" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="970.77" y="799.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="1061.2" y="1141" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1064.21" y="1151.5" ></text>
</g>
<g >
<title>java/util/HashMap:::putMapEntries (5 samples, 0.10%)</title><rect x="953.3" y="757" width="1.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="956.31" y="767.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics$KafkaConsumer:::send (1 samples, 0.02%)</title><rect x="354.8" y="581" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="357.82" y="591.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="64.4" y="277" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="67.41" y="287.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="300.6" y="581" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="303.64" y="591.5" ></text>
</g>
<g >
<title>dev_gro_receive (1 samples, 0.02%)</title><rect x="779.3" y="357" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="782.30" y="367.5" ></text>
</g>
<g >
<title>MachNode::ideal_reg (1 samples, 0.02%)</title><rect x="25.6" y="1333" width="0.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text x="28.61" y="1343.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="64.4" y="389" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="67.41" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor63:::invoke (1 samples, 0.02%)</title><rect x="350.9" y="533" width="0.2" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="353.91" y="543.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="23.3" y="1237" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="26.32" y="1247.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::matcher (1 samples, 0.02%)</title><rect x="57.8" y="549" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="60.75" y="559.5" ></text>
</g>
<g >
<title>VM_Operation::evaluate (4 samples, 0.08%)</title><rect x="1189.1" y="1429" width="0.9" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text x="1192.08" y="1439.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="297.0" y="629" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="299.96" y="639.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1020.6" y="1045" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1023.58" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="80.0" y="517" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="83.02" y="527.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (2 samples, 0.04%)</title><rect x="78.0" y="517" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="80.95" y="527.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iovec (5 samples, 0.10%)</title><rect x="1021.0" y="1029" width="1.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="1024.04" y="1039.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::findAnnotation (3 samples, 0.06%)</title><rect x="937.2" y="613" width="0.7" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="940.24" y="623.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.02%)</title><rect x="201.5" y="645" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="204.46" y="655.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (108 samples, 2.10%)</title><rect x="471.9" y="549" width="24.8" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="474.90" y="559.5" >j..</text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::scanSymbol (16 samples, 0.31%)</title><rect x="326.4" y="533" width="3.6" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="329.35" y="543.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (1 samples, 0.02%)</title><rect x="92.6" y="1013" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="95.65" y="1023.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/SymbolTable:::addSymbol (2 samples, 0.04%)</title><rect x="331.9" y="533" width="0.4" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="334.86" y="543.5" ></text>
</g>
<g >
<title>java/nio/charset/CharsetDecoder:::implReset (1 samples, 0.02%)</title><rect x="112.6" y="1221" width="0.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="115.62" y="1231.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/rpc/MotanTracingFilter:::filter (8 samples, 0.16%)</title><rect x="893.6" y="549" width="1.9" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="896.62" y="559.5" ></text>
</g>
<g >
<title>inet_gro_receive (1 samples, 0.02%)</title><rect x="795.6" y="341" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="798.60" y="351.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/ModelAttributeMethodProcessor:::supportsReturnType (2 samples, 0.04%)</title><rect x="49.0" y="645" width="0.5" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="52.03" y="655.5" ></text>
</g>
<g >
<title>JavaThread::handle_special_suspend_equivalent_condition (3 samples, 0.06%)</title><rect x="1052.7" y="1237" width="0.7" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="1055.72" y="1247.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpTrace$Request:::&lt;init&gt; (6 samples, 0.12%)</title><rect x="84.2" y="789" width="1.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="87.15" y="799.5" ></text>
</g>
<g >
<title>pthread_getspecific (1 samples, 0.02%)</title><rect x="19.0" y="1397" width="0.2" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text x="21.95" y="1407.5" ></text>
</g>
<g >
<title>com/google/gson/internal/bind/ArrayTypeAdapter:::write (1 samples, 0.02%)</title><rect x="213.9" y="613" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="216.86" y="623.5" ></text>
</g>
<g >
<title>try_fill_recv (1 samples, 0.02%)</title><rect x="303.6" y="485" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="306.62" y="495.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="510.2" y="357" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="513.24" y="367.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="294.4" y="597" width="0.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="297.44" y="607.5" ></text>
</g>
<g >
<title>java/util/ComparableTimSort:::binarySort (3 samples, 0.06%)</title><rect x="977.2" y="1029" width="0.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="980.19" y="1039.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::encode (8 samples, 0.16%)</title><rect x="1034.4" y="1253" width="1.8" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1037.35" y="1263.5" ></text>
</g>
<g >
<title>run_timer_softirq (1 samples, 0.02%)</title><rect x="774.7" y="405" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="777.70" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor55:::invoke (2,635 samples, 51.26%)</title><rect x="310.5" y="629" width="604.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="313.51" y="639.5" >sun/reflect/GeneratedMethodAccessor55:::invoke</text>
</g>
<g >
<title>OopMapSet::all_do (1 samples, 0.02%)</title><rect x="21.2" y="1365" width="0.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="24.25" y="1375.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::matcher (8 samples, 0.16%)</title><rect x="496.7" y="549" width="1.8" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="499.69" y="559.5" ></text>
</g>
<g >
<title>bictcp_cong_avoid (1 samples, 0.02%)</title><rect x="1075.2" y="933" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1078.21" y="943.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="1109.9" y="1269" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="1112.88" y="1279.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1168.4" y="1285" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1171.42" y="1295.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="302.7" y="565" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="305.70" y="575.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="1075.2" y="1093" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1078.21" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="412.7" y="325" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="415.67" y="335.5" ></text>
</g>
<g >
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="1041.0" y="1173" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1044.01" y="1183.5" ></text>
</g>
<g >
<title>org/apache/catalina/mapper/Mapper:::internalMap (9 samples, 0.18%)</title><rect x="115.1" y="1205" width="2.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="118.14" y="1215.5" ></text>
</g>
<g >
<title>schedule (11 samples, 0.21%)</title><rect x="1165.2" y="1205" width="2.5" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="1168.21" y="1215.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (2 samples, 0.04%)</title><rect x="1049.7" y="1269" width="0.5" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text x="1052.73" y="1279.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (2 samples, 0.04%)</title><rect x="374.3" y="469" width="0.5" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="377.33" y="479.5" ></text>
</g>
<g >
<title>sun/nio/ch/NativeThread:::current (1 samples, 0.02%)</title><rect x="1114.0" y="1237" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="1117.01" y="1247.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (5 samples, 0.10%)</title><rect x="465.2" y="549" width="1.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="468.24" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor94:::invoke (1 samples, 0.02%)</title><rect x="347.5" y="517" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="350.47" y="527.5" ></text>
</g>
<g >
<title>PhaseIterGVN::remove_globally_dead_node (1 samples, 0.02%)</title><rect x="32.5" y="1301" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="35.50" y="1311.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="938.2" y="501" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="941.16" y="511.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="263.9" y="437" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="266.91" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::doSignal (1 samples, 0.02%)</title><rect x="1138.3" y="1285" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1141.35" y="1295.5" ></text>
</g>
<g >
<title>JVM_GetStackTraceDepth (3 samples, 0.06%)</title><rect x="517.4" y="517" width="0.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="520.35" y="527.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (11 samples, 0.21%)</title><rect x="220.7" y="549" width="2.6" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="223.75" y="559.5" ></text>
</g>
<g >
<title>InterpreterRuntime::ldc (1 samples, 0.02%)</title><rect x="50.4" y="565" width="0.2" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text x="53.40" y="575.5" ></text>
</g>
<g >
<title>ipv4_mtu (1 samples, 0.02%)</title><rect x="87.1" y="965" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="90.14" y="975.5" ></text>
</g>
<g >
<title>G1RemSet::oops_into_collection_set_do (5 samples, 0.10%)</title><rect x="21.7" y="1429" width="1.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="24.71" y="1439.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1020.6" y="741" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1023.58" y="751.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpTrace$Request:::&lt;init&gt; (73 samples, 1.42%)</title><rect x="951.0" y="773" width="16.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="954.02" y="783.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.02%)</title><rect x="233.1" y="613" width="0.3" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="236.14" y="623.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/InputBuffer:::read (1 samples, 0.02%)</title><rect x="128.0" y="981" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="131.00" y="991.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="332.1" y="485" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="335.09" y="495.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="415.2" y="517" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="418.19" y="527.5" ></text>
</g>
<g >
<title>InterpreterRuntime::method (1 samples, 0.02%)</title><rect x="322.7" y="549" width="0.2" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text x="325.68" y="559.5" ></text>
</g>
<g >
<title>Parse::do_all_blocks (1 samples, 0.02%)</title><rect x="33.4" y="1253" width="0.2" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text x="36.42" y="1263.5" ></text>
</g>
<g >
<title>Klass::external_name (5 samples, 0.10%)</title><rect x="59.8" y="469" width="1.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="62.82" y="479.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ObjectMapper:::_configAndWriteValue (60 samples, 1.17%)</title><rect x="364.7" y="533" width="13.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="367.69" y="543.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (1 samples, 0.02%)</title><rect x="197.8" y="677" width="0.2" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="200.79" y="687.5" ></text>
</g>
<g >
<title>java/util/Arrays:::sort (3 samples, 0.06%)</title><rect x="260.2" y="581" width="0.7" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="263.23" y="591.5" ></text>
</g>
<g >
<title>__schedule (12 samples, 0.23%)</title><rect x="1185.6" y="1189" width="2.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1188.64" y="1199.5" ></text>
</g>
<g >
<title>_new_instance_Java (1 samples, 0.02%)</title><rect x="675.5" y="581" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="678.53" y="591.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="890.6" y="517" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="893.64" y="527.5" ></text>
</g>
<g >
<title>system_call_fastpath (6 samples, 0.12%)</title><rect x="14.4" y="1493" width="1.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="17.36" y="1503.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMapping$PartialMatchHelper:::&lt;init&gt; (67 samples, 1.30%)</title><rect x="264.6" y="629" width="15.4" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="267.60" y="639.5" ></text>
</g>
<g >
<title>tcp_data_queue (1 samples, 0.02%)</title><rect x="322.9" y="293" width="0.2" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text x="325.91" y="303.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/AbstractChunk:::indexOf (3 samples, 0.06%)</title><rect x="114.0" y="1189" width="0.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="117.00" y="1199.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1010.5" y="1077" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1013.47" y="1087.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (1 samples, 0.02%)</title><rect x="1112.6" y="1189" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1115.63" y="1199.5" ></text>
</g>
<g >
<title>G1CollectedHeap::do_collection_pause_at_safepoint (4 samples, 0.08%)</title><rect x="1189.1" y="1397" width="0.9" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="1192.08" y="1407.5" ></text>
</g>
<g >
<title>sys_futex (4 samples, 0.08%)</title><rect x="35.3" y="1189" width="0.9" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="38.25" y="1199.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="965.2" y="709" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="968.25" y="719.5" ></text>
</g>
<g >
<title>vfs_read (3 samples, 0.06%)</title><rect x="1128.2" y="1221" width="0.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="1131.25" y="1231.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::getBeanExpressionResolver (1 samples, 0.02%)</title><rect x="915.7" y="645" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="918.66" y="655.5" ></text>
</g>
<g >
<title>__dev_kfree_skb_any (1 samples, 0.02%)</title><rect x="1118.8" y="869" width="0.3" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="1121.83" y="879.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::deserialze (1 samples, 0.02%)</title><rect x="308.4" y="565" width="0.3" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="311.44" y="575.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getRequestURL (1 samples, 0.02%)</title><rect x="967.3" y="741" width="0.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="970.32" y="751.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="560.7" y="373" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="563.74" y="383.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/utils/GzipUtil:::deCompress (1,033 samples, 20.10%)</title><rect x="656.5" y="597" width="237.1" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="659.47" y="607.5" >com/coohua/ad/data/utils/GzipUt..</text>
</g>
<g >
<title>ResourceMark::~ResourceMark (1 samples, 0.02%)</title><rect x="510.7" y="453" width="0.2" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text x="513.70" y="463.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMapping$PartialMatchHelper:::&lt;init&gt; (4 samples, 0.08%)</title><rect x="47.0" y="629" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="49.96" y="639.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl:::read (16 samples, 0.31%)</title><rect x="1110.6" y="1253" width="3.6" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="1113.57" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/util/StringUtils:::tokenizeToStringArray (1 samples, 0.02%)</title><rect x="47.6" y="565" width="0.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="50.65" y="575.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (2 samples, 0.04%)</title><rect x="1176.0" y="1045" width="0.5" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="1179.00" y="1055.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="180.6" y="565" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="183.57" y="575.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="1182.4" y="1077" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1185.42" y="1087.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/stats/Count:::update (1 samples, 0.02%)</title><rect x="1104.8" y="1285" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1107.83" y="1295.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor:::runWorker (124 samples, 2.41%)</title><rect x="1031.6" y="1333" width="28.5" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="1034.60" y="1343.5" >ja..</text>
</g>
<g >
<title>jni_GetPrimitiveArrayCritical (148 samples, 2.88%)</title><rect x="801.6" y="533" width="33.9" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="804.56" y="543.5" >jn..</text>
</g>
<g >
<title>org/apache/coyote/AbstractProcessor:::parseHost (1 samples, 0.02%)</title><rect x="1012.3" y="1237" width="0.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1015.31" y="1247.5" ></text>
</g>
<g >
<title>system_call_fastpath (31 samples, 0.60%)</title><rect x="1170.7" y="1221" width="7.1" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="1173.72" y="1231.5" ></text>
</g>
<g >
<title>OptoRuntime::is_deoptimized_caller_frame (1 samples, 0.02%)</title><rect x="364.2" y="501" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="367.23" y="511.5" ></text>
</g>
<g >
<title>futex_wake_op (5 samples, 0.10%)</title><rect x="99.8" y="1173" width="1.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="102.76" y="1183.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (1 samples, 0.02%)</title><rect x="983.8" y="837" width="0.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="986.84" y="847.5" ></text>
</g>
<g >
<title>__inet_lookup_established (1 samples, 0.02%)</title><rect x="961.8" y="485" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="964.81" y="495.5" ></text>
</g>
<g >
<title>org/springframework/web/method/support/HandlerMethodReturnValueHandlerComposite:::selectHandler (2 samples, 0.04%)</title><rect x="49.0" y="661" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="52.03" y="671.5" ></text>
</g>
<g >
<title>java/lang/Class:::getEnclosingMethod0 (1 samples, 0.02%)</title><rect x="943.0" y="645" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="945.98" y="655.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::initialize (4 samples, 0.08%)</title><rect x="653.3" y="581" width="0.9" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="656.26" y="591.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (32 samples, 0.62%)</title><rect x="825.4" y="517" width="7.4" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="828.44" y="527.5" ></text>
</g>
<g >
<title>com/google/gson/internal/bind/MapTypeAdapterFactory$Adapter:::write (56 samples, 1.09%)</title><rect x="214.1" y="613" width="12.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="217.09" y="623.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/base/LeapArray:::currentWindow (4 samples, 0.08%)</title><rect x="190.4" y="565" width="1.0" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="193.44" y="575.5" ></text>
</g>
<g >
<title>__libc_calloc (4 samples, 0.08%)</title><rect x="424.1" y="517" width="1.0" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="427.15" y="527.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/requests/ProduceRequest:::toStruct (7 samples, 0.14%)</title><rect x="1098.9" y="1253" width="1.6" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1101.86" y="1263.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="86.7" y="1029" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="89.68" y="1039.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_post (1 samples, 0.02%)</title><rect x="627.8" y="501" width="0.2" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text x="630.78" y="511.5" ></text>
</g>
<g >
<title>ObjectSynchronizer::FastHashCode (1 samples, 0.02%)</title><rect x="108.0" y="1205" width="0.3" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="111.03" y="1215.5" ></text>
</g>
<g >
<title>vfs_read (12 samples, 0.23%)</title><rect x="1020.3" y="1125" width="2.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1023.35" y="1135.5" ></text>
</g>
<g >
<title>java/io/ByteArrayInputStream:::read (1 samples, 0.02%)</title><rect x="679.0" y="565" width="0.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="681.97" y="575.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/message/ParameterFormatter:::recursiveDeepToString (3 samples, 0.06%)</title><rect x="646.1" y="469" width="0.7" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="649.14" y="479.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (6 samples, 0.12%)</title><rect x="629.2" y="517" width="1.3" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="632.16" y="527.5" ></text>
</g>
<g >
<title>com/google/gson/internal/bind/TypeAdapters$16:::write (1 samples, 0.02%)</title><rect x="226.3" y="597" width="0.2" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="229.26" y="607.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="117.0" y="1109" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="119.98" y="1119.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.25 (3 samples, 0.06%)</title><rect x="1155.3" y="1173" width="0.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1158.33" y="1183.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="651.9" y="389" width="0.2" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="654.88" y="399.5" ></text>
</g>
<g >
<title>java/lang/reflect/Array:::get (1 samples, 0.02%)</title><rect x="44.2" y="581" width="0.2" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="47.21" y="591.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1050.2" y="1189" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1053.19" y="1199.5" ></text>
</g>
<g >
<title>do_sync_write (11 samples, 0.21%)</title><rect x="1041.2" y="1173" width="2.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1044.24" y="1183.5" ></text>
</g>
<g >
<title>Interpreter (2 samples, 0.04%)</title><rect x="34.6" y="1301" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="37.56" y="1311.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="795.6" y="437" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="798.60" y="447.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getOurStackTrace (473 samples, 9.20%)</title><rect x="516.4" y="549" width="108.6" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="519.44" y="559.5" >java/lang/Thr..</text>
</g>
<g >
<title>G1ParEvacuateFollowersClosure::do_void (11 samples, 0.21%)</title><rect x="18.5" y="1445" width="2.5" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="21.49" y="1455.5" ></text>
</g>
<g >
<title>call_softirq (2 samples, 0.04%)</title><rect x="448.9" y="357" width="0.5" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="451.94" y="367.5" ></text>
</g>
<g >
<title>inet_gro_receive (1 samples, 0.02%)</title><rect x="983.8" y="853" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="986.84" y="863.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="651.9" y="437" width="0.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="654.88" y="447.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="234.8" y="469" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="237.75" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="193.7" y="565" width="0.2" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="196.66" y="575.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/AbstractEndpoint:::processSocket (2 samples, 0.04%)</title><rect x="1129.6" y="1349" width="0.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1132.62" y="1359.5" ></text>
</g>
<g >
<title>org/springframework/http/MediaType:::isCompatibleWith (1 samples, 0.02%)</title><rect x="933.6" y="629" width="0.2" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="936.57" y="639.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="488.9" y="389" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="491.89" y="399.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/StringCodec:::getFastMatchToken (1 samples, 0.02%)</title><rect x="52.0" y="533" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="55.01" y="543.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Slice:::match (2 samples, 0.04%)</title><rect x="280.7" y="597" width="0.4" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="283.67" y="607.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="532.3" y="373" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="535.28" y="383.5" ></text>
</g>
<g >
<title>Method::bci_from (1 samples, 0.02%)</title><rect x="499.4" y="469" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="502.45" y="479.5" ></text>
</g>
<g >
<title>JNIHandleBlock::allocate_handle (2 samples, 0.04%)</title><rect x="75.9" y="517" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text x="78.89" y="527.5" ></text>
</g>
<g >
<title>jni_GetPrimitiveArrayCritical (1 samples, 0.02%)</title><rect x="464.3" y="501" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="467.32" y="511.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/clusterbuilder/ClusterBuilderSlot:::exit (15 samples, 0.29%)</title><rect x="243.9" y="613" width="3.5" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="246.93" y="623.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/sentinel/SentinelHttpFilter:::doFilter (3,548 samples, 69.03%)</title><rect x="153.7" y="853" width="814.5" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="156.71" y="863.5" >com/coohua/caf/core/sentinel/SentinelHttpFilter:::doFilter</text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="117.2" y="933" width="0.2" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="120.21" y="943.5" ></text>
</g>
<g >
<title>skb_checksum (1 samples, 0.02%)</title><rect x="779.3" y="293" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="782.30" y="303.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.02%)</title><rect x="1039.6" y="1221" width="0.3" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="1042.63" y="1231.5" ></text>
</g>
<g >
<title>Type::meet_helper (2 samples, 0.04%)</title><rect x="32.7" y="1317" width="0.5" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="35.73" y="1327.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getPathWithinApplication (5 samples, 0.10%)</title><rect x="282.0" y="629" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="285.04" y="639.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getHeader (4 samples, 0.08%)</title><rect x="257.9" y="581" width="1.0" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="260.94" y="591.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="304.1" y="597" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="307.08" y="607.5" ></text>
</g>
<g >
<title>epoll_ctl (2 samples, 0.04%)</title><rect x="1122.5" y="1253" width="0.5" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1125.51" y="1263.5" ></text>
</g>
<g >
<title>java/util/zip/GZIPOutputStream:::&lt;init&gt; (49 samples, 0.95%)</title><rect x="414.0" y="549" width="11.3" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="417.05" y="559.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.25 (1 samples, 0.02%)</title><rect x="1185.2" y="1189" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1188.18" y="1199.5" ></text>
</g>
<g >
<title>os::stack_shadow_pages_available (1 samples, 0.02%)</title><rect x="677.6" y="517" width="0.2" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="680.60" y="527.5" ></text>
</g>
<g >
<title>org/springframework/context/event/AbstractApplicationEventMulticaster$ListenerCacheKey:::hashCode (1 samples, 0.02%)</title><rect x="946.9" y="661" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="949.88" y="671.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMethodMapping:::getHandlerInternal (10 samples, 0.19%)</title><rect x="46.0" y="661" width="2.3" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="49.04" y="671.5" ></text>
</g>
<g >
<title>tcp_ack (1 samples, 0.02%)</title><rect x="1168.4" y="1045" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1171.42" y="1055.5" ></text>
</g>
<g >
<title>dput (1 samples, 0.02%)</title><rect x="1163.6" y="1253" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1166.60" y="1263.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (16 samples, 0.31%)</title><rect x="1026.1" y="1125" width="3.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1029.09" y="1135.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::validate (1 samples, 0.02%)</title><rect x="1097.3" y="1237" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="1100.25" y="1247.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="270.3" y="469" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="273.33" y="479.5" ></text>
</g>
<g >
<title>HandleArea::allocate_handle (1 samples, 0.02%)</title><rect x="59.4" y="469" width="0.2" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text x="62.36" y="479.5" ></text>
</g>
<g >
<title>org/springframework/core/MethodParameter:::getNestedParameterType (1 samples, 0.02%)</title><rect x="925.5" y="629" width="0.3" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="928.53" y="639.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Inflater_end (1 samples, 0.02%)</title><rect x="68.5" y="565" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="71.54" y="575.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::service (224 samples, 4.36%)</title><rect x="36.6" y="1237" width="51.5" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="39.63" y="1247.5" >org/a..</text>
</g>
<g >
<title>G1CollectedHeap::evacuate_collection_set (3 samples, 0.06%)</title><rect x="1189.1" y="1381" width="0.7" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="1192.08" y="1391.5" ></text>
</g>
<g >
<title>__sb_start_write (1 samples, 0.02%)</title><rect x="990.3" y="1045" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="993.27" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (2 samples, 0.04%)</title><rect x="548.3" y="405" width="0.5" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="551.35" y="415.5" ></text>
</g>
<g >
<title>Parse::Parse (1 samples, 0.02%)</title><rect x="33.4" y="1365" width="0.2" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="36.42" y="1375.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::addEvent (1,243 samples, 24.18%)</title><rect x="355.0" y="581" width="285.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="358.05" y="591.5" >com/coohuadata/analytics/javasdk/Coohu..</text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="224.4" y="565" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="227.42" y="575.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="895.2" y="277" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="898.23" y="287.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (36 samples, 0.70%)</title><rect x="850.7" y="517" width="8.3" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text x="853.69" y="527.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (1 samples, 0.02%)</title><rect x="66.7" y="549" width="0.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="69.70" y="559.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil:::drain (1 samples, 0.02%)</title><rect x="1159.0" y="1317" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1162.01" y="1327.5" ></text>
</g>
<g >
<title>java/util/HashSet:::iterator (1 samples, 0.02%)</title><rect x="263.4" y="581" width="0.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="266.45" y="591.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="583.9" y="245" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="586.93" y="255.5" ></text>
</g>
<g >
<title>org/apache/catalina/mapper/Mapper:::internalMap (1 samples, 0.02%)</title><rect x="987.5" y="1221" width="0.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="990.52" y="1231.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/metrics/web/servlet/LongTaskTimingHandlerInterceptor:::afterCompletion (2 samples, 0.04%)</title><rect x="247.4" y="661" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="250.38" y="671.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.04%)</title><rect x="894.3" y="389" width="0.5" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="897.31" y="399.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/NamesEnumerator:::findNext (1 samples, 0.02%)</title><rect x="187.9" y="661" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="190.92" y="671.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="257.0" y="597" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="260.02" y="607.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (1 samples, 0.02%)</title><rect x="1047.2" y="1269" width="0.2" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="1050.21" y="1279.5" ></text>
</g>
<g >
<title>do_futex (23 samples, 0.45%)</title><rect x="93.6" y="1173" width="5.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="96.56" y="1183.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="947.6" y="373" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="950.57" y="383.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::endRequest (1 samples, 0.02%)</title><rect x="1023.8" y="1237" width="0.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1026.79" y="1247.5" ></text>
</g>
<g >
<title>org/apache/commons/lang3/StringUtils:::splitWorker (7 samples, 0.14%)</title><rect x="151.9" y="853" width="1.6" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="154.88" y="863.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater:::end (1 samples, 0.02%)</title><rect x="68.5" y="581" width="0.3" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="71.54" y="591.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="294.4" y="613" width="0.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="297.44" y="623.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="299.5" y="613" width="0.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="302.49" y="623.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="374.8" y="453" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="377.79" y="463.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMethodMapping:::lookupHandlerMethod (9 samples, 0.18%)</title><rect x="46.0" y="645" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="49.04" y="655.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/ResponseBodyEmitterReturnValueHandler:::supportsReturnType (1 samples, 0.02%)</title><rect x="83.2" y="661" width="0.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="86.23" y="671.5" ></text>
</g>
<g >
<title>fill_window (4 samples, 0.08%)</title><rect x="460.0" y="469" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="462.96" y="479.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (1 samples, 0.02%)</title><rect x="653.9" y="549" width="0.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="656.95" y="559.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::addEvent (6 samples, 0.12%)</title><rect x="308.7" y="581" width="1.4" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="311.67" y="591.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor76:::invoke (1 samples, 0.02%)</title><rect x="346.8" y="517" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="349.78" y="527.5" ></text>
</g>
<g >
<title>sys_futex (24 samples, 0.47%)</title><rect x="93.3" y="1189" width="5.5" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="96.33" y="1199.5" ></text>
</g>
<g >
<title>org/springframework/core/ResolvableType:::forMethodParameter (1 samples, 0.02%)</title><rect x="81.6" y="613" width="0.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="84.63" y="623.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="263.9" y="453" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="266.91" y="463.5" ></text>
</g>
<g >
<title>org/springframework/aop/aspectj/AbstractAspectJAdvice:::invokeAdviceMethod (1 samples, 0.02%)</title><rect x="647.1" y="501" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="650.06" y="511.5" ></text>
</g>
<g >
<title>__generic_file_aio_write (20 samples, 0.39%)</title><rect x="1172.3" y="1125" width="4.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1175.32" y="1135.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater:::end (1 samples, 0.02%)</title><rect x="393.4" y="549" width="0.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="396.39" y="559.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor:::execute (23 samples, 0.45%)</title><rect x="388.1" y="549" width="5.3" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="391.11" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor68:::invoke (1 samples, 0.02%)</title><rect x="345.2" y="517" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="348.18" y="527.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe (1 samples, 0.02%)</title><rect x="1117.7" y="1045" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="1120.68" y="1055.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.02%)</title><rect x="928.5" y="613" width="0.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="931.52" y="623.5" ></text>
</g>
<g >
<title>tcp_transmit_skb (1 samples, 0.02%)</title><rect x="14.1" y="1365" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="17.13" y="1375.5" ></text>
</g>
<g >
<title>system_call_fastpath (24 samples, 0.47%)</title><rect x="990.0" y="1125" width="5.6" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="993.04" y="1135.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="583.7" y="421" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="586.70" y="431.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (21 samples, 0.41%)</title><rect x="1139.0" y="1253" width="4.9" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1142.04" y="1263.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="332.1" y="501" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="335.09" y="511.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="995.6" y="1061" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="998.55" y="1071.5" ></text>
</g>
<g >
<title>alloc_pages_current (1 samples, 0.02%)</title><rect x="1175.3" y="1045" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1178.31" y="1055.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="801.3" y="453" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="804.33" y="463.5" ></text>
</g>
<g >
<title>java/lang/Object:::toString (5 samples, 0.10%)</title><rect x="104.6" y="1253" width="1.1" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="107.58" y="1263.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="965.2" y="533" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="968.25" y="543.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (1 samples, 0.02%)</title><rect x="42.4" y="645" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="45.37" y="655.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BitClass:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="1075.9" y="1045" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="1078.90" y="1055.5" ></text>
</g>
<g >
<title>_complete_monitor_locking_Java (1 samples, 0.02%)</title><rect x="989.8" y="1157" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="992.81" y="1167.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="196.9" y="677" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="199.87" y="687.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/ModelFactory:::initModel (2 samples, 0.04%)</title><rect x="294.9" y="661" width="0.5" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="297.90" y="671.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::subParse (4 samples, 0.08%)</title><rect x="654.2" y="565" width="0.9" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text x="657.18" y="575.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::park (5 samples, 0.10%)</title><rect x="35.0" y="1253" width="1.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="38.02" y="1263.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="592.4" y="197" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="595.42" y="207.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy5:::annotationType (1 samples, 0.02%)</title><rect x="49.3" y="597" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="52.26" y="607.5" ></text>
</g>
<g >
<title>org/springframework/util/ConcurrentReferenceHashMap$Segment:::restructureIfNecessary (1 samples, 0.02%)</title><rect x="983.6" y="1013" width="0.2" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text x="986.61" y="1023.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/DispatcherServlet:::processDispatchResult (9 samples, 0.18%)</title><rect x="44.0" y="677" width="2.0" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="46.98" y="687.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1182.4" y="1237" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1185.42" y="1247.5" ></text>
</g>
<g >
<title>deflateInit2_ (1 samples, 0.02%)</title><rect x="423.0" y="501" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="426.00" y="511.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/RequestMethodsRequestCondition:::matchRequestMethod (5 samples, 0.10%)</title><rect x="262.8" y="597" width="1.1" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="265.76" y="607.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (1 samples, 0.02%)</title><rect x="1121.8" y="1269" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="1124.82" y="1279.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::intValue (1 samples, 0.02%)</title><rect x="342.0" y="501" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="344.96" y="511.5" ></text>
</g>
<g >
<title>java/text/DigitList:::getLong (1 samples, 0.02%)</title><rect x="650.3" y="501" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="653.28" y="511.5" ></text>
</g>
<g >
<title>PhaseChaitin::interfere_with_live (3 samples, 0.06%)</title><rect x="26.3" y="1333" width="0.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="29.30" y="1343.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="1020.6" y="789" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1023.58" y="799.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="250.8" y="533" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="253.82" y="543.5" ></text>
</g>
<g >
<title>OptoRuntime::register_finalizer (1 samples, 0.02%)</title><rect x="675.3" y="581" width="0.2" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="678.30" y="591.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (1 samples, 0.02%)</title><rect x="645.5" y="485" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="648.46" y="495.5" ></text>
</g>
<g >
<title>mutex_unlock (1 samples, 0.02%)</title><rect x="1170.7" y="1189" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="1173.72" y="1199.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1050.2" y="1237" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1053.19" y="1247.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (4 samples, 0.08%)</title><rect x="35.3" y="1141" width="0.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="38.25" y="1151.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (4 samples, 0.08%)</title><rect x="161.7" y="693" width="1.0" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="164.75" y="703.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.04%)</title><rect x="899.6" y="517" width="0.5" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="902.59" y="527.5" ></text>
</g>
<g >
<title>BacktraceBuilder::expand (3 samples, 0.06%)</title><rect x="504.0" y="453" width="0.7" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text x="507.04" y="463.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="378.2" y="453" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="381.23" y="463.5" ></text>
</g>
<g >
<title>ObjectMonitor::enter (1 samples, 0.02%)</title><rect x="39.6" y="773" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="42.61" y="783.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater:::deflateBytes (9 samples, 0.18%)</title><rect x="55.0" y="533" width="2.1" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="58.00" y="543.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMapping:::getHandler (10 samples, 0.19%)</title><rect x="46.0" y="677" width="2.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="49.04" y="687.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getAttribute (1 samples, 0.02%)</title><rect x="124.6" y="1077" width="0.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="127.56" y="1087.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="965.2" y="661" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="968.25" y="671.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="971.2" y="837" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="974.22" y="847.5" ></text>
</g>
<g >
<title>deflateResetKeep (2 samples, 0.04%)</title><rect x="423.5" y="485" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="426.46" y="495.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (1 samples, 0.02%)</title><rect x="1117.5" y="1029" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="1120.46" y="1039.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (3 samples, 0.06%)</title><rect x="1175.8" y="1061" width="0.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1178.77" y="1071.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="910.4" y="181" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="913.38" y="191.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="344.7" y="389" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="347.72" y="399.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.02%)</title><rect x="1036.4" y="1253" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1039.42" y="1263.5" ></text>
</g>
<g >
<title>Node::replace_edge (1 samples, 0.02%)</title><rect x="32.5" y="1285" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="35.50" y="1295.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (1 samples, 0.02%)</title><rect x="1058.5" y="1157" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="1061.46" y="1167.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="949.2" y="741" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="952.18" y="751.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="195.7" y="661" width="0.5" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="198.72" y="671.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="910.4" y="325" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="913.38" y="335.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="261.2" y="517" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="264.15" y="527.5" ></text>
</g>
<g >
<title>arrayof_jint_fill (1 samples, 0.02%)</title><rect x="471.4" y="549" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="474.44" y="559.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (26 samples, 0.51%)</title><rect x="1024.9" y="1237" width="6.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="1027.94" y="1247.5" ></text>
</g>
<g >
<title>G1ParScanThreadState::copy_to_survivor_space (3 samples, 0.06%)</title><rect x="19.4" y="1413" width="0.7" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="22.41" y="1423.5" ></text>
</g>
<g >
<title>InstanceRefKlass::oop_oop_iterate_backwards_nv (1 samples, 0.02%)</title><rect x="19.0" y="1413" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="21.95" y="1423.5" ></text>
</g>
<g >
<title>jni_GetPrimitiveArrayCritical (4 samples, 0.08%)</title><rect x="880.8" y="549" width="0.9" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="883.77" y="559.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="1185.4" y="1205" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="1188.41" y="1215.5" ></text>
</g>
<g >
<title>schedule (3 samples, 0.06%)</title><rect x="1062.1" y="1173" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1065.13" y="1183.5" ></text>
</g>
<g >
<title>sys_read (5 samples, 0.10%)</title><rect x="1112.9" y="1189" width="1.1" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="1115.86" y="1199.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="322.9" y="421" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="325.91" y="431.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (20 samples, 0.39%)</title><rect x="1123.7" y="1253" width="4.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1126.65" y="1263.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/requests/ProduceRequest:::&lt;init&gt; (3 samples, 0.06%)</title><rect x="1101.2" y="1253" width="0.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1104.16" y="1263.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="560.7" y="341" width="0.3" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="563.74" y="351.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="910.4" y="165" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="913.38" y="175.5" ></text>
</g>
<g >
<title>__libc_calloc (1 samples, 0.02%)</title><rect x="679.9" y="565" width="0.2" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="682.89" y="575.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="1010.5" y="1013" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1013.47" y="1023.5" ></text>
</g>
<g >
<title>tcp_poll (1 samples, 0.02%)</title><rect x="647.8" y="245" width="0.2" height="15.0" fill="rgb(208,63,63)" rx="2" ry="2" />
<text x="650.75" y="255.5" ></text>
</g>
<g >
<title>checkcast_arraycopy (1 samples, 0.02%)</title><rect x="1072.9" y="1221" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1075.92" y="1231.5" ></text>
</g>
<g >
<title>java/util/concurrent/ArrayBlockingQueue:::offer (2 samples, 0.04%)</title><rect x="899.6" y="565" width="0.5" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="902.59" y="575.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor92:::invoke (1 samples, 0.02%)</title><rect x="52.5" y="533" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="55.47" y="543.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::run (128 samples, 2.49%)</title><rect x="1130.1" y="1349" width="29.4" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="1133.08" y="1359.5" >or..</text>
</g>
<g >
<title>java/util/Vector:::addElement (1 samples, 0.02%)</title><rect x="678.5" y="581" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="681.51" y="591.5" ></text>
</g>
<g >
<title>ip_queue_xmit (1 samples, 0.02%)</title><rect x="1113.6" y="1029" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="1116.55" y="1039.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="835.1" y="469" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="838.08" y="479.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="514.6" y="405" width="0.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="517.60" y="415.5" ></text>
</g>
<g >
<title>AddNode::Identity (2 samples, 0.04%)</title><rect x="32.7" y="1333" width="0.5" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text x="35.73" y="1343.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="1075.2" y="1077" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="1078.21" y="1087.5" ></text>
</g>
<g >
<title>rcu_process_callbacks (1 samples, 0.02%)</title><rect x="1053.6" y="1157" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1056.63" y="1167.5" ></text>
</g>
<g >
<title>call_stub (5,032 samples, 97.90%)</title><rect x="33.9" y="1381" width="1155.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="36.88" y="1391.5" >call_stub</text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (7 samples, 0.14%)</title><rect x="489.6" y="469" width="1.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="492.58" y="479.5" ></text>
</g>
<g >
<title>JvmtiVMObjectAllocEventCollector::~JvmtiVMObjectAllocEventCollector (1 samples, 0.02%)</title><rect x="521.0" y="501" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="524.03" y="511.5" ></text>
</g>
<g >
<title>ep_remove (3 samples, 0.06%)</title><rect x="1149.8" y="1237" width="0.7" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1152.82" y="1247.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="1010.5" y="949" width="0.2" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="1013.47" y="959.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="965.2" y="677" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="968.25" y="687.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/logger/LogSlot:::entry (9 samples, 0.18%)</title><rect x="189.8" y="613" width="2.0" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="192.75" y="623.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="1022.0" y="821" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="1024.95" y="831.5" ></text>
</g>
<g >
<title>JavaCalls::call_helper (5 samples, 0.10%)</title><rect x="676.7" y="533" width="1.1" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text x="679.68" y="543.5" ></text>
</g>
<g >
<title>clock_gettime (1 samples, 0.02%)</title><rect x="89.9" y="1269" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="92.89" y="1279.5" ></text>
</g>
<g >
<title>sys_poll (1 samples, 0.02%)</title><rect x="651.4" y="453" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="654.42" y="463.5" ></text>
</g>
<g >
<title>all (5,140 samples, 100%)</title><rect x="10.0" y="1541" width="1180.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="13.00" y="1551.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1061.2" y="1237" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1064.21" y="1247.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="914.3" y="373" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="917.28" y="383.5" ></text>
</g>
<g >
<title>tcp_push (11 samples, 0.21%)</title><rect x="1117.0" y="1093" width="2.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1120.00" y="1103.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClient:::expire (1 samples, 0.02%)</title><rect x="648.9" y="437" width="0.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="651.90" y="447.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="965.2" y="629" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="968.25" y="639.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (1 samples, 0.02%)</title><rect x="385.8" y="533" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="388.81" y="543.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/utils/AbstractIterator:::hasNext (1 samples, 0.02%)</title><rect x="1101.8" y="1269" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1104.84" y="1279.5" ></text>
</g>
<g >
<title>updatewindow (6 samples, 0.12%)</title><rect x="877.6" y="533" width="1.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="880.55" y="543.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="592.4" y="181" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="595.42" y="191.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="947.6" y="405" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="950.57" y="415.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::poll (1 samples, 0.02%)</title><rect x="34.8" y="1237" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="37.79" y="1247.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (1 samples, 0.02%)</title><rect x="232.2" y="597" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="235.23" y="607.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::afterNodeAccess (1 samples, 0.02%)</title><rect x="1107.4" y="1285" width="0.2" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="1110.35" y="1295.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getParameterMap (11 samples, 0.21%)</title><rect x="238.9" y="629" width="2.5" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="241.88" y="639.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="779.3" y="453" width="0.2" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="782.30" y="463.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="532.3" y="405" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="535.28" y="415.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/controller/AdDataController:::process (138 samples, 2.68%)</title><rect x="49.7" y="613" width="31.7" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="52.72" y="623.5" >co..</text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="101.6" y="1141" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="104.60" y="1151.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (16 samples, 0.31%)</title><rect x="1026.1" y="1109" width="3.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1029.09" y="1119.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/AbstractNamedValueMethodArgumentResolver:::resolveArgument (56 samples, 1.09%)</title><rect x="916.1" y="645" width="12.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="919.12" y="655.5" ></text>
</g>
<g >
<title>itable stub (4 samples, 0.08%)</title><rect x="291.7" y="661" width="0.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="294.68" y="671.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1152.4" y="1173" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1155.35" y="1183.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat:::observe (1 samples, 0.02%)</title><rect x="38.9" y="869" width="0.3" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="41.93" y="879.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="1053.9" y="1237" width="0.2" height="15.0" fill="rgb(224,84,84)" rx="2" ry="2" />
<text x="1056.86" y="1247.5" ></text>
</g>
<g >
<title>updatewindow (18 samples, 0.35%)</title><rect x="775.4" y="517" width="4.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="778.39" y="527.5" ></text>
</g>
<g >
<title>do_softirq (2 samples, 0.04%)</title><rect x="412.2" y="405" width="0.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="415.21" y="415.5" ></text>
</g>
<g >
<title>tcp_transmit_skb (1 samples, 0.02%)</title><rect x="1113.6" y="1045" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1116.55" y="1055.5" ></text>
</g>
<g >
<title>wake_futex (2 samples, 0.04%)</title><rect x="899.6" y="437" width="0.5" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="902.59" y="447.5" ></text>
</g>
<g >
<title>auditsys (1 samples, 0.02%)</title><rect x="1152.8" y="1269" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1155.81" y="1279.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (1 samples, 0.02%)</title><rect x="779.3" y="325" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="782.30" y="335.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (29 samples, 0.56%)</title><rect x="999.9" y="965" width="6.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1002.91" y="975.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer$$Lambda$656/561830191:::test (1 samples, 0.02%)</title><rect x="958.1" y="693" width="0.3" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="961.13" y="703.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="334.4" y="437" width="0.2" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="337.39" y="447.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMapping:::handleMatch (7 samples, 0.14%)</title><rect x="280.0" y="629" width="1.6" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="282.98" y="639.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.02%)</title><rect x="1049.3" y="1221" width="0.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="1052.27" y="1231.5" ></text>
</g>
<g >
<title>Parse::do_all_blocks (1 samples, 0.02%)</title><rect x="33.4" y="1349" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="36.42" y="1359.5" ></text>
</g>
<g >
<title>JavaThread::last_frame (1 samples, 0.02%)</title><rect x="50.4" y="549" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="53.40" y="559.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.02%)</title><rect x="171.6" y="613" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="174.62" y="623.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/clusterbuilder/ClusterBuilderSlot:::entry (10 samples, 0.19%)</title><rect x="189.8" y="629" width="2.3" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text x="192.75" y="639.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="510.2" y="373" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="513.24" y="383.5" ></text>
</g>
<g >
<title>LShiftLNode::Identity (1 samples, 0.02%)</title><rect x="32.0" y="1285" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="35.04" y="1295.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater:::inflateBytes (45 samples, 0.88%)</title><rect x="69.9" y="565" width="10.3" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="72.92" y="575.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="795.6" y="405" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="798.60" y="415.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::add (27 samples, 0.53%)</title><rect x="1024.7" y="1253" width="6.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1027.71" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/HandlerInterceptor:::postHandle (1 samples, 0.02%)</title><rect x="940.2" y="693" width="0.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="943.23" y="703.5" ></text>
</g>
<g >
<title>org/springframework/http/MediaType:::isCompatibleWith (1 samples, 0.02%)</title><rect x="293.1" y="661" width="0.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="296.06" y="671.5" ></text>
</g>
<g >
<title>wake_futex (3 samples, 0.06%)</title><rect x="1059.4" y="1189" width="0.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1062.37" y="1199.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="64.4" y="309" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="67.41" y="319.5" ></text>
</g>
<g >
<title>java/nio/ByteBuffer:::get (1 samples, 0.02%)</title><rect x="1110.1" y="1253" width="0.2" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text x="1113.11" y="1263.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap$LinkedHashIterator:::hasNext (1 samples, 0.02%)</title><rect x="254.5" y="613" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="257.49" y="623.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1022.0" y="997" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1024.95" y="1007.5" ></text>
</g>
<g >
<title>try_fill_recv (1 samples, 0.02%)</title><rect x="962.0" y="565" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="965.04" y="575.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::prepareResponse (1 samples, 0.02%)</title><rect x="1011.4" y="1221" width="0.2" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="1014.39" y="1231.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="859.4" y="389" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="862.42" y="399.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="344.7" y="485" width="0.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="347.72" y="495.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/metrics/web/servlet/WebMvcMetricsFilter:::doFilterInternal (3,748 samples, 72.92%)</title><rect x="124.8" y="1077" width="860.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="127.79" y="1087.5" >org/springframework/boot/actuate/metrics/web/servlet/WebMvcMetricsFilter:::doFilterInternal</text>
</g>
<g >
<title>_new_array_Java (1 samples, 0.02%)</title><rect x="139.2" y="949" width="0.3" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="142.25" y="959.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (2 samples, 0.04%)</title><rect x="158.8" y="693" width="0.4" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="161.76" y="703.5" ></text>
</g>
<g >
<title>G1CollectedHeap::new_mutator_alloc_region (1 samples, 0.02%)</title><rect x="221.2" y="437" width="0.2" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text x="224.21" y="447.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/SynthesizedAnnotationInvocationHandler:::invoke (2 samples, 0.04%)</title><rect x="918.4" y="565" width="0.5" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="921.42" y="575.5" ></text>
</g>
<g >
<title>jni_fast_GetIntField (1 samples, 0.02%)</title><rect x="1023.3" y="1173" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1026.33" y="1183.5" ></text>
</g>
<g >
<title>Type::hashcons (1 samples, 0.02%)</title><rect x="33.0" y="1285" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="35.96" y="1295.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="801.3" y="469" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="804.33" y="479.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="678.1" y="533" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="681.05" y="543.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::iterator (1 samples, 0.02%)</title><rect x="931.3" y="645" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="934.27" y="655.5" ></text>
</g>
<g >
<title>schedule (12 samples, 0.23%)</title><rect x="1185.6" y="1205" width="2.8" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1188.64" y="1215.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::preHandle (9 samples, 0.18%)</title><rect x="40.8" y="677" width="2.0" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="43.76" y="687.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getAttribute (1 samples, 0.02%)</title><rect x="125.5" y="1061" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="128.47" y="1071.5" ></text>
</g>
<g >
<title>java/security/Provider$ServiceKey:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="42.1" y="581" width="0.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="45.14" y="591.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="1020.6" y="773" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1023.58" y="783.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="392.9" y="293" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="395.93" y="303.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,613 samples, 70.29%)</title><rect x="142.0" y="997" width="829.4" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="145.00" y="1007.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/IntegerCodec:::deserialze (1 samples, 0.02%)</title><rect x="349.1" y="533" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="352.08" y="543.5" ></text>
</g>
<g >
<title>java/util/stream/ReferencePipeline:::collect (15 samples, 0.29%)</title><rect x="955.1" y="741" width="3.5" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="958.15" y="751.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="180.6" y="469" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="183.57" y="479.5" ></text>
</g>
<g >
<title>sun/nio/ch/SelectorImpl:::select (31 samples, 0.60%)</title><rect x="1122.0" y="1301" width="7.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="1125.05" y="1311.5" ></text>
</g>
<g >
<title>org/apache/catalina/authenticator/AuthenticatorBase:::invoke (3,778 samples, 73.50%)</title><rect x="120.0" y="1205" width="867.3" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="122.96" y="1215.5" >org/apache/catalina/authenticator/AuthenticatorBase:::invoke</text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClient:::incrBy (1 samples, 0.02%)</title><rect x="649.1" y="437" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="652.13" y="447.5" ></text>
</g>
<g >
<title>__strlen_sse2_pminub (4 samples, 0.08%)</title><rect x="548.8" y="453" width="0.9" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="551.81" y="463.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioBlockingSelector$BlockPoller:::events (1 samples, 0.02%)</title><rect x="1183.1" y="1349" width="0.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="1186.11" y="1359.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1185.4" y="1189" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1188.41" y="1199.5" ></text>
</g>
<g >
<title>wake_futex (15 samples, 0.29%)</title><rect x="389.7" y="405" width="3.5" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="392.71" y="415.5" ></text>
</g>
<g >
<title>Java_sun_nio_ch_EPollArrayWrapper_interrupt (1 samples, 0.02%)</title><rect x="1034.1" y="1253" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1037.12" y="1263.5" ></text>
</g>
<g >
<title>java/util/AbstractList$Itr:::hasNext (1 samples, 0.02%)</title><rect x="256.6" y="597" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="259.56" y="607.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="592.2" y="405" width="0.2" height="15.0" fill="rgb(241,111,111)" rx="2" ry="2" />
<text x="595.19" y="415.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="965.2" y="565" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="968.25" y="575.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="412.7" y="261" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="415.67" y="271.5" ></text>
</g>
<g >
<title>org/springframework/util/StringUtils:::uriDecode (3 samples, 0.06%)</title><rect x="287.3" y="597" width="0.7" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="290.32" y="607.5" ></text>
</g>
<g >
<title>java/io/ObjectOutputStream:::writeArray (1 samples, 0.02%)</title><rect x="895.0" y="405" width="0.2" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text x="898.00" y="415.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/logger/LogSlot:::entry (1 samples, 0.02%)</title><rect x="42.8" y="613" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="45.83" y="623.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="938.2" y="565" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="941.16" y="575.5" ></text>
</g>
<g >
<title>TypeArrayKlass::allocate_common (1 samples, 0.02%)</title><rect x="966.2" y="693" width="0.2" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text x="969.17" y="703.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,448 samples, 67.08%)</title><rect x="156.9" y="789" width="791.6" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="159.93" y="799.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>pthread_getspecific (2 samples, 0.04%)</title><rect x="615.2" y="453" width="0.4" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="618.15" y="463.5" ></text>
</g>
<g >
<title>UTF8::convert_to_unicode (2 samples, 0.04%)</title><rect x="64.6" y="453" width="0.5" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="67.64" y="463.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (1 samples, 0.02%)</title><rect x="920.3" y="533" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="923.25" y="543.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="270.3" y="485" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="273.33" y="495.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1100.2" y="1157" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="1103.24" y="1167.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/impl/Log4jLogEvent:::getTimeMillis (1 samples, 0.02%)</title><rect x="1182.4" y="1333" width="0.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="1185.42" y="1343.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="234.8" y="597" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="237.75" y="607.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (192 samples, 3.74%)</title><rect x="40.1" y="757" width="44.1" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="43.07" y="767.5" >org/..</text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="64.4" y="357" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="67.41" y="367.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (1 samples, 0.02%)</title><rect x="364.2" y="533" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="367.23" y="543.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,605 samples, 70.14%)</title><rect x="143.6" y="949" width="827.6" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="146.61" y="959.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>pthread_getspecific (1 samples, 0.02%)</title><rect x="978.1" y="997" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="981.11" y="1007.5" ></text>
</g>
<g >
<title>deflate (1 samples, 0.02%)</title><rect x="54.8" y="501" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="57.77" y="511.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy0:::annotationType (1 samples, 0.02%)</title><rect x="300.4" y="597" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="303.41" y="607.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::nextToken (1 samples, 0.02%)</title><rect x="343.6" y="485" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="346.57" y="495.5" ></text>
</g>
<g >
<title>java_lang_Thread::park_event (1 samples, 0.02%)</title><rect x="1138.8" y="1253" width="0.2" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text x="1141.81" y="1263.5" ></text>
</g>
<g >
<title>kfree (1 samples, 0.02%)</title><rect x="1115.8" y="1189" width="0.3" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="1118.85" y="1199.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.04%)</title><rect x="967.8" y="773" width="0.4" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="970.77" y="783.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="891.3" y="437" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="894.33" y="447.5" ></text>
</g>
<g >
<title>Interpreter (236 samples, 4.59%)</title><rect x="34.1" y="1317" width="54.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="37.11" y="1327.5" >Inter..</text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="592.2" y="341" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="595.19" y="351.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="381.2" y="485" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="384.22" y="495.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="193.7" y="645" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="196.66" y="655.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="1020.6" y="853" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1023.58" y="863.5" ></text>
</g>
<g >
<title>writeBytes (40 samples, 0.78%)</title><rect x="1170.5" y="1253" width="9.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1173.49" y="1263.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.04%)</title><rect x="80.7" y="469" width="0.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="83.71" y="479.5" ></text>
</g>
<g >
<title>ep_ptable_queue_proc (2 samples, 0.04%)</title><rect x="1151.7" y="1205" width="0.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1154.66" y="1215.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (3 samples, 0.06%)</title><rect x="650.7" y="533" width="0.7" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="653.74" y="543.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="1148.2" y="1205" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1151.22" y="1215.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/AESCrypt:::init (17 samples, 0.33%)</title><rect x="167.3" y="597" width="3.9" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="170.26" y="607.5" ></text>
</g>
<g >
<title>epoll_wait (1 samples, 0.02%)</title><rect x="1158.8" y="1285" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1161.78" y="1295.5" ></text>
</g>
<g >
<title>fsnotify (1 samples, 0.02%)</title><rect x="995.1" y="1077" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="998.09" y="1087.5" ></text>
</g>
<g >
<title>java/lang/String:::charAt (3 samples, 0.06%)</title><rect x="481.3" y="469" width="0.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="484.31" y="479.5" ></text>
</g>
<g >
<title>call_softirq (2 samples, 0.04%)</title><rect x="763.9" y="453" width="0.5" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="766.91" y="463.5" ></text>
</g>
<g >
<title>tcp_transmit_skb (4 samples, 0.08%)</title><rect x="14.8" y="1349" width="0.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="17.82" y="1359.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="412.7" y="453" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="415.67" y="463.5" ></text>
</g>
<g >
<title>vfs_write (24 samples, 0.47%)</title><rect x="1025.4" y="1173" width="5.5" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="1028.40" y="1183.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="911.3" y="469" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="914.30" y="479.5" ></text>
</g>
<g >
<title>checkcast_arraycopy_uninit (1 samples, 0.02%)</title><rect x="197.8" y="661" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="200.79" y="671.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (1 samples, 0.02%)</title><rect x="201.5" y="661" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="204.46" y="671.5" ></text>
</g>
<g >
<title>ThreadInVMfromNative::~ThreadInVMfromNative (1 samples, 0.02%)</title><rect x="1179.4" y="1221" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text x="1182.44" y="1231.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="947.6" y="437" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="950.57" y="447.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (21 samples, 0.41%)</title><rect x="93.6" y="1141" width="4.8" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="96.56" y="1151.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher$Transform:::matches (2 samples, 0.04%)</title><rect x="172.3" y="613" width="0.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="175.31" y="623.5" ></text>
</g>
<g >
<title>Parse::do_one_block (1 samples, 0.02%)</title><rect x="33.4" y="1045" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="36.42" y="1055.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/NumberSerializers$LongSerializer:::serialize (1 samples, 0.02%)</title><rect x="376.9" y="517" width="0.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="379.86" y="527.5" ></text>
</g>
<g >
<title>JavaThread::thread_main_inner (5,080 samples, 98.83%)</title><rect x="22.9" y="1461" width="1166.2" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="25.86" y="1471.5" >JavaThread::thread_main_inner</text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="961.8" y="613" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="964.81" y="623.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (2 samples, 0.04%)</title><rect x="116.8" y="1173" width="0.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="119.75" y="1183.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (4 samples, 0.08%)</title><rect x="1075.7" y="1173" width="0.9" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="1078.67" y="1183.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="514.4" y="325" width="0.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="517.37" y="335.5" ></text>
</g>
<g >
<title>org/springframework/web/method/HandlerMethod:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="307.8" y="645" width="0.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="310.75" y="655.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="651.9" y="325" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="654.88" y="335.5" ></text>
</g>
<g >
<title>resource_allocate_bytes (4 samples, 0.08%)</title><rect x="602.8" y="437" width="0.9" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="605.75" y="447.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="16.2" y="1493" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="19.20" y="1503.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::initialize (15 samples, 0.29%)</title><rect x="232.5" y="629" width="3.4" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="235.46" y="639.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::compile (1 samples, 0.02%)</title><rect x="44.7" y="613" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="47.67" y="623.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.02%)</title><rect x="647.8" y="325" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="650.75" y="335.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::service (3,985 samples, 77.53%)</title><rect x="109.9" y="1253" width="914.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="112.86" y="1263.5" >org/apache/coyote/http11/Http11Processor:::service</text>
</g>
<g >
<title>getnstimeofday64 (1 samples, 0.02%)</title><rect x="623.4" y="293" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="626.42" y="303.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="955.6" y="709" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="958.61" y="719.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="583.9" y="277" width="0.3" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="586.93" y="287.5" ></text>
</g>
<g >
<title>ConstantPool::klass_at_impl (1 samples, 0.02%)</title><rect x="321.8" y="565" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="324.76" y="575.5" ></text>
</g>
<g >
<title>java/util/HashMap:::newNode (4 samples, 0.08%)</title><rect x="642.0" y="565" width="0.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="645.01" y="575.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor75:::invoke (1 samples, 0.02%)</title><rect x="346.6" y="517" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="349.55" y="527.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11InputBuffer:::parseRequestLine (1 samples, 0.02%)</title><rect x="88.1" y="1237" width="0.2" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="91.05" y="1247.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="910.4" y="197" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="913.38" y="207.5" ></text>
</g>
<g >
<title>org/springframework/web/bind/support/WebBindingInitializer:::initBinder (1 samples, 0.02%)</title><rect x="925.8" y="629" width="0.2" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="928.76" y="639.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,548 samples, 69.03%)</title><rect x="153.7" y="837" width="814.5" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="156.71" y="847.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="510.2" y="245" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="513.24" y="255.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="947.6" y="597" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="950.57" y="607.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::validate (1 samples, 0.02%)</title><rect x="1097.3" y="1221" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1100.25" y="1231.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer$$Lambda$699/710427695:::get (1 samples, 0.02%)</title><rect x="949.4" y="773" width="0.2" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="952.41" y="783.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="1061.2" y="1157" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1064.21" y="1167.5" ></text>
</g>
<g >
<title>sysret_audit (1 samples, 0.02%)</title><rect x="903.3" y="485" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="906.26" y="495.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="651.9" y="357" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="654.88" y="367.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (1 samples, 0.02%)</title><rect x="795.6" y="325" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="798.60" y="335.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (2 samples, 0.04%)</title><rect x="16.0" y="1509" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="18.97" y="1519.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1053.2" y="1157" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1056.18" y="1167.5" ></text>
</g>
<g >
<title>java/util/zip/GZIPOutputStream:::finish (9 samples, 0.18%)</title><rect x="55.0" y="549" width="2.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="58.00" y="559.5" ></text>
</g>
<g >
<title>vtable stub (2 samples, 0.04%)</title><rect x="492.6" y="485" width="0.4" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="495.56" y="495.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="698.5" y="549" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="701.49" y="559.5" ></text>
</g>
<g >
<title>G1CollectedHeap::allocate_new_tlab (1 samples, 0.02%)</title><rect x="675.5" y="517" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="678.53" y="527.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::recycle (1 samples, 0.02%)</title><rect x="1012.1" y="1237" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1015.08" y="1247.5" ></text>
</g>
<g >
<title>jbd2_journal_get_write_access (1 samples, 0.02%)</title><rect x="1174.2" y="997" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1177.16" y="1007.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="381.2" y="373" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="384.22" y="383.5" ></text>
</g>
<g >
<title>do_softirq (2 samples, 0.04%)</title><rect x="448.9" y="373" width="0.5" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="451.94" y="383.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (7 samples, 0.14%)</title><rect x="1073.6" y="1237" width="1.6" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="1076.61" y="1247.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="64.4" y="421" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="67.41" y="431.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::doRun (227 samples, 4.42%)</title><rect x="36.2" y="1285" width="52.1" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="39.17" y="1295.5" >org/a..</text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (3 samples, 0.06%)</title><rect x="467.8" y="533" width="0.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="470.77" y="543.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/MessagePatternConverter:::format (3 samples, 0.06%)</title><rect x="1180.6" y="1301" width="0.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="1183.59" y="1311.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (4 samples, 0.08%)</title><rect x="1074.3" y="1221" width="0.9" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1077.30" y="1231.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="332.1" y="469" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="335.09" y="479.5" ></text>
</g>
<g >
<title>oopDesc::obj_field_put (7 samples, 0.14%)</title><rect x="618.8" y="469" width="1.6" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="621.82" y="479.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="1137.9" y="1077" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="1140.89" y="1087.5" ></text>
</g>
<g >
<title>Parker::park (1 samples, 0.02%)</title><rect x="1163.1" y="1301" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="1166.14" y="1311.5" ></text>
</g>
<g >
<title>org/springframework/util/AntPathMatcher:::doMatch (5 samples, 0.10%)</title><rect x="280.4" y="613" width="1.2" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="283.44" y="623.5" ></text>
</g>
<g >
<title>tcp_done (1 samples, 0.02%)</title><rect x="1182.4" y="997" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1185.42" y="1007.5" ></text>
</g>
<g >
<title>CollectedHeap::common_mem_allocate_init (1 samples, 0.02%)</title><rect x="675.5" y="533" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="678.53" y="543.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (106 samples, 2.06%)</title><rect x="471.9" y="533" width="24.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="474.90" y="543.5" >j..</text>
</g>
<g >
<title>org/apache/logging/log4j/core/filter/AbstractFilterable:::isFiltered (1 samples, 0.02%)</title><rect x="1182.2" y="1333" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="1185.19" y="1343.5" ></text>
</g>
<g >
<title>_new_instance_Java (2 samples, 0.04%)</title><rect x="642.5" y="549" width="0.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="645.47" y="559.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$7:::write (1 samples, 0.02%)</title><rect x="1098.4" y="1237" width="0.2" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="1101.40" y="1247.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="117.2" y="1125" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="120.21" y="1135.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (1 samples, 0.02%)</title><rect x="1112.9" y="1125" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1115.86" y="1135.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1013.9" y="1157" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1016.92" y="1167.5" ></text>
</g>
<g >
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="35.9" y="1093" width="0.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="38.94" y="1103.5" ></text>
</g>
<g >
<title>__schedule (1 samples, 0.02%)</title><rect x="17.6" y="1477" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="20.58" y="1487.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="937.9" y="629" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="940.93" y="639.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (4 samples, 0.08%)</title><rect x="58.0" y="501" width="0.9" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="60.98" y="511.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="1048.6" y="1061" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1051.58" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="303.6" y="613" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="306.62" y="623.5" ></text>
</g>
<g >
<title>java/util/Comparator$$Lambda$213/1325144078:::compare (2 samples, 0.04%)</title><rect x="931.7" y="629" width="0.5" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="934.73" y="639.5" ></text>
</g>
<g >
<title>do_futex (1 samples, 0.02%)</title><rect x="645.5" y="421" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="648.46" y="431.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.02%)</title><rect x="386.3" y="517" width="0.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="389.27" y="527.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/DefaultJSONParser:::parse (1 samples, 0.02%)</title><rect x="351.6" y="549" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="354.60" y="559.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (2 samples, 0.04%)</title><rect x="57.3" y="533" width="0.5" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="60.29" y="543.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/message/ParameterizedMessage:::getFormattedMessage (6 samples, 0.12%)</title><rect x="911.5" y="549" width="1.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="914.53" y="559.5" ></text>
</g>
<g >
<title>validate_xmit_skb.part.93 (1 samples, 0.02%)</title><rect x="1006.1" y="821" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1009.11" y="831.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="901.7" y="405" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="904.66" y="415.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="858.7" y="453" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="861.73" y="463.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="560.7" y="245" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="563.74" y="255.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="1146.4" y="1221" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1149.38" y="1231.5" ></text>
</g>
<g >
<title>itable stub (3 samples, 0.06%)</title><rect x="205.4" y="645" width="0.7" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="208.37" y="655.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1061.2" y="1205" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1064.21" y="1215.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="234.8" y="405" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="237.75" y="415.5" ></text>
</g>
<g >
<title>java/util/AbstractList$Itr:::hasNext (1 samples, 0.02%)</title><rect x="263.0" y="581" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="265.99" y="591.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="332.1" y="453" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="335.09" y="463.5" ></text>
</g>
<g >
<title>ext4_mark_inode_dirty (2 samples, 0.04%)</title><rect x="1176.0" y="1029" width="0.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1179.00" y="1039.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::replaceNode (1 samples, 0.02%)</title><rect x="122.7" y="1109" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="125.72" y="1119.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="80.0" y="469" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="83.02" y="479.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="64.4" y="325" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="67.41" y="335.5" ></text>
</g>
<g >
<title>tcp_push (4 samples, 0.08%)</title><rect x="14.8" y="1397" width="0.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="17.82" y="1407.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::getBean (2 samples, 0.04%)</title><rect x="252.2" y="645" width="0.5" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text x="255.20" y="655.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="392.9" y="277" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="395.93" y="287.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="514.6" y="341" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="517.60" y="351.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/HiddenHttpMethodFilter:::doFilterInternal (3,679 samples, 71.58%)</title><rect x="127.5" y="1013" width="844.6" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="130.54" y="1023.5" >org/springframework/web/filter/HiddenHttpMethodFilter:::doFilterInternal</text>
</g>
<g >
<title>JVM_GetStackTraceElement (29 samples, 0.56%)</title><rect x="59.1" y="517" width="6.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="62.13" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (1 samples, 0.02%)</title><rect x="1113.1" y="1061" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1116.09" y="1071.5" ></text>
</g>
<g >
<title>ParseGenerator::generate (1 samples, 0.02%)</title><rect x="33.4" y="1285" width="0.2" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="36.42" y="1295.5" ></text>
</g>
<g >
<title>com/coohua/platform/security/AESCoder:::decrypt (1 samples, 0.02%)</title><rect x="186.8" y="661" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="189.77" y="671.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="279.7" y="549" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="282.75" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="271.7" y="517" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="274.71" y="527.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="372.0" y="453" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="375.04" y="463.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="835.3" y="469" width="0.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="838.31" y="479.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (3 samples, 0.06%)</title><rect x="650.7" y="549" width="0.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="653.74" y="559.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="234.8" y="293" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="237.75" y="303.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="374.8" y="293" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="377.79" y="303.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.02%)</title><rect x="1162.5" y="1317" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="1165.45" y="1327.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="651.4" y="469" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="654.42" y="479.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="392.9" y="357" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="395.93" y="367.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (6 samples, 0.12%)</title><rect x="487.7" y="453" width="1.4" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="490.74" y="463.5" ></text>
</g>
<g >
<title>os::javaTimeNanos (1 samples, 0.02%)</title><rect x="125.0" y="1045" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="128.02" y="1055.5" ></text>
</g>
<g >
<title>netif_skb_features (1 samples, 0.02%)</title><rect x="1002.4" y="821" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1005.44" y="831.5" ></text>
</g>
<g >
<title>JNIHandleBlock::allocate_handle (1 samples, 0.02%)</title><rect x="518.0" y="517" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="521.04" y="527.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (216 samples, 4.20%)</title><rect x="37.1" y="1093" width="49.6" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="40.09" y="1103.5" >org/s..</text>
</g>
<g >
<title>lock_hrtimer_base.isra.20 (1 samples, 0.02%)</title><rect x="1185.2" y="1173" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="1188.18" y="1183.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="155.3" y="741" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="158.32" y="751.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="623.4" y="341" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="626.42" y="351.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="592.4" y="117" width="0.3" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="595.42" y="127.5" ></text>
</g>
<g >
<title>java/util/StringTokenizer:::nextToken (1 samples, 0.02%)</title><rect x="41.7" y="597" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="44.68" y="607.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="795.6" y="389" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="798.60" y="399.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.04%)</title><rect x="1145.7" y="1317" width="0.5" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="1148.69" y="1327.5" ></text>
</g>
<g >
<title>inet_sendmsg (16 samples, 0.31%)</title><rect x="1116.1" y="1125" width="3.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1119.08" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="180.6" y="405" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="183.57" y="415.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="344.7" y="261" width="0.2" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="347.72" y="271.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace (1 samples, 0.02%)</title><rect x="516.2" y="501" width="0.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text x="519.21" y="511.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="271.7" y="501" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="274.71" y="511.5" ></text>
</g>
<g >
<title>org/springframework/web/context/request/AbstractRequestAttributes:::executeRequestDestructionCallbacks (1 samples, 0.02%)</title><rect x="159.2" y="709" width="0.3" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="162.22" y="719.5" ></text>
</g>
<g >
<title>tcp_recvmsg (3 samples, 0.06%)</title><rect x="1113.1" y="1093" width="0.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1116.09" y="1103.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="263.9" y="421" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="266.91" y="431.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/AsyncAppender$AsyncThread:::callAppenders (60 samples, 1.17%)</title><rect x="1168.9" y="1349" width="13.8" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="1171.88" y="1359.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="381.2" y="405" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="384.22" y="415.5" ></text>
</g>
<g >
<title>org/joda/time/tz/CachedDateTimeZone:::getInfo (1 samples, 0.02%)</title><rect x="946.0" y="645" width="0.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="948.96" y="655.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1137.9" y="1013" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="1140.89" y="1023.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="1022.0" y="853" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="1024.95" y="863.5" ></text>
</g>
<g >
<title>org/jboss/netty/channel/SimpleChannelHandler:::writeRequested (2 samples, 0.04%)</title><rect x="895.0" y="437" width="0.5" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="898.00" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (2 samples, 0.04%)</title><rect x="122.0" y="1109" width="0.5" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="125.03" y="1119.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/StatisticSlot:::entry (1 samples, 0.02%)</title><rect x="42.8" y="597" width="0.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="45.83" y="607.5" ></text>
</g>
<g >
<title>G1CollectedHeap::process_discovered_references (3 samples, 0.06%)</title><rect x="1189.1" y="1365" width="0.7" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="1192.08" y="1375.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (1 samples, 0.02%)</title><rect x="1072.5" y="1237" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1075.46" y="1247.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (1 samples, 0.02%)</title><rect x="1175.3" y="1029" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1178.31" y="1039.5" ></text>
</g>
<g >
<title>org/springframework/util/AntPathMatcher:::doMatch (1 samples, 0.02%)</title><rect x="47.9" y="613" width="0.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="50.88" y="623.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Schema:::read (5 samples, 0.10%)</title><rect x="1065.8" y="1301" width="1.1" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="1068.80" y="1311.5" ></text>
</g>
<g >
<title>netif_receive_skb_internal (1 samples, 0.02%)</title><rect x="1152.4" y="1125" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1155.35" y="1135.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator:::hasNext (1 samples, 0.02%)</title><rect x="953.1" y="757" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="956.08" y="767.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="105.5" y="1237" width="0.2" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="108.50" y="1247.5" ></text>
</g>
<g >
<title>tcp_check_req (1 samples, 0.02%)</title><rect x="532.3" y="197" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="535.28" y="207.5" ></text>
</g>
<g >
<title>java_lang_StackTraceElement::create (3 samples, 0.06%)</title><rect x="309.4" y="485" width="0.7" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="312.36" y="495.5" ></text>
</g>
<g >
<title>java/util/concurrent/ArrayBlockingQueue:::offer (3 samples, 0.06%)</title><rect x="80.5" y="549" width="0.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="83.48" y="559.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="270.3" y="533" width="0.3" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text x="273.33" y="543.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/RecordAccumulator:::expiredBatches (2 samples, 0.04%)</title><rect x="1069.0" y="1317" width="0.5" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1072.02" y="1327.5" ></text>
</g>
<g >
<title>__inet_lookup_established (1 samples, 0.02%)</title><rect x="449.2" y="213" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="452.17" y="223.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor51:::invoke (3 samples, 0.06%)</title><rect x="921.4" y="533" width="0.7" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="924.40" y="543.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::postParseRequest (1 samples, 0.02%)</title><rect x="110.3" y="1237" width="0.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="113.32" y="1247.5" ></text>
</g>
<g >
<title>java/nio/charset/Charset:::atBugLevel (1 samples, 0.02%)</title><rect x="381.9" y="533" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="384.91" y="543.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::poll (3 samples, 0.06%)</title><rect x="1121.4" y="1285" width="0.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1124.36" y="1295.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="207.7" y="421" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="210.66" y="431.5" ></text>
</g>
<g >
<title>frame::sender_for_compiled_frame (15 samples, 0.29%)</title><rect x="511.4" y="437" width="3.4" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text x="514.39" y="447.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/web/trace/servlet/TraceableHttpServletRequest:::extractHeaders (29 samples, 0.56%)</title><rect x="958.6" y="741" width="6.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="961.59" y="751.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="92.6" y="1077" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="95.65" y="1087.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="472.8" y="501" width="0.2" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="475.82" y="511.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdLogTrackManager:::logTrack (6 samples, 0.12%)</title><rect x="308.7" y="597" width="1.4" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="311.67" y="607.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs.isra.32 (1 samples, 0.02%)</title><rect x="1118.8" y="885" width="0.3" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1121.83" y="895.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.02%)</title><rect x="185.6" y="629" width="0.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="188.62" y="639.5" ></text>
</g>
<g >
<title>do_sync_read (9 samples, 0.18%)</title><rect x="1020.6" y="1109" width="2.0" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1023.58" y="1119.5" ></text>
</g>
<g >
<title>org/springframework/context/event/SimpleApplicationEventMulticaster:::multicastEvent (3 samples, 0.06%)</title><rect x="83.5" y="677" width="0.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="86.46" y="687.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::parseSessionCookiesId (1 samples, 0.02%)</title><rect x="114.7" y="1205" width="0.2" height="15.0" fill="rgb(51,200,51)" rx="2" ry="2" />
<text x="117.68" y="1215.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="962.0" y="645" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="965.04" y="655.5" ></text>
</g>
<g >
<title>irq_exit (2 samples, 0.04%)</title><rect x="763.9" y="485" width="0.5" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="766.91" y="495.5" ></text>
</g>
<g >
<title>napi_complete_done (1 samples, 0.02%)</title><rect x="117.0" y="1013" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="119.98" y="1023.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="858.7" y="437" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="861.73" y="447.5" ></text>
</g>
<g >
<title>finish_task_switch (12 samples, 0.23%)</title><rect x="1185.6" y="1173" width="2.8" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text x="1188.64" y="1183.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (3 samples, 0.06%)</title><rect x="1040.3" y="1253" width="0.7" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="1043.32" y="1263.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableSet:::hashCode (1 samples, 0.02%)</title><rect x="255.0" y="597" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="257.95" y="607.5" ></text>
</g>
<g >
<title>Parse::do_all_blocks (1 samples, 0.02%)</title><rect x="33.4" y="1061" width="0.2" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text x="36.42" y="1071.5" ></text>
</g>
<g >
<title>run_timer_softirq (1 samples, 0.02%)</title><rect x="1053.2" y="1109" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1056.18" y="1119.5" ></text>
</g>
<g >
<title>futex_wake_op (2 samples, 0.04%)</title><rect x="899.6" y="453" width="0.5" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="902.59" y="463.5" ></text>
</g>
<g >
<title>_new_array_Java (1 samples, 0.02%)</title><rect x="249.7" y="613" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="252.67" y="623.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (1 samples, 0.02%)</title><rect x="449.2" y="229" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="452.17" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor:::runWorker (4,105 samples, 79.86%)</title><rect x="88.7" y="1317" width="942.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="91.74" y="1327.5" >java/util/concurrent/ThreadPoolExecutor:::runWorker</text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="1024.5" y="1237" width="0.2" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text x="1027.48" y="1247.5" ></text>
</g>
<g >
<title>hash_futex (1 samples, 0.02%)</title><rect x="1168.0" y="1221" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1170.96" y="1231.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/impl/PropertySerializerMap$Multi:::serializerFor (1 samples, 0.02%)</title><rect x="370.4" y="469" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="373.43" y="479.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap$LinkedHashIterator:::hasNext (1 samples, 0.02%)</title><rect x="265.7" y="597" width="0.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="268.74" y="607.5" ></text>
</g>
<g >
<title>java/util/HashMap:::putMapEntries (18 samples, 0.35%)</title><rect x="634.0" y="565" width="4.1" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="636.98" y="575.5" ></text>
</g>
<g >
<title>wake_futex (1 samples, 0.02%)</title><rect x="645.5" y="389" width="0.2" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="648.46" y="399.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="234.8" y="453" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="237.75" y="463.5" ></text>
</g>
<g >
<title>G1SATBCardTableLoggingModRefBS::write_ref_array_work (2 samples, 0.04%)</title><rect x="977.9" y="1013" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text x="980.88" y="1023.5" ></text>
</g>
<g >
<title>G1SATBCardTableLoggingModRefBS::invalidate (1 samples, 0.02%)</title><rect x="977.9" y="997" width="0.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="980.88" y="1007.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/AbstractMediaTypeExpression:::compareTo (3 samples, 0.06%)</title><rect x="260.2" y="549" width="0.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="263.23" y="559.5" ></text>
</g>
<g >
<title>checkcast_arraycopy (3 samples, 0.06%)</title><rect x="627.5" y="517" width="0.7" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="630.55" y="527.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal:::set (4 samples, 0.08%)</title><rect x="105.7" y="1253" width="0.9" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="108.73" y="1263.5" ></text>
</g>
<g >
<title>Compile::Code_Gen (30 samples, 0.58%)</title><rect x="22.9" y="1381" width="6.8" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text x="25.86" y="1391.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="832.6" y="501" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="835.56" y="511.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="532.3" y="453" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="535.28" y="463.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="678.1" y="501" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="681.05" y="511.5" ></text>
</g>
<g >
<title>jbd2_journal_dirty_metadata (1 samples, 0.02%)</title><rect x="1173.5" y="997" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1176.47" y="1007.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdDataManager:::incrMiniProgramClickLimit (1 samples, 0.02%)</title><rect x="647.8" y="565" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="650.75" y="575.5" ></text>
</g>
<g >
<title>set_skb_frag (1 samples, 0.02%)</title><rect x="944.4" y="485" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="947.36" y="495.5" ></text>
</g>
<g >
<title>mutex_unlock (1 samples, 0.02%)</title><rect x="1176.9" y="1141" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1179.91" y="1151.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy40:::annotationType (1 samples, 0.02%)</title><rect x="980.4" y="1029" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="983.40" y="1039.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decodeArrayLoop (1 samples, 0.02%)</title><rect x="38.2" y="933" width="0.3" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="41.24" y="943.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1050.2" y="1269" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1053.19" y="1279.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="193.7" y="613" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="196.66" y="623.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_C (1 samples, 0.02%)</title><rect x="139.2" y="933" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="142.25" y="943.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::sizeOf (1 samples, 0.02%)</title><rect x="1093.8" y="1253" width="0.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="1096.81" y="1263.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="23.3" y="1221" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="26.32" y="1231.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor60:::invoke (1 samples, 0.02%)</title><rect x="922.1" y="533" width="0.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="925.09" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="101.4" y="1189" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="104.37" y="1199.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="141.3" y="901" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="144.32" y="911.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="157.2" y="725" width="0.2" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="160.16" y="735.5" ></text>
</g>
<g >
<title>UTF8::unicode_length (19 samples, 0.37%)</title><rect x="598.2" y="437" width="4.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text x="601.16" y="447.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/message/ParameterizedMessage:::getFormattedMessage (1 samples, 0.02%)</title><rect x="900.1" y="565" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="903.05" y="575.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor$BaseKeyUglyUtil:::getBaseKey (97 samples, 1.89%)</title><rect x="164.5" y="661" width="22.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="167.50" y="671.5" >c..</text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/FieldDeserializer:::setValue (1 samples, 0.02%)</title><rect x="308.4" y="533" width="0.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="311.44" y="543.5" ></text>
</g>
<g >
<title>MemNode::Ideal_common (1 samples, 0.02%)</title><rect x="33.2" y="1317" width="0.2" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text x="36.19" y="1327.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (1 samples, 0.02%)</title><rect x="1173.9" y="1013" width="0.3" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text x="1176.93" y="1023.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/JSON:::parseObject (13 samples, 0.25%)</title><rect x="49.7" y="597" width="3.0" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="52.72" y="607.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterSupport:::doConvert (33 samples, 0.64%)</title><rect x="917.0" y="629" width="7.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="920.04" y="639.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="86.7" y="1045" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="89.68" y="1055.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NodeApiVersions:::latestUsableVersion (1 samples, 0.02%)</title><rect x="1091.5" y="1285" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="1094.51" y="1295.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/NumberSerializers$LongSerializer:::serialize (1 samples, 0.02%)</title><rect x="375.2" y="501" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="378.25" y="511.5" ></text>
</g>
<g >
<title>file_update_time (3 samples, 0.06%)</title><rect x="1030.0" y="1125" width="0.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1032.99" y="1135.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="294.4" y="565" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="297.44" y="575.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="835.1" y="485" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="838.08" y="495.5" ></text>
</g>
<g >
<title>sch_direct_xmit (3 samples, 0.06%)</title><rect x="1118.4" y="933" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1121.37" y="943.5" ></text>
</g>
<g >
<title>run_timer_softirq (1 samples, 0.02%)</title><rect x="583.7" y="357" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="586.70" y="367.5" ></text>
</g>
<g >
<title>sys_futex (1 samples, 0.02%)</title><rect x="645.5" y="437" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="648.46" y="447.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$3:::getOpFlags (1 samples, 0.02%)</title><rect x="950.1" y="757" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="953.10" y="767.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1010.5" y="1125" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1013.47" y="1135.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::get (7 samples, 0.14%)</title><rect x="269.9" y="565" width="1.6" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="272.88" y="575.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="1050.2" y="1157" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1053.19" y="1167.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="1075.2" y="1061" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1078.21" y="1071.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::prepareResponse (1 samples, 0.02%)</title><rect x="87.8" y="1205" width="0.3" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="90.82" y="1215.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (5 samples, 0.10%)</title><rect x="1061.7" y="1189" width="1.1" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1064.67" y="1199.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="971.2" y="789" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="974.22" y="799.5" ></text>
</g>
<g >
<title>InstanceKlass::allocate_instance (1 samples, 0.02%)</title><rect x="675.5" y="549" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="678.53" y="559.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="859.4" y="517" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="862.42" y="527.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (192 samples, 3.74%)</title><rect x="40.1" y="789" width="44.1" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="43.07" y="799.5" >org/..</text>
</g>
<g >
<title>java/util/ArrayList:::isEmpty (1 samples, 0.02%)</title><rect x="931.0" y="645" width="0.3" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="934.04" y="655.5" ></text>
</g>
<g >
<title>clock_gettime (1 samples, 0.02%)</title><rect x="210.6" y="645" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="213.65" y="655.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1152.4" y="1205" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="1155.35" y="1215.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::smartMatch (1 samples, 0.02%)</title><rect x="51.1" y="517" width="0.2" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="54.09" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="117.2" y="885" width="0.2" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="120.21" y="895.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.isra.7 (2 samples, 0.04%)</title><rect x="1125.0" y="1189" width="0.5" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="1128.03" y="1199.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1050.2" y="1205" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1053.19" y="1215.5" ></text>
</g>
<g >
<title>JVM_GetStackTraceDepth (1 samples, 0.02%)</title><rect x="516.7" y="533" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="519.67" y="543.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/Clock$1:::monotonicTime (1 samples, 0.02%)</title><rect x="125.0" y="1061" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="128.02" y="1071.5" ></text>
</g>
<g >
<title>do_sync_read (2 samples, 0.04%)</title><rect x="1128.2" y="1205" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1131.25" y="1215.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (1 samples, 0.02%)</title><rect x="795.6" y="309" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="798.60" y="319.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="924.8" y="597" width="0.3" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="927.84" y="607.5" ></text>
</g>
<g >
<title>local_bh_disable (1 samples, 0.02%)</title><rect x="999.0" y="965" width="0.2" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text x="1002.00" y="975.5" ></text>
</g>
<g >
<title>com/coohua/platform/security/AESCoder:::decrypt (7 samples, 0.14%)</title><rect x="40.8" y="645" width="1.6" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="43.76" y="655.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="835.3" y="517" width="0.2" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="838.31" y="527.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/ValuesEnumerator:::findNext (7 samples, 0.14%)</title><rect x="963.6" y="725" width="1.6" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="966.64" y="735.5" ></text>
</g>
<g >
<title>unlock_page (1 samples, 0.02%)</title><rect x="1175.5" y="1077" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1178.54" y="1087.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (7 samples, 0.14%)</title><rect x="173.9" y="613" width="1.6" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text x="176.91" y="623.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::read (5 samples, 0.10%)</title><rect x="1065.8" y="1285" width="1.1" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1068.80" y="1295.5" ></text>
</g>
<g >
<title>CollectedHeap::common_mem_allocate_init (6 samples, 0.12%)</title><rect x="533.7" y="453" width="1.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="536.65" y="463.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="378.2" y="485" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="381.23" y="495.5" ></text>
</g>
<g >
<title>auditsys (1 samples, 0.02%)</title><rect x="388.3" y="469" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="391.33" y="479.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Deflater_deflateBytes (169 samples, 3.29%)</title><rect x="426.0" y="517" width="38.8" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="428.98" y="527.5" >Jav..</text>
</g>
<g >
<title>java/util/regex/Pattern:::matcher (2 samples, 0.04%)</title><rect x="283.9" y="613" width="0.4" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="286.88" y="623.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="1148.0" y="1317" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1150.99" y="1327.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="961.8" y="517" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="964.81" y="527.5" ></text>
</g>
<g >
<title>sk_reset_timer (1 samples, 0.02%)</title><rect x="1000.6" y="901" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1003.60" y="911.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (3 samples, 0.06%)</title><rect x="224.9" y="581" width="0.7" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="227.88" y="591.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (1 samples, 0.02%)</title><rect x="1002.7" y="741" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1005.67" y="751.5" ></text>
</g>
<g >
<title>skb_checksum (1 samples, 0.02%)</title><rect x="795.6" y="293" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="798.60" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="890.6" y="485" width="0.3" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="893.64" y="495.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="560.7" y="357" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="563.74" y="367.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/MimeHeaders:::getUniqueValue (1 samples, 0.02%)</title><rect x="1024.0" y="1221" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="1027.02" y="1231.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (1 samples, 0.02%)</title><rect x="80.0" y="373" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="83.02" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="795.6" y="421" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="798.60" y="431.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="412.7" y="293" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="415.67" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="835.3" y="437" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="838.31" y="447.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="123.2" y="1109" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="126.18" y="1119.5" ></text>
</g>
<g >
<title>jni_SetIntField (5 samples, 0.10%)</title><rect x="78.4" y="533" width="1.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="81.41" y="543.5" ></text>
</g>
<g >
<title>sun/nio/cs/ISO_8859_1$Decoder:::decodeLoop (1 samples, 0.02%)</title><rect x="963.4" y="709" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="966.41" y="719.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="1050.2" y="1141" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1053.19" y="1151.5" ></text>
</g>
<g >
<title>set_skb_frag (1 samples, 0.02%)</title><rect x="514.6" y="277" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="517.60" y="287.5" ></text>
</g>
<g >
<title>JVM_IHashCode (1 samples, 0.02%)</title><rect x="41.5" y="597" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="44.45" y="607.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.04%)</title><rect x="301.1" y="597" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="304.10" y="607.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getPathWithinApplication (1 samples, 0.02%)</title><rect x="251.3" y="629" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="254.28" y="639.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="938.2" y="597" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="941.16" y="607.5" ></text>
</g>
<g >
<title>org/apache/coyote/AbstractProtocol$ConnectionHandler:::process (225 samples, 4.38%)</title><rect x="36.6" y="1269" width="51.7" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="39.63" y="1279.5" >org/a..</text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/nodeselector/NodeSelectorSlot:::entry (2 samples, 0.04%)</title><rect x="42.8" y="645" width="0.5" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="45.83" y="655.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="965.2" y="437" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="968.25" y="447.5" ></text>
</g>
<g >
<title>java/util/zip/InflaterInputStream:::read (48 samples, 0.93%)</title><rect x="69.2" y="581" width="11.0" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="72.23" y="591.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="207.7" y="581" width="0.2" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="210.66" y="591.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="560.7" y="421" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="563.74" y="431.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (11 samples, 0.21%)</title><rect x="1117.0" y="1077" width="2.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1120.00" y="1087.5" ></text>
</g>
<g >
<title>do_futex (31 samples, 0.60%)</title><rect x="903.5" y="453" width="7.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="906.49" y="463.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::getAnnotation (2 samples, 0.04%)</title><rect x="978.8" y="1029" width="0.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="981.79" y="1039.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1137.9" y="1301" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1140.89" y="1311.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/utils/Checksums:::update (8 samples, 0.16%)</title><rect x="1079.8" y="1269" width="1.8" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="1082.81" y="1279.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="23.3" y="1157" width="0.2" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="26.32" y="1167.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/FrameworkServlet:::publishRequestHandledEvent (29 samples, 0.56%)</title><rect x="941.6" y="709" width="6.7" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="944.60" y="719.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1052.7" y="1141" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="1055.72" y="1151.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11InputBuffer:::parseRequestLine (32 samples, 0.62%)</title><rect x="1016.4" y="1237" width="7.4" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1019.44" y="1247.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (12 samples, 0.23%)</title><rect x="1041.0" y="1253" width="2.8" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="1044.01" y="1263.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="1020.6" y="885" width="0.2" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" />
<text x="1023.58" y="895.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="412.7" y="229" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="415.67" y="239.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (1 samples, 0.02%)</title><rect x="161.3" y="693" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="164.29" y="703.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="180.6" y="533" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="183.57" y="543.5" ></text>
</g>
<g >
<title>ConstantPool::klass_at_impl (1 samples, 0.02%)</title><rect x="322.4" y="549" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="325.45" y="559.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/InFlightRequests:::nodesWithTimedOutRequests (3 samples, 0.06%)</title><rect x="1064.2" y="1317" width="0.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="1067.19" y="1327.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/AsyncAppender:::append (47 samples, 0.91%)</title><rect x="902.1" y="565" width="10.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="905.12" y="575.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (6 samples, 0.12%)</title><rect x="1112.6" y="1221" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1115.63" y="1231.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (2 samples, 0.04%)</title><rect x="894.3" y="421" width="0.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="897.31" y="431.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/RecordAccumulator:::append (13 samples, 0.25%)</title><rect x="1037.3" y="1253" width="3.0" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1040.33" y="1263.5" ></text>
</g>
<g >
<title>frame::sender (1 samples, 0.02%)</title><rect x="364.2" y="485" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="367.23" y="495.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="947.6" y="645" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="950.57" y="655.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (2 samples, 0.04%)</title><rect x="54.3" y="533" width="0.5" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="57.31" y="543.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMapping:::handleMatch (1 samples, 0.02%)</title><rect x="48.1" y="645" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="51.11" y="655.5" ></text>
</g>
<g >
<title>os::is_interrupted (1 samples, 0.02%)</title><rect x="92.0" y="1221" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="94.96" y="1231.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="263.9" y="485" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="266.91" y="495.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (1 samples, 0.02%)</title><rect x="86.7" y="1141" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="89.68" y="1151.5" ></text>
</g>
<g >
<title>org/springframework/util/PropertyPlaceholderHelper:::parseStringValue (2 samples, 0.04%)</title><rect x="924.6" y="613" width="0.5" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="927.61" y="623.5" ></text>
</g>
<g >
<title>Klass::external_name (2 samples, 0.04%)</title><rect x="309.4" y="469" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="312.36" y="479.5" ></text>
</g>
<g >
<title>g1_post_barrier_slow Runtime1 stub (1 samples, 0.02%)</title><rect x="353.0" y="549" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="355.98" y="559.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/CtSph:::entryWithPriority (1 samples, 0.02%)</title><rect x="40.5" y="677" width="0.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="43.53" y="687.5" ></text>
</g>
<g >
<title>tcp_transmit_skb (1 samples, 0.02%)</title><rect x="1022.4" y="997" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1025.41" y="1007.5" ></text>
</g>
<g >
<title>G1CollectedHeap::allocate_new_tlab (1 samples, 0.02%)</title><rect x="950.3" y="661" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text x="953.33" y="671.5" ></text>
</g>
<g >
<title>try_to_wake_up (15 samples, 0.29%)</title><rect x="389.7" y="373" width="3.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="392.71" y="383.5" ></text>
</g>
<g >
<title>packet_rcv (3 samples, 0.06%)</title><rect x="1002.9" y="789" width="0.7" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="1005.90" y="799.5" ></text>
</g>
<g >
<title>java/util/stream/ReferencePipeline:::collect (3 samples, 0.06%)</title><rect x="950.3" y="757" width="0.7" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="953.33" y="767.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater:::init (43 samples, 0.84%)</title><rect x="415.4" y="533" width="9.9" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="418.42" y="543.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="914.3" y="453" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="917.28" y="463.5" ></text>
</g>
<g >
<title>try_to_wake_up (5 samples, 0.10%)</title><rect x="99.8" y="1125" width="1.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="102.76" y="1135.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/nodeselector/NodeSelectorSlot:::entry (12 samples, 0.23%)</title><rect x="189.3" y="645" width="2.8" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="192.30" y="655.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/sentinel/SentinelHttpInterceptor:::afterCompletion (18 samples, 0.35%)</title><rect x="243.2" y="661" width="4.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="246.25" y="671.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/web/trace/servlet/TraceableHttpServletRequest:::getUri (10 samples, 0.19%)</title><rect x="965.2" y="757" width="2.3" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="968.25" y="767.5" ></text>
</g>
<g >
<title>sysret_audit (1 samples, 0.02%)</title><rect x="1164.7" y="1285" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1167.75" y="1295.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1020.6" y="981" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1023.58" y="991.5" ></text>
</g>
<g >
<title>ext4_mark_inode_dirty (7 samples, 0.14%)</title><rect x="1173.0" y="1045" width="1.6" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="1176.01" y="1055.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="384.4" y="453" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="387.43" y="463.5" ></text>
</g>
<g >
<title>sysret_audit (1 samples, 0.02%)</title><rect x="1061.4" y="1253" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1064.44" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/FrameworkServlet:::publishRequestHandledEvent (3 samples, 0.06%)</title><rect x="83.5" y="709" width="0.7" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="86.46" y="719.5" ></text>
</g>
<g >
<title>StringTable::intern (242 samples, 4.71%)</title><rect x="561.0" y="469" width="55.5" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="563.97" y="479.5" >Strin..</text>
</g>
<g >
<title>fsnotify (1 samples, 0.02%)</title><rect x="1030.7" y="1157" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1033.68" y="1167.5" ></text>
</g>
<g >
<title>vfs_write (41 samples, 0.80%)</title><rect x="998.3" y="1061" width="9.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1001.31" y="1071.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy109:::annotationType (1 samples, 0.02%)</title><rect x="298.6" y="613" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="301.57" y="623.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/ExtendedThrowablePatternConverter:::format (1 samples, 0.02%)</title><rect x="1181.3" y="1317" width="0.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="1184.28" y="1327.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (2 samples, 0.04%)</title><rect x="1072.7" y="1237" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1075.69" y="1247.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (2 samples, 0.04%)</title><rect x="412.2" y="261" width="0.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="415.21" y="271.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::getFixedDate (1 samples, 0.02%)</title><rect x="235.7" y="597" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="238.67" y="607.5" ></text>
</g>
<g >
<title>inet_recvmsg (3 samples, 0.06%)</title><rect x="1113.1" y="1109" width="0.7" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="1116.09" y="1119.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfo:::getMatchingCondition (1 samples, 0.02%)</title><rect x="264.4" y="629" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="267.37" y="639.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$NioSocketWrapper:::doWrite (5 samples, 0.10%)</title><rect x="86.7" y="1189" width="1.1" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="89.68" y="1199.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy77:::annotationType (2 samples, 0.04%)</title><rect x="304.3" y="613" width="0.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="307.31" y="623.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="344.7" y="245" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="347.72" y="255.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (1 samples, 0.02%)</title><rect x="961.8" y="501" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="964.81" y="511.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="947.6" y="661" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="950.57" y="671.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl:::read (1 samples, 0.02%)</title><rect x="1023.6" y="1221" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="1026.56" y="1231.5" ></text>
</g>
<g >
<title>InstanceKlass::allocate_objArray (1 samples, 0.02%)</title><rect x="653.0" y="453" width="0.3" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text x="656.03" y="463.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.02%)</title><rect x="1092.4" y="1269" width="0.3" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="1095.43" y="1279.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.06%)</title><rect x="629.2" y="405" width="0.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="632.16" y="415.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseAuthority (2 samples, 0.04%)</title><rect x="155.1" y="789" width="0.4" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="158.09" y="799.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::parsePathParameters (1 samples, 0.02%)</title><rect x="112.8" y="1221" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="115.85" y="1231.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor103:::invoke (1 samples, 0.02%)</title><rect x="647.8" y="485" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="650.75" y="495.5" ></text>
</g>
<g >
<title>sys_futex (2 samples, 0.04%)</title><rect x="91.0" y="1189" width="0.5" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="94.04" y="1199.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="583.9" y="229" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="586.93" y="239.5" ></text>
</g>
<g >
<title>tcp_write_xmit (1 samples, 0.02%)</title><rect x="1006.6" y="965" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="1009.57" y="975.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::set (3 samples, 0.06%)</title><rect x="106.0" y="1237" width="0.6" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="108.96" y="1247.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1053.6" y="1189" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1056.63" y="1199.5" ></text>
</g>
<g >
<title>__do_softirq (2 samples, 0.04%)</title><rect x="891.1" y="501" width="0.5" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="894.10" y="511.5" ></text>
</g>
<g >
<title>java_lang_StackTraceElement::set_fileName (1 samples, 0.02%)</title><rect x="618.6" y="469" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="621.60" y="479.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Slice:::match (1 samples, 0.02%)</title><rect x="283.4" y="629" width="0.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="286.42" y="639.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy0:::annotationType (1 samples, 0.02%)</title><rect x="302.7" y="581" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="305.70" y="591.5" ></text>
</g>
<g >
<title>sys_futex (5 samples, 0.10%)</title><rect x="1061.7" y="1237" width="1.1" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="1064.67" y="1247.5" ></text>
</g>
<g >
<title>CodeHeap::find_start (1 samples, 0.02%)</title><rect x="510.5" y="421" width="0.2" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text x="513.47" y="431.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (2 samples, 0.04%)</title><rect x="997.4" y="1077" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1000.39" y="1087.5" ></text>
</g>
<g >
<title>SYSC_recvfrom (1 samples, 0.02%)</title><rect x="14.1" y="1461" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="17.13" y="1471.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::recycle (1 samples, 0.02%)</title><rect x="36.9" y="1221" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="39.86" y="1231.5" ></text>
</g>
<g >
<title>do_futex (19 samples, 0.37%)</title><rect x="1054.3" y="1205" width="4.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1057.32" y="1215.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::matcher (2 samples, 0.04%)</title><rect x="249.4" y="629" width="0.5" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="252.44" y="639.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (12 samples, 0.23%)</title><rect x="138.6" y="965" width="2.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="141.56" y="975.5" ></text>
</g>
<g >
<title>G1SATBCardTableLoggingModRefBS::write_ref_array_work (1 samples, 0.02%)</title><rect x="1047.2" y="1221" width="0.2" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="1050.21" y="1231.5" ></text>
</g>
<g >
<title>objArrayOopDesc::obj_at (1 samples, 0.02%)</title><rect x="517.4" y="485" width="0.2" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text x="520.35" y="495.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (47 samples, 0.91%)</title><rect x="996.9" y="1109" width="10.8" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="999.93" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="384.4" y="517" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="387.43" y="527.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="884.4" y="453" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="887.44" y="463.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (18 samples, 0.35%)</title><rect x="1184.3" y="1301" width="4.1" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1187.26" y="1311.5" ></text>
</g>
<g >
<title>java_lang_StackTraceElement::create (2 samples, 0.04%)</title><rect x="521.3" y="501" width="0.4" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="524.26" y="511.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (12 samples, 0.23%)</title><rect x="1041.0" y="1237" width="2.8" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1044.01" y="1247.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="1020.6" y="933" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1023.58" y="943.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="491.0" y="437" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="493.95" y="447.5" ></text>
</g>
<g >
<title>java/util/Arrays:::sort (1 samples, 0.02%)</title><rect x="81.9" y="645" width="0.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="84.86" y="655.5" ></text>
</g>
<g >
<title>java/text/DecimalFormat:::subparse (2 samples, 0.04%)</title><rect x="654.4" y="533" width="0.5" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="657.41" y="543.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="983.8" y="933" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="986.84" y="943.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1168.4" y="1253" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1171.42" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/http/converter/AbstractHttpMessageConverter:::canWrite (4 samples, 0.08%)</title><rect x="932.9" y="645" width="0.9" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text x="935.88" y="655.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="92.6" y="1173" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="95.65" y="1183.5" ></text>
</g>
<g >
<title>system_call_fastpath (3 samples, 0.06%)</title><rect x="1059.4" y="1253" width="0.7" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1062.37" y="1263.5" ></text>
</g>
<g >
<title>java/util/concurrent/ArrayBlockingQueue:::offer (35 samples, 0.68%)</title><rect x="902.8" y="549" width="8.0" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="905.81" y="559.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::validate (1 samples, 0.02%)</title><rect x="1097.3" y="1205" width="0.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="1100.25" y="1215.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/StringCodec:::deserialze (1 samples, 0.02%)</title><rect x="349.8" y="533" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="352.77" y="543.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (1 samples, 0.02%)</title><rect x="895.2" y="389" width="0.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="898.23" y="399.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="23.3" y="1301" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="26.32" y="1311.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="971.2" y="965" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="974.22" y="975.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/JSON:::parseObject (1 samples, 0.02%)</title><rect x="310.5" y="613" width="0.2" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="313.51" y="623.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="92.6" y="1093" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="95.65" y="1103.5" ></text>
</g>
<g >
<title>irq_exit (2 samples, 0.04%)</title><rect x="412.2" y="421" width="0.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="415.21" y="431.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="914.3" y="357" width="0.2" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="917.28" y="367.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="263.9" y="469" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="266.91" y="479.5" ></text>
</g>
<g >
<title>Parse::do_one_block (1 samples, 0.02%)</title><rect x="33.4" y="1237" width="0.2" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text x="36.42" y="1247.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="775.2" y="469" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="778.16" y="479.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="152.8" y="821" width="0.2" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="155.79" y="831.5" ></text>
</g>
<g >
<title>page_to_skb (1 samples, 0.02%)</title><rect x="514.6" y="293" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="517.60" y="303.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="234.8" y="437" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="237.75" y="447.5" ></text>
</g>
<g >
<title>jni_GetByteArrayRegion (1 samples, 0.02%)</title><rect x="651.0" y="517" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="653.96" y="527.5" ></text>
</g>
<g >
<title>LoadNode::Ideal (1 samples, 0.02%)</title><rect x="33.2" y="1333" width="0.2" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="36.19" y="1343.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::sizeOf (2 samples, 0.04%)</title><rect x="1096.3" y="1221" width="0.5" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1099.33" y="1231.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::replaceNode (1 samples, 0.02%)</title><rect x="154.2" y="789" width="0.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="157.17" y="799.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="234.8" y="421" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="237.75" y="431.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="334.4" y="373" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="337.39" y="383.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/Sensor:::record (6 samples, 0.12%)</title><rect x="1108.0" y="1269" width="1.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1111.04" y="1279.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="294.4" y="629" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="297.44" y="639.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (3 samples, 0.06%)</title><rect x="628.5" y="533" width="0.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="631.47" y="543.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (2 samples, 0.04%)</title><rect x="899.6" y="533" width="0.5" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="902.59" y="543.5" ></text>
</g>
<g >
<title>dev_gro_receive (1 samples, 0.02%)</title><rect x="80.0" y="405" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="83.02" y="415.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="774.7" y="469" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="777.70" y="479.5" ></text>
</g>
<g >
<title>map_id_up (1 samples, 0.02%)</title><rect x="1173.7" y="1013" width="0.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="1176.70" y="1023.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="388.6" y="453" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="391.56" y="463.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy49:::annotationType (1 samples, 0.02%)</title><rect x="302.9" y="581" width="0.3" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="305.93" y="591.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor:::getTask (5 samples, 0.10%)</title><rect x="35.0" y="1301" width="1.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="38.02" y="1311.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::sizeOf (4 samples, 0.08%)</title><rect x="1096.3" y="1237" width="1.0" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="1099.33" y="1247.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="152.8" y="757" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="155.79" y="767.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClient$$FastClassBySpringCGLIB$$1bc9b45c:::invoke (1 samples, 0.02%)</title><rect x="649.6" y="453" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="652.59" y="463.5" ></text>
</g>
<g >
<title>Unsafe_Park (38 samples, 0.74%)</title><rect x="90.4" y="1237" width="8.7" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="93.35" y="1247.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/LiteralPatternConverter:::format (1 samples, 0.02%)</title><rect x="1179.9" y="1301" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1182.90" y="1311.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::copyMembers (2 samples, 0.04%)</title><rect x="652.8" y="501" width="0.5" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text x="655.80" y="511.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (10 samples, 0.19%)</title><rect x="382.4" y="533" width="2.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="385.37" y="543.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (4 samples, 0.08%)</title><rect x="629.2" y="501" width="0.9" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="632.16" y="511.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="378.9" y="533" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="381.92" y="543.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="1168.4" y="1093" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="1171.42" y="1103.5" ></text>
</g>
<g >
<title>tcp_send_ack (1 samples, 0.02%)</title><rect x="1022.4" y="1013" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1025.41" y="1023.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="64.4" y="293" width="0.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="67.41" y="303.5" ></text>
</g>
<g >
<title>sun/nio/cs/ISO_8859_1$Decoder:::decodeLoop (1 samples, 0.02%)</title><rect x="968.9" y="853" width="0.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="971.92" y="863.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="378.2" y="469" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="381.23" y="479.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1010.5" y="1045" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1013.47" y="1055.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="779.3" y="485" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="782.30" y="495.5" ></text>
</g>
<g >
<title>cap_file_permission (1 samples, 0.02%)</title><rect x="1128.7" y="1189" width="0.2" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="1131.70" y="1199.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (1 samples, 0.02%)</title><rect x="1000.6" y="917" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="1003.60" y="927.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONScanner:::scanFieldLong (1 samples, 0.02%)</title><rect x="324.3" y="549" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="327.28" y="559.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="608.5" y="373" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="611.49" y="383.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="858.7" y="501" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="861.73" y="511.5" ></text>
</g>
<g >
<title>java_lang_String::equals (37 samples, 0.72%)</title><rect x="584.2" y="437" width="8.5" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="587.16" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="1156.0" y="1173" width="0.5" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1159.02" y="1183.5" ></text>
</g>
<g >
<title>org/springframework/util/StringUtils:::uriDecode (2 samples, 0.04%)</title><rect x="282.7" y="597" width="0.5" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text x="285.73" y="607.5" ></text>
</g>
<g >
<title>build_tree (3 samples, 0.06%)</title><rect x="55.2" y="453" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="58.23" y="463.5" ></text>
</g>
<g >
<title>ktime_get_real (1 samples, 0.02%)</title><rect x="623.4" y="309" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="626.42" y="319.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.04%)</title><rect x="80.7" y="453" width="0.5" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="83.71" y="463.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="890.6" y="565" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="893.64" y="575.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="204.2" y="629" width="0.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="207.22" y="639.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1:::next (2 samples, 0.04%)</title><rect x="1083.2" y="1285" width="0.5" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="1086.25" y="1295.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (16 samples, 0.31%)</title><rect x="1155.1" y="1221" width="3.7" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1158.11" y="1231.5" ></text>
</g>
<g >
<title>G1CollectedHeap::unsafe_max_tlab_alloc (1 samples, 0.02%)</title><rect x="653.0" y="405" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="656.03" y="415.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClientAspect:::around (4 samples, 0.08%)</title><rect x="648.4" y="485" width="1.0" height="15.0" fill="rgb(75,222,75)" rx="2" ry="2" />
<text x="651.44" y="495.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (2 samples, 0.04%)</title><rect x="999.5" y="981" width="0.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="1002.46" y="991.5" ></text>
</g>
<g >
<title>inet_recvmsg (9 samples, 0.18%)</title><rect x="1020.6" y="1061" width="2.0" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1023.58" y="1071.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (1 samples, 0.02%)</title><rect x="85.3" y="725" width="0.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="88.30" y="735.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/stats/SampledStat:::record (1 samples, 0.02%)</title><rect x="1090.6" y="1285" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="1093.60" y="1295.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="795.6" y="501" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="798.60" y="511.5" ></text>
</g>
<g >
<title>__skb_to_sgvec (2 samples, 0.04%)</title><rect x="1005.0" y="757" width="0.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1007.96" y="767.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/NamesEnumerator:::findNext (1 samples, 0.02%)</title><rect x="186.5" y="645" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="189.54" y="655.5" ></text>
</g>
<g >
<title>org/springframework/util/StringUtils:::tokenizeToStringArray (23 samples, 0.45%)</title><rect x="272.4" y="565" width="5.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="275.40" y="575.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil:::drain (3 samples, 0.06%)</title><rect x="1188.4" y="1333" width="0.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1191.39" y="1343.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.02%)</title><rect x="185.4" y="613" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="188.39" y="623.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.02%)</title><rect x="1075.4" y="1173" width="0.3" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="1078.44" y="1183.5" ></text>
</g>
<g >
<title>vfs_read (5 samples, 0.10%)</title><rect x="1112.9" y="1173" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1115.86" y="1183.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="514.6" y="325" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="517.60" y="335.5" ></text>
</g>
<g >
<title>try_to_wake_up (2 samples, 0.04%)</title><rect x="80.7" y="389" width="0.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="83.71" y="399.5" ></text>
</g>
<g >
<title>org/springframework/util/ConcurrentReferenceHashMap$Segment:::restructureIfNecessary (1 samples, 0.02%)</title><rect x="208.8" y="629" width="0.2" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="211.81" y="639.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::parseParameters (63 samples, 1.23%)</title><rect x="127.5" y="997" width="14.5" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="130.54" y="1007.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::park (33 samples, 0.64%)</title><rect x="1051.8" y="1285" width="7.6" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1054.80" y="1295.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (2 samples, 0.04%)</title><rect x="894.3" y="405" width="0.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="897.31" y="415.5" ></text>
</g>
<g >
<title>java_lang_Throwable::get_stack_trace_element (1 samples, 0.02%)</title><rect x="65.8" y="517" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="68.79" y="527.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="117.2" y="1173" width="0.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="120.21" y="1183.5" ></text>
</g>
<g >
<title>CodeBlob::is_zombie (1 samples, 0.02%)</title><rect x="322.0" y="517" width="0.2" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text x="324.99" y="527.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="592.4" y="245" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="595.42" y="255.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/Sensor:::record (8 samples, 0.16%)</title><rect x="1103.5" y="1301" width="1.8" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="1106.45" y="1311.5" ></text>
</g>
<g >
<title>objArrayOopDesc::obj_at (2 samples, 0.04%)</title><rect x="517.6" y="501" width="0.4" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text x="520.58" y="511.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1137.9" y="1237" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1140.89" y="1247.5" ></text>
</g>
<g >
<title>CodeHeap::find_start (7 samples, 0.14%)</title><rect x="512.8" y="405" width="1.6" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="515.76" y="415.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/requests/ProduceResponse:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="1067.2" y="1285" width="0.2" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="1070.18" y="1295.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::sequence (1 samples, 0.02%)</title><rect x="51.6" y="485" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="54.55" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="389.3" y="421" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="392.25" y="431.5" ></text>
</g>
<g >
<title>java/util/stream/ReferencePipeline$2$1:::accept (7 samples, 0.14%)</title><rect x="956.5" y="693" width="1.6" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="959.53" y="703.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="914.3" y="341" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="917.28" y="351.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="202.6" y="629" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="205.61" y="639.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/InitBinderDataBinderFactory:::initBinder (1 samples, 0.02%)</title><rect x="929.0" y="645" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="931.98" y="655.5" ></text>
</g>
<g >
<title>java/util/HashMap:::newNode (1 samples, 0.02%)</title><rect x="66.0" y="549" width="0.2" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="69.02" y="559.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="381.2" y="453" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="384.22" y="463.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher:::getInstance (5 samples, 0.10%)</title><rect x="41.2" y="629" width="1.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="44.22" y="639.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="987.3" y="1205" width="0.2" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="990.29" y="1215.5" ></text>
</g>
<g >
<title>StringTable::intern (14 samples, 0.27%)</title><rect x="62.1" y="469" width="3.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="65.11" y="479.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="86.7" y="1125" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="89.68" y="1135.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (1 samples, 0.02%)</title><rect x="138.3" y="965" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="141.33" y="975.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/metrics/web/servlet/LongTaskTimingHandlerInterceptor:::afterCompletion (1 samples, 0.02%)</title><rect x="198.5" y="677" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="201.48" y="687.5" ></text>
</g>
<g >
<title>sys_futex (19 samples, 0.37%)</title><rect x="1054.3" y="1221" width="4.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1057.32" y="1231.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1048.6" y="1157" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1051.58" y="1167.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="877.1" y="389" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="880.09" y="399.5" ></text>
</g>
<g >
<title>java/util/Locale:::getLanguage (1 samples, 0.02%)</title><rect x="934.5" y="613" width="0.2" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text x="937.49" y="623.5" ></text>
</g>
<g >
<title>JavaThread::thread_from_jni_environment (22 samples, 0.43%)</title><rect x="719.8" y="533" width="5.1" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="722.84" y="543.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.04%)</title><rect x="101.4" y="1205" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="104.37" y="1215.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.02%)</title><rect x="1060.1" y="1301" width="0.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="1063.06" y="1311.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="234.8" y="517" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="237.75" y="527.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (1 samples, 0.02%)</title><rect x="185.9" y="629" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="188.85" y="639.5" ></text>
</g>
<g >
<title>futex_wake_op (3 samples, 0.06%)</title><rect x="1059.4" y="1205" width="0.7" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1062.37" y="1215.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="645.5" y="341" width="0.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="648.46" y="351.5" ></text>
</g>
<g >
<title>pipe_write (1 samples, 0.02%)</title><rect x="86.7" y="1061" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="89.68" y="1071.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="488.9" y="117" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="491.89" y="127.5" ></text>
</g>
<g >
<title>pthread_self (1 samples, 0.02%)</title><rect x="995.8" y="1141" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="998.78" y="1151.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/NetworkReceive:::readFrom (18 samples, 0.35%)</title><rect x="1110.1" y="1269" width="4.1" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1113.11" y="1279.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="514.4" y="277" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="517.37" y="287.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="300.4" y="581" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="303.41" y="591.5" ></text>
</g>
<g >
<title>__schedule (1 samples, 0.02%)</title><rect x="34.8" y="1093" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="37.79" y="1103.5" ></text>
</g>
<g >
<title>__schedule (1 samples, 0.02%)</title><rect x="35.9" y="1109" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="38.94" y="1119.5" ></text>
</g>
<g >
<title>sys_write (25 samples, 0.49%)</title><rect x="1025.2" y="1189" width="5.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1028.17" y="1199.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/config/AwaitCompletionReliabilityStrategy:::afterLogEvent (1 samples, 0.02%)</title><rect x="901.0" y="581" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="903.97" y="591.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (1 samples, 0.02%)</title><rect x="1173.0" y="1029" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="1176.01" y="1039.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1152.4" y="1269" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1155.35" y="1279.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="884.4" y="501" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="887.44" y="511.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::initializeData (2 samples, 0.04%)</title><rect x="651.7" y="565" width="0.4" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="654.65" y="575.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::clear (1 samples, 0.02%)</title><rect x="109.6" y="1221" width="0.3" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="112.63" y="1231.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (200 samples, 3.89%)</title><rect x="39.6" y="837" width="45.9" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="42.61" y="847.5" >org/..</text>
</g>
<g >
<title>org/apache/tomcat/util/http/MimeHeaders:::getValue (2 samples, 0.04%)</title><rect x="186.1" y="645" width="0.4" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="189.08" y="655.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender$SenderMetrics:::maybeRegisterTopicMetrics (1 samples, 0.02%)</title><rect x="1089.2" y="1285" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="1092.22" y="1295.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="293.5" y="517" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="296.52" y="527.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (29 samples, 0.56%)</title><rect x="92.2" y="1221" width="6.6" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="95.19" y="1231.5" ></text>
</g>
<g >
<title>java/util/Calendar:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="655.3" y="549" width="0.3" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="658.33" y="559.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1148.2" y="1237" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1151.22" y="1247.5" ></text>
</g>
<g >
<title>frame::oops_do_internal (1 samples, 0.02%)</title><rect x="21.2" y="1381" width="0.3" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text x="24.25" y="1391.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor66:::invoke (1 samples, 0.02%)</title><rect x="308.4" y="517" width="0.3" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="311.44" y="527.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="956.8" y="677" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="959.75" y="687.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/support/WebContentGenerator:::prepareResponse (1 samples, 0.02%)</title><rect x="940.0" y="677" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="943.00" y="687.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getLookupPathForRequest (9 samples, 0.18%)</title><rect x="286.2" y="645" width="2.0" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="289.18" y="655.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="143.4" y="949" width="0.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="146.38" y="959.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getStackTraceDepth (4 samples, 0.08%)</title><rect x="517.1" y="533" width="0.9" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="520.12" y="543.5" ></text>
</g>
<g >
<title>do_sync_write (1 samples, 0.02%)</title><rect x="895.2" y="309" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="898.23" y="319.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor$BaseKeyUglyUtil:::getBaseKey (9 samples, 0.18%)</title><rect x="40.8" y="661" width="2.0" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="43.76" y="671.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/impl/PropertySerializerMap$Double:::serializerFor (1 samples, 0.02%)</title><rect x="365.6" y="517" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="368.61" y="527.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="971.0" y="933" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="973.99" y="943.5" ></text>
</g>
<g >
<title>java/util/Formatter:::format (23 samples, 0.45%)</title><rect x="1071.8" y="1253" width="5.3" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="1074.77" y="1263.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="117.2" y="949" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="120.21" y="959.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="13.9" y="1397" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="16.90" y="1407.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::matchField (3 samples, 0.06%)</title><rect x="323.4" y="565" width="0.7" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="326.37" y="575.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/AESCrypt:::makeSessionKey (1 samples, 0.02%)</title><rect x="171.2" y="597" width="0.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="174.16" y="607.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="1152.4" y="1157" width="0.2" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text x="1155.35" y="1167.5" ></text>
</g>
<g >
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="1128.7" y="1205" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1131.70" y="1215.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="332.1" y="421" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="335.09" y="431.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (1 samples, 0.02%)</title><rect x="1174.4" y="1013" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="1177.39" y="1023.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseHostname (1 samples, 0.02%)</title><rect x="156.0" y="741" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="159.01" y="751.5" ></text>
</g>
<g >
<title>do_sync_write (38 samples, 0.74%)</title><rect x="998.5" y="1045" width="8.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1001.54" y="1055.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="101.6" y="1125" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="104.60" y="1135.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="890.6" y="469" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="893.64" y="479.5" ></text>
</g>
<g >
<title>tcp_data_queue (1 samples, 0.02%)</title><rect x="1182.4" y="1045" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1185.42" y="1055.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (2 samples, 0.04%)</title><rect x="914.1" y="597" width="0.4" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="917.05" y="607.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="488.9" y="341" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="491.89" y="351.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,765 samples, 73.25%)</title><rect x="121.1" y="1157" width="864.4" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="124.11" y="1167.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>ip_local_out_sk (1 samples, 0.02%)</title><rect x="1022.4" y="965" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1025.41" y="975.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="678.1" y="581" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="681.05" y="591.5" ></text>
</g>
<g >
<title>PhaseIdealLoop::split_if_with_blocks_post (1 samples, 0.02%)</title><rect x="31.6" y="1333" width="0.2" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text x="34.58" y="1343.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="801.3" y="437" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="804.33" y="447.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="263.9" y="533" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="266.91" y="543.5" ></text>
</g>
<g >
<title>start_thread (5,106 samples, 99.34%)</title><rect x="17.8" y="1509" width="1172.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="20.81" y="1519.5" >start_thread</text>
</g>
<g >
<title>do_futex (1 samples, 0.02%)</title><rect x="388.8" y="453" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="391.79" y="463.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="1168.4" y="1061" width="0.2" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text x="1171.42" y="1071.5" ></text>
</g>
<g >
<title>__libc_send (6 samples, 0.12%)</title><rect x="14.4" y="1509" width="1.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="17.36" y="1519.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/sentinel/SentinelHttpInterceptor:::afterCompletion (1 samples, 0.02%)</title><rect x="188.1" y="677" width="0.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="191.15" y="687.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1 samples, 0.02%)</title><rect x="1139.0" y="1189" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1142.04" y="1199.5" ></text>
</g>
<g >
<title>wake_futex (1 samples, 0.02%)</title><rect x="894.5" y="309" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="897.54" y="319.5" ></text>
</g>
<g >
<title>tcp_poll (4 samples, 0.08%)</title><rect x="1151.2" y="1221" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1154.20" y="1231.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BranchConn:::match (3 samples, 0.06%)</title><rect x="629.2" y="437" width="0.6" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="632.16" y="447.5" ></text>
</g>
<g >
<title>dev_gro_receive (1 samples, 0.02%)</title><rect x="795.6" y="357" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="798.60" y="367.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1075.2" y="1173" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1078.21" y="1183.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer:::getHeadersIfIncluded (4 samples, 0.08%)</title><rect x="950.1" y="773" width="0.9" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="953.10" y="783.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="592.4" y="165" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="595.42" y="175.5" ></text>
</g>
<g >
<title>Interpreter (12 samples, 0.23%)</title><rect x="49.9" y="581" width="2.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="52.95" y="591.5" ></text>
</g>
<g >
<title>futex_wake_op (31 samples, 0.60%)</title><rect x="903.5" y="437" width="7.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="906.49" y="447.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serializeFields (34 samples, 0.66%)</title><rect x="367.2" y="485" width="7.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="370.21" y="495.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="971.2" y="821" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="974.22" y="831.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat:::setMin (1 samples, 0.02%)</title><rect x="648.7" y="453" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="651.67" y="463.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="1050.2" y="1093" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1053.19" y="1103.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (2 samples, 0.04%)</title><rect x="655.6" y="549" width="0.4" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="658.56" y="559.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdLogTrackManager:::logTrack (60 samples, 1.17%)</title><rect x="52.7" y="597" width="13.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="55.70" y="607.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BranchConn:::match (1 samples, 0.02%)</title><rect x="176.7" y="581" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="179.67" y="591.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (1 samples, 0.02%)</title><rect x="152.6" y="837" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="155.56" y="847.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/RollingRandomAccessFileAppender:::append (1 samples, 0.02%)</title><rect x="1182.7" y="1349" width="0.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="1185.65" y="1359.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="514.4" y="309" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="517.37" y="319.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.02%)</title><rect x="677.4" y="517" width="0.2" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text x="680.37" y="527.5" ></text>
</g>
<g >
<title>java/util/HashMap:::newNode (1 samples, 0.02%)</title><rect x="195.7" y="645" width="0.3" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text x="198.72" y="655.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="1119.3" y="981" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1122.29" y="991.5" ></text>
</g>
<g >
<title>page_waitqueue (1 samples, 0.02%)</title><rect x="1175.5" y="1061" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="1178.54" y="1071.5" ></text>
</g>
<g >
<title>file_update_time (1 samples, 0.02%)</title><rect x="994.6" y="1045" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="997.63" y="1055.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.02%)</title><rect x="1048.4" y="1237" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="1051.35" y="1247.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (3 samples, 0.06%)</title><rect x="240.0" y="613" width="0.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="243.03" y="623.5" ></text>
</g>
<g >
<title>com/weibo/api/motan/filter/AccessLogFilter:::logAccess (5 samples, 0.10%)</title><rect x="893.6" y="501" width="1.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="896.62" y="511.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="628.2" y="373" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="631.24" y="383.5" ></text>
</g>
<g >
<title>tcp_send_ack (1 samples, 0.02%)</title><rect x="1113.6" y="1061" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1116.55" y="1071.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="901.0" y="485" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="903.97" y="495.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils$AnnotationCollector:::process (11 samples, 0.21%)</title><rect x="981.8" y="1029" width="2.5" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="984.78" y="1039.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.02%)</title><rect x="415.0" y="469" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="417.96" y="479.5" ></text>
</g>
<g >
<title>sun/security/jca/ProviderList$ServiceList:::tryGet (23 samples, 0.45%)</title><rect x="178.3" y="613" width="5.3" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="181.28" y="623.5" ></text>
</g>
<g >
<title>sys_epoll_ctl (13 samples, 0.25%)</title><rect x="1149.1" y="1253" width="3.0" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1152.14" y="1263.5" ></text>
</g>
<g >
<title>java/lang/ref/Reference:::tryHandlePending (2 samples, 0.04%)</title><rect x="1159.7" y="1349" width="0.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="1162.70" y="1359.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="764.4" y="437" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="767.37" y="447.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="1076.4" y="1125" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1079.36" y="1135.5" ></text>
</g>
<g >
<title>Reflection::array_get (2 samples, 0.04%)</title><rect x="225.8" y="549" width="0.5" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text x="228.80" y="559.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="962.0" y="597" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="965.04" y="607.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1 samples, 0.02%)</title><rect x="1175.3" y="1013" width="0.2" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="1178.31" y="1023.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="910.4" y="149" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="913.38" y="159.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="117.2" y="901" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="120.21" y="911.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="859.4" y="405" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="862.42" y="415.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdDataManager:::incrUserDayClickLimit (1 samples, 0.02%)</title><rect x="310.1" y="565" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="313.05" y="575.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="1011.2" y="1173" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1014.16" y="1183.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (200 samples, 3.89%)</title><rect x="39.6" y="821" width="45.9" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="42.61" y="831.5" >org/..</text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="141.3" y="885" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="144.32" y="895.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/NumberSerializers$IntegerSerializer:::serialize (1 samples, 0.02%)</title><rect x="375.0" y="485" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="378.02" y="495.5" ></text>
</g>
<g >
<title>JNIHandleBlock::allocate_handle (4 samples, 0.08%)</title><rect x="520.1" y="501" width="0.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text x="523.11" y="511.5" ></text>
</g>
<g >
<title>UTF8::unicode_length (1 samples, 0.02%)</title><rect x="65.1" y="453" width="0.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text x="68.10" y="463.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/Tags$ArrayIterator:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="974.0" y="1045" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="976.97" y="1055.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::decodeInternal (3 samples, 0.06%)</title><rect x="287.3" y="613" width="0.7" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="290.32" y="623.5" ></text>
</g>
<g >
<title>WeakPreserveExceptionMark::WeakPreserveExceptionMark (14 samples, 0.27%)</title><rect x="724.9" y="533" width="3.2" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="727.89" y="543.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeTime (1 samples, 0.02%)</title><rect x="67.2" y="565" width="0.2" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="70.16" y="575.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.02%)</title><rect x="651.4" y="501" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="654.42" y="511.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClient$$EnhancerBySpringCGLIB$$b8ee9ffc:::incrBy (1 samples, 0.02%)</title><rect x="647.8" y="549" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="650.75" y="559.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/sentinel/SentinelHttpFilter:::doFilter (200 samples, 3.89%)</title><rect x="39.6" y="853" width="45.9" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="42.61" y="863.5" >com/..</text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="959.1" y="725" width="0.4" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="962.05" y="735.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="1061.9" y="1173" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1064.90" y="1183.5" ></text>
</g>
<g >
<title>JNIHandleBlock::allocate_handle (19 samples, 0.37%)</title><rect x="795.8" y="517" width="4.4" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text x="798.82" y="527.5" ></text>
</g>
<g >
<title>org/springframework/aop/aspectj/AbstractAspectJAdvice:::invokeAdviceMethod (2 samples, 0.04%)</title><rect x="649.4" y="517" width="0.4" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="652.36" y="527.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1146.4" y="1317" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1149.38" y="1327.5" ></text>
</g>
<g >
<title>inet_gro_receive (1 samples, 0.02%)</title><rect x="80.0" y="389" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="83.02" y="399.5" ></text>
</g>
<g >
<title>__ext4_handle_dirty_metadata (1 samples, 0.02%)</title><rect x="1173.5" y="1013" width="0.2" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text x="1176.47" y="1023.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="488.9" y="405" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="491.89" y="415.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (47 samples, 0.91%)</title><rect x="482.2" y="501" width="10.8" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="485.23" y="511.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseHostname (1 samples, 0.02%)</title><rect x="155.8" y="757" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="158.78" y="767.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::canSendRequest (1 samples, 0.02%)</title><rect x="1093.1" y="1269" width="0.3" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="1096.12" y="1279.5" ></text>
</g>
<g >
<title>hrtimer_cancel (2 samples, 0.04%)</title><rect x="98.4" y="1141" width="0.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="101.39" y="1151.5" ></text>
</g>
<g >
<title>WeakPreserveExceptionMark::WeakPreserveExceptionMark (1 samples, 0.02%)</title><rect x="833.2" y="517" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="836.25" y="527.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="901.4" y="501" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="904.43" y="511.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (1 samples, 0.02%)</title><rect x="1071.5" y="1253" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1074.54" y="1263.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::subParse (1 samples, 0.02%)</title><rect x="66.9" y="565" width="0.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="69.93" y="575.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1010.5" y="1141" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1013.47" y="1151.5" ></text>
</g>
<g >
<title>G1ParScanThreadState::trim_queue (3 samples, 0.06%)</title><rect x="1189.1" y="1301" width="0.7" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="1192.08" y="1311.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.02%)</title><rect x="646.6" y="453" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="649.60" y="463.5" ></text>
</g>
<g >
<title>PhaseChaitin::Split (4 samples, 0.08%)</title><rect x="24.9" y="1349" width="0.9" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="27.92" y="1359.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender$SenderMetrics:::updateProduceRequestMetrics (13 samples, 0.25%)</title><rect x="1088.5" y="1301" width="3.0" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="1091.53" y="1311.5" ></text>
</g>
<g >
<title>IndexSetIterator::IndexSetIterator (1 samples, 0.02%)</title><rect x="24.2" y="1333" width="0.3" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text x="27.23" y="1343.5" ></text>
</g>
<g >
<title>InstanceKlass::allocate_instance (2 samples, 0.04%)</title><rect x="642.5" y="517" width="0.4" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text x="645.47" y="527.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1148.2" y="1317" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1151.22" y="1327.5" ></text>
</g>
<g >
<title>pipe_write (11 samples, 0.21%)</title><rect x="1041.2" y="1157" width="2.6" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1044.24" y="1167.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="628.2" y="389" width="0.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="631.24" y="399.5" ></text>
</g>
<g >
<title>ep_send_events_proc (3 samples, 0.06%)</title><rect x="1154.2" y="1205" width="0.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1157.19" y="1215.5" ></text>
</g>
<g >
<title>do_readv_writev (17 samples, 0.33%)</title><rect x="1116.1" y="1173" width="3.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1119.08" y="1183.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotatedElementUtils:::searchWithFindSemantics (4 samples, 0.08%)</title><rect x="305.7" y="613" width="0.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="308.69" y="623.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="914.3" y="517" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="917.28" y="527.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (2 samples, 0.04%)</title><rect x="123.6" y="1077" width="0.5" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="126.64" y="1087.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::afterNodeInsertion (1 samples, 0.02%)</title><rect x="137.9" y="949" width="0.2" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="140.87" y="959.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="64.4" y="405" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="67.41" y="415.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/ValuesEnumerator:::findNext (1 samples, 0.02%)</title><rect x="262.3" y="549" width="0.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="265.30" y="559.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="322.9" y="277" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="325.91" y="287.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.04%)</title><rect x="91.0" y="1173" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="94.04" y="1183.5" ></text>
</g>
<g >
<title>java/util/concurrent/ArrayBlockingQueue:::offer (1 samples, 0.02%)</title><rect x="645.5" y="517" width="0.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="648.46" y="527.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="560.7" y="213" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="563.74" y="223.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy5:::annotationType (2 samples, 0.04%)</title><rect x="303.2" y="565" width="0.4" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="306.16" y="575.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/ProducerInterceptors:::onAcknowledgement (1 samples, 0.02%)</title><rect x="1077.3" y="1269" width="0.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1080.28" y="1279.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="13.9" y="1477" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="16.90" y="1487.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (2 samples, 0.04%)</title><rect x="270.6" y="549" width="0.4" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="273.56" y="559.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="80.0" y="485" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="83.02" y="495.5" ></text>
</g>
<g >
<title>sys_epoll_ctl (2 samples, 0.04%)</title><rect x="1121.4" y="1221" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1124.36" y="1231.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="795.6" y="469" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="798.60" y="479.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$8:::sizeOf (2 samples, 0.04%)</title><rect x="1094.3" y="1253" width="0.4" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="1097.27" y="1263.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$7:::read (2 samples, 0.04%)</title><rect x="1066.5" y="1269" width="0.4" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1069.49" y="1279.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::getProviderInstance (1 samples, 0.02%)</title><rect x="896.8" y="597" width="0.3" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="899.84" y="607.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getStackTraceDepth (1 samples, 0.02%)</title><rect x="58.9" y="533" width="0.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="61.90" y="543.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="201.9" y="645" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="204.92" y="655.5" ></text>
</g>
<g >
<title>system_call_fastpath (5 samples, 0.10%)</title><rect x="1061.7" y="1253" width="1.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="1064.67" y="1263.5" ></text>
</g>
<g >
<title>system_call_fastpath (5 samples, 0.10%)</title><rect x="1112.9" y="1205" width="1.1" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1115.86" y="1215.5" ></text>
</g>
<g >
<title>JavaThread::last_frame (1 samples, 0.02%)</title><rect x="510.5" y="453" width="0.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text x="513.47" y="463.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="835.1" y="437" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="838.08" y="447.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="995.6" y="1141" width="0.2" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="998.55" y="1151.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntrySet:::iterator (1 samples, 0.02%)</title><rect x="952.9" y="757" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="955.85" y="767.5" ></text>
</g>
<g >
<title>lock_timer_base.isra.33 (1 samples, 0.02%)</title><rect x="1000.6" y="885" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1003.60" y="895.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.04%)</title><rect x="101.4" y="1253" width="0.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="104.37" y="1263.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/Parameters:::processParameters (5 samples, 0.10%)</title><rect x="37.3" y="981" width="1.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="40.32" y="991.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1022.0" y="949" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1024.95" y="959.5" ></text>
</g>
<g >
<title>deflate (1 samples, 0.02%)</title><rect x="308.9" y="501" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="311.90" y="511.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="1050.2" y="1061" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="1053.19" y="1071.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1100.2" y="1173" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1103.24" y="1183.5" ></text>
</g>
<g >
<title>Symbol::as_klass_external_name (1 samples, 0.02%)</title><rect x="309.6" y="453" width="0.2" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text x="312.59" y="463.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy47:::annotationType (1 samples, 0.02%)</title><rect x="306.1" y="597" width="0.3" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="309.15" y="607.5" ></text>
</g>
<g >
<title>org/springframework/web/accept/ContentNegotiationManager:::resolveMediaTypes (1 samples, 0.02%)</title><rect x="934.7" y="645" width="0.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="937.72" y="655.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::encode (1 samples, 0.02%)</title><rect x="42.6" y="645" width="0.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="45.60" y="655.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="34.8" y="1125" width="0.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="37.79" y="1135.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::localizedMagnitude (2 samples, 0.04%)</title><rect x="386.7" y="501" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="389.73" y="511.5" ></text>
</g>
<g >
<title>java/util/HashSet:::contains (2 samples, 0.04%)</title><rect x="948.9" y="773" width="0.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="951.95" y="783.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1048.6" y="1205" width="0.2" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="1051.58" y="1215.5" ></text>
</g>
<g >
<title>ObjectMonitor::enter (1 samples, 0.02%)</title><rect x="989.8" y="1141" width="0.2" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text x="992.81" y="1151.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/StatisticSlot:::exit (14 samples, 0.27%)</title><rect x="243.9" y="581" width="3.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="246.93" y="591.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor50:::invoke (1 samples, 0.02%)</title><rect x="921.2" y="533" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="924.17" y="543.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getHeader (1 samples, 0.02%)</title><rect x="247.8" y="661" width="0.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="250.84" y="671.5" ></text>
</g>
<g >
<title>sysret_audit (2 samples, 0.04%)</title><rect x="92.9" y="1205" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="95.88" y="1215.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="983.8" y="885" width="0.3" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text x="986.84" y="895.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="877.3" y="533" width="0.3" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="880.32" y="543.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_post (2 samples, 0.04%)</title><rect x="277.0" y="533" width="0.5" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="279.99" y="543.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (1 samples, 0.02%)</title><rect x="1048.4" y="1253" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="1051.35" y="1263.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="938.2" y="629" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="941.16" y="639.5" ></text>
</g>
<g >
<title>org/springframework/web/method/support/InvocableHandlerMethod:::&lt;init&gt; (5 samples, 0.10%)</title><rect x="306.8" y="661" width="1.2" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="309.84" y="671.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (2 samples, 0.04%)</title><rect x="116.3" y="1157" width="0.5" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="119.29" y="1167.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/ProfilerHttpFilter:::doFilter (203 samples, 3.95%)</title><rect x="38.9" y="885" width="46.6" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="41.93" y="895.5" >com/..</text>
</g>
<g >
<title>arrayof_jint_fill (1 samples, 0.02%)</title><rect x="334.2" y="517" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="337.16" y="527.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$3:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="472.8" y="469" width="0.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="475.82" y="479.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (1 samples, 0.02%)</title><rect x="237.0" y="613" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="240.05" y="623.5" ></text>
</g>
<g >
<title>schedule (1 samples, 0.02%)</title><rect x="651.4" y="373" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="654.42" y="383.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollSelectorImpl:::putEventOps (1 samples, 0.02%)</title><rect x="1093.6" y="1221" width="0.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1096.58" y="1231.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/CtSph:::entryWithPriority (2 samples, 0.04%)</title><rect x="42.8" y="661" width="0.5" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="45.83" y="671.5" ></text>
</g>
<g >
<title>lock_sock_nested (1 samples, 0.02%)</title><rect x="1113.1" y="1077" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1116.09" y="1087.5" ></text>
</g>
<g >
<title>java/lang/Class:::reflectionData (1 samples, 0.02%)</title><rect x="297.2" y="629" width="0.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="300.19" y="639.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1061.2" y="1173" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1064.21" y="1183.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1053.6" y="1221" width="0.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="1056.63" y="1231.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.02%)</title><rect x="1049.5" y="1253" width="0.2" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="1052.50" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/StreamingResponseBodyReturnValueHandler:::supportsReturnType (1 samples, 0.02%)</title><rect x="306.6" y="645" width="0.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="309.61" y="655.5" ></text>
</g>
<g >
<title>finish_task_switch (17 samples, 0.33%)</title><rect x="94.5" y="1093" width="3.9" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="97.48" y="1103.5" ></text>
</g>
<g >
<title>org/springframework/context/event/AbstractApplicationEventMulticaster$ListenerCacheKey:::hashCode (1 samples, 0.02%)</title><rect x="83.9" y="661" width="0.3" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="86.92" y="671.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="261.2" y="549" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="264.15" y="559.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="110.1" y="1237" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="113.09" y="1247.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioBlockingSelector:::write (5 samples, 0.10%)</title><rect x="86.7" y="1173" width="1.1" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="89.68" y="1183.5" ></text>
</g>
<g >
<title>frame::sender (16 samples, 0.31%)</title><rect x="511.2" y="453" width="3.6" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text x="514.16" y="463.5" ></text>
</g>
<g >
<title>inet_sendmsg (2 samples, 0.04%)</title><rect x="87.1" y="1013" width="0.5" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="90.14" y="1023.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::buildLogMessage (1 samples, 0.02%)</title><rect x="243.0" y="661" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="246.02" y="671.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1168.4" y="1301" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1171.42" y="1311.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/Selector$SelectorMetrics:::recordBytesSent (7 samples, 0.14%)</title><rect x="1107.8" y="1285" width="1.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="1110.81" y="1295.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.02%)</title><rect x="651.0" y="501" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="653.96" y="511.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdLogTrackManager:::logTrack (1,261 samples, 24.53%)</title><rect x="354.6" y="597" width="289.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="357.59" y="607.5" >com/coohua/ad/data/manager/AdLogTrackM..</text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="947.6" y="581" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="950.57" y="591.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::assertKey (1 samples, 0.02%)</title><rect x="471.7" y="549" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="474.67" y="559.5" ></text>
</g>
<g >
<title>system_call_fastpath (18 samples, 0.35%)</title><rect x="1116.1" y="1221" width="4.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1119.08" y="1231.5" ></text>
</g>
<g >
<title>kfree (1 samples, 0.02%)</title><rect x="910.4" y="37" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="913.38" y="47.5" ></text>
</g>
<g >
<title>JNIHandleBlock::allocate_handle (1 samples, 0.02%)</title><rect x="309.1" y="501" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="312.13" y="511.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="910.4" y="133" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="913.38" y="143.5" ></text>
</g>
<g >
<title>checkcast_arraycopy_uninit (2 samples, 0.04%)</title><rect x="285.7" y="597" width="0.5" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="288.72" y="607.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.02%)</title><rect x="651.4" y="533" width="0.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="654.42" y="543.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="449.2" y="309" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="452.17" y="319.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/JSON:::parseObject (1 samples, 0.02%)</title><rect x="308.4" y="613" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="311.44" y="623.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="656.0" y="565" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="659.02" y="575.5" ></text>
</g>
<g >
<title>BacktraceBuilder::push (1 samples, 0.02%)</title><rect x="58.4" y="453" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text x="61.44" y="463.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (1 samples, 0.02%)</title><rect x="1061.0" y="1269" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1063.98" y="1279.5" ></text>
</g>
<g >
<title>getnstimeofday64 (1 samples, 0.02%)</title><rect x="332.1" y="357" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="335.09" y="367.5" ></text>
</g>
<g >
<title>ip_finish_output (1 samples, 0.02%)</title><rect x="14.1" y="1301" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="17.13" y="1311.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="13.9" y="1381" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="16.90" y="1391.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="277.5" y="549" width="0.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="280.45" y="559.5" ></text>
</g>
<g >
<title>java/util/Spliterators$IteratorSpliterator:::forEachRemaining (1 samples, 0.02%)</title><rect x="955.4" y="725" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="958.38" y="735.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="43.5" y="661" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="46.52" y="671.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="949.2" y="597" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="952.18" y="607.5" ></text>
</g>
<g >
<title>G1RootProcessor::scan_remembered_sets (5 samples, 0.10%)</title><rect x="21.7" y="1445" width="1.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="24.71" y="1455.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.02%)</title><rect x="194.3" y="645" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="197.35" y="655.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="890.6" y="533" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="893.64" y="543.5" ></text>
</g>
<g >
<title>sk_run_filter (2 samples, 0.04%)</title><rect x="1003.1" y="773" width="0.5" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1006.13" y="783.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="204.9" y="629" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="207.91" y="639.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="628.2" y="421" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="631.24" y="431.5" ></text>
</g>
<g >
<title>checkcast_arraycopy (2 samples, 0.04%)</title><rect x="153.0" y="837" width="0.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="156.02" y="847.5" ></text>
</g>
<g >
<title>deflateEnd (1 samples, 0.02%)</title><rect x="393.4" y="533" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="396.39" y="543.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::handleInitiateApiVersionRequests (2 samples, 0.04%)</title><rect x="1063.5" y="1333" width="0.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1066.51" y="1343.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="1148.2" y="1125" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="1151.22" y="1135.5" ></text>
</g>
<g >
<title>java/lang/String:::indexOf (1 samples, 0.02%)</title><rect x="350.7" y="533" width="0.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="353.68" y="543.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (15 samples, 0.29%)</title><rect x="1002.7" y="805" width="3.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1005.67" y="815.5" ></text>
</g>
<g >
<title>java/util/Calendar:::setTimeInMillis (1 samples, 0.02%)</title><rect x="232.2" y="613" width="0.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="235.23" y="623.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="835.3" y="485" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="838.31" y="495.5" ></text>
</g>
<g >
<title>OptoRuntime::register_finalizer (4 samples, 0.08%)</title><rect x="414.3" y="517" width="0.9" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text x="417.28" y="527.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$3:::getOpFlags (1 samples, 0.02%)</title><rect x="950.6" y="741" width="0.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="953.56" y="751.5" ></text>
</g>
<g >
<title>_complete_monitor_locking_Java (2 samples, 0.04%)</title><rect x="149.8" y="837" width="0.5" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="152.81" y="847.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (2 samples, 0.04%)</title><rect x="125.7" y="1045" width="0.5" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="128.70" y="1055.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/IntegerCodec:::deserialze (2 samples, 0.04%)</title><rect x="51.3" y="517" width="0.5" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="54.32" y="527.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::replaceNode (1 samples, 0.02%)</title><rect x="108.3" y="1253" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="111.26" y="1263.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="1024.5" y="1221" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1027.48" y="1231.5" ></text>
</g>
<g >
<title>sysret_audit (2 samples, 0.04%)</title><rect x="997.4" y="1093" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1000.39" y="1103.5" ></text>
</g>
<g >
<title>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.02%)</title><rect x="966.2" y="677" width="0.2" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text x="969.17" y="687.5" ></text>
</g>
<g >
<title>Compile::get_alias_index (1 samples, 0.02%)</title><rect x="33.2" y="1301" width="0.2" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text x="36.19" y="1311.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (4 samples, 0.08%)</title><rect x="1074.3" y="1189" width="0.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1077.30" y="1199.5" ></text>
</g>
<g >
<title>tcp_current_mss (1 samples, 0.02%)</title><rect x="87.4" y="965" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="90.37" y="975.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::matchField (2 samples, 0.04%)</title><rect x="353.7" y="581" width="0.4" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="356.67" y="591.5" ></text>
</g>
<g >
<title>LatestMethodCache::get_method (1 samples, 0.02%)</title><rect x="677.8" y="549" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text x="680.82" y="559.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (11 samples, 0.21%)</title><rect x="716.9" y="533" width="2.5" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text x="719.85" y="543.5" ></text>
</g>
<g >
<title>java/security/Provider:::getService (22 samples, 0.43%)</title><rect x="178.5" y="597" width="5.1" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="181.51" y="607.5" ></text>
</g>
<g >
<title>PhaseLive::add_liveout (3 samples, 0.06%)</title><rect x="29.1" y="1333" width="0.6" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="32.05" y="1343.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (1 samples, 0.02%)</title><rect x="985.2" y="1109" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="988.22" y="1119.5" ></text>
</g>
<g >
<title>PhaseIterGVN::optimize (3 samples, 0.06%)</title><rect x="32.7" y="1365" width="0.7" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text x="35.73" y="1375.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/StdKeySerializers$StringKeySerializer:::serialize (6 samples, 0.12%)</title><rect x="375.5" y="501" width="1.4" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="378.48" y="511.5" ></text>
</g>
<g >
<title>vtable stub (2 samples, 0.04%)</title><rect x="378.0" y="517" width="0.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="381.00" y="527.5" ></text>
</g>
<g >
<title>run_timer_softirq (1 samples, 0.02%)</title><rect x="911.3" y="437" width="0.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="914.30" y="447.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="890.6" y="501" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="893.64" y="511.5" ></text>
</g>
<g >
<title>G1AllocRegion::retire (1 samples, 0.02%)</title><rect x="950.3" y="629" width="0.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="953.33" y="639.5" ></text>
</g>
<g >
<title>com/coohua/platform/security/AESCoder:::decrypt (83 samples, 1.61%)</title><rect x="164.7" y="645" width="19.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="167.73" y="655.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/RecordAccumulator:::tryAppend (2 samples, 0.04%)</title><rect x="1039.9" y="1237" width="0.4" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1042.86" y="1247.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.04%)</title><rect x="969.2" y="853" width="0.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="972.15" y="863.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="261.2" y="501" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="264.15" y="511.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (4 samples, 0.08%)</title><rect x="14.8" y="1381" width="0.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="17.82" y="1391.5" ></text>
</g>
<g >
<title>RefineRecordRefsIntoCSCardTableEntryClosure::do_card_ptr (3 samples, 0.06%)</title><rect x="22.2" y="1381" width="0.7" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="25.17" y="1391.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="64.4" y="437" width="0.2" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="67.41" y="447.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="1050.2" y="1029" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1053.19" y="1039.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::newNode (1 samples, 0.02%)</title><rect x="257.0" y="581" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="260.02" y="591.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1100.2" y="1141" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1103.24" y="1151.5" ></text>
</g>
<g >
<title>inet_sendmsg (6 samples, 0.12%)</title><rect x="14.4" y="1429" width="1.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="17.36" y="1439.5" ></text>
</g>
<g >
<title>sys_futex (6 samples, 0.12%)</title><rect x="99.5" y="1205" width="1.4" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="102.53" y="1215.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace (67 samples, 1.30%)</title><rect x="499.9" y="469" width="15.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="502.91" y="479.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="1061.2" y="1013" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1064.21" y="1023.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ObjectMapper:::writeValueAsString (1 samples, 0.02%)</title><rect x="631.2" y="565" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="634.22" y="575.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (2 samples, 0.04%)</title><rect x="80.7" y="533" width="0.5" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="83.71" y="543.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="1137.9" y="1173" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1140.89" y="1183.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="203.5" y="629" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="206.53" y="639.5" ></text>
</g>
<g >
<title>run_timer_softirq (1 samples, 0.02%)</title><rect x="378.2" y="405" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="381.23" y="415.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (2 samples, 0.04%)</title><rect x="1163.6" y="1301" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1166.60" y="1311.5" ></text>
</g>
<g >
<title>CollectedHeap::common_mem_allocate_init (1 samples, 0.02%)</title><rect x="936.8" y="565" width="0.2" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="939.78" y="575.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="949.2" y="693" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="952.18" y="703.5" ></text>
</g>
<g >
<title>java/math/BigDecimal:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="343.3" y="469" width="0.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="346.34" y="479.5" ></text>
</g>
<g >
<title>objArrayOopDesc::obj_at (11 samples, 0.21%)</title><rect x="620.7" y="485" width="2.5" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="623.66" y="495.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="901.0" y="549" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text x="903.97" y="559.5" ></text>
</g>
<g >
<title>org/springframework/context/expression/StandardBeanExpressionResolver:::evaluate (2 samples, 0.04%)</title><rect x="925.1" y="629" width="0.4" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="928.07" y="639.5" ></text>
</g>
<g >
<title>org/LatencyUtils/TimeCappedMovingAverageIntervalEstimator:::recordInterval (1 samples, 0.02%)</title><rect x="125.2" y="1061" width="0.3" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="128.25" y="1071.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="1061.2" y="1093" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1064.21" y="1103.5" ></text>
</g>
<g >
<title>Parse::do_one_bytecode (1 samples, 0.02%)</title><rect x="33.4" y="1317" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="36.42" y="1327.5" ></text>
</g>
<g >
<title>skb_to_sgvec (2 samples, 0.04%)</title><rect x="1005.0" y="773" width="0.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1007.96" y="783.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.04%)</title><rect x="116.3" y="1141" width="0.5" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="119.29" y="1151.5" ></text>
</g>
<g >
<title>page_to_skb (1 samples, 0.02%)</title><rect x="608.5" y="309" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="611.49" y="319.5" ></text>
</g>
<g >
<title>sun/nio/ch/SelectionKeyImpl:::nioInterestOps (1 samples, 0.02%)</title><rect x="1145.5" y="1317" width="0.2" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="1148.46" y="1327.5" ></text>
</g>
<g >
<title>PhaseIdealLoop::build_loop_late_post (3 samples, 0.06%)</title><rect x="30.9" y="1333" width="0.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="33.89" y="1343.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="344.7" y="357" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="347.72" y="367.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iovec (1 samples, 0.02%)</title><rect x="1113.3" y="1077" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="1116.32" y="1087.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Single:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="1076.8" y="1237" width="0.3" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1079.82" y="1247.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/Timer$Builder:::register (3 samples, 0.06%)</title><rect x="85.8" y="1045" width="0.6" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="88.76" y="1055.5" ></text>
</g>
<g >
<title>io/micrometer/shaded/org/pcollections/HashPMap:::get (2 samples, 0.04%)</title><rect x="975.4" y="1013" width="0.4" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="978.35" y="1023.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1146.4" y="1333" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1149.38" y="1343.5" ></text>
</g>
<g >
<title>G1CollectorPolicy::predict_region_elapsed_time_ms (1 samples, 0.02%)</title><rect x="18.0" y="1397" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text x="21.04" y="1407.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::remove (1 samples, 0.02%)</title><rect x="197.3" y="677" width="0.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="200.33" y="687.5" ></text>
</g>
<g >
<title>do_sys_poll (1 samples, 0.02%)</title><rect x="647.1" y="309" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="650.06" y="319.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="1061.2" y="1045" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1064.21" y="1055.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1053.2" y="1205" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="1056.18" y="1215.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (1 samples, 0.02%)</title><rect x="1146.4" y="1141" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="1149.38" y="1151.5" ></text>
</g>
<g >
<title>TaskQueueSetSuper::randomParkAndMiller (1 samples, 0.02%)</title><rect x="20.8" y="1413" width="0.2" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text x="23.79" y="1423.5" ></text>
</g>
<g >
<title>Type::hashcons (1 samples, 0.02%)</title><rect x="31.8" y="1301" width="0.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="34.81" y="1311.5" ></text>
</g>
<g >
<title>inet_gro_receive (1 samples, 0.02%)</title><rect x="779.3" y="341" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="782.30" y="351.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="914.3" y="405" width="0.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="917.28" y="415.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl:::read0 (6 samples, 0.12%)</title><rect x="1112.6" y="1237" width="1.4" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1115.63" y="1247.5" ></text>
</g>
<g >
<title>sock_aio_read.part.7 (9 samples, 0.18%)</title><rect x="1020.6" y="1077" width="2.0" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1023.58" y="1087.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="913.8" y="533" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="916.82" y="543.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::getProviderInstance (2 samples, 0.04%)</title><rect x="652.8" y="533" width="0.5" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="655.80" y="543.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="583.9" y="389" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="586.93" y="399.5" ></text>
</g>
<g >
<title>org/apache/catalina/mapper/MappingData:::recycle (1 samples, 0.02%)</title><rect x="119.3" y="1205" width="0.2" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="122.28" y="1215.5" ></text>
</g>
<g >
<title>system_call_fastpath (14 samples, 0.27%)</title><rect x="1165.0" y="1285" width="3.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1167.98" y="1295.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/requests/ProduceRequest:::createPartitionSizes (2 samples, 0.04%)</title><rect x="1101.4" y="1221" width="0.4" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="1104.39" y="1231.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="764.4" y="485" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="767.37" y="495.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$8:::validate (1 samples, 0.02%)</title><rect x="1094.7" y="1253" width="0.3" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="1097.73" y="1263.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="532.3" y="341" width="0.2" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="535.28" y="351.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor:::getTask (55 samples, 1.07%)</title><rect x="89.2" y="1301" width="12.6" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="92.20" y="1311.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="832.6" y="469" width="0.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="835.56" y="479.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (2 samples, 0.04%)</title><rect x="45.1" y="629" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="48.12" y="639.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="1048.6" y="1093" width="0.2" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text x="1051.58" y="1103.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="774.7" y="437" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="777.70" y="447.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.04%)</title><rect x="10.7" y="1493" width="0.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="13.69" y="1503.5" ></text>
</g>
<g >
<title>java/util/Formatter$FixedString:::print (1 samples, 0.02%)</title><rect x="628.2" y="533" width="0.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="631.24" y="543.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="775.2" y="485" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="778.16" y="495.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardHostValve:::invoke (3,781 samples, 73.56%)</title><rect x="119.5" y="1221" width="868.0" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="122.51" y="1231.5" >org/apache/catalina/core/StandardHostValve:::invoke</text>
</g>
<g >
<title>CollectedHeap::post_allocation_setup_array (1 samples, 0.02%)</title><rect x="249.7" y="565" width="0.2" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text x="252.67" y="575.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher:::tokenizeTransformation (3 samples, 0.06%)</title><rect x="177.1" y="613" width="0.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="180.13" y="623.5" ></text>
</g>
<g >
<title>java/text/DecimalFormat:::equals (1 samples, 0.02%)</title><rect x="652.1" y="581" width="0.2" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="655.11" y="591.5" ></text>
</g>
<g >
<title>redis/clients/jedis/Protocol:::process (1 samples, 0.02%)</title><rect x="647.8" y="373" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="650.75" y="383.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="322.9" y="341" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="325.91" y="351.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="910.4" y="213" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="913.38" y="223.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/LongCodec:::deserialze (6 samples, 0.12%)</title><rect x="351.6" y="565" width="1.4" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="354.60" y="575.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (3 samples, 0.06%)</title><rect x="467.8" y="501" width="0.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="470.77" y="511.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="859.4" y="437" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="862.42" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1184.3" y="1237" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1187.26" y="1247.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (2 samples, 0.04%)</title><rect x="548.3" y="325" width="0.5" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="551.35" y="335.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeTime (2 samples, 0.04%)</title><rect x="66.5" y="565" width="0.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="69.47" y="575.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="1022.0" y="869" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1024.95" y="879.5" ></text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="894.5" y="277" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="897.54" y="287.5" ></text>
</g>
<g >
<title>start_this_handle (1 samples, 0.02%)</title><rect x="1172.6" y="1013" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1175.55" y="1023.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="914.3" y="325" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="917.28" y="335.5" ></text>
</g>
<g >
<title>__memset_sse2 (32 samples, 0.62%)</title><rect x="415.7" y="501" width="7.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="418.65" y="511.5" ></text>
</g>
<g >
<title>__libc_calloc (1 samples, 0.02%)</title><rect x="68.8" y="565" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="71.77" y="575.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::scanString (6 samples, 0.12%)</title><rect x="335.8" y="501" width="1.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="338.76" y="511.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1100.2" y="1221" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1103.24" y="1231.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.02%)</title><rect x="387.4" y="517" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="390.42" y="527.5" ></text>
</g>
<g >
<title>sun/nio/ch/SelectorImpl:::select (55 samples, 1.07%)</title><rect x="1146.8" y="1333" width="12.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="1149.84" y="1343.5" ></text>
</g>
<g >
<title>JNIHandleBlock::allocate_block (1 samples, 0.02%)</title><rect x="677.1" y="501" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="680.14" y="511.5" ></text>
</g>
<g >
<title>CodeCache::find_blob (1 samples, 0.02%)</title><rect x="322.7" y="517" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="325.68" y="527.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap$LinkedKeyIterator:::next (1 samples, 0.02%)</title><rect x="257.5" y="597" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="260.48" y="607.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="651.9" y="517" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="654.88" y="527.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="234.8" y="357" width="0.2" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" />
<text x="237.75" y="367.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/MessageBytes:::isNull (1 samples, 0.02%)</title><rect x="1011.9" y="1221" width="0.2" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="1014.85" y="1231.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="894.3" y="373" width="0.5" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="897.31" y="383.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (1 samples, 0.02%)</title><rect x="647.1" y="517" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="650.06" y="527.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="387.2" y="517" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text x="390.19" y="527.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater:::init (2 samples, 0.04%)</title><rect x="679.9" y="581" width="0.5" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="682.89" y="591.5" ></text>
</g>
<g >
<title>java/util/stream/ForEachOps$ForEachOp$OfRef:::evaluateSequential (2 samples, 0.04%)</title><rect x="202.4" y="645" width="0.4" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="205.38" y="655.5" ></text>
</g>
<g >
<title>sock_sendmsg (6 samples, 0.12%)</title><rect x="14.4" y="1445" width="1.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="17.36" y="1455.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="698.5" y="501" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="701.49" y="511.5" ></text>
</g>
<g >
<title>java/lang/Class:::reflectionData (1 samples, 0.02%)</title><rect x="937.7" y="581" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="940.70" y="591.5" ></text>
</g>
<g >
<title>ext4_mark_iloc_dirty (3 samples, 0.06%)</title><rect x="1173.2" y="1029" width="0.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1176.24" y="1039.5" ></text>
</g>
<g >
<title>Parse::do_one_block (1 samples, 0.02%)</title><rect x="33.4" y="1141" width="0.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text x="36.42" y="1151.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (1 samples, 0.02%)</title><rect x="310.1" y="533" width="0.2" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="313.05" y="543.5" ></text>
</g>
<g >
<title>jni_ReleasePrimitiveArrayCritical (105 samples, 2.04%)</title><rect x="835.5" y="533" width="24.1" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="838.54" y="543.5" >j..</text>
</g>
<g >
<title>[libc-2.17.so] (1 samples, 0.02%)</title><rect x="34.8" y="1205" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="37.79" y="1215.5" ></text>
</g>
<g >
<title>OptoRuntime::is_deoptimized_caller_frame (1 samples, 0.02%)</title><rect x="1072.5" y="1205" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="1075.46" y="1215.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="154.6" y="789" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="157.63" y="799.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="983.8" y="965" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="986.84" y="975.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1148.2" y="1301" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1151.22" y="1311.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/impl/Log4jLogEvent:::serialize (3 samples, 0.06%)</title><rect x="910.8" y="549" width="0.7" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="913.84" y="559.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Schema:::read (2 samples, 0.04%)</title><rect x="1066.0" y="1269" width="0.5" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1069.03" y="1279.5" ></text>
</g>
<g >
<title>TypeArrayKlass::allocate_common (1 samples, 0.02%)</title><rect x="497.4" y="501" width="0.2" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text x="500.38" y="511.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="583.9" y="325" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="586.93" y="335.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap$MapEntry:::getValue (1 samples, 0.02%)</title><rect x="639.0" y="565" width="0.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="642.03" y="575.5" ></text>
</g>
<g >
<title>java/util/Calendar:::createCalendar (1 samples, 0.02%)</title><rect x="647.3" y="549" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="650.29" y="559.5" ></text>
</g>
<g >
<title>IndexSetIterator::advance_and_next (1 samples, 0.02%)</title><rect x="29.5" y="1317" width="0.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="32.51" y="1327.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="1182.0" y="1317" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1184.96" y="1327.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="962.0" y="693" width="0.3" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="965.04" y="703.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy0:::annotationType (1 samples, 0.02%)</title><rect x="298.3" y="613" width="0.3" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="301.34" y="623.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::pollDelayMs (1 samples, 0.02%)</title><rect x="1078.9" y="1301" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1081.89" y="1311.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="775.2" y="421" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="778.16" y="431.5" ></text>
</g>
<g >
<title>virtqueue_kick_prepare (2 samples, 0.04%)</title><rect x="1005.4" y="773" width="0.5" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="1008.42" y="783.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="381.2" y="357" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="384.22" y="367.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.02%)</title><rect x="1048.8" y="1125" width="0.2" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="1051.81" y="1135.5" ></text>
</g>
<g >
<title>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.02%)</title><rect x="497.4" y="485" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="500.38" y="495.5" ></text>
</g>
<g >
<title>sun/nio/cs/ThreadLocalCoders$Cache:::forName (2 samples, 0.04%)</title><rect x="1010.7" y="1173" width="0.5" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="1013.70" y="1183.5" ></text>
</g>
<g >
<title>ip_output (6 samples, 0.12%)</title><rect x="1117.9" y="997" width="1.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1120.91" y="1007.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::format (5 samples, 0.10%)</title><rect x="231.3" y="629" width="1.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="234.31" y="639.5" ></text>
</g>
<g >
<title>longest_match (1 samples, 0.02%)</title><rect x="56.8" y="469" width="0.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="59.83" y="479.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="1061.2" y="1109" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="1064.21" y="1119.5" ></text>
</g>
<g >
<title>org/apache/tomcat/websocket/server/WsFilter:::doFilter (192 samples, 3.74%)</title><rect x="40.1" y="773" width="44.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="43.07" y="783.5" >org/..</text>
</g>
<g >
<title>java/io/SequenceInputStream:::read (1 samples, 0.02%)</title><rect x="896.6" y="597" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="899.61" y="607.5" ></text>
</g>
<g >
<title>system_call_fastpath (31 samples, 0.60%)</title><rect x="903.5" y="485" width="7.1" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="906.49" y="495.5" ></text>
</g>
<g >
<title>__mnt_want_write (1 samples, 0.02%)</title><rect x="1030.4" y="1093" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1033.45" y="1103.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::initialize (2 samples, 0.04%)</title><rect x="66.5" y="581" width="0.4" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="69.47" y="591.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getStackTraceElement (466 samples, 9.07%)</title><rect x="518.0" y="533" width="107.0" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="521.04" y="543.5" >java/lang/Thr..</text>
</g>
<g >
<title>fget_light (1 samples, 0.02%)</title><rect x="1025.2" y="1173" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1028.17" y="1183.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (3 samples, 0.06%)</title><rect x="629.2" y="469" width="0.6" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="632.16" y="479.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOVecWrapper:::get (1 samples, 0.02%)</title><rect x="1120.2" y="1269" width="0.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="1123.21" y="1279.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::intValue (1 samples, 0.02%)</title><rect x="323.1" y="565" width="0.3" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="326.14" y="575.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="971.9" y="997" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="974.91" y="1007.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl:::write (54 samples, 1.05%)</title><rect x="995.6" y="1157" width="12.3" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="998.55" y="1167.5" ></text>
</g>
<g >
<title>java/lang/System:::identityHashCode (1 samples, 0.02%)</title><rect x="645.7" y="469" width="0.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="648.68" y="479.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (77 samples, 1.50%)</title><rect x="498.8" y="533" width="17.6" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="501.76" y="543.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1086.5" y="1269" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1089.46" y="1279.5" ></text>
</g>
<g >
<title>InstanceKlass::register_finalizer (4 samples, 0.08%)</title><rect x="414.3" y="501" width="0.9" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text x="417.28" y="511.5" ></text>
</g>
<g >
<title>__pthread_enable_asynccancel (1 samples, 0.02%)</title><rect x="650.7" y="517" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="653.74" y="527.5" ></text>
</g>
<g >
<title>futex_wait (4 samples, 0.08%)</title><rect x="35.3" y="1157" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="38.25" y="1167.5" ></text>
</g>
<g >
<title>checkcast_arraycopy (1 samples, 0.02%)</title><rect x="926.7" y="597" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="929.68" y="607.5" ></text>
</g>
<g >
<title>java/lang/Object:::toString (1 samples, 0.02%)</title><rect x="103.0" y="1269" width="0.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="105.98" y="1279.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.02%)</title><rect x="1086.5" y="1285" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1089.46" y="1295.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::set (3 samples, 0.06%)</title><rect x="970.1" y="869" width="0.7" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="973.07" y="879.5" ></text>
</g>
<g >
<title>do_futex (5 samples, 0.10%)</title><rect x="1061.7" y="1221" width="1.1" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1064.67" y="1231.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (2 samples, 0.04%)</title><rect x="899.6" y="549" width="0.5" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="902.59" y="559.5" ></text>
</g>
<g >
<title>fget_light (3 samples, 0.06%)</title><rect x="1150.5" y="1237" width="0.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="1153.51" y="1247.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="901.7" y="533" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="904.66" y="543.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/CglibAopProxy$DynamicAdvisedInterceptor:::intercept (2 samples, 0.04%)</title><rect x="649.4" y="549" width="0.4" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="652.36" y="559.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="488.9" y="261" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="491.89" y="271.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="651.2" y="517" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="654.19" y="527.5" ></text>
</g>
<g >
<title>java/util/HashMap:::containsKey (1 samples, 0.02%)</title><rect x="1106.9" y="1285" width="0.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="1109.89" y="1295.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="180.6" y="373" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="183.57" y="383.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/config/LoggerConfig:::log (7 samples, 0.14%)</title><rect x="645.5" y="549" width="1.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="648.46" y="559.5" ></text>
</g>
<g >
<title>memcpy_toiovec (1 samples, 0.02%)</title><rect x="1021.7" y="1013" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1024.72" y="1023.5" ></text>
</g>
<g >
<title>JVM_Sleep (11 samples, 0.21%)</title><rect x="1060.3" y="1301" width="2.5" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="1063.29" y="1311.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.02%)</title><rect x="39.2" y="869" width="0.2" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="42.16" y="879.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (2 samples, 0.04%)</title><rect x="628.7" y="517" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="631.70" y="527.5" ></text>
</g>
<g >
<title>ip_output (3 samples, 0.06%)</title><rect x="14.8" y="1301" width="0.7" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="17.82" y="1311.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (2 samples, 0.04%)</title><rect x="412.2" y="325" width="0.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="415.21" y="335.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (3,684 samples, 71.67%)</title><rect x="126.4" y="1029" width="845.7" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text x="129.39" y="1039.5" >org/springframework/web/filter/OncePerRequestFilter:::doFilter</text>
</g>
<g >
<title>JavaThread::handle_special_suspend_equivalent_condition (1 samples, 0.02%)</title><rect x="1052.3" y="1253" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="1055.26" y="1263.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="334.4" y="389" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="337.39" y="399.5" ></text>
</g>
<g >
<title>java/io/ByteArrayInputStream:::read (1 samples, 0.02%)</title><rect x="896.4" y="597" width="0.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="899.38" y="607.5" ></text>
</g>
<g >
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="995.3" y="1077" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="998.32" y="1087.5" ></text>
</g>
<g >
<title>sys_recvfrom (1 samples, 0.02%)</title><rect x="14.1" y="1477" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="17.13" y="1487.5" ></text>
</g>
<g >
<title>__memset (1 samples, 0.02%)</title><rect x="1175.1" y="1077" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1178.08" y="1087.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (2 samples, 0.04%)</title><rect x="649.4" y="533" width="0.4" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="652.36" y="543.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="944.4" y="565" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="947.36" y="575.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="623.4" y="405" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="626.42" y="415.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (6 samples, 0.12%)</title><rect x="1061.4" y="1269" width="1.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1064.44" y="1279.5" ></text>
</g>
<g >
<title>sun/security/provider/SHA:::implCompress (4 samples, 0.08%)</title><rect x="1044.7" y="1237" width="0.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="1047.68" y="1247.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="23.3" y="1317" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="26.32" y="1327.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/AbstractOutputStreamAppender:::directEncodeEvent (52 samples, 1.01%)</title><rect x="1169.3" y="1317" width="12.0" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1172.34" y="1327.5" ></text>
</g>
<g >
<title>inflate (13 samples, 0.25%)</title><rect x="72.4" y="533" width="3.0" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="75.44" y="543.5" ></text>
</g>
<g >
<title>Parker::unpark (1 samples, 0.02%)</title><rect x="903.0" y="501" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text x="906.04" y="511.5" ></text>
</g>
<g >
<title>jni_SetBooleanField (2 samples, 0.04%)</title><rect x="464.8" y="517" width="0.4" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="467.78" y="527.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (74 samples, 1.44%)</title><rect x="499.2" y="501" width="17.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="502.22" y="511.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntrySet:::iterator (2 samples, 0.04%)</title><rect x="635.6" y="549" width="0.4" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="638.58" y="559.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1:::next (1 samples, 0.02%)</title><rect x="1078.0" y="1301" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="1080.97" y="1311.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="1102.5" y="1301" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1105.53" y="1311.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getRemainingPath (1 samples, 0.02%)</title><rect x="251.5" y="629" width="0.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="254.51" y="639.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::get (2 samples, 0.04%)</title><rect x="916.6" y="629" width="0.4" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="919.58" y="639.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1168.4" y="1317" width="0.2" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="1171.42" y="1327.5" ></text>
</g>
<g >
<title>tcp_v4_syn_recv_sock (1 samples, 0.02%)</title><rect x="532.3" y="181" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="535.28" y="191.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="623.4" y="389" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="626.42" y="399.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="795.6" y="453" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="798.60" y="463.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="514.4" y="341" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="517.37" y="351.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/SerializerProvider:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="365.4" y="517" width="0.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="368.38" y="527.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/ValuesEnumerator:::findNext (1 samples, 0.02%)</title><rect x="145.7" y="869" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="148.68" y="879.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="910.4" y="261" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="913.38" y="271.5" ></text>
</g>
<g >
<title>sys_futex (1 samples, 0.02%)</title><rect x="1163.8" y="1269" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="1166.83" y="1279.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1125.5" y="1125" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1128.49" y="1135.5" ></text>
</g>
<g >
<title>system_call_fastpath (15 samples, 0.29%)</title><rect x="1019.7" y="1157" width="3.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1022.66" y="1167.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::handleCompletedReceives (1 samples, 0.02%)</title><rect x="1063.3" y="1333" width="0.2" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text x="1066.28" y="1343.5" ></text>
</g>
<g >
<title>sys_futex (1 samples, 0.02%)</title><rect x="21.9" y="1317" width="0.3" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="24.94" y="1327.5" ></text>
</g>
<g >
<title>PhaseIFG::remove_node (2 samples, 0.04%)</title><rect x="24.5" y="1333" width="0.4" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="27.46" y="1343.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="1121.4" y="1237" width="0.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1124.36" y="1247.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="271.7" y="549" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="274.71" y="559.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="322.9" y="485" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="325.91" y="495.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (206 samples, 4.01%)</title><rect x="38.5" y="981" width="47.3" height="15.0" fill="rgb(60,210,60)" rx="2" ry="2" />
<text x="41.47" y="991.5" >org/..</text>
</g>
<g >
<title>JNIHandles::make_local (1 samples, 0.02%)</title><rect x="518.3" y="517" width="0.2" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="521.27" y="527.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender:::handleProduceResponse (34 samples, 0.66%)</title><rect x="1069.7" y="1317" width="7.8" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1072.70" y="1327.5" ></text>
</g>
<g >
<title>sk_run_filter (1 samples, 0.02%)</title><rect x="1118.4" y="885" width="0.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="1121.37" y="895.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/JSON:::parseObject (185 samples, 3.60%)</title><rect x="312.1" y="597" width="42.5" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="315.12" y="607.5" >com..</text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="944.4" y="581" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="947.36" y="591.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (1 samples, 0.02%)</title><rect x="80.0" y="357" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="83.02" y="367.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor65:::invoke (1 samples, 0.02%)</title><rect x="351.1" y="533" width="0.3" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="354.14" y="543.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11InputBuffer:::doRead (1 samples, 0.02%)</title><rect x="128.0" y="965" width="0.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="131.00" y="975.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="514.4" y="389" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="517.37" y="399.5" ></text>
</g>
<g >
<title>java/util/Arrays:::sort (4 samples, 0.08%)</title><rect x="931.5" y="645" width="0.9" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="934.50" y="655.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="514.6" y="373" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="517.60" y="383.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="180.6" y="341" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="183.57" y="351.5" ></text>
</g>
<g >
<title>__getnstimeofday64 (1 samples, 0.02%)</title><rect x="623.4" y="277" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="626.42" y="287.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1022.0" y="965" width="0.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="1024.95" y="975.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.02%)</title><rect x="393.6" y="501" width="0.2" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text x="396.61" y="511.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (2 samples, 0.04%)</title><rect x="1048.8" y="1221" width="0.5" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1051.81" y="1231.5" ></text>
</g>
<g >
<title>org/joda/time/format/DateTimeFormatter:::printTo (2 samples, 0.04%)</title><rect x="83.5" y="645" width="0.4" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="86.46" y="655.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/rpc/MotanProfilerFilter:::filter (10 samples, 0.19%)</title><rect x="893.6" y="565" width="2.3" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="896.62" y="575.5" ></text>
</g>
<g >
<title>ip_output (23 samples, 0.45%)</title><rect x="1001.3" y="885" width="5.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1004.29" y="895.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="592.4" y="229" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="595.42" y="239.5" ></text>
</g>
<g >
<title>net_rx_action (2 samples, 0.04%)</title><rect x="412.2" y="357" width="0.5" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="415.21" y="367.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/Selector$SelectorMetrics:::maybeRegisterConnectionMetrics (1 samples, 0.02%)</title><rect x="1107.6" y="1285" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="1110.58" y="1295.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher:::getInstance (46 samples, 0.89%)</title><rect x="173.0" y="629" width="10.6" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="176.00" y="639.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::initializeData (2 samples, 0.04%)</title><rect x="652.8" y="517" width="0.5" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="655.80" y="527.5" ></text>
</g>
<g >
<title>skb_clone (1 samples, 0.02%)</title><rect x="1003.8" y="789" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="1006.82" y="799.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy50:::annotationType (1 samples, 0.02%)</title><rect x="304.1" y="613" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="307.08" y="623.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::nextToken (1 samples, 0.02%)</title><rect x="351.6" y="533" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="354.60" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::await (33 samples, 0.64%)</title><rect x="1161.1" y="1349" width="7.5" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1164.07" y="1359.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="270.3" y="501" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="273.33" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor90:::invoke (1 samples, 0.02%)</title><rect x="347.2" y="517" width="0.3" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="350.24" y="527.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1020.6" y="949" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1023.58" y="959.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="651.9" y="373" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="654.88" y="383.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="322.9" y="501" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="325.91" y="511.5" ></text>
</g>
<g >
<title>local_clock (1 samples, 0.02%)</title><rect x="1119.3" y="1029" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1122.29" y="1039.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer$FilteredTraceableResponse:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="949.9" y="773" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="952.87" y="783.5" ></text>
</g>
<g >
<title>org/jboss/netty/channel/socket/nio/NioWorker:::run (2 samples, 0.04%)</title><rect x="34.6" y="1285" width="0.4" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="37.56" y="1295.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="271.7" y="533" width="0.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="274.71" y="543.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe (2 samples, 0.04%)</title><rect x="1000.8" y="933" width="0.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1003.83" y="943.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="1011.2" y="1189" width="0.2" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="1014.16" y="1199.5" ></text>
</g>
<g >
<title>CollectedHeap::common_mem_allocate_init (1 samples, 0.02%)</title><rect x="653.0" y="437" width="0.3" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text x="656.03" y="447.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="155.3" y="757" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="158.32" y="767.5" ></text>
</g>
<g >
<title>tcp_md5_do_lookup (1 samples, 0.02%)</title><rect x="901.7" y="341" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="904.66" y="351.5" ></text>
</g>
<g >
<title>pthread_getspecific (1 samples, 0.02%)</title><rect x="1053.2" y="1221" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1056.18" y="1231.5" ></text>
</g>
<g >
<title>ReferenceProcessor::process_discovered_reflist (3 samples, 0.06%)</title><rect x="1189.1" y="1333" width="0.7" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="1192.08" y="1343.5" ></text>
</g>
<g >
<title>system_call_fastpath (4 samples, 0.08%)</title><rect x="35.3" y="1205" width="0.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="38.25" y="1215.5" ></text>
</g>
<g >
<title>CollectedHeap::new_store_pre_barrier (1 samples, 0.02%)</title><rect x="213.4" y="613" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="216.40" y="623.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy50:::annotationType (1 samples, 0.02%)</title><rect x="298.8" y="613" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="301.80" y="623.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="1020.6" y="805" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="1023.58" y="815.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="392.9" y="325" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="395.93" y="335.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="890.6" y="373" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="893.64" y="383.5" ></text>
</g>
<g >
<title>Parse::do_one_bytecode (1 samples, 0.02%)</title><rect x="33.4" y="1125" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text x="36.42" y="1135.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.04%)</title><rect x="468.0" y="453" width="0.5" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="471.00" y="463.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="910.4" y="229" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="913.38" y="239.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap$BaseIterator:::hasNext (3 samples, 0.06%)</title><rect x="638.1" y="565" width="0.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="641.11" y="575.5" ></text>
</g>
<g >
<title>VM_G1IncCollectionPause::doit (4 samples, 0.08%)</title><rect x="1189.1" y="1413" width="0.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="1192.08" y="1423.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (3 samples, 0.06%)</title><rect x="193.9" y="661" width="0.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="196.89" y="671.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.02%)</title><rect x="1048.8" y="1157" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1051.81" y="1167.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="901.0" y="517" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="903.97" y="527.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="1168.4" y="1189" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1171.42" y="1199.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="263.9" y="501" width="0.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="266.91" y="511.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="910.4" y="293" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="913.38" y="303.5" ></text>
</g>
<g >
<title>org/springframework/context/event/SimpleApplicationEventMulticaster:::multicastEvent (1 samples, 0.02%)</title><rect x="942.5" y="693" width="0.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="945.52" y="703.5" ></text>
</g>
<g >
<title>Compile::fill_buffer (2 samples, 0.04%)</title><rect x="22.9" y="1365" width="0.4" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text x="25.86" y="1375.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotatedElementUtils:::searchWithFindSemantics (9 samples, 0.18%)</title><rect x="301.6" y="597" width="2.0" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="304.56" y="607.5" ></text>
</g>
<g >
<title>java/lang/Long:::getChars (1 samples, 0.02%)</title><rect x="43.3" y="661" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="46.29" y="671.5" ></text>
</g>
<g >
<title>InstanceKlass::register_finalizer (2 samples, 0.04%)</title><rect x="675.8" y="565" width="0.4" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text x="678.76" y="575.5" ></text>
</g>
<g >
<title>updateBytesCRC32 (8 samples, 0.16%)</title><rect x="891.8" y="581" width="1.8" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="894.79" y="591.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/B2CConverter:::convert (1 samples, 0.02%)</title><rect x="1011.6" y="1221" width="0.3" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="1014.62" y="1231.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (4 samples, 0.08%)</title><rect x="490.3" y="453" width="0.9" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="493.26" y="463.5" ></text>
</g>
<g >
<title>net_rx_action (2 samples, 0.04%)</title><rect x="548.3" y="341" width="0.5" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="551.35" y="351.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (23 samples, 0.45%)</title><rect x="1123.0" y="1269" width="5.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1125.96" y="1279.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="117.0" y="1125" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="119.98" y="1135.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Dollar:::match (1 samples, 0.02%)</title><rect x="491.6" y="469" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="494.64" y="479.5" ></text>
</g>
<g >
<title>sun/nio/ch/SelectionKeyImpl:::nioInterestOps (1 samples, 0.02%)</title><rect x="1146.6" y="1333" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="1149.61" y="1343.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="1038.7" y="1237" width="0.5" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1041.71" y="1247.5" ></text>
</g>
<g >
<title>Java_java_io_RandomAccessFile_writeBytes (41 samples, 0.80%)</title><rect x="1170.3" y="1269" width="9.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1173.26" y="1279.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/service/impl/AdDataServiceImpl:::ecpProcess (54 samples, 1.05%)</title><rect x="644.1" y="597" width="12.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="647.08" y="607.5" ></text>
</g>
<g >
<title>get_rps_cpu (1 samples, 0.02%)</title><rect x="293.5" y="485" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="296.52" y="495.5" ></text>
</g>
<g >
<title>java/util/HashMap:::afterNodeInsertion (1 samples, 0.02%)</title><rect x="632.8" y="565" width="0.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="635.83" y="575.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/Selector:::pollSelectionKeys (60 samples, 1.17%)</title><rect x="1106.7" y="1301" width="13.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1109.67" y="1311.5" ></text>
</g>
<g >
<title>java/util/Calendar$Builder:::build (1 samples, 0.02%)</title><rect x="44.9" y="613" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="47.89" y="623.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="1048.6" y="1125" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1051.58" y="1135.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::setAttribute (2 samples, 0.04%)</title><rect x="125.7" y="1061" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="128.70" y="1071.5" ></text>
</g>
<g >
<title>do_sync_read (1 samples, 0.02%)</title><rect x="1188.6" y="1253" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1191.62" y="1263.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="623.4" y="421" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="626.42" y="431.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (1 samples, 0.02%)</title><rect x="141.3" y="789" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="144.32" y="799.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor103:::invoke (4 samples, 0.08%)</title><rect x="648.4" y="501" width="1.0" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="651.44" y="511.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Deflater_deflateBytes (9 samples, 0.18%)</title><rect x="55.0" y="517" width="2.1" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="58.00" y="527.5" ></text>
</g>
<g >
<title>com/google/gson/internal/bind/TypeAdapters$16:::write (22 samples, 0.43%)</title><rect x="218.2" y="581" width="5.1" height="15.0" fill="rgb(75,222,75)" rx="2" ry="2" />
<text x="221.22" y="591.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMethodMapping:::addMatchingMappings (46 samples, 0.89%)</title><rect x="253.6" y="629" width="10.5" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="256.58" y="639.5" ></text>
</g>
<g >
<title>__block_write_begin (1 samples, 0.02%)</title><rect x="1174.6" y="1093" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1177.62" y="1103.5" ></text>
</g>
<g >
<title>tcp_push (30 samples, 0.58%)</title><rect x="999.9" y="981" width="6.9" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1002.91" y="991.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.02%)</title><rect x="165.6" y="629" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="168.65" y="639.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (16 samples, 0.31%)</title><rect x="1019.4" y="1173" width="3.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1022.43" y="1183.5" ></text>
</g>
<g >
<title>checkcast_arraycopy (1 samples, 0.02%)</title><rect x="239.8" y="597" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="242.80" y="607.5" ></text>
</g>
<g >
<title>PhaseIFG::SquareUp (1 samples, 0.02%)</title><rect x="28.4" y="1349" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="31.37" y="1359.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.02%)</title><rect x="387.4" y="501" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="390.42" y="511.5" ></text>
</g>
<g >
<title>do_sync_readv_writev (1 samples, 0.02%)</title><rect x="1120.0" y="1173" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1122.98" y="1183.5" ></text>
</g>
<g >
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="1113.8" y="1157" width="0.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="1116.78" y="1167.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="412.7" y="469" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="415.67" y="479.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="322.9" y="405" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="325.91" y="415.5" ></text>
</g>
<g >
<title>org/apache/coyote/Request:::recycle (3 samples, 0.06%)</title><rect x="109.2" y="1237" width="0.7" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="112.18" y="1247.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="193.7" y="629" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="196.66" y="639.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (3,765 samples, 73.25%)</title><rect x="121.1" y="1141" width="864.4" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="124.11" y="1151.5" >org/springframework/web/filter/OncePerRequestFilter:::doFilter</text>
</g>
<g >
<title>futex_wake (1 samples, 0.02%)</title><rect x="1053.9" y="1189" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1056.86" y="1199.5" ></text>
</g>
<g >
<title>java/util/zip/InflaterInputStream:::read (917 samples, 17.84%)</title><rect x="680.4" y="581" width="210.5" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="683.35" y="591.5" >java/util/zip/InflaterInput..</text>
</g>
<g >
<title>java/security/Provider$ServiceKey:::equals (1 samples, 0.02%)</title><rect x="180.8" y="581" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="183.80" y="591.5" ></text>
</g>
<g >
<title>compress_block (30 samples, 0.58%)</title><rect x="449.4" y="453" width="6.9" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="452.40" y="463.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="835.1" y="453" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="838.08" y="463.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Node:::match (2 samples, 0.04%)</title><rect x="493.2" y="501" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="496.25" y="511.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.02%)</title><rect x="1049.3" y="1237" width="0.2" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text x="1052.27" y="1247.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="944.4" y="517" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="947.36" y="527.5" ></text>
</g>
<g >
<title>tcp_write_xmit (11 samples, 0.21%)</title><rect x="1117.0" y="1061" width="2.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1120.00" y="1071.5" ></text>
</g>
<g >
<title>HeapRegion::oops_on_card_seq_iterate_careful (3 samples, 0.06%)</title><rect x="22.2" y="1349" width="0.7" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text x="25.17" y="1359.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/CglibAopProxy$DynamicAdvisedInterceptor:::intercept (1 samples, 0.02%)</title><rect x="647.8" y="533" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="650.75" y="543.5" ></text>
</g>
<g >
<title>VMThread::loop (4 samples, 0.08%)</title><rect x="1189.1" y="1461" width="0.9" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="1192.08" y="1471.5" ></text>
</g>
<g >
<title>PhaseChaitin::gather_lrg_masks (3 samples, 0.06%)</title><rect x="27.4" y="1349" width="0.7" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="30.45" y="1359.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="901.7" y="549" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="904.66" y="559.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="962.0" y="613" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="965.04" y="623.5" ></text>
</g>
<g >
<title>com/coohua/platform/security/Base64$Decoder:::process (3 samples, 0.06%)</title><rect x="183.8" y="629" width="0.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="186.79" y="639.5" ></text>
</g>
<g >
<title>redis/clients/jedis/Pipeline:::sync (4 samples, 0.08%)</title><rect x="650.7" y="565" width="1.0" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text x="653.74" y="575.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::compile (1 samples, 0.02%)</title><rect x="648.0" y="533" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="650.98" y="543.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/utils/GzipUtil:::deCompress (56 samples, 1.09%)</title><rect x="67.4" y="597" width="12.8" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="70.39" y="607.5" ></text>
</g>
<g >
<title>java_lang_Throwable::get_stack_trace_element (3 samples, 0.06%)</title><rect x="309.4" y="501" width="0.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text x="312.36" y="511.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="488.9" y="309" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="491.89" y="319.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="592.2" y="421" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="595.19" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="80.7" y="373" width="0.5" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="83.71" y="383.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (5 samples, 0.10%)</title><rect x="1075.4" y="1189" width="1.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="1078.44" y="1199.5" ></text>
</g>
<g >
<title>ext4_da_write_begin (4 samples, 0.08%)</title><rect x="1174.8" y="1093" width="1.0" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="1177.85" y="1103.5" ></text>
</g>
<g >
<title>org/springframework/http/converter/xml/SourceHttpMessageConverter:::supports (1 samples, 0.02%)</title><rect x="82.8" y="629" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="85.77" y="639.5" ></text>
</g>
<g >
<title>futex_wait (23 samples, 0.45%)</title><rect x="93.6" y="1157" width="5.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="96.56" y="1167.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (211 samples, 4.11%)</title><rect x="37.3" y="1045" width="48.5" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="40.32" y="1055.5" >org/..</text>
</g>
<g >
<title>PhaseIterGVN::add_users_to_worklist (1 samples, 0.02%)</title><rect x="32.3" y="1317" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="35.27" y="1327.5" ></text>
</g>
<g >
<title>JfrBackend::is_event_enabled (1 samples, 0.02%)</title><rect x="107.6" y="1157" width="0.2" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="110.57" y="1167.5" ></text>
</g>
<g >
<title>org/springframework/core/ResolvableType:::forMethodParameter (5 samples, 0.10%)</title><rect x="923.5" y="613" width="1.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="926.47" y="623.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::hashCode (1 samples, 0.02%)</title><rect x="153.5" y="869" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="156.48" y="879.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="466.4" y="549" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="469.39" y="559.5" ></text>
</g>
<g >
<title>local_bh_enable_ip (1 samples, 0.02%)</title><rect x="1116.5" y="1077" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1119.54" y="1087.5" ></text>
</g>
<g >
<title>java_lang_StackTraceElement::create (26 samples, 0.51%)</title><rect x="59.4" y="485" width="5.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text x="62.36" y="495.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="983.8" y="901" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="986.84" y="911.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::hashCode (3 samples, 0.06%)</title><rect x="147.5" y="837" width="0.7" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="150.51" y="847.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="1048.6" y="1077" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1051.58" y="1087.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="488.9" y="213" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="491.89" y="223.5" ></text>
</g>
<g >
<title>ipv4_mtu (1 samples, 0.02%)</title><rect x="1006.3" y="869" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1009.34" y="879.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/RollingRandomAccessFileAppender:::append (56 samples, 1.09%)</title><rect x="1169.3" y="1333" width="12.9" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="1172.34" y="1343.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::decodeInternal (3 samples, 0.06%)</title><rect x="282.5" y="613" width="0.7" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="285.50" y="623.5" ></text>
</g>
<g >
<title>org/springframework/web/context/request/async/StandardServletAsyncWebRequest:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="293.8" y="661" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="296.75" y="671.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1048.6" y="1237" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1051.58" y="1247.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/spi/AbstractLogger:::logMessage (3 samples, 0.06%)</title><rect x="80.5" y="597" width="0.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="83.48" y="607.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (1 samples, 0.02%)</title><rect x="120.4" y="1173" width="0.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="123.42" y="1183.5" ></text>
</g>
<g >
<title>org/springframework/util/AntPathMatcher:::doMatch (11 samples, 0.21%)</title><rect x="283.6" y="629" width="2.6" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="286.65" y="639.5" ></text>
</g>
<g >
<title>try_to_wake_up (2 samples, 0.04%)</title><rect x="899.6" y="405" width="0.5" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="902.59" y="415.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Inflater_inflateBytes (4 samples, 0.08%)</title><rect x="697.6" y="565" width="0.9" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="700.57" y="575.5" ></text>
</g>
<g >
<title>java/lang/reflect/Array:::get (3 samples, 0.06%)</title><rect x="225.6" y="581" width="0.7" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="228.57" y="591.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="322.9" y="437" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="325.91" y="447.5" ></text>
</g>
<g >
<title>ext4_mark_iloc_dirty (1 samples, 0.02%)</title><rect x="1176.2" y="1013" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1179.23" y="1023.5" ></text>
</g>
<g >
<title>sun/security/provider/SecureRandom:::engineNextBytes (7 samples, 0.14%)</title><rect x="1044.0" y="1269" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1046.99" y="1279.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="80.7" y="485" width="0.5" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="83.71" y="495.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Single:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="630.5" y="533" width="0.3" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="633.53" y="543.5" ></text>
</g>
<g >
<title>InterpreterRuntime::ldc (1 samples, 0.02%)</title><rect x="353.2" y="581" width="0.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="356.21" y="591.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/RequestResponseBodyMethodProcessor:::supportsReturnType (1 samples, 0.02%)</title><rect x="939.1" y="661" width="0.2" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="942.08" y="671.5" ></text>
</g>
<g >
<title>try_to_wake_up (29 samples, 0.56%)</title><rect x="904.0" y="389" width="6.6" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="906.95" y="399.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="914.3" y="437" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="917.28" y="447.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Inflater_inflateBytes (37 samples, 0.72%)</title><rect x="71.1" y="549" width="8.5" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="74.07" y="559.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="38.5" y="965" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="41.47" y="975.5" ></text>
</g>
<g >
<title>futex_wait (5 samples, 0.10%)</title><rect x="1061.7" y="1205" width="1.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1064.67" y="1215.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="560.7" y="405" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="563.74" y="415.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="381.2" y="325" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="384.22" y="335.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="698.5" y="533" width="0.2" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="701.49" y="543.5" ></text>
</g>
<g >
<title>ThreadBlockInVM::ThreadBlockInVM (1 samples, 0.02%)</title><rect x="1163.1" y="1285" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text x="1166.14" y="1295.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (10 samples, 0.19%)</title><rect x="379.2" y="549" width="2.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="382.15" y="559.5" ></text>
</g>
<g >
<title>java/util/HashSet:::iterator (1 samples, 0.02%)</title><rect x="262.1" y="581" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="265.07" y="591.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/IntegerCodec:::getFastMatchToken (1 samples, 0.02%)</title><rect x="342.4" y="517" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="345.42" y="527.5" ></text>
</g>
<g >
<title>tcp_gro_receive (1 samples, 0.02%)</title><rect x="983.8" y="821" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="986.84" y="831.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1:::next (1 samples, 0.02%)</title><rect x="1085.5" y="1285" width="0.3" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1088.54" y="1295.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="965.2" y="517" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="968.25" y="527.5" ></text>
</g>
<g >
<title>nmethod::is_nmethod (2 samples, 0.04%)</title><rect x="515.3" y="469" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text x="518.29" y="479.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1048.6" y="1189" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1051.58" y="1199.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/RecordAccumulator:::expiredBatches (9 samples, 0.18%)</title><rect x="1081.6" y="1301" width="2.1" height="15.0" fill="rgb(51,200,51)" rx="2" ry="2" />
<text x="1084.64" y="1311.5" ></text>
</g>
<g >
<title>java/security/Provider$Service:::newInstance (1 samples, 0.02%)</title><rect x="171.8" y="613" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="174.85" y="623.5" ></text>
</g>
<g >
<title>fsnotify (1 samples, 0.02%)</title><rect x="1022.9" y="1077" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1025.87" y="1087.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (1 samples, 0.02%)</title><rect x="1185.2" y="1157" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1188.18" y="1167.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::timeout (2 samples, 0.04%)</title><rect x="1145.7" y="1333" width="0.5" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1148.69" y="1343.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (2 samples, 0.04%)</title><rect x="104.1" y="1253" width="0.5" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="107.12" y="1263.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1075.2" y="1141" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1078.21" y="1151.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (1 samples, 0.02%)</title><rect x="999.2" y="965" width="0.3" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="1002.23" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="965.2" y="581" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="968.25" y="591.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (2 samples, 0.04%)</title><rect x="491.4" y="485" width="0.5" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="494.41" y="495.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (3 samples, 0.06%)</title><rect x="934.0" y="629" width="0.7" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="937.03" y="639.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="962.0" y="581" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="965.04" y="591.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="92.6" y="1029" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="95.65" y="1039.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decodeLoop (6 samples, 0.12%)</title><rect x="139.9" y="949" width="1.4" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="142.94" y="959.5" ></text>
</g>
<g >
<title>OptoRuntime::new_instance_C (1 samples, 0.02%)</title><rect x="675.5" y="565" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text x="678.53" y="575.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="623.4" y="373" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="626.42" y="383.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/StringSerializer:::serialize (9 samples, 0.18%)</title><rect x="372.3" y="469" width="2.0" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="375.26" y="479.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/HandlerInterceptorAdapter:::postHandle (1 samples, 0.02%)</title><rect x="940.5" y="693" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="943.46" y="703.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (3 samples, 0.06%)</title><rect x="1178.1" y="1237" width="0.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1181.06" y="1247.5" ></text>
</g>
<g >
<title>java/util/zip/InflaterInputStream:::read (6 samples, 0.12%)</title><rect x="897.5" y="597" width="1.4" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="900.53" y="607.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseHostname (3 samples, 0.06%)</title><rect x="966.6" y="693" width="0.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="969.63" y="703.5" ></text>
</g>
<g >
<title>__schedule (3 samples, 0.06%)</title><rect x="1062.1" y="1157" width="0.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="1065.13" y="1167.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (3 samples, 0.06%)</title><rect x="1128.2" y="1269" width="0.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="1131.25" y="1279.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator:::hasNext (1 samples, 0.02%)</title><rect x="632.6" y="565" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="635.60" y="575.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/AsyncAppender:::append (3 samples, 0.06%)</title><rect x="894.1" y="453" width="0.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="897.08" y="463.5" ></text>
</g>
<g >
<title>G1SATBCardTableLoggingModRefBS::write_ref_array_work (1 samples, 0.02%)</title><rect x="277.2" y="517" width="0.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text x="280.22" y="527.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="514.6" y="421" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="517.60" y="431.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="987.1" y="1157" width="0.2" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text x="990.06" y="1167.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1048.6" y="1253" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1051.58" y="1263.5" ></text>
</g>
<g >
<title>ParseGenerator::generate (1 samples, 0.02%)</title><rect x="33.4" y="1189" width="0.2" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text x="36.42" y="1199.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="175.3" y="597" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="178.29" y="607.5" ></text>
</g>
<g >
<title>pipe_poll (1 samples, 0.02%)</title><rect x="1184.7" y="1205" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1187.72" y="1215.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (17 samples, 0.33%)</title><rect x="485.4" y="485" width="3.9" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="488.44" y="495.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="774.7" y="421" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="777.70" y="431.5" ></text>
</g>
<g >
<title>JNIHandleBlock::allocate_handle (1 samples, 0.02%)</title><rect x="719.4" y="533" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="722.38" y="543.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="532.3" y="229" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="535.28" y="239.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,753 samples, 73.02%)</title><rect x="123.6" y="1109" width="861.6" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="126.64" y="1119.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>__dev_queue_xmit (5 samples, 0.10%)</title><rect x="1118.1" y="949" width="1.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="1121.14" y="959.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClient:::setex (1 samples, 0.02%)</title><rect x="649.6" y="437" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="652.59" y="447.5" ></text>
</g>
<g >
<title>do_futex (1 samples, 0.02%)</title><rect x="21.9" y="1301" width="0.3" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="24.94" y="1311.5" ></text>
</g>
<g >
<title>OptoRuntime::is_deoptimized_caller_frame (1 samples, 0.02%)</title><rect x="213.6" y="597" width="0.3" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text x="216.63" y="607.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotatedElementUtils:::searchWithFindSemantics (16 samples, 0.31%)</title><rect x="299.9" y="613" width="3.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="302.95" y="623.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="351.4" y="533" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="354.37" y="543.5" ></text>
</g>
<g >
<title>com/coohua/platform/security/Base64:::decode (1 samples, 0.02%)</title><rect x="187.0" y="661" width="0.2" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="190.00" y="671.5" ></text>
</g>
<g >
<title>tcp_write_xmit (28 samples, 0.54%)</title><rect x="1000.1" y="949" width="6.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1003.14" y="959.5" ></text>
</g>
<g >
<title>__build_skb (1 samples, 0.02%)</title><rect x="608.5" y="277" width="0.2" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="611.49" y="287.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="877.1" y="437" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="880.09" y="447.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="261.2" y="485" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="264.15" y="495.5" ></text>
</g>
<g >
<title>java/util/Spliterator:::getExactSizeIfKnown (1 samples, 0.02%)</title><rect x="955.1" y="725" width="0.3" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="958.15" y="735.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="226.7" y="581" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="229.72" y="591.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="303.4" y="533" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="306.39" y="543.5" ></text>
</g>
<g >
<title>finish_task_switch (9 samples, 0.18%)</title><rect x="1156.7" y="1157" width="2.1" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1159.71" y="1167.5" ></text>
</g>
<g >
<title>Dict::Insert (1 samples, 0.02%)</title><rect x="32.7" y="1269" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text x="35.73" y="1279.5" ></text>
</g>
<g >
<title>ep_poll (1 samples, 0.02%)</title><rect x="1121.8" y="1205" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1124.82" y="1215.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="645.5" y="453" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="648.46" y="463.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="949.4" y="741" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="952.41" y="751.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="1164.7" y="1269" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1167.75" y="1279.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (7 samples, 0.14%)</title><rect x="99.3" y="1237" width="1.6" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="102.30" y="1247.5" ></text>
</g>
<g >
<title>wake_futex (5 samples, 0.10%)</title><rect x="99.8" y="1157" width="1.1" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="102.76" y="1167.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (2 samples, 0.04%)</title><rect x="288.7" y="661" width="0.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="291.70" y="671.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="384.4" y="501" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="387.43" y="511.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="449.2" y="293" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="452.17" y="303.5" ></text>
</g>
<g >
<title>futex_wake_op (2 samples, 0.04%)</title><rect x="80.7" y="437" width="0.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="83.71" y="447.5" ></text>
</g>
<g >
<title>ip_local_out_sk (1 samples, 0.02%)</title><rect x="14.1" y="1333" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="17.13" y="1343.5" ></text>
</g>
<g >
<title>finish_task_switch (3 samples, 0.06%)</title><rect x="1062.1" y="1141" width="0.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1065.13" y="1151.5" ></text>
</g>
<g >
<title>sock_aio_write (16 samples, 0.31%)</title><rect x="1116.1" y="1141" width="3.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1119.08" y="1151.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="947.6" y="357" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="950.57" y="367.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::decodeInternal (1 samples, 0.02%)</title><rect x="251.3" y="613" width="0.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="254.28" y="623.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardContextValve:::invoke (3,777 samples, 73.48%)</title><rect x="120.2" y="1189" width="867.1" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="123.19" y="1199.5" >org/apache/catalina/core/StandardContextValve:::invoke</text>
</g>
<g >
<title>itable stub (3 samples, 0.06%)</title><rect x="952.2" y="757" width="0.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="955.16" y="767.5" ></text>
</g>
<g >
<title>ObjArrayKlass::multi_allocate (9 samples, 0.18%)</title><rect x="169.1" y="533" width="2.1" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text x="172.09" y="543.5" ></text>
</g>
<g >
<title>InterpreterRuntime::frequency_counter_overflow_inner (1 samples, 0.02%)</title><rect x="322.0" y="549" width="0.2" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="324.99" y="559.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="510.2" y="325" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="513.24" y="335.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (1 samples, 0.02%)</title><rect x="1006.8" y="981" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1009.80" y="991.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::add (1 samples, 0.02%)</title><rect x="145.4" y="869" width="0.3" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="148.45" y="879.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="858.7" y="469" width="0.3" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="861.73" y="479.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="971.2" y="949" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="974.22" y="959.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::park (27 samples, 0.53%)</title><rect x="1162.5" y="1333" width="6.1" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="1165.45" y="1343.5" ></text>
</g>
<g >
<title>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.02%)</title><rect x="936.8" y="549" width="0.2" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text x="939.78" y="559.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="967.5" y="757" width="0.3" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="970.54" y="767.5" ></text>
</g>
<g >
<title>_new_array_Java (1 samples, 0.02%)</title><rect x="272.2" y="549" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="275.17" y="559.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="592.4" y="325" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="595.42" y="335.5" ></text>
</g>
<g >
<title>java/lang/ref/Finalizer$FinalizerThread:::run (1 samples, 0.02%)</title><rect x="1159.5" y="1365" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="1162.47" y="1375.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="901.7" y="565" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="904.66" y="575.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::copyMembers (2 samples, 0.04%)</title><rect x="651.7" y="549" width="0.4" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="654.65" y="559.5" ></text>
</g>
<g >
<title>do_futex (14 samples, 0.27%)</title><rect x="1165.0" y="1253" width="3.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1167.98" y="1263.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11OutputBuffer:::end (5 samples, 0.10%)</title><rect x="86.7" y="1205" width="1.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="89.68" y="1215.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="983.8" y="917" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="986.84" y="927.5" ></text>
</g>
<g >
<title>org/jboss/netty/channel/DefaultChannelPipeline:::sendDownstream (2 samples, 0.04%)</title><rect x="895.0" y="453" width="0.5" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="898.00" y="463.5" ></text>
</g>
<g >
<title>JVM_GetDeclaringClass (1 samples, 0.02%)</title><rect x="943.4" y="613" width="0.3" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="946.44" y="623.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/PatternsRequestCondition:::getMatchingPatterns (1 samples, 0.02%)</title><rect x="264.1" y="629" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="267.14" y="639.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_nozero_C (1 samples, 0.02%)</title><rect x="966.2" y="709" width="0.2" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="969.17" y="719.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1053.2" y="1125" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1056.18" y="1135.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/Utf8Decoder:::decodeHasArray (2 samples, 0.04%)</title><rect x="117.4" y="1189" width="0.5" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="120.44" y="1199.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="678.1" y="517" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="681.05" y="527.5" ></text>
</g>
<g >
<title>org/springframework/context/i18n/LocaleContextHolder:::setLocale (1 samples, 0.02%)</title><rect x="85.5" y="901" width="0.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="88.53" y="911.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="1075.2" y="997" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1078.21" y="1007.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy0:::annotationType (1 samples, 0.02%)</title><rect x="204.2" y="645" width="0.2" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="207.22" y="655.5" ></text>
</g>
<g >
<title>ObjArrayKlass::allocate (1 samples, 0.02%)</title><rect x="168.9" y="533" width="0.2" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="171.86" y="543.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (1 samples, 0.02%)</title><rect x="1188.6" y="1317" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="1191.62" y="1327.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil:::write (23 samples, 0.45%)</title><rect x="1114.9" y="1269" width="5.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="1117.93" y="1279.5" ></text>
</g>
<g >
<title>jshort_arraycopy (1 samples, 0.02%)</title><rect x="379.8" y="533" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="382.84" y="543.5" ></text>
</g>
<g >
<title>java/util/HashSet:::iterator (1 samples, 0.02%)</title><rect x="255.4" y="581" width="0.2" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="258.41" y="591.5" ></text>
</g>
<g >
<title>do_futex (21 samples, 0.41%)</title><rect x="1139.0" y="1205" width="4.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1142.04" y="1215.5" ></text>
</g>
<g >
<title>irq_exit (2 samples, 0.04%)</title><rect x="891.1" y="549" width="0.5" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="894.10" y="559.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl:::write0 (3 samples, 0.06%)</title><rect x="87.1" y="1125" width="0.7" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="90.14" y="1135.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="901.0" y="565" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="903.97" y="575.5" ></text>
</g>
<g >
<title>sys_epoll_wait (18 samples, 0.35%)</title><rect x="1184.3" y="1269" width="4.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1187.26" y="1279.5" ></text>
</g>
<g >
<title>java/lang/String:::charAt (2 samples, 0.04%)</title><rect x="1009.6" y="1157" width="0.4" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="1012.56" y="1167.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_C (1 samples, 0.02%)</title><rect x="213.2" y="613" width="0.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="216.17" y="623.5" ></text>
</g>
<g >
<title>__libc_read (1 samples, 0.02%)</title><rect x="1023.1" y="1173" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1026.10" y="1183.5" ></text>
</g>
<g >
<title>jni_GetByteArrayRegion (3 samples, 0.06%)</title><rect x="1179.0" y="1237" width="0.7" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="1181.98" y="1247.5" ></text>
</g>
<g >
<title>TypeArrayKlass::allocate_common (6 samples, 0.12%)</title><rect x="169.8" y="501" width="1.4" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text x="172.78" y="511.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="344.7" y="373" width="0.2" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="347.72" y="383.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="152.8" y="773" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="155.79" y="783.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="651.9" y="485" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="654.88" y="495.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="775.2" y="501" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="778.16" y="511.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::nextToken (1 samples, 0.02%)</title><rect x="351.8" y="549" width="0.3" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="354.83" y="559.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="623.4" y="453" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="626.42" y="463.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/MessageBytes:::toString (2 samples, 0.04%)</title><rect x="84.2" y="725" width="0.4" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="87.15" y="735.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_nozero_C (1 samples, 0.02%)</title><rect x="1072.5" y="1221" width="0.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="1075.46" y="1231.5" ></text>
</g>
<g >
<title>sys_writev (18 samples, 0.35%)</title><rect x="1116.1" y="1205" width="4.1" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text x="1119.08" y="1215.5" ></text>
</g>
<g >
<title>com/weibo/api/motan/transport/netty/NettyClient:::request (2 samples, 0.04%)</title><rect x="895.0" y="485" width="0.5" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="898.00" y="495.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (31 samples, 0.60%)</title><rect x="1170.7" y="1237" width="7.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1173.72" y="1247.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1061.9" y="1157" width="0.2" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text x="1064.90" y="1167.5" ></text>
</g>
<g >
<title>futex_wake (2 samples, 0.04%)</title><rect x="91.0" y="1157" width="0.5" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="94.04" y="1167.5" ></text>
</g>
<g >
<title>InstanceKlass::register_finalizer (5 samples, 0.10%)</title><rect x="676.7" y="549" width="1.1" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text x="679.68" y="559.5" ></text>
</g>
<g >
<title>ip_finish_output (21 samples, 0.41%)</title><rect x="1001.5" y="869" width="4.8" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1004.52" y="879.5" ></text>
</g>
<g >
<title>com/coohua/platform/security/Base64:::decode (3 samples, 0.06%)</title><rect x="183.8" y="645" width="0.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="186.79" y="655.5" ></text>
</g>
<g >
<title>generic_file_buffered_write (10 samples, 0.19%)</title><rect x="1174.6" y="1109" width="2.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="1177.62" y="1119.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1116.8" y="1013" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1119.77" y="1023.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="141.3" y="933" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="144.32" y="943.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="1128.5" y="1173" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1131.47" y="1183.5" ></text>
</g>
<g >
<title>sys_futex (18 samples, 0.35%)</title><rect x="389.0" y="453" width="4.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="392.02" y="463.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (2 samples, 0.04%)</title><rect x="1156.0" y="1189" width="0.5" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1159.02" y="1199.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer:::getHeadersIfIncluded (47 samples, 0.91%)</title><rect x="954.5" y="757" width="10.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="957.46" y="767.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Node:::match (3 samples, 0.06%)</title><rect x="491.9" y="485" width="0.7" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="494.87" y="495.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1010.5" y="1109" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1013.47" y="1119.5" ></text>
</g>
<g >
<title>InstanceKlass::allocate_instance (1 samples, 0.02%)</title><rect x="936.8" y="581" width="0.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="939.78" y="591.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::buildLogMessage (136 samples, 2.65%)</title><rect x="210.9" y="645" width="31.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="213.88" y="655.5" >co..</text>
</g>
<g >
<title>java/lang/String:::hashCode (2 samples, 0.04%)</title><rect x="377.1" y="517" width="0.4" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="380.09" y="527.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterDelegate:::convertIfNecessary (1 samples, 0.02%)</title><rect x="81.4" y="613" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="84.40" y="623.5" ></text>
</g>
<g >
<title>ipv4_dst_check (1 samples, 0.02%)</title><rect x="1113.6" y="1013" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1116.55" y="1023.5" ></text>
</g>
<g >
<title>java/util/HashMap:::putMapEntries (1 samples, 0.02%)</title><rect x="948.7" y="773" width="0.2" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text x="951.72" y="783.5" ></text>
</g>
<g >
<title>JavaThread::oops_do (2 samples, 0.04%)</title><rect x="21.2" y="1397" width="0.5" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="24.25" y="1407.5" ></text>
</g>
<g >
<title>org/joda/time/chrono/BasicYearDateTimeField:::get (2 samples, 0.04%)</title><rect x="944.1" y="645" width="0.5" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="947.13" y="655.5" ></text>
</g>
<g >
<title>Interpreter (176 samples, 3.42%)</title><rect x="312.8" y="581" width="40.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="315.81" y="591.5" >Int..</text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="560.7" y="325" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="563.74" y="335.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/block/authority/AuthoritySlot:::entry (1 samples, 0.02%)</title><rect x="191.4" y="549" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="194.36" y="559.5" ></text>
</g>
<g >
<title>PhaseIterGVN::transform_old (4 samples, 0.08%)</title><rect x="31.8" y="1333" width="0.9" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text x="34.81" y="1343.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::newNode (1 samples, 0.02%)</title><rect x="261.2" y="565" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="264.15" y="575.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/FrameworkServlet:::service (3,446 samples, 67.04%)</title><rect x="157.2" y="741" width="791.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="160.16" y="751.5" >org/springframework/web/servlet/FrameworkServlet:::service</text>
</g>
<g >
<title>smp_call_function_single_async (2 samples, 0.04%)</title><rect x="548.3" y="309" width="0.5" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="551.35" y="319.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="901.4" y="485" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="904.43" y="495.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getLookupPathForRequest (8 samples, 0.16%)</title><rect x="281.6" y="645" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="284.58" y="655.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="1048.6" y="1109" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="1051.58" y="1119.5" ></text>
</g>
<g >
<title>system_call_fastpath (19 samples, 0.37%)</title><rect x="388.8" y="469" width="4.4" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="391.79" y="479.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="835.3" y="501" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="838.31" y="511.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil:::drain (4 samples, 0.08%)</title><rect x="1128.2" y="1285" width="1.0" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="1131.25" y="1295.5" ></text>
</g>
<g >
<title>generic_pipe_buf_unmap (1 samples, 0.02%)</title><rect x="1128.2" y="1189" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1131.25" y="1199.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/AsyncAppender:::append (6 samples, 0.12%)</title><rect x="645.5" y="533" width="1.3" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="648.46" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="180.6" y="229" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="183.57" y="239.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="884.4" y="437" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="887.44" y="447.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1052.7" y="1157" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1055.72" y="1167.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (18 samples, 0.35%)</title><rect x="1184.3" y="1317" width="4.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="1187.26" y="1327.5" ></text>
</g>
<g >
<title>kmem_cache_free (1 samples, 0.02%)</title><rect x="1172.8" y="1013" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1175.78" y="1023.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::localizedMagnitude (2 samples, 0.04%)</title><rect x="54.3" y="501" width="0.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="57.31" y="511.5" ></text>
</g>
<g >
<title>sun/nio/cs/ISO_8859_1$Decoder:::decodeLoop (5 samples, 0.10%)</title><rect x="962.3" y="693" width="1.1" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="965.26" y="703.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClient$$FastClassBySpringCGLIB$$1bc9b45c:::invoke (1 samples, 0.02%)</title><rect x="647.8" y="437" width="0.2" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text x="650.75" y="447.5" ></text>
</g>
<g >
<title>TypeArrayKlass::multi_allocate (6 samples, 0.12%)</title><rect x="169.8" y="517" width="1.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="172.78" y="527.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/StreamingResponseBodyReturnValueHandler:::supportsReturnType (2 samples, 0.04%)</title><rect x="939.3" y="661" width="0.5" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text x="942.31" y="671.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::preHandle (1 samples, 0.02%)</title><rect x="159.7" y="693" width="0.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="162.68" y="703.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::getAnnotation (2 samples, 0.04%)</title><rect x="203.1" y="645" width="0.4" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="206.07" y="655.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Neg:::match (1 samples, 0.02%)</title><rect x="496.2" y="533" width="0.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="499.23" y="543.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy8:::annotationType (1 samples, 0.02%)</title><rect x="205.1" y="645" width="0.3" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="208.14" y="655.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (20 samples, 0.39%)</title><rect x="1054.1" y="1253" width="4.6" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text x="1057.09" y="1263.5" ></text>
</g>
<g >
<title>vtable stub (11 samples, 0.21%)</title><rect x="493.7" y="501" width="2.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="496.71" y="511.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="651.9" y="421" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="654.88" y="431.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::poll (19 samples, 0.37%)</title><rect x="1184.0" y="1333" width="4.4" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="1187.03" y="1343.5" ></text>
</g>
<g >
<title>java/util/Formatter$Conversion:::isValid (2 samples, 0.04%)</title><rect x="1046.1" y="1285" width="0.4" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1049.06" y="1295.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="488.9" y="421" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="491.89" y="431.5" ></text>
</g>
<g >
<title>PhaseIFG::init (1 samples, 0.02%)</title><rect x="28.6" y="1349" width="0.2" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text x="31.60" y="1359.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer:::sendingResponse (10 samples, 0.19%)</title><rect x="948.7" y="789" width="2.3" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="951.72" y="799.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::subFormat (1 samples, 0.02%)</title><rect x="235.9" y="629" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="238.90" y="639.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="1020.6" y="757" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1023.58" y="767.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="193.7" y="597" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="196.66" y="607.5" ></text>
</g>
<g >
<title>itable stub (5 samples, 0.10%)</title><rect x="160.1" y="693" width="1.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="163.14" y="703.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/record/ByteBufferLogInputStream:::nextBatch (1 samples, 0.02%)</title><rect x="1101.8" y="1253" width="0.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1104.84" y="1263.5" ></text>
</g>
<g >
<title>sock_aio_write (37 samples, 0.72%)</title><rect x="998.8" y="1029" width="8.5" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1001.77" y="1039.5" ></text>
</g>
<g >
<title>pthread_self@plt (1 samples, 0.02%)</title><rect x="996.0" y="1141" width="0.2" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="999.01" y="1151.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="161.5" y="693" width="0.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="164.52" y="703.5" ></text>
</g>
<g >
<title>org/springframework/web/context/request/ServletWebRequest:::getParameterValues (8 samples, 0.16%)</title><rect x="926.2" y="629" width="1.9" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="929.22" y="639.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (5 samples, 0.10%)</title><rect x="229.7" y="613" width="1.1" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="232.70" y="623.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.02%)</title><rect x="981.3" y="1013" width="0.2" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="984.32" y="1023.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="560.7" y="197" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="563.74" y="207.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1013.9" y="1141" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1016.92" y="1151.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/block/authority/AuthoritySlot:::exit (1 samples, 0.02%)</title><rect x="246.9" y="549" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="249.92" y="559.5" ></text>
</g>
<g >
<title>ip_local_out_sk (3 samples, 0.06%)</title><rect x="14.8" y="1317" width="0.7" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="17.82" y="1327.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_nozero_C (1 samples, 0.02%)</title><rect x="152.6" y="821" width="0.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="155.56" y="831.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils$AnnotationCollector:::process (24 samples, 0.47%)</title><rect x="203.8" y="661" width="5.5" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="206.76" y="671.5" ></text>
</g>
<g >
<title>G1CollectedHeap::attempt_allocation_slow (1 samples, 0.02%)</title><rect x="950.3" y="645" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="953.33" y="655.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (200 samples, 3.89%)</title><rect x="39.6" y="869" width="45.9" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="42.61" y="879.5" >org/..</text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1052.7" y="1173" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1055.72" y="1183.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (1 samples, 0.02%)</title><rect x="1113.6" y="1077" width="0.2" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text x="1116.55" y="1087.5" ></text>
</g>
<g >
<title>CodeHeap::find_start (1 samples, 0.02%)</title><rect x="322.7" y="501" width="0.2" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text x="325.68" y="511.5" ></text>
</g>
<g >
<title>InterpreterRuntime::ldc (3 samples, 0.06%)</title><rect x="322.2" y="565" width="0.7" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text x="325.22" y="575.5" ></text>
</g>
<g >
<title>java/util/LinkedHashSet:::spliterator (1 samples, 0.02%)</title><rect x="202.2" y="645" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="205.15" y="655.5" ></text>
</g>
<g >
<title>do_futex (17 samples, 0.33%)</title><rect x="389.3" y="437" width="3.9" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="392.25" y="447.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (75 samples, 1.46%)</title><rect x="499.2" y="517" width="17.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="502.22" y="527.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="207.7" y="597" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="210.66" y="607.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="80.0" y="533" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="83.02" y="543.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="775.2" y="437" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="778.16" y="447.5" ></text>
</g>
<g >
<title>do_sync_read (1 samples, 0.02%)</title><rect x="1159.0" y="1237" width="0.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="1162.01" y="1247.5" ></text>
</g>
<g >
<title>dev_queue_xmit (5 samples, 0.10%)</title><rect x="1118.1" y="965" width="1.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1121.14" y="975.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (4 samples, 0.08%)</title><rect x="58.0" y="533" width="0.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="60.98" y="543.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/FormContentFilter:::doFilterInternal (3,609 samples, 70.21%)</title><rect x="142.7" y="965" width="828.5" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="145.69" y="975.5" >org/springframework/web/filter/FormContentFilter:::doFilterInternal</text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,548 samples, 69.03%)</title><rect x="153.7" y="869" width="814.5" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="156.71" y="879.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="80.0" y="549" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="83.02" y="559.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender:::sendProducerData (108 samples, 2.10%)</title><rect x="1077.5" y="1317" width="24.8" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1080.51" y="1327.5" >o..</text>
</g>
<g >
<title>do_futex (2 samples, 0.04%)</title><rect x="894.3" y="341" width="0.5" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="897.31" y="351.5" ></text>
</g>
<g >
<title>java/util/zip/GZIPInputStream:::skipBytes (1 samples, 0.02%)</title><rect x="679.0" y="581" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="681.97" y="591.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (1 samples, 0.02%)</title><rect x="74.7" y="517" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="77.74" y="527.5" ></text>
</g>
<g >
<title>org/apache/catalina/mapper/Mapper:::internalMapWrapper (1 samples, 0.02%)</title><rect x="117.2" y="1205" width="0.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="120.21" y="1215.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="247.6" y="645" width="0.2" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text x="250.61" y="655.5" ></text>
</g>
<g >
<title>InstanceKlass::method_with_orig_idnum (1 samples, 0.02%)</title><rect x="59.6" y="469" width="0.2" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="62.59" y="479.5" ></text>
</g>
<g >
<title>OptoRuntime::is_deoptimized_caller_frame (1 samples, 0.02%)</title><rect x="152.6" y="805" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="155.56" y="815.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="764.4" y="517" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="767.37" y="527.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/AbstractMessageConverterMethodProcessor:::writeWithMessageConverters (5 samples, 0.10%)</title><rect x="81.9" y="661" width="1.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="84.86" y="671.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal:::set (1 samples, 0.02%)</title><rect x="197.6" y="677" width="0.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="200.56" y="687.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::buildLogMessage (7 samples, 0.14%)</title><rect x="44.0" y="645" width="1.6" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="46.98" y="655.5" ></text>
</g>
<g >
<title>java/util/stream/Sink:::end (1 samples, 0.02%)</title><rect x="958.4" y="725" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="961.36" y="735.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="901.7" y="501" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="904.66" y="511.5" ></text>
</g>
<g >
<title>system_call_fastpath (20 samples, 0.39%)</title><rect x="1123.7" y="1237" width="4.5" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1126.65" y="1247.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="1075.2" y="1029" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1078.21" y="1039.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/ProducesRequestCondition:::getMatchingCondition (2 samples, 0.04%)</title><rect x="46.5" y="597" width="0.5" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="49.50" y="607.5" ></text>
</g>
<g >
<title>InstanceKlass::oop_oop_iterate_nv (1 samples, 0.02%)</title><rect x="22.4" y="1333" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="25.40" y="1343.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="180.6" y="517" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="183.57" y="527.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="965.2" y="645" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="968.25" y="655.5" ></text>
</g>
<g >
<title>sock_poll (1 samples, 0.02%)</title><rect x="1122.7" y="1205" width="0.3" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text x="1125.74" y="1215.5" ></text>
</g>
<g >
<title>Handle::Handle (1 samples, 0.02%)</title><rect x="58.0" y="469" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="60.98" y="479.5" ></text>
</g>
<g >
<title>org/springframework/util/AntPathMatcher:::doMatch (3 samples, 0.06%)</title><rect x="47.2" y="581" width="0.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="50.19" y="591.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (3 samples, 0.06%)</title><rect x="101.1" y="1285" width="0.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="104.14" y="1295.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="560.7" y="453" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="563.74" y="463.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::epollCtl (2 samples, 0.04%)</title><rect x="1122.5" y="1269" width="0.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="1125.51" y="1279.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (24 samples, 0.47%)</title><rect x="1138.6" y="1269" width="5.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1141.58" y="1279.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::handleCompletedReceives (12 samples, 0.23%)</title><rect x="1064.9" y="1317" width="2.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1067.88" y="1327.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::closure (1 samples, 0.02%)</title><rect x="51.6" y="469" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="54.55" y="479.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (21 samples, 0.41%)</title><rect x="388.3" y="485" width="4.9" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="391.33" y="495.5" ></text>
</g>
<g >
<title>java_lang_StackTraceElement::set_methodName (1 samples, 0.02%)</title><rect x="620.4" y="485" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="623.43" y="495.5" ></text>
</g>
<g >
<title>system_call_fastpath (6 samples, 0.12%)</title><rect x="99.5" y="1221" width="1.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="102.53" y="1231.5" ></text>
</g>
<g >
<title>InstanceKlass::method_with_orig_idnum (11 samples, 0.21%)</title><rect x="535.3" y="469" width="2.5" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="538.26" y="479.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/base/SpringApplicationEventListenerAutoConfiguration:::onApplicationEvent (5 samples, 0.10%)</title><rect x="942.8" y="661" width="1.1" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="945.75" y="671.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.02%)</title><rect x="388.1" y="517" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="391.11" y="527.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="278.4" y="581" width="0.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="281.37" y="591.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClientAspect:::around (1 samples, 0.02%)</title><rect x="647.8" y="469" width="0.2" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="650.75" y="479.5" ></text>
</g>
<g >
<title>PhaseGVN::transform_no_reclaim (1 samples, 0.02%)</title><rect x="33.4" y="981" width="0.2" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text x="36.42" y="991.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Slice:::match (2 samples, 0.04%)</title><rect x="271.5" y="565" width="0.4" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="274.48" y="575.5" ></text>
</g>
<g >
<title>oopDesc::size_given_klass (1 samples, 0.02%)</title><rect x="504.3" y="421" width="0.2" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text x="507.27" y="431.5" ></text>
</g>
<g >
<title>org/apache/juli/logging/DirectJDKLog:::isDebugEnabled (1 samples, 0.02%)</title><rect x="1024.2" y="1237" width="0.3" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="1027.25" y="1247.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (16 samples, 0.31%)</title><rect x="1054.8" y="1173" width="3.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1057.78" y="1183.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::afterCompletion (2 samples, 0.04%)</title><rect x="163.6" y="677" width="0.4" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="166.58" y="687.5" ></text>
</g>
<g >
<title>validate_xmit_skb.part.93 (1 samples, 0.02%)</title><rect x="1119.1" y="933" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1122.06" y="943.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1050.2" y="1173" width="0.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="1053.19" y="1183.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.04%)</title><rect x="1060.5" y="1269" width="0.5" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1063.52" y="1279.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="1155.6" y="1157" width="0.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1158.56" y="1167.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/AbstractLifeCycle:::isStarted (1 samples, 0.02%)</title><rect x="1168.6" y="1349" width="0.3" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1171.65" y="1359.5" ></text>
</g>
<g >
<title>tcp_ack (1 samples, 0.02%)</title><rect x="412.7" y="197" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="415.67" y="207.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="1007.9" y="1173" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text x="1010.95" y="1183.5" ></text>
</g>
<g >
<title>Parse::do_call (1 samples, 0.02%)</title><rect x="33.4" y="1301" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="36.42" y="1311.5" ></text>
</g>
<g >
<title>org/joda/time/format/DateTimeFormatter:::printTo (6 samples, 0.12%)</title><rect x="944.6" y="645" width="1.4" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text x="947.59" y="655.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (1 samples, 0.02%)</title><rect x="156.7" y="757" width="0.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="159.70" y="767.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="560.7" y="389" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="563.74" y="399.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (2 samples, 0.04%)</title><rect x="124.1" y="1077" width="0.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="127.10" y="1087.5" ></text>
</g>
<g >
<title>__libc_write (1 samples, 0.02%)</title><rect x="1177.8" y="1237" width="0.3" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1180.83" y="1247.5" ></text>
</g>
<g >
<title>deflate (1 samples, 0.02%)</title><rect x="308.7" y="501" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="311.67" y="511.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="332.1" y="517" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="335.09" y="527.5" ></text>
</g>
<g >
<title>Monitor::lock_without_safepoint_check (1 samples, 0.02%)</title><rect x="21.9" y="1381" width="0.3" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="24.94" y="1391.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="961.8" y="581" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="964.81" y="591.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/HiddenHttpMethodFilter:::doFilterInternal (1 samples, 0.02%)</title><rect x="126.2" y="1029" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="129.16" y="1039.5" ></text>
</g>
<g >
<title>java/lang/Thread:::isAlive (1 samples, 0.02%)</title><rect x="1036.2" y="1253" width="0.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1039.19" y="1263.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="234.8" y="565" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="237.75" y="575.5" ></text>
</g>
<g >
<title>CodeBlob::is_nmethod (1 samples, 0.02%)</title><rect x="1045.8" y="1237" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text x="1048.83" y="1247.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.02%)</title><rect x="387.6" y="533" width="0.3" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="390.65" y="543.5" ></text>
</g>
<g >
<title>JavaCallWrapper::JavaCallWrapper (1 samples, 0.02%)</title><rect x="414.7" y="469" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text x="417.74" y="479.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/web/HttpTracingInterceptor:::preHandle (2 samples, 0.04%)</title><rect x="43.3" y="677" width="0.4" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="46.29" y="687.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="303.6" y="517" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="306.62" y="527.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="901.4" y="533" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="904.43" y="543.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/KafkaProducer:::doSend (45 samples, 0.88%)</title><rect x="1033.4" y="1269" width="10.4" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="1036.43" y="1279.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (3,753 samples, 73.02%)</title><rect x="123.6" y="1093" width="861.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="126.64" y="1103.5" >org/springframework/web/filter/OncePerRequestFilter:::doFilter</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="583.9" y="133" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="586.93" y="143.5" ></text>
</g>
<g >
<title>java/security/Provider:::getService (2 samples, 0.04%)</title><rect x="176.0" y="613" width="0.4" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="178.98" y="623.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="647.5" y="549" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text x="650.52" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1022.0" y="981" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1024.95" y="991.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="938.2" y="453" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="941.16" y="463.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/IntegerCodec:::getFastMatchToken (2 samples, 0.04%)</title><rect x="349.3" y="533" width="0.5" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="352.31" y="543.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (1 samples, 0.02%)</title><rect x="647.8" y="517" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="650.75" y="527.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="1159.0" y="1285" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="1162.01" y="1295.5" ></text>
</g>
<g >
<title>JavaThread::last_frame (1 samples, 0.02%)</title><rect x="322.0" y="533" width="0.2" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text x="324.99" y="543.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClientAspect:::around (2 samples, 0.04%)</title><rect x="649.4" y="485" width="0.4" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="652.36" y="495.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (3 samples, 0.06%)</title><rect x="1059.4" y="1285" width="0.7" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="1062.37" y="1295.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender:::run (286 samples, 5.56%)</title><rect x="1064.0" y="1333" width="65.6" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1066.96" y="1343.5" >org/apa..</text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (2 samples, 0.04%)</title><rect x="235.2" y="597" width="0.5" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="238.21" y="607.5" ></text>
</g>
<g >
<title>org/springframework/util/StringUtils:::uriDecode (1 samples, 0.02%)</title><rect x="251.3" y="597" width="0.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="254.28" y="607.5" ></text>
</g>
<g >
<title>tcp_transmit_skb (7 samples, 0.14%)</title><rect x="1117.9" y="1045" width="1.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1120.91" y="1055.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="560.7" y="293" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="563.74" y="303.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (32 samples, 0.62%)</title><rect x="903.3" y="501" width="7.3" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="906.26" y="511.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="376.6" y="485" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="379.63" y="495.5" ></text>
</g>
<g >
<title>sk_run_filter (1 samples, 0.02%)</title><rect x="1003.6" y="789" width="0.2" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text x="1006.59" y="799.5" ></text>
</g>
<g >
<title>__schedule (11 samples, 0.21%)</title><rect x="1165.2" y="1189" width="2.5" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="1168.21" y="1199.5" ></text>
</g>
<g >
<title>org/apache/tomcat/websocket/server/WsFilter:::doFilter (1 samples, 0.02%)</title><rect x="948.5" y="789" width="0.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="951.49" y="799.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (2 samples, 0.04%)</title><rect x="1048.8" y="1237" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1051.81" y="1247.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::parseParameters (5 samples, 0.10%)</title><rect x="37.3" y="997" width="1.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="40.32" y="1007.5" ></text>
</g>
<g >
<title>ConvI2LNode::Value (1 samples, 0.02%)</title><rect x="31.8" y="1317" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="34.81" y="1327.5" ></text>
</g>
<g >
<title>JavaCalls::call_virtual (5,032 samples, 97.90%)</title><rect x="33.9" y="1413" width="1155.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="36.88" y="1423.5" >JavaCalls::call_virtual</text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (5 samples, 0.10%)</title><rect x="926.9" y="613" width="1.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="929.91" y="623.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="1121.8" y="1237" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1124.82" y="1247.5" ></text>
</g>
<g >
<title>org/springframework/aop/aspectj/AbstractAspectJAdvice:::getJoinPointMatch (1 samples, 0.02%)</title><rect x="648.2" y="533" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="651.21" y="543.5" ></text>
</g>
<g >
<title>schedule (18 samples, 0.35%)</title><rect x="94.3" y="1125" width="4.1" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="97.25" y="1135.5" ></text>
</g>
<g >
<title>futex_wake (1 samples, 0.02%)</title><rect x="21.9" y="1285" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="24.94" y="1295.5" ></text>
</g>
<g >
<title>sock_aio_read (4 samples, 0.08%)</title><rect x="1112.9" y="1141" width="0.9" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1115.86" y="1151.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClusterClient:::incrBy (1 samples, 0.02%)</title><rect x="647.8" y="421" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="650.75" y="431.5" ></text>
</g>
<g >
<title>clock_gettime (2 samples, 0.04%)</title><rect x="1060.5" y="1285" width="0.5" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1063.52" y="1295.5" ></text>
</g>
<g >
<title>vtable stub (3 samples, 0.06%)</title><rect x="946.2" y="645" width="0.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="949.19" y="655.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="64.4" y="245" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="67.41" y="255.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="23.3" y="1285" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="26.32" y="1295.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.06%)</title><rect x="1075.7" y="1109" width="0.7" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text x="1078.67" y="1119.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::equals (1 samples, 0.02%)</title><rect x="147.3" y="837" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="150.28" y="847.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (11 samples, 0.21%)</title><rect x="793.3" y="517" width="2.5" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="796.30" y="527.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.02%)</title><rect x="280.4" y="597" width="0.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="283.44" y="607.5" ></text>
</g>
<g >
<title>deflate_slow (9 samples, 0.18%)</title><rect x="55.0" y="485" width="2.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="58.00" y="495.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="488.9" y="149" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="491.89" y="159.5" ></text>
</g>
<g >
<title>sch_direct_xmit (15 samples, 0.29%)</title><rect x="1002.7" y="821" width="3.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1005.67" y="831.5" ></text>
</g>
<g >
<title>InstanceKlass::allocate_instance (1 samples, 0.02%)</title><rect x="107.6" y="1205" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="110.57" y="1215.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl:::read0 (18 samples, 0.35%)</title><rect x="1019.4" y="1189" width="4.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1022.43" y="1199.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="46.5" y="581" width="0.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="49.50" y="591.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="1182.4" y="1141" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1185.42" y="1151.5" ></text>
</g>
<g >
<title>dev_gro_receive (1 samples, 0.02%)</title><rect x="141.3" y="821" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="144.32" y="831.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::decimalValue (1 samples, 0.02%)</title><rect x="343.3" y="485" width="0.3" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="346.34" y="495.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="141.3" y="853" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="144.32" y="863.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/io/NumberOutput:::_outputFullBillion (1 samples, 0.02%)</title><rect x="375.2" y="485" width="0.3" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="378.25" y="495.5" ></text>
</g>
<g >
<title>wake_up_state (1 samples, 0.02%)</title><rect x="645.5" y="373" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="648.46" y="383.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="698.5" y="565" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="701.49" y="575.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1168.4" y="1269" width="0.2" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" />
<text x="1171.42" y="1279.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_pre (1 samples, 0.02%)</title><rect x="1072.9" y="1205" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="1075.92" y="1215.5" ></text>
</g>
<g >
<title>org/joda/time/tz/CachedDateTimeZone:::getInfo (1 samples, 0.02%)</title><rect x="83.7" y="629" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="86.69" y="639.5" ></text>
</g>
<g >
<title>Parse::Parse (1 samples, 0.02%)</title><rect x="33.4" y="1173" width="0.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="36.42" y="1183.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="510.2" y="309" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="513.24" y="319.5" ></text>
</g>
<g >
<title>CollectedHeap::post_allocation_setup_array (1 samples, 0.02%)</title><rect x="504.0" y="437" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="507.04" y="447.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="466.4" y="533" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="469.39" y="543.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="322.9" y="533" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="325.91" y="543.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/RecordAccumulator:::drain (11 samples, 0.21%)</title><rect x="1079.1" y="1301" width="2.5" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="1082.12" y="1311.5" ></text>
</g>
<g >
<title>checkcast_arraycopy_uninit (2 samples, 0.04%)</title><rect x="277.0" y="549" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="279.99" y="559.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="608.5" y="389" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="611.49" y="399.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="779.3" y="405" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="782.30" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor105:::invoke (1 samples, 0.02%)</title><rect x="647.1" y="485" width="0.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="650.06" y="495.5" ></text>
</g>
<g >
<title>itable stub (4 samples, 0.08%)</title><rect x="631.5" y="565" width="0.9" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="634.45" y="575.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="877.1" y="373" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="880.09" y="383.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1061.2" y="1253" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1064.21" y="1263.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::set (1 samples, 0.02%)</title><rect x="187.5" y="645" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="190.46" y="655.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy47:::annotationType (1 samples, 0.02%)</title><rect x="973.3" y="1045" width="0.2" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="976.28" y="1055.5" ></text>
</g>
<g >
<title>java/util/LinkedList:::unlink (1 samples, 0.02%)</title><rect x="156.2" y="789" width="0.3" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="159.24" y="799.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/support/WebContentGenerator:::checkRequest (1 samples, 0.02%)</title><rect x="939.8" y="677" width="0.2" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="942.77" y="687.5" ></text>
</g>
<g >
<title>ConcurrentG1RefineThread::run (3 samples, 0.06%)</title><rect x="17.8" y="1477" width="0.7" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text x="20.81" y="1487.5" ></text>
</g>
<g >
<title>deflate (85 samples, 1.65%)</title><rect x="393.8" y="501" width="19.6" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="396.84" y="511.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getHeader (3 samples, 0.06%)</title><rect x="241.4" y="629" width="0.7" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="244.41" y="639.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.02%)</title><rect x="1049.0" y="1205" width="0.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="1052.04" y="1215.5" ></text>
</g>
<g >
<title>__inet_lookup_established (1 samples, 0.02%)</title><rect x="334.4" y="309" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="337.39" y="319.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher$Transform:::matches (2 samples, 0.04%)</title><rect x="176.7" y="613" width="0.4" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="179.67" y="623.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.04%)</title><rect x="88.3" y="1317" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="91.28" y="1327.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (1 samples, 0.02%)</title><rect x="966.2" y="725" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="969.17" y="735.5" ></text>
</g>
<g >
<title>PhaseChaitin::build_ifg_physical (6 samples, 0.12%)</title><rect x="25.8" y="1349" width="1.4" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="28.84" y="1359.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (1 samples, 0.02%)</title><rect x="187.2" y="661" width="0.3" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="190.23" y="671.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="938.2" y="581" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="941.16" y="591.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="583.9" y="341" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="586.93" y="351.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (4 samples, 0.08%)</title><rect x="1075.7" y="1157" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="1078.67" y="1167.5" ></text>
</g>
<g >
<title>system_call_fastpath (25 samples, 0.49%)</title><rect x="1153.0" y="1269" width="5.8" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text x="1156.04" y="1279.5" ></text>
</g>
<g >
<title>java/util/HashMap:::newNode (1 samples, 0.02%)</title><rect x="633.3" y="565" width="0.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="636.29" y="575.5" ></text>
</g>
<g >
<title>org/apache/coyote/Request:::getContentType (5 samples, 0.10%)</title><rect x="128.2" y="981" width="1.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="131.23" y="991.5" ></text>
</g>
<g >
<title>CompressedReadStream::read_int_mb (1 samples, 0.02%)</title><rect x="58.7" y="453" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="61.67" y="463.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="983.8" y="949" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="986.84" y="959.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.06%)</title><rect x="629.2" y="389" width="0.6" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="632.16" y="399.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="890.6" y="549" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="893.64" y="559.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="322.9" y="325" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="325.91" y="335.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="835.1" y="517" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="838.08" y="527.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="64.4" y="261" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="67.41" y="271.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (2 samples, 0.04%)</title><rect x="38.0" y="965" width="0.5" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="41.01" y="975.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor55:::invoke (138 samples, 2.68%)</title><rect x="49.7" y="629" width="31.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="52.72" y="639.5" >su..</text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="514.6" y="309" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="517.60" y="319.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="142.2" y="965" width="0.3" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="145.23" y="975.5" ></text>
</g>
<g >
<title>try_to_wake_up (19 samples, 0.37%)</title><rect x="1139.5" y="1141" width="4.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1142.49" y="1151.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="947.6" y="565" width="0.2" height="15.0" fill="rgb(241,111,111)" rx="2" ry="2" />
<text x="950.57" y="575.5" ></text>
</g>
<g >
<title>skb_release_all (1 samples, 0.02%)</title><rect x="1168.4" y="1013" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="1171.42" y="1023.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/ProfilerHttpFilter:::doFilter (3,588 samples, 69.81%)</title><rect x="145.9" y="885" width="823.7" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="148.91" y="895.5" >com/coohua/caf/core/metrics/ProfilerHttpFilter:::doFilter</text>
</g>
<g >
<title>Method::line_number_from_bci (1 samples, 0.02%)</title><rect x="309.8" y="469" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="312.82" y="479.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="1152.4" y="1141" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1155.35" y="1151.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Neg:::match (3 samples, 0.06%)</title><rect x="467.8" y="517" width="0.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="470.77" y="527.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONScanner:::scanFieldString (5 samples, 0.10%)</title><rect x="330.7" y="533" width="1.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="333.71" y="543.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="282.3" y="613" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="285.27" y="623.5" ></text>
</g>
<g >
<title>longest_match (27 samples, 0.53%)</title><rect x="406.5" y="469" width="6.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="409.47" y="479.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/CglibAopProxy$DynamicAdvisedInterceptor:::intercept (5 samples, 0.10%)</title><rect x="648.2" y="549" width="1.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="651.21" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="250.8" y="581" width="0.3" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="253.82" y="591.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="656.0" y="549" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="659.02" y="559.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1182.4" y="1221" width="0.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1185.42" y="1231.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="914.3" y="389" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="917.28" y="399.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableCollection:::isEmpty (1 samples, 0.02%)</title><rect x="47.0" y="613" width="0.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="49.96" y="623.5" ></text>
</g>
<g >
<title>TypeInt::xmeet (1 samples, 0.02%)</title><rect x="32.7" y="1301" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text x="35.73" y="1311.5" ></text>
</g>
<g >
<title>java/util/Calendar:::createCalendar (1 samples, 0.02%)</title><rect x="44.9" y="629" width="0.2" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="47.89" y="639.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/RequestResponseBodyMethodProcessor:::supportsReturnType (12 samples, 0.23%)</title><rect x="303.9" y="645" width="2.7" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="306.85" y="655.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender$SenderMetrics:::updateProduceRequestMetrics (1 samples, 0.02%)</title><rect x="1069.5" y="1317" width="0.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1072.47" y="1327.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/DispatcherServlet:::doService (189 samples, 3.68%)</title><rect x="40.1" y="709" width="43.4" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="43.07" y="719.5" >org/..</text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="45.6" y="645" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="48.58" y="655.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="1144.1" y="1269" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1147.09" y="1279.5" ></text>
</g>
<g >
<title>csum_partial (1 samples, 0.02%)</title><rect x="1146.4" y="1077" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="1149.38" y="1087.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="965.2" y="421" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="968.25" y="431.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="449.2" y="325" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="452.17" y="335.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal:::set (1 samples, 0.02%)</title><rect x="901.9" y="565" width="0.2" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="904.89" y="575.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="117.0" y="1061" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="119.98" y="1071.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="488.9" y="197" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="491.89" y="207.5" ></text>
</g>
<g >
<title>org/apache/commons/pool2/impl/GenericObjectPool:::borrowObject (1 samples, 0.02%)</title><rect x="648.9" y="389" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="651.90" y="399.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="877.3" y="517" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="880.32" y="527.5" ></text>
</g>
<g >
<title>call_softirq (2 samples, 0.04%)</title><rect x="548.3" y="373" width="0.5" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="551.35" y="383.5" ></text>
</g>
<g >
<title>system_call_fastpath (18 samples, 0.35%)</title><rect x="1184.3" y="1285" width="4.1" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="1187.26" y="1295.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="890.6" y="421" width="0.3" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="893.64" y="431.5" ></text>
</g>
<g >
<title>org/springframework/web/cors/CorsUtils:::isPreFlightRequest (4 samples, 0.08%)</title><rect x="257.9" y="597" width="1.0" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="260.94" y="607.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1033.9" y="1189" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="1036.89" y="1199.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_pre (1 samples, 0.02%)</title><rect x="239.8" y="581" width="0.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="242.80" y="591.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (1 samples, 0.02%)</title><rect x="625.3" y="549" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="628.25" y="559.5" ></text>
</g>
<g >
<title>java/util/concurrent/ArrayBlockingQueue:::offer (3 samples, 0.06%)</title><rect x="894.1" y="437" width="0.7" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="897.08" y="447.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="962.0" y="677" width="0.3" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="965.04" y="687.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy8:::annotationType (1 samples, 0.02%)</title><rect x="306.4" y="597" width="0.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="309.38" y="607.5" ></text>
</g>
<g >
<title>java/util/HashMap:::afterNodeInsertion (1 samples, 0.02%)</title><rect x="645.9" y="453" width="0.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="648.91" y="463.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="698.5" y="517" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="701.49" y="527.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="193.7" y="661" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="196.66" y="671.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="180.6" y="245" width="0.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="183.57" y="255.5" ></text>
</g>
<g >
<title>org/springframework/web/accept/ContentNegotiationManager:::resolveMediaTypes (1 samples, 0.02%)</title><rect x="257.7" y="597" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="260.71" y="607.5" ></text>
</g>
<g >
<title>current_kernel_time (1 samples, 0.02%)</title><rect x="997.2" y="1061" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1000.16" y="1071.5" ></text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (8 samples, 0.16%)</title><rect x="965.5" y="741" width="1.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="968.48" y="751.5" ></text>
</g>
<g >
<title>inflate (3 samples, 0.06%)</title><rect x="878.9" y="549" width="0.7" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="881.93" y="559.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="1137.9" y="1061" width="0.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="1140.89" y="1071.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/LoggerContext:::getLogger (1 samples, 0.02%)</title><rect x="248.1" y="661" width="0.2" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="251.07" y="671.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (3 samples, 0.06%)</title><rect x="137.6" y="965" width="0.7" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="140.64" y="975.5" ></text>
</g>
<g >
<title>java/lang/Enum:::hashCode (1 samples, 0.02%)</title><rect x="262.8" y="581" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="265.76" y="591.5" ></text>
</g>
<g >
<title>__pthread_enable_asynccancel (1 samples, 0.02%)</title><rect x="1128.9" y="1269" width="0.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1131.93" y="1279.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="510.2" y="293" width="0.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="513.24" y="303.5" ></text>
</g>
<g >
<title>Java_java_lang_reflect_Array_get (1 samples, 0.02%)</title><rect x="218.0" y="581" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="220.99" y="591.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_pre (2 samples, 0.04%)</title><rect x="151.9" y="837" width="0.4" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text x="154.88" y="847.5" ></text>
</g>
<g >
<title>wake_futex (30 samples, 0.58%)</title><rect x="903.7" y="421" width="6.9" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="906.72" y="431.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="633.5" y="565" width="0.5" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="636.52" y="575.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="961.8" y="629" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="964.81" y="639.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="23.3" y="1269" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="26.32" y="1279.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/RequestContextFilter:::doFilterInternal (3,600 samples, 70.04%)</title><rect x="144.3" y="917" width="826.5" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text x="147.30" y="927.5" >org/springframework/web/filter/RequestContextFilter:::doFilterInternal</text>
</g>
<g >
<title>free (1 samples, 0.02%)</title><rect x="68.5" y="549" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="71.54" y="559.5" ></text>
</g>
<g >
<title>do_sync_write (25 samples, 0.49%)</title><rect x="1171.4" y="1173" width="5.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="1174.40" y="1183.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (8 samples, 0.16%)</title><rect x="99.3" y="1269" width="1.8" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="102.30" y="1279.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="514.4" y="229" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="517.37" y="239.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (3 samples, 0.06%)</title><rect x="158.5" y="709" width="0.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="161.53" y="719.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::getProviderInstance (1 samples, 0.02%)</title><rect x="242.6" y="645" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="245.56" y="655.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater:::inflateBytes (2 samples, 0.04%)</title><rect x="679.4" y="581" width="0.5" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="682.43" y="591.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.isra.7 (3 samples, 0.06%)</title><rect x="1184.5" y="1237" width="0.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1187.49" y="1247.5" ></text>
</g>
<g >
<title>G1CollectedHeap::can_elide_initializing_store_barrier (1 samples, 0.02%)</title><rect x="363.1" y="501" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="366.08" y="511.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="911.3" y="501" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="914.30" y="511.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (1 samples, 0.02%)</title><rect x="89.7" y="1269" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="92.66" y="1279.5" ></text>
</g>
<g >
<title>__sb_start_write (1 samples, 0.02%)</title><rect x="1171.2" y="1173" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1174.18" y="1183.5" ></text>
</g>
<g >
<title>sched_clock (1 samples, 0.02%)</title><rect x="1119.3" y="1013" width="0.2" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="1122.29" y="1023.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="678.1" y="565" width="0.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="681.05" y="575.5" ></text>
</g>
<g >
<title>inflate (219 samples, 4.26%)</title><rect x="729.2" y="533" width="50.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="732.25" y="543.5" >inflate</text>
</g>
<g >
<title>com/coohua/caf/core/sentinel/SentinelHttpFilter:::doFilter (1 samples, 0.02%)</title><rect x="151.2" y="869" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="154.19" y="879.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method:::invoke (2,644 samples, 51.44%)</title><rect x="308.4" y="645" width="607.0" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="311.44" y="655.5" >java/lang/reflect/Method:::invoke</text>
</g>
<g >
<title>do_futex (4 samples, 0.08%)</title><rect x="35.3" y="1173" width="0.9" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="38.25" y="1183.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="961.8" y="693" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="964.81" y="703.5" ></text>
</g>
<g >
<title>CompressedReadStream::read_signed_int (2 samples, 0.04%)</title><rect x="61.7" y="453" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text x="64.65" y="463.5" ></text>
</g>
<g >
<title>java/util/HashMap:::newNode (1 samples, 0.02%)</title><rect x="645.0" y="565" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="648.00" y="575.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::subParse (1 samples, 0.02%)</title><rect x="650.3" y="533" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="653.28" y="543.5" ></text>
</g>
<g >
<title>java/security/Provider$ServiceKey:::equals (2 samples, 0.04%)</title><rect x="182.9" y="565" width="0.4" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="185.87" y="575.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (1 samples, 0.02%)</title><rect x="1121.8" y="1253" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1124.82" y="1263.5" ></text>
</g>
<g >
<title>wake_futex (1 samples, 0.02%)</title><rect x="101.6" y="1173" width="0.2" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="104.60" y="1183.5" ></text>
</g>
<g >
<title>java_lang_Throwable::get_stack_trace_element (27 samples, 0.53%)</title><rect x="59.1" y="501" width="6.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text x="62.13" y="511.5" ></text>
</g>
<g >
<title>__schedule (10 samples, 0.19%)</title><rect x="1156.5" y="1173" width="2.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1159.48" y="1183.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/requests/ProduceRequest:::&lt;init&gt; (2 samples, 0.04%)</title><rect x="1101.4" y="1237" width="0.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1104.39" y="1247.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/base/LeapArray:::currentWindow (2 samples, 0.04%)</title><rect x="246.2" y="549" width="0.5" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="249.23" y="559.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="466.6" y="501" width="0.2" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text x="469.62" y="511.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1100.2" y="1189" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1103.24" y="1199.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (3 samples, 0.06%)</title><rect x="639.3" y="565" width="0.6" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="642.26" y="575.5" ></text>
</g>
<g >
<title>ConcurrentG1RefineThread::run_young_rs_sampling (3 samples, 0.06%)</title><rect x="17.8" y="1461" width="0.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="20.81" y="1471.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11OutputBuffer:::end (88 samples, 1.71%)</title><rect x="988.0" y="1205" width="20.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="990.98" y="1215.5" ></text>
</g>
<g >
<title>do_sync_read (4 samples, 0.08%)</title><rect x="1112.9" y="1157" width="0.9" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="1115.86" y="1167.5" ></text>
</g>
<g >
<title>JavaThread::thread_from_jni_environment (2 samples, 0.04%)</title><rect x="71.8" y="533" width="0.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text x="74.75" y="543.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::parse (2 samples, 0.04%)</title><rect x="66.9" y="581" width="0.5" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="69.93" y="591.5" ></text>
</g>
<g >
<title>InstanceKlass::mask_for (1 samples, 0.02%)</title><rect x="21.5" y="1349" width="0.2" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text x="24.48" y="1359.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1152.4" y="1237" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1155.35" y="1247.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy49:::annotationType (1 samples, 0.02%)</title><rect x="204.7" y="645" width="0.2" height="15.0" fill="rgb(51,200,51)" rx="2" ry="2" />
<text x="207.68" y="655.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/HttpHeadersReturnValueHandler:::supportsReturnType (1 samples, 0.02%)</title><rect x="938.8" y="661" width="0.3" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="941.85" y="671.5" ></text>
</g>
<g >
<title>inflate_table (2 samples, 0.04%)</title><rect x="75.0" y="517" width="0.4" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="77.97" y="527.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="510.2" y="341" width="0.3" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="513.24" y="351.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="910.4" y="341" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="913.38" y="351.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="965.2" y="725" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="968.25" y="735.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/MeterRegistry:::registerMeterIfNecessary (6 samples, 0.12%)</title><rect x="974.7" y="1029" width="1.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="977.66" y="1039.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="651.4" y="405" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="654.42" y="415.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="117.2" y="997" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="120.21" y="1007.5" ></text>
</g>
<g >
<title>G1ParScanThreadState::copy_to_survivor_space (1 samples, 0.02%)</title><rect x="19.0" y="1429" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="21.95" y="1439.5" ></text>
</g>
<g >
<title>OptoRuntime::multianewarray2_C (10 samples, 0.19%)</title><rect x="168.9" y="549" width="2.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="171.86" y="559.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/Cluster:::leaderFor (5 samples, 0.10%)</title><rect x="1086.9" y="1285" width="1.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1089.92" y="1295.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="910.4" y="373" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="913.38" y="383.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="911.3" y="485" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="914.30" y="495.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="261.2" y="533" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="264.15" y="543.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/PatternsRequestCondition:::getMatchingPatterns (55 samples, 1.07%)</title><rect x="265.1" y="613" width="12.6" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="268.05" y="623.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (4 samples, 0.08%)</title><rect x="414.3" y="533" width="0.9" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="417.28" y="543.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::parse (5 samples, 0.10%)</title><rect x="654.2" y="581" width="1.1" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="657.18" y="591.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_nozero_C (1 samples, 0.02%)</title><rect x="364.2" y="517" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="367.23" y="527.5" ></text>
</g>
<g >
<title>call_softirq (2 samples, 0.04%)</title><rect x="891.1" y="517" width="0.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="894.10" y="527.5" ></text>
</g>
<g >
<title>vfs_write (24 samples, 0.47%)</title><rect x="990.0" y="1093" width="5.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="993.04" y="1103.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="890.6" y="405" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="893.64" y="415.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_post (2 samples, 0.04%)</title><rect x="285.7" y="581" width="0.5" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text x="288.72" y="591.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="623.4" y="437" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="626.42" y="447.5" ></text>
</g>
<g >
<title>com/google/gson/internal/bind/MapTypeAdapterFactory$Adapter:::write (1 samples, 0.02%)</title><rect x="44.2" y="613" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="47.21" y="623.5" ></text>
</g>
<g >
<title>__do_softirq (2 samples, 0.04%)</title><rect x="412.2" y="373" width="0.5" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="415.21" y="383.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/ModelFactory:::initModel (1 samples, 0.02%)</title><rect x="209.7" y="677" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="212.73" y="687.5" ></text>
</g>
<g >
<title>redis/clients/jedis/Protocol:::process (1 samples, 0.02%)</title><rect x="651.4" y="549" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text x="654.42" y="559.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/Selector:::addToCompletedReceives (5 samples, 0.10%)</title><rect x="1105.5" y="1301" width="1.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1108.52" y="1311.5" ></text>
</g>
<g >
<title>fill_window (3 samples, 0.06%)</title><rect x="405.8" y="469" width="0.7" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="408.78" y="479.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::getProviderInstance (2 samples, 0.04%)</title><rect x="230.8" y="629" width="0.5" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="233.85" y="639.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap:::size (1 samples, 0.02%)</title><rect x="195.5" y="661" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="198.49" y="671.5" ></text>
</g>
<g >
<title>frame::sender (1 samples, 0.02%)</title><rect x="213.6" y="581" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text x="216.63" y="591.5" ></text>
</g>
<g >
<title>TypeArrayKlass::allocate_common (1 samples, 0.02%)</title><rect x="169.6" y="517" width="0.2" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text x="172.55" y="527.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/service/impl/AdDataServiceImpl:::ecpProcess (4 samples, 0.08%)</title><rect x="66.5" y="597" width="0.9" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="69.47" y="607.5" ></text>
</g>
<g >
<title>UTF8::unicode_length (3 samples, 0.06%)</title><rect x="617.7" y="469" width="0.7" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="620.68" y="479.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (1 samples, 0.02%)</title><rect x="221.2" y="533" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="224.21" y="543.5" ></text>
</g>
<g >
<title>pipe_read (1 samples, 0.02%)</title><rect x="1188.6" y="1237" width="0.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1191.62" y="1247.5" ></text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="39.8" y="789" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="42.84" y="799.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="1137.9" y="1189" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1140.89" y="1199.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.02%)</title><rect x="1048.8" y="1189" width="0.2" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="1051.81" y="1199.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (4 samples, 0.08%)</title><rect x="968.2" y="869" width="1.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="971.23" y="879.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (1 samples, 0.02%)</title><rect x="1159.0" y="1301" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1162.01" y="1311.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/domain/AdDataDomain:::getAdId (1 samples, 0.02%)</title><rect x="644.8" y="581" width="0.2" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="647.77" y="591.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="1036.6" y="1253" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1039.65" y="1263.5" ></text>
</g>
<g >
<title>security_file_permission (2 samples, 0.04%)</title><rect x="1022.6" y="1093" width="0.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="1025.64" y="1103.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getPathWithinServletMapping (2 samples, 0.04%)</title><rect x="251.3" y="645" width="0.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="254.28" y="655.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.02%)</title><rect x="482.0" y="501" width="0.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="485.00" y="511.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="560.7" y="229" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="563.74" y="239.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.02%)</title><rect x="44.7" y="597" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="47.67" y="607.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/AbstractMediaTypeExpression:::hashCode (3 samples, 0.06%)</title><rect x="261.4" y="565" width="0.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="264.38" y="575.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy109:::annotationType (1 samples, 0.02%)</title><rect x="296.7" y="629" width="0.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="299.74" y="639.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="334.4" y="501" width="0.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="337.39" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor51:::invoke (1 samples, 0.02%)</title><rect x="922.3" y="549" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="925.32" y="559.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::addEvent (1 samples, 0.02%)</title><rect x="310.3" y="597" width="0.2" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="313.28" y="607.5" ></text>
</g>
<g >
<title>JavaCallWrapper::~JavaCallWrapper (1 samples, 0.02%)</title><rect x="414.3" y="485" width="0.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="417.28" y="495.5" ></text>
</g>
<g >
<title>rb_erase (1 samples, 0.02%)</title><rect x="1150.3" y="1221" width="0.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="1153.28" y="1231.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.04%)</title><rect x="468.0" y="469" width="0.5" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="471.00" y="479.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="334.4" y="405" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="337.39" y="415.5" ></text>
</g>
<g >
<title>G1SATBCardTableModRefBS::write_ref_array_pre (1 samples, 0.02%)</title><rect x="152.3" y="837" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="155.33" y="847.5" ></text>
</g>
<g >
<title>I2C/C2I adapters (1 samples, 0.02%)</title><rect x="49.7" y="581" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="52.72" y="591.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="914.3" y="501" width="0.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="917.28" y="511.5" ></text>
</g>
<g >
<title>[libc-2.17.so] (27 samples, 0.53%)</title><rect x="1152.6" y="1285" width="6.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1155.58" y="1295.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (25 samples, 0.49%)</title><rect x="1025.2" y="1221" width="5.7" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="1028.17" y="1231.5" ></text>
</g>
<g >
<title>Interpreter (4,470 samples, 86.96%)</title><rect x="33.9" y="1349" width="1026.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="36.88" y="1359.5" >Interpreter</text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="1062.8" y="1317" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="1065.82" y="1327.5" ></text>
</g>
<g >
<title>sun/nio/ch/SelectorImpl:::lockAndDoSelect (6 samples, 0.12%)</title><rect x="1120.7" y="1301" width="1.3" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1123.67" y="1311.5" ></text>
</g>
<g >
<title>__irqentry_text_start (2 samples, 0.04%)</title><rect x="891.1" y="565" width="0.5" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="894.10" y="575.5" ></text>
</g>
<g >
<title>jni_fast_GetBooleanField (1 samples, 0.02%)</title><rect x="413.8" y="517" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="416.82" y="527.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="944.4" y="533" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="947.36" y="543.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::getEntryAfterMiss (1 samples, 0.02%)</title><rect x="678.3" y="581" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="681.28" y="591.5" ></text>
</g>
<g >
<title>StringTable::intern (128 samples, 2.49%)</title><rect x="563.3" y="453" width="29.4" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="566.27" y="463.5" >St..</text>
</g>
<g >
<title>JVM_GetArrayElement (2 samples, 0.04%)</title><rect x="225.8" y="565" width="0.5" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="228.80" y="575.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Inflater_end (1 samples, 0.02%)</title><rect x="679.2" y="565" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="682.20" y="575.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.02%)</title><rect x="631.0" y="549" width="0.2" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="633.99" y="559.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/KafkaProducer:::waitOnMetadata (2 samples, 0.04%)</title><rect x="1036.9" y="1253" width="0.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="1039.88" y="1263.5" ></text>
</g>
<g >
<title>__skb_to_sgvec (1 samples, 0.02%)</title><rect x="15.3" y="1173" width="0.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="18.28" y="1183.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="947.6" y="389" width="0.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="950.57" y="399.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="64.4" y="373" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="67.41" y="383.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/impl/Log4jLogEvent:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="646.8" y="517" width="0.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="649.83" y="527.5" ></text>
</g>
<g >
<title>fsnotify (2 samples, 0.04%)</title><rect x="1007.3" y="1045" width="0.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="1010.26" y="1055.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.02%)</title><rect x="1075.7" y="1077" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1078.67" y="1087.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdDataManager:::incrUserDayClickLimit (6 samples, 0.12%)</title><rect x="648.0" y="565" width="1.4" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="650.98" y="575.5" ></text>
</g>
<g >
<title>__skb_checksum (1 samples, 0.02%)</title><rect x="1146.4" y="1109" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1149.38" y="1119.5" ></text>
</g>
<g >
<title>G1CollectedHeap::attempt_allocation_slow (1 samples, 0.02%)</title><rect x="221.2" y="469" width="0.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text x="224.21" y="479.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="961.8" y="677" width="0.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="964.81" y="687.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Deflater_deflateBytes (1 samples, 0.02%)</title><rect x="54.8" y="517" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="57.77" y="527.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="835.3" y="453" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="838.31" y="463.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.25 (1 samples, 0.02%)</title><rect x="1125.5" y="1141" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1128.49" y="1151.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerAdapter:::invokeHandlerMethod (153 samples, 2.98%)</title><rect x="48.3" y="677" width="35.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="51.34" y="687.5" >or..</text>
</g>
<g >
<title>org/springframework/web/method/support/InvocableHandlerMethod:::invokeForRequest (2,706 samples, 52.65%)</title><rect x="308.0" y="661" width="621.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="310.98" y="671.5" >org/springframework/web/method/support/InvocableHandlerMethod:::invokeForRequest</text>
</g>
<g >
<title>skb_release_head_state (1 samples, 0.02%)</title><rect x="1118.8" y="821" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1121.83" y="831.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Neg:::match (2 samples, 0.04%)</title><rect x="57.3" y="517" width="0.5" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="60.29" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="35.3" y="1109" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="38.25" y="1119.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (2 samples, 0.04%)</title><rect x="448.9" y="405" width="0.5" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="451.94" y="415.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ObjectMapper:::_configAndWriteValue (1 samples, 0.02%)</title><rect x="53.2" y="533" width="0.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="56.16" y="543.5" ></text>
</g>
<g >
<title>auditsys (1 samples, 0.02%)</title><rect x="1019.4" y="1157" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="1022.43" y="1167.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (7 samples, 0.14%)</title><rect x="106.6" y="1253" width="1.7" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="109.65" y="1263.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="698.5" y="485" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="701.49" y="495.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="322.9" y="517" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="325.91" y="527.5" ></text>
</g>
<g >
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="651.4" y="341" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="654.42" y="351.5" ></text>
</g>
<g >
<title>inet_sendmsg (1 samples, 0.02%)</title><rect x="998.5" y="1029" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="1001.54" y="1039.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="632.4" y="565" width="0.2" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="635.37" y="575.5" ></text>
</g>
<g >
<title>system_call_fastpath (24 samples, 0.47%)</title><rect x="93.3" y="1205" width="5.5" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="96.33" y="1215.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy8:::annotationType (2 samples, 0.04%)</title><rect x="299.0" y="613" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="302.03" y="623.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::getLibProperties (4 samples, 0.08%)</title><rect x="309.1" y="565" width="1.0" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="312.13" y="575.5" ></text>
</g>
<g >
<title>redis/clients/jedis/Connection:::getStatusCodeReply (1 samples, 0.02%)</title><rect x="649.6" y="389" width="0.2" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text x="652.59" y="399.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="382.1" y="533" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="385.14" y="543.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.02%)</title><rect x="196.0" y="645" width="0.2" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="198.95" y="655.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/controller/AdDataController:::process (2,634 samples, 51.25%)</title><rect x="310.7" y="613" width="604.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="313.74" y="623.5" >com/coohua/ad/data/controller/AdDataController:::process</text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="207.7" y="629" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="210.66" y="639.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/DefaultJSONParser:::getResolveStatus (1 samples, 0.02%)</title><rect x="353.4" y="581" width="0.3" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="356.44" y="591.5" ></text>
</g>
<g >
<title>__mnt_want_write_file (1 samples, 0.02%)</title><rect x="1030.4" y="1109" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="1033.45" y="1119.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/util/TimeUtil$1:::run (13 samples, 0.25%)</title><rect x="1060.1" y="1349" width="2.9" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="1063.06" y="1359.5" ></text>
</g>
<g >
<title>frame::sender (1 samples, 0.02%)</title><rect x="499.7" y="469" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text x="502.68" y="479.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="890.6" y="453" width="0.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="893.64" y="463.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="322.9" y="549" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="325.91" y="559.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="34.8" y="1189" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="37.79" y="1199.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="510.2" y="437" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="513.24" y="447.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="832.6" y="421" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="835.56" y="431.5" ></text>
</g>
<g >
<title>org/springframework/web/context/request/ServletWebRequest:::getHeaderValues (1 samples, 0.02%)</title><rect x="934.7" y="629" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="937.72" y="639.5" ></text>
</g>
<g >
<title>run_timer_softirq (1 samples, 0.02%)</title><rect x="858.7" y="405" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="861.73" y="415.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (1 samples, 0.02%)</title><rect x="334.4" y="325" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="337.39" y="335.5" ></text>
</g>
<g >
<title>wake_up_state (1 samples, 0.02%)</title><rect x="894.5" y="293" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="897.54" y="303.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getLocale (3 samples, 0.06%)</title><rect x="145.2" y="901" width="0.7" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="148.22" y="911.5" ></text>
</g>
<g >
<title>system_call_fastpath (19 samples, 0.37%)</title><rect x="1054.3" y="1237" width="4.4" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="1057.32" y="1247.5" ></text>
</g>
<g >
<title>redis/clients/jedis/JedisSlotBasedConnectionHandler:::getConnectionFromSlot (1 samples, 0.02%)</title><rect x="648.9" y="405" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="651.90" y="415.5" ></text>
</g>
<g >
<title>skb_release_data (1 samples, 0.02%)</title><rect x="1168.4" y="997" width="0.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1171.42" y="1007.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (5 samples, 0.10%)</title><rect x="260.9" y="581" width="1.2" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="263.92" y="591.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="629.8" y="469" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="632.84" y="479.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/InFlightRequests:::nodesWithTimedOutRequests (1 samples, 0.02%)</title><rect x="1063.0" y="1333" width="0.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1066.05" y="1343.5" ></text>
</g>
<g >
<title>Method::line_number_from_bci (49 samples, 0.95%)</title><rect x="549.7" y="469" width="11.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="552.72" y="479.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal:::set (1 samples, 0.02%)</title><rect x="187.5" y="661" width="0.2" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="190.46" y="671.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::initialize (1 samples, 0.02%)</title><rect x="648.0" y="549" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="650.98" y="559.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (3 samples, 0.06%)</title><rect x="1021.0" y="1013" width="0.7" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1024.04" y="1023.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.04%)</title><rect x="80.7" y="501" width="0.5" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="83.71" y="511.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.02%)</title><rect x="206.7" y="629" width="0.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="209.74" y="639.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="835.1" y="501" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="838.08" y="511.5" ></text>
</g>
<g >
<title>CompressedReadStream::read_signed_int (2 samples, 0.04%)</title><rect x="560.3" y="453" width="0.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="563.28" y="463.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::canSendRequest (1 samples, 0.02%)</title><rect x="1078.7" y="1301" width="0.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1081.66" y="1311.5" ></text>
</g>
<g >
<title>sys_read (1 samples, 0.02%)</title><rect x="1188.6" y="1285" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1191.62" y="1295.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="647.1" y="341" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="650.06" y="351.5" ></text>
</g>
<g >
<title>JVM_IsThreadAlive (1 samples, 0.02%)</title><rect x="1036.2" y="1237" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1039.19" y="1247.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="263.9" y="549" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="266.91" y="559.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="532.3" y="389" width="0.2" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="535.28" y="399.5" ></text>
</g>
<g >
<title>CompileBroker::compiler_thread_loop (48 samples, 0.93%)</title><rect x="22.9" y="1445" width="11.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text x="25.86" y="1455.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.02%)</title><rect x="123.4" y="1109" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="126.41" y="1119.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="206.5" y="645" width="0.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="209.51" y="655.5" ></text>
</g>
<g >
<title>java_lang_Throwable::get_stack_trace_element (444 samples, 8.64%)</title><rect x="521.7" y="501" width="101.9" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text x="524.72" y="511.5" >java_lang_Th..</text>
</g>
<g >
<title>__dev_queue_xmit (1 samples, 0.02%)</title><rect x="14.8" y="1269" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="17.82" y="1279.5" ></text>
</g>
<g >
<title>G1CollectorPolicy::add_region_to_incremental_cset_lhs (1 samples, 0.02%)</title><rect x="950.3" y="597" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="953.33" y="607.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (3 samples, 0.06%)</title><rect x="979.3" y="1029" width="0.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="982.25" y="1039.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="884.4" y="469" width="0.3" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="887.44" y="479.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="1148.2" y="1189" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1151.22" y="1199.5" ></text>
</g>
<g >
<title>I2C/C2I adapters (1 samples, 0.02%)</title><rect x="312.6" y="581" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="315.58" y="591.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="608.5" y="421" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="611.49" y="431.5" ></text>
</g>
<g >
<title>DebugInformationRecorder::dump_object_pool (1 samples, 0.02%)</title><rect x="22.9" y="1333" width="0.2" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="25.86" y="1343.5" ></text>
</g>
<g >
<title>G1CollectedHeap::allocate_new_tlab (1 samples, 0.02%)</title><rect x="966.2" y="661" width="0.2" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text x="969.17" y="671.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (18 samples, 0.35%)</title><rect x="990.5" y="1045" width="4.1" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="993.50" y="1055.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_nozero_C (1 samples, 0.02%)</title><rect x="221.2" y="517" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="224.21" y="527.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_post (2 samples, 0.04%)</title><rect x="977.9" y="1029" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="980.88" y="1039.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="180.6" y="293" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="183.57" y="303.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (8 samples, 0.16%)</title><rect x="762.1" y="517" width="1.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="765.08" y="527.5" ></text>
</g>
<g >
<title>jni_ExceptionOccurred (1 samples, 0.02%)</title><rect x="1178.8" y="1237" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="1181.75" y="1247.5" ></text>
</g>
<g >
<title>PhaseIdealLoop::build_loop_early (3 samples, 0.06%)</title><rect x="30.0" y="1349" width="0.7" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text x="32.97" y="1359.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="117.2" y="1141" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="120.21" y="1151.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="877.3" y="485" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="880.32" y="495.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="207.7" y="613" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="210.66" y="623.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.isra.7 (1 samples, 0.02%)</title><rect x="1121.8" y="1189" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1124.82" y="1199.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="901.7" y="485" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="904.66" y="495.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="938.2" y="485" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="941.16" y="495.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="987.1" y="1141" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="990.06" y="1151.5" ></text>
</g>
<g >
<title>Parse::do_one_block (1 samples, 0.02%)</title><rect x="33.4" y="1333" width="0.2" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="36.42" y="1343.5" ></text>
</g>
<g >
<title>tcp_fin (1 samples, 0.02%)</title><rect x="1182.4" y="1029" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1185.42" y="1039.5" ></text>
</g>
<g >
<title>org/springframework/web/method/support/HandlerMethodReturnValueHandlerComposite:::selectHandler (50 samples, 0.97%)</title><rect x="295.4" y="661" width="11.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="298.36" y="671.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (8 samples, 0.16%)</title><rect x="636.3" y="549" width="1.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="639.27" y="559.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (1 samples, 0.02%)</title><rect x="280.2" y="613" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="283.21" y="623.5" ></text>
</g>
<g >
<title>java/util/regex/Matcher:::replaceAll (1 samples, 0.02%)</title><rect x="352.5" y="533" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="355.52" y="543.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="898.9" y="597" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="901.90" y="607.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (1 samples, 0.02%)</title><rect x="91.5" y="1221" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="94.50" y="1231.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1182.4" y="1317" width="0.3" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text x="1185.42" y="1327.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/LoggerContext:::getLogger (1 samples, 0.02%)</title><rect x="252.0" y="645" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="254.97" y="655.5" ></text>
</g>
<g >
<title>__block_commit_write.isra.19 (1 samples, 0.02%)</title><rect x="1176.5" y="1045" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1179.46" y="1055.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="913.8" y="549" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="916.82" y="559.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="1137.9" y="1109" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1140.89" y="1119.5" ></text>
</g>
<g >
<title>Dict::Insert (1 samples, 0.02%)</title><rect x="31.8" y="1285" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="34.81" y="1295.5" ></text>
</g>
<g >
<title>G1SATBCardTableModRefBS::enqueue (1 samples, 0.02%)</title><rect x="583.5" y="437" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="586.47" y="447.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/domain/AdDataDomain:::setAnonymous (1 samples, 0.02%)</title><rect x="353.0" y="565" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="355.98" y="575.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="381.2" y="421" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="384.22" y="431.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/threads/ThreadPoolExecutor:::currentThreadShouldBeStopped (1 samples, 0.02%)</title><rect x="1030.9" y="1301" width="0.2" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="1033.91" y="1311.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="117.0" y="1141" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="119.98" y="1151.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (3 samples, 0.06%)</title><rect x="627.5" y="533" width="0.7" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="630.55" y="543.5" ></text>
</g>
<g >
<title>org/springframework/util/LinkedCaseInsensitiveMap:::hashCode (1 samples, 0.02%)</title><rect x="261.8" y="549" width="0.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="264.84" y="559.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.02%)</title><rect x="57.3" y="501" width="0.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="60.29" y="511.5" ></text>
</g>
<g >
<title>fdval (1 samples, 0.02%)</title><rect x="87.6" y="1109" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="90.60" y="1119.5" ></text>
</g>
<g >
<title>IndexSet::IndexSet (1 samples, 0.02%)</title><rect x="26.1" y="1333" width="0.2" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="29.07" y="1343.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:::writeEndObject (1 samples, 0.02%)</title><rect x="366.5" y="501" width="0.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="369.53" y="511.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="37.1" y="1077" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="40.09" y="1087.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (9 samples, 0.18%)</title><rect x="1041.7" y="1125" width="2.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1044.70" y="1135.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (4 samples, 0.08%)</title><rect x="58.0" y="517" width="0.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="60.98" y="527.5" ></text>
</g>
<g >
<title>java/lang/Class:::getConstructor0 (1 samples, 0.02%)</title><rect x="171.4" y="613" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="174.39" y="623.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService$ConverterCacheKey:::equals (1 samples, 0.02%)</title><rect x="81.4" y="597" width="0.2" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text x="84.40" y="607.5" ></text>
</g>
<g >
<title>sys_sendto (6 samples, 0.12%)</title><rect x="14.4" y="1477" width="1.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="17.36" y="1487.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeTime (1 samples, 0.02%)</title><rect x="650.0" y="533" width="0.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="653.05" y="543.5" ></text>
</g>
<g >
<title>rw_verify_area (1 samples, 0.02%)</title><rect x="1119.8" y="1157" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1122.75" y="1167.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1075.2" y="1157" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1078.21" y="1167.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/context/ContextUtil:::trueEnter (2 samples, 0.04%)</title><rect x="188.8" y="645" width="0.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="191.84" y="655.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="890.6" y="437" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="893.64" y="447.5" ></text>
</g>
<g >
<title>TypeArrayKlass::allocate_common (1 samples, 0.02%)</title><rect x="510.0" y="421" width="0.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text x="513.01" y="431.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::postParseRequest (1 samples, 0.02%)</title><rect x="36.6" y="1221" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="39.63" y="1231.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::add (1 samples, 0.02%)</title><rect x="1100.0" y="1237" width="0.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="1103.01" y="1247.5" ></text>
</g>
<g >
<title>__GI___libc_poll (1 samples, 0.02%)</title><rect x="647.8" y="309" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="650.75" y="319.5" ></text>
</g>
<g >
<title>CodeBlob::is_zombie (1 samples, 0.02%)</title><rect x="1072.5" y="1189" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="1075.46" y="1199.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="947.6" y="517" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="950.57" y="527.5" ></text>
</g>
<g >
<title>deflate_slow (1 samples, 0.02%)</title><rect x="54.8" y="485" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="57.77" y="495.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="640.2" y="565" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="643.18" y="575.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="101.4" y="1237" width="0.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="104.37" y="1247.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="592.4" y="341" width="0.3" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="595.42" y="351.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="234.8" y="389" width="0.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="237.75" y="399.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="374.8" y="421" width="0.2" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text x="377.79" y="431.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="1048.8" y="1061" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1051.81" y="1071.5" ></text>
</g>
<g >
<title>org/springframework/context/i18n/LocaleContextHolder:::setLocale (4 samples, 0.08%)</title><rect x="969.8" y="901" width="1.0" height="15.0" fill="rgb(84,232,84)" rx="2" ry="2" />
<text x="972.84" y="911.5" ></text>
</g>
<g >
<title>PhaseIdealLoop::get_early_ctrl (1 samples, 0.02%)</title><rect x="30.4" y="1333" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="33.43" y="1343.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl:::write (4 samples, 0.08%)</title><rect x="86.9" y="1157" width="0.9" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="89.91" y="1167.5" ></text>
</g>
<g >
<title>PhaseCFG::do_global_code_motion (1 samples, 0.02%)</title><rect x="23.8" y="1365" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="26.77" y="1375.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="949.2" y="757" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="952.18" y="767.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/DefaultJSONParser:::parse (1 samples, 0.02%)</title><rect x="334.6" y="517" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="337.61" y="527.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="608.5" y="325" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="611.49" y="335.5" ></text>
</g>
<g >
<title>oopDesc::obj_field_put (1 samples, 0.02%)</title><rect x="515.7" y="469" width="0.3" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="518.75" y="479.5" ></text>
</g>
<g >
<title>java/util/Calendar:::createCalendar (5 samples, 0.10%)</title><rect x="236.1" y="629" width="1.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="239.13" y="639.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="381.2" y="469" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="384.22" y="479.5" ></text>
</g>
<g >
<title>java_start (5,106 samples, 99.34%)</title><rect x="17.8" y="1493" width="1172.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="20.81" y="1503.5" >java_start</text>
</g>
<g >
<title>InstanceRefKlass::oop_oop_iterate_nv (1 samples, 0.02%)</title><rect x="22.6" y="1333" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="25.63" y="1343.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ObjectMapper:::_configAndWriteValue (1 samples, 0.02%)</title><rect x="363.3" y="549" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="366.31" y="559.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (21 samples, 0.41%)</title><rect x="388.3" y="517" width="4.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="391.33" y="527.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor95:::invoke (1 samples, 0.02%)</title><rect x="347.7" y="517" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="350.70" y="527.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$NioSocketWrapper:::doWrite (86 samples, 1.67%)</title><rect x="988.4" y="1189" width="19.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="991.44" y="1199.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="92.6" y="1109" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="95.65" y="1119.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy77:::annotationType (1 samples, 0.02%)</title><rect x="204.9" y="645" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="207.91" y="655.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="1137.9" y="1157" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1140.89" y="1167.5" ></text>
</g>
<g >
<title>AbsSeq::davg (1 samples, 0.02%)</title><rect x="221.2" y="421" width="0.2" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text x="224.21" y="431.5" ></text>
</g>
<g >
<title>JVM_GetStackTraceElement (1 samples, 0.02%)</title><rect x="516.9" y="533" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="519.89" y="543.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/FrameworkServlet:::processRequest (192 samples, 3.74%)</title><rect x="40.1" y="725" width="44.1" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="43.07" y="735.5" >org/..</text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer$$Lambda$656/561830191:::test (1 samples, 0.02%)</title><rect x="957.9" y="677" width="0.2" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="960.90" y="687.5" ></text>
</g>
<g >
<title>java/lang/ref/Finalizer:::register (1 samples, 0.02%)</title><rect x="415.0" y="453" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="417.96" y="463.5" ></text>
</g>
<g >
<title>java/util/HashSet:::isEmpty (1 samples, 0.02%)</title><rect x="1103.2" y="1301" width="0.3" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="1106.22" y="1311.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="117.2" y="1013" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="120.21" y="1023.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (2 samples, 0.04%)</title><rect x="253.1" y="629" width="0.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="256.12" y="639.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (11 samples, 0.21%)</title><rect x="1125.5" y="1189" width="2.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1128.49" y="1199.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="294.4" y="581" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="297.44" y="591.5" ></text>
</g>
<g >
<title>mod_timer (1 samples, 0.02%)</title><rect x="1001.1" y="901" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1004.06" y="911.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="1146.2" y="1333" width="0.2" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text x="1149.15" y="1343.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat:::setMin (2 samples, 0.04%)</title><rect x="150.7" y="869" width="0.5" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="153.73" y="879.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::parseSessionSslId (1 samples, 0.02%)</title><rect x="114.9" y="1205" width="0.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="117.91" y="1215.5" ></text>
</g>
<g >
<title>thread_entry (5,032 samples, 97.90%)</title><rect x="33.9" y="1445" width="1155.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="36.88" y="1455.5" >thread_entry</text>
</g>
<g >
<title>com/google/gson/stream/JsonWriter:::close (1 samples, 0.02%)</title><rect x="226.5" y="597" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="229.49" y="607.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (1 samples, 0.02%)</title><rect x="1146.4" y="1157" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1149.38" y="1167.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (8 samples, 0.16%)</title><rect x="99.3" y="1253" width="1.8" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="102.30" y="1263.5" ></text>
</g>
<g >
<title>netdev_pick_tx (1 samples, 0.02%)</title><rect x="1118.1" y="933" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1121.14" y="943.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (1 samples, 0.02%)</title><rect x="997.2" y="1077" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1000.16" y="1087.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Ctype:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="489.1" y="453" width="0.2" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="492.12" y="463.5" ></text>
</g>
<g >
<title>Java_sun_nio_ch_EPollArrayWrapper_epollWait (1 samples, 0.02%)</title><rect x="1152.4" y="1285" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1155.35" y="1295.5" ></text>
</g>
<g >
<title>ep_send_events_proc (1 samples, 0.02%)</title><rect x="1121.8" y="1173" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1124.82" y="1183.5" ></text>
</g>
<g >
<title>getnstimeofday64 (1 samples, 0.02%)</title><rect x="1002.7" y="773" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1005.67" y="783.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="1137.9" y="1029" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1140.89" y="1039.5" ></text>
</g>
<g >
<title>pthread_getspecific (4 samples, 0.08%)</title><rect x="623.6" y="501" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="626.65" y="511.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1075.2" y="1205" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1078.21" y="1215.5" ></text>
</g>
<g >
<title>_tr_flush_block (7 samples, 0.14%)</title><rect x="55.2" y="469" width="1.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="58.23" y="479.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="155.3" y="709" width="0.2" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text x="158.32" y="719.5" ></text>
</g>
<g >
<title>org/springframework/util/AntPathMatcher:::doMatch (10 samples, 0.19%)</title><rect x="248.8" y="645" width="2.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="251.75" y="655.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getPathWithinApplication (4 samples, 0.08%)</title><rect x="287.1" y="629" width="0.9" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="290.09" y="639.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/CharacterEncodingFilter:::doFilterInternal (3,756 samples, 73.07%)</title><rect x="123.2" y="1125" width="862.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="126.18" y="1135.5" >org/springframework/web/filter/CharacterEncodingFilter:::doFilterInternal</text>
</g>
<g >
<title>org/springframework/cglib/proxy/MethodProxy:::invoke (2 samples, 0.04%)</title><rect x="648.9" y="469" width="0.5" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="651.90" y="479.5" ></text>
</g>
<g >
<title>java/util/HashMap:::newNode (1 samples, 0.02%)</title><rect x="1086.2" y="1269" width="0.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="1089.23" y="1279.5" ></text>
</g>
<g >
<title>build_tree (1 samples, 0.02%)</title><rect x="459.7" y="469" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="462.73" y="479.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1053.2" y="1173" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1056.18" y="1183.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="207.9" y="629" width="0.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="210.89" y="639.5" ></text>
</g>
<g >
<title>java/security/Provider$ServiceKey:::hashCode (1 samples, 0.02%)</title><rect x="183.3" y="565" width="0.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="186.33" y="575.5" ></text>
</g>
<g >
<title>build_tree (81 samples, 1.58%)</title><rect x="430.8" y="453" width="18.6" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="433.81" y="463.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="1075.2" y="981" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1078.21" y="991.5" ></text>
</g>
<g >
<title>malloc (1 samples, 0.02%)</title><rect x="423.9" y="501" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="426.92" y="511.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::getInstance (2 samples, 0.04%)</title><rect x="652.8" y="549" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="655.80" y="559.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="412.7" y="405" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="415.67" y="415.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1146.4" y="1269" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1149.38" y="1279.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (1 samples, 0.02%)</title><rect x="1002.7" y="725" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1005.67" y="735.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ObjectMapper:::writeValueAsString (68 samples, 1.32%)</title><rect x="363.5" y="549" width="15.7" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="366.54" y="559.5" ></text>
</g>
<g >
<title>org/springframework/context/event/AbstractApplicationEventMulticaster$ListenerRetriever:::getApplicationListeners (2 samples, 0.04%)</title><rect x="947.1" y="661" width="0.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="950.11" y="671.5" ></text>
</g>
<g >
<title>InterpreterRuntime::frequency_counter_overflow (1 samples, 0.02%)</title><rect x="322.0" y="565" width="0.2" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="324.99" y="575.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1182.4" y="1285" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="1185.42" y="1295.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="901.7" y="453" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="904.66" y="463.5" ></text>
</g>
<g >
<title>jni_fast_GetIntField (2 samples, 0.04%)</title><rect x="79.6" y="549" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="82.56" y="559.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="532.3" y="213" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="535.28" y="223.5" ></text>
</g>
<g >
<title>epoll_ctl (15 samples, 0.29%)</title><rect x="1148.7" y="1285" width="3.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1151.68" y="1295.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy48:::annotationType (1 samples, 0.02%)</title><rect x="973.5" y="1045" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="976.51" y="1055.5" ></text>
</g>
<g >
<title>TypeArrayKlass::allocate_common (1 samples, 0.02%)</title><rect x="249.7" y="581" width="0.2" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text x="252.67" y="591.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/Sensor:::record (5 samples, 0.10%)</title><rect x="1105.5" y="1269" width="1.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1108.52" y="1279.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/FrameworkServlet:::logResult (1 samples, 0.02%)</title><rect x="941.4" y="709" width="0.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="944.37" y="719.5" ></text>
</g>
<g >
<title>org/apache/coyote/AbstractProcessor:::action (103 samples, 2.00%)</title><rect x="987.7" y="1221" width="23.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="990.75" y="1231.5" >o..</text>
</g>
<g >
<title>oopDesc::obj_field_put (2 samples, 0.04%)</title><rect x="623.2" y="485" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="626.19" y="495.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="623.4" y="357" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="626.42" y="367.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="412.7" y="309" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="415.67" y="319.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="651.9" y="453" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="654.88" y="463.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/config/LoggerConfig:::log (3 samples, 0.06%)</title><rect x="894.1" y="469" width="0.7" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="897.08" y="479.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="884.4" y="533" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="887.44" y="543.5" ></text>
</g>
<g >
<title>org/springframework/util/StringUtils:::trimAllWhitespace (1 samples, 0.02%)</title><rect x="923.2" y="581" width="0.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="926.24" y="591.5" ></text>
</g>
<g >
<title>G1SATBCardTableModRefBS::write_ref_field_pre_work (2 samples, 0.04%)</title><rect x="532.0" y="469" width="0.5" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="535.05" y="479.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="207.7" y="565" width="0.2" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="210.66" y="575.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="1050.2" y="1109" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text x="1053.19" y="1119.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/DispatcherServlet:::processDispatchResult (165 samples, 3.21%)</title><rect x="210.0" y="677" width="37.8" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="212.96" y="687.5" >org..</text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="279.7" y="469" width="0.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="282.75" y="479.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$11:::sizeOf (2 samples, 0.04%)</title><rect x="1096.8" y="1221" width="0.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1099.79" y="1231.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="234.8" y="581" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="237.75" y="591.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerAdapter:::getSessionAttributesHandler (1 samples, 0.02%)</title><rect x="83.0" y="661" width="0.2" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="86.00" y="671.5" ></text>
</g>
<g >
<title>pthread_self (1 samples, 0.02%)</title><rect x="1019.2" y="1189" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1022.20" y="1199.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/impl/Log4jLogEvent:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="646.8" y="533" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="649.83" y="543.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="514.4" y="245" width="0.2" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="517.37" y="255.5" ></text>
</g>
<g >
<title>get_futex_key (1 samples, 0.02%)</title><rect x="903.5" y="421" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="906.49" y="431.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.02%)</title><rect x="630.1" y="501" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="633.07" y="511.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (2 samples, 0.04%)</title><rect x="412.2" y="277" width="0.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="415.21" y="287.5" ></text>
</g>
<g >
<title>consume_skb (1 samples, 0.02%)</title><rect x="1002.9" y="773" width="0.2" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="1005.90" y="783.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::&lt;init&gt; (4 samples, 0.08%)</title><rect x="58.0" y="549" width="0.9" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="60.98" y="559.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs.isra.32 (2 samples, 0.04%)</title><rect x="1004.3" y="773" width="0.4" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1007.28" y="783.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1022.0" y="933" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1024.95" y="943.5" ></text>
</g>
<g >
<title>dev_gro_receive (1 samples, 0.02%)</title><rect x="983.8" y="869" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="986.84" y="879.5" ></text>
</g>
<g >
<title>OptoRuntime::new_instance_C (2 samples, 0.04%)</title><rect x="642.5" y="533" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text x="645.47" y="543.5" ></text>
</g>
<g >
<title>org/springframework/context/support/AbstractApplicationContext:::publishEvent (22 samples, 0.43%)</title><rect x="942.8" y="693" width="5.0" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="945.75" y="703.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="971.2" y="933" width="0.2" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="974.22" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.02%)</title><rect x="1174.8" y="1061" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1177.85" y="1071.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseServer (1 samples, 0.02%)</title><rect x="39.8" y="757" width="0.3" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="42.84" y="767.5" ></text>
</g>
<g >
<title>Symbol::as_unicode (2 samples, 0.04%)</title><rect x="64.2" y="453" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="67.18" y="463.5" ></text>
</g>
<g >
<title>hrtimer_cancel (1 samples, 0.02%)</title><rect x="1125.5" y="1157" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1128.49" y="1167.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="152.8" y="789" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="155.79" y="799.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::scanSymbol (1 samples, 0.02%)</title><rect x="50.9" y="533" width="0.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="53.86" y="543.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/RecordAccumulator:::ready (21 samples, 0.41%)</title><rect x="1083.7" y="1301" width="4.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1086.71" y="1311.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="949.2" y="629" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="952.18" y="639.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::park (39 samples, 0.76%)</title><rect x="90.4" y="1253" width="8.9" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="93.35" y="1263.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Node:::match (1 samples, 0.02%)</title><rect x="387.4" y="485" width="0.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="390.42" y="495.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils$AnnotationCollector:::process (1 samples, 0.02%)</title><rect x="208.4" y="629" width="0.2" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="211.35" y="639.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="91.0" y="1205" width="0.5" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="94.04" y="1215.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="378.2" y="501" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="381.23" y="511.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/config/LoggerConfig:::log (5 samples, 0.10%)</title><rect x="899.1" y="597" width="1.2" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="902.13" y="607.5" ></text>
</g>
<g >
<title>file_update_time (9 samples, 0.18%)</title><rect x="1172.6" y="1109" width="2.0" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1175.55" y="1119.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (21 samples, 0.41%)</title><rect x="388.3" y="501" width="4.9" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="391.33" y="511.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::newNode (1 samples, 0.02%)</title><rect x="138.1" y="949" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="141.10" y="959.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher$Transform:::matches (2 samples, 0.04%)</title><rect x="40.8" y="613" width="0.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="43.76" y="623.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="911.3" y="533" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="914.30" y="543.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="510.2" y="405" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="513.24" y="415.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/AbstractNamedValueMethodArgumentResolver:::resolveArgument (1 samples, 0.02%)</title><rect x="48.8" y="661" width="0.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="51.80" y="671.5" ></text>
</g>
<g >
<title>JavaCalls::call_virtual (5,032 samples, 97.90%)</title><rect x="33.9" y="1429" width="1155.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="36.88" y="1439.5" >JavaCalls::call_virtual</text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::removeAttribute (3 samples, 0.06%)</title><rect x="126.9" y="1013" width="0.6" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="129.85" y="1023.5" ></text>
</g>
<g >
<title>JfrBackend::is_event_enabled (1 samples, 0.02%)</title><rect x="1162.9" y="1301" width="0.2" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="1165.91" y="1311.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::epollCtl (2 samples, 0.04%)</title><rect x="1121.4" y="1269" width="0.4" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1124.36" y="1279.5" ></text>
</g>
<g >
<title>org/apache/catalina/webresources/Cache:::getResource (4 samples, 0.08%)</title><rect x="115.8" y="1173" width="1.0" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="118.83" y="1183.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.02%)</title><rect x="192.1" y="645" width="0.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="195.05" y="655.5" ></text>
</g>
<g >
<title>__pthread_disable_asynccancel (1 samples, 0.02%)</title><rect x="1188.9" y="1317" width="0.2" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="1191.85" y="1327.5" ></text>
</g>
<g >
<title>do_sync_write (2 samples, 0.04%)</title><rect x="87.1" y="1045" width="0.5" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="90.14" y="1055.5" ></text>
</g>
<g >
<title>auditsys (1 samples, 0.02%)</title><rect x="997.2" y="1093" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1000.16" y="1103.5" ></text>
</g>
<g >
<title>_new_array_Java (1 samples, 0.02%)</title><rect x="497.4" y="533" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="500.38" y="543.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="764.1" y="421" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="767.14" y="431.5" ></text>
</g>
<g >
<title>StringTable::intern (1 samples, 0.02%)</title><rect x="523.8" y="485" width="0.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text x="526.78" y="495.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::hashCode (1 samples, 0.02%)</title><rect x="969.6" y="885" width="0.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="972.61" y="895.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1 samples, 0.02%)</title><rect x="1054.6" y="1173" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1057.55" y="1183.5" ></text>
</g>
<g >
<title>unroll_tree_refs (1 samples, 0.02%)</title><rect x="903.3" y="453" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="906.26" y="463.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="412.7" y="437" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="415.67" y="447.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator:::hasNext (2 samples, 0.04%)</title><rect x="954.0" y="741" width="0.5" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="957.00" y="751.5" ></text>
</g>
<g >
<title>org/springframework/util/StringUtils:::uriDecode (6 samples, 0.12%)</title><rect x="278.6" y="565" width="1.4" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="281.60" y="575.5" ></text>
</g>
<g >
<title>arrayOopDesc::base (7 samples, 0.14%)</title><rect x="833.5" y="517" width="1.6" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="836.47" y="527.5" ></text>
</g>
<g >
<title>__sb_end_write (1 samples, 0.02%)</title><rect x="1041.5" y="1141" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1044.47" y="1151.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/rpc/MotanConfigPrintSpringListener:::onApplicationEvent (2 samples, 0.04%)</title><rect x="83.5" y="661" width="0.4" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="86.46" y="671.5" ></text>
</g>
<g >
<title>jni_ReleasePrimitiveArrayCritical (7 samples, 0.14%)</title><rect x="881.7" y="549" width="1.6" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="884.68" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="877.1" y="485" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="880.09" y="495.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::intValue (2 samples, 0.04%)</title><rect x="334.8" y="517" width="0.5" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="337.84" y="527.5" ></text>
</g>
<g >
<title>sys_read (15 samples, 0.29%)</title><rect x="1019.7" y="1141" width="3.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="1022.66" y="1151.5" ></text>
</g>
<g >
<title>java/io/StringWriter:::write (1 samples, 0.02%)</title><rect x="224.6" y="581" width="0.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="227.65" y="591.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="775.2" y="405" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="778.16" y="415.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::prepareRequest (1 samples, 0.02%)</title><rect x="108.7" y="1253" width="0.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="111.72" y="1263.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.02%)</title><rect x="1086.7" y="1285" width="0.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="1089.69" y="1295.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::parseRest (1 samples, 0.02%)</title><rect x="308.4" y="581" width="0.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="311.44" y="591.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterSupport:::doConvert (1 samples, 0.02%)</title><rect x="915.4" y="645" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="918.43" y="655.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::findAnnotation (1 samples, 0.02%)</title><rect x="936.6" y="629" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="939.55" y="639.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (2 samples, 0.04%)</title><rect x="93.8" y="1125" width="0.5" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="96.79" y="1135.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="877.1" y="405" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="880.09" y="415.5" ></text>
</g>
<g >
<title>jbd2_journal_put_journal_head (1 samples, 0.02%)</title><rect x="1173.5" y="981" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1176.47" y="991.5" ></text>
</g>
<g >
<title>sys_write (1 samples, 0.02%)</title><rect x="895.2" y="341" width="0.3" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="898.23" y="351.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="374.8" y="357" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="377.79" y="367.5" ></text>
</g>
<g >
<title>__schedule (18 samples, 0.35%)</title><rect x="94.3" y="1109" width="4.1" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="97.25" y="1119.5" ></text>
</g>
<g >
<title>Type::hashcons (1 samples, 0.02%)</title><rect x="32.7" y="1285" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text x="35.73" y="1295.5" ></text>
</g>
<g >
<title>java/util/HashMap:::merge (3 samples, 0.06%)</title><rect x="957.2" y="645" width="0.7" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="960.21" y="655.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1148.2" y="1221" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1151.22" y="1231.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="877.1" y="453" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="880.09" y="463.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::isInJavaLangAnnotationPackage (2 samples, 0.04%)</title><rect x="983.2" y="1013" width="0.4" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="986.16" y="1023.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="623.4" y="469" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="626.42" y="479.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="117.2" y="1061" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="120.21" y="1071.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="947.6" y="421" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="950.57" y="431.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (1 samples, 0.02%)</title><rect x="40.3" y="693" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="43.30" y="703.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (2 samples, 0.04%)</title><rect x="978.3" y="1045" width="0.5" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="981.33" y="1055.5" ></text>
</g>
<g >
<title>java_lang_String::equals (3 samples, 0.06%)</title><rect x="63.5" y="437" width="0.7" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="66.49" y="447.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="938.2" y="549" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="941.16" y="559.5" ></text>
</g>
<g >
<title>ext4_da_write_end (5 samples, 0.10%)</title><rect x="1175.8" y="1093" width="1.1" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1178.77" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="1020.6" y="917" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1023.58" y="927.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater:::ensureOpen (1 samples, 0.02%)</title><rect x="897.3" y="597" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="900.30" y="607.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_pre (1 samples, 0.02%)</title><rect x="628.0" y="501" width="0.2" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text x="631.01" y="511.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="1010.5" y="981" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1013.47" y="991.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Schema:::read (1 samples, 0.02%)</title><rect x="1066.3" y="1237" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1069.26" y="1247.5" ></text>
</g>
<g >
<title>skb_clone (1 samples, 0.02%)</title><rect x="15.5" y="1333" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="18.51" y="1343.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/support/WebContentGenerator:::prepareResponse (1 samples, 0.02%)</title><rect x="941.1" y="693" width="0.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="944.14" y="703.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$7:::sizeOf (1 samples, 0.02%)</title><rect x="1098.2" y="1237" width="0.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1101.17" y="1247.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="412.7" y="341" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="415.67" y="351.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/web/HttpTracingInterceptor:::preHandle (9 samples, 0.18%)</title><rect x="194.8" y="677" width="2.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="197.81" y="687.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="877.1" y="501" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="880.09" y="511.5" ></text>
</g>
<g >
<title>java_lang_StackTraceElement::set_declaringClass (1 samples, 0.02%)</title><rect x="618.4" y="469" width="0.2" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="621.37" y="479.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (2 samples, 0.04%)</title><rect x="15.1" y="1253" width="0.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="18.05" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/SynthesizedAnnotationInvocationHandler:::getAttributeValue (1 samples, 0.02%)</title><rect x="921.9" y="501" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="924.86" y="511.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="488.9" y="277" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="491.89" y="287.5" ></text>
</g>
<g >
<title>com/weibo/api/motan/filter/AccessLogFilter:::filter (8 samples, 0.16%)</title><rect x="893.6" y="517" width="1.9" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="896.62" y="527.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::read (1 samples, 0.02%)</title><rect x="1066.3" y="1253" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="1069.26" y="1263.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="859.4" y="501" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="862.42" y="511.5" ></text>
</g>
<g >
<title>sys_write (24 samples, 0.47%)</title><rect x="990.0" y="1109" width="5.6" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="993.04" y="1119.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (1 samples, 0.02%)</title><rect x="126.6" y="1013" width="0.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="129.62" y="1023.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="293.5" y="613" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="296.52" y="623.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="1168.4" y="1125" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1171.42" y="1135.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/SynthesizedAnnotationInvocationHandler:::getAttributeValue (1 samples, 0.02%)</title><rect x="921.2" y="517" width="0.2" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text x="924.17" y="527.5" ></text>
</g>
<g >
<title>BacktraceBuilder::push (1 samples, 0.02%)</title><rect x="499.2" y="469" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="502.22" y="479.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/system/SystemSlot:::entry (2 samples, 0.04%)</title><rect x="191.4" y="565" width="0.4" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="194.36" y="575.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="514.4" y="373" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="517.37" y="383.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.02%)</title><rect x="647.8" y="357" width="0.2" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="650.75" y="367.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/MessageBytes:::toString (1 samples, 0.02%)</title><rect x="156.7" y="773" width="0.2" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="159.70" y="783.5" ></text>
</g>
<g >
<title>ObjectSynchronizer::FastHashCode (1 samples, 0.02%)</title><rect x="1038.9" y="1189" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text x="1041.94" y="1199.5" ></text>
</g>
<g >
<title>java/util/zip/GZIPOutputStream:::finish (174 samples, 3.39%)</title><rect x="425.3" y="549" width="39.9" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="428.30" y="559.5" >jav..</text>
</g>
<g >
<title>java/lang/ThreadLocal:::set (3 samples, 0.06%)</title><rect x="157.8" y="709" width="0.7" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="160.84" y="719.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="303.6" y="565" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="306.62" y="575.5" ></text>
</g>
<g >
<title>__do_softirq (2 samples, 0.04%)</title><rect x="763.9" y="437" width="0.5" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="766.91" y="447.5" ></text>
</g>
<g >
<title>org/springframework/core/MethodParameter:::hashCode (1 samples, 0.02%)</title><rect x="916.8" y="613" width="0.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="919.81" y="623.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::copyMembers (1 samples, 0.02%)</title><rect x="231.1" y="597" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="234.08" y="607.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.02%)</title><rect x="647.8" y="341" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="650.75" y="351.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="234.8" y="341" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="237.75" y="351.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (3 samples, 0.06%)</title><rect x="240.7" y="613" width="0.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="243.72" y="623.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (1 samples, 0.02%)</title><rect x="235.0" y="613" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="237.98" y="623.5" ></text>
</g>
<g >
<title>PhaseChaitin::fixup_spills (1 samples, 0.02%)</title><rect x="27.2" y="1349" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="30.22" y="1359.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="651.9" y="405" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="654.88" y="415.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/ResponseFacade:::containsHeader (1 samples, 0.02%)</title><rect x="198.2" y="677" width="0.3" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="201.25" y="687.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (1 samples, 0.02%)</title><rect x="144.1" y="917" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="147.07" y="927.5" ></text>
</g>
<g >
<title>tcp_md5_do_lookup (1 samples, 0.02%)</title><rect x="651.9" y="309" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="654.88" y="319.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="949.2" y="581" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="952.18" y="591.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender:::sendProduceRequest (46 samples, 0.89%)</title><rect x="1091.7" y="1285" width="10.6" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1094.74" y="1295.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher$Transform:::matches (1 samples, 0.02%)</title><rect x="165.9" y="629" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="168.88" y="639.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="488.9" y="293" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="491.89" y="303.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="23.3" y="1205" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="26.32" y="1215.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="884.4" y="485" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="887.44" y="495.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (9 samples, 0.18%)</title><rect x="1041.7" y="1141" width="2.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1044.70" y="1151.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="263.9" y="581" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="266.91" y="591.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotatedElementUtils:::searchWithFindSemantics (2 samples, 0.04%)</title><rect x="49.0" y="629" width="0.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="52.03" y="639.5" ></text>
</g>
<g >
<title>jni_SetIntField (77 samples, 1.50%)</title><rect x="859.6" y="533" width="17.7" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="862.65" y="543.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="592.4" y="261" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="595.42" y="271.5" ></text>
</g>
<g >
<title>nmethod::is_zombie (1 samples, 0.02%)</title><rect x="514.4" y="421" width="0.2" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text x="517.37" y="431.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="583.9" y="293" width="0.3" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="586.93" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="899.6" y="389" width="0.5" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="902.59" y="399.5" ></text>
</g>
<g >
<title>IndexSet::initialize (1 samples, 0.02%)</title><rect x="28.8" y="1333" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text x="31.82" y="1343.5" ></text>
</g>
<g >
<title>java/io/ByteArrayInputStream:::close (2 samples, 0.04%)</title><rect x="895.9" y="597" width="0.5" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="898.92" y="607.5" ></text>
</g>
<g >
<title>__getnstimeofday64 (1 samples, 0.02%)</title><rect x="1002.7" y="757" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1005.67" y="767.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="583.9" y="213" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="586.93" y="223.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/ProducesRequestCondition$ProduceMediaTypeExpression:::matchMediaType (1 samples, 0.02%)</title><rect x="262.5" y="581" width="0.3" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="265.53" y="591.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterFactory:::createFilterChain (6 samples, 0.12%)</title><rect x="985.5" y="1157" width="1.3" height="15.0" fill="rgb(100,245,100)" rx="2" ry="2" />
<text x="988.45" y="1167.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="344.7" y="309" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="347.72" y="319.5" ></text>
</g>
<g >
<title>G1ParScanThreadState::copy_to_survivor_space (2 samples, 0.04%)</title><rect x="1189.3" y="1285" width="0.5" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="1192.31" y="1295.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (216 samples, 4.20%)</title><rect x="37.1" y="1157" width="49.6" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text x="40.09" y="1167.5" >org/a..</text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.02%)</title><rect x="142.5" y="949" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="145.46" y="959.5" ></text>
</g>
<g >
<title>G1CollectedHeap::retire_mutator_alloc_region (1 samples, 0.02%)</title><rect x="950.3" y="613" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text x="953.33" y="623.5" ></text>
</g>
<g >
<title>sys_read (1 samples, 0.02%)</title><rect x="10.0" y="1493" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="13.00" y="1503.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy5:::annotationType (1 samples, 0.02%)</title><rect x="980.9" y="1029" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="983.86" y="1039.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy5:::annotationType (1 samples, 0.02%)</title><rect x="199.6" y="661" width="0.3" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="202.63" y="671.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="911.3" y="453" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="914.30" y="463.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (3,548 samples, 69.03%)</title><rect x="153.7" y="821" width="814.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="156.71" y="831.5" >org/springframework/web/filter/OncePerRequestFilter:::doFilter</text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$NioSocketWrapper:::fillReadBuffer (27 samples, 0.53%)</title><rect x="1017.4" y="1221" width="6.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="1020.36" y="1231.5" ></text>
</g>
<g >
<title>do_futex (1 samples, 0.02%)</title><rect x="1053.9" y="1205" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="1056.86" y="1215.5" ></text>
</g>
<g >
<title>OtherRegionsTable::occupied (1 samples, 0.02%)</title><rect x="18.3" y="1413" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="21.26" y="1423.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClient:::incrBy (1 samples, 0.02%)</title><rect x="647.1" y="437" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="650.06" y="447.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl:::write (26 samples, 0.51%)</title><rect x="1114.5" y="1285" width="5.9" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="1117.47" y="1295.5" ></text>
</g>
<g >
<title>sun/nio/cs/ISO_8859_1$Decoder:::decodeLoop (1 samples, 0.02%)</title><rect x="85.1" y="693" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="88.07" y="703.5" ></text>
</g>
<g >
<title>__kfree_skb (1 samples, 0.02%)</title><rect x="910.4" y="85" width="0.2" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="913.38" y="95.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="560.7" y="277" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="563.74" y="287.5" ></text>
</g>
<g >
<title>sys_futex (21 samples, 0.41%)</title><rect x="1139.0" y="1221" width="4.9" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1142.04" y="1231.5" ></text>
</g>
<g >
<title>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.02%)</title><rect x="653.0" y="421" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="656.03" y="431.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="180.6" y="309" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="183.57" y="319.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (5 samples, 0.10%)</title><rect x="184.7" y="645" width="1.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="187.70" y="655.5" ></text>
</g>
<g >
<title>org/springframework/util/CollectionUtils$MultiValueMapAdapter:::getFirst (3 samples, 0.06%)</title><rect x="934.0" y="645" width="0.7" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="937.03" y="655.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/AbstractMessageConverterMethodProcessor:::getProducibleMediaTypes (3 samples, 0.06%)</title><rect x="82.3" y="645" width="0.7" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="85.32" y="655.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="965.2" y="453" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="968.25" y="463.5" ></text>
</g>
<g >
<title>ObjArrayKlass::allocate (1 samples, 0.02%)</title><rect x="504.3" y="437" width="0.2" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text x="507.27" y="447.5" ></text>
</g>
<g >
<title>tcp_poll (1 samples, 0.02%)</title><rect x="1122.7" y="1189" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1125.74" y="1199.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor103:::invoke (2 samples, 0.04%)</title><rect x="649.4" y="501" width="0.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="652.36" y="511.5" ></text>
</g>
<g >
<title>com/weibo/api/motan/transport/netty/NettyChannel:::request (2 samples, 0.04%)</title><rect x="895.0" y="469" width="0.5" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="898.00" y="479.5" ></text>
</g>
<g >
<title>__percpu_counter_add (1 samples, 0.02%)</title><rect x="1171.2" y="1157" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1174.18" y="1167.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::checkBadFlags (1 samples, 0.02%)</title><rect x="1073.4" y="1237" width="0.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="1076.38" y="1247.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::recycle (7 samples, 0.14%)</title><rect x="117.9" y="1221" width="1.6" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="120.90" y="1231.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="322.9" y="469" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="325.91" y="479.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/web/trace/servlet/HttpTraceFilter:::doFilterInternal (200 samples, 3.89%)</title><rect x="39.6" y="805" width="45.9" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="42.61" y="815.5" >org/..</text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (6 samples, 0.12%)</title><rect x="1034.8" y="1237" width="1.4" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1037.81" y="1247.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="180.6" y="453" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="183.57" y="463.5" ></text>
</g>
<g >
<title>longest_match (1 samples, 0.02%)</title><rect x="463.9" y="485" width="0.2" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text x="466.86" y="495.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="303.9" y="629" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="306.85" y="639.5" ></text>
</g>
<g >
<title>futex_wake_op (1 samples, 0.02%)</title><rect x="645.5" y="405" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="648.46" y="415.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="583.9" y="181" width="0.3" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="586.93" y="191.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="628.2" y="485" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="631.24" y="495.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="344.7" y="325" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="347.72" y="335.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Inflater_inflateBytes (760 samples, 14.79%)</title><rect x="704.5" y="549" width="174.4" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="707.46" y="559.5" >Java_java_util_zip_Inf..</text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="141.3" y="917" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="144.32" y="927.5" ></text>
</g>
<g >
<title>org/springframework/aop/aspectj/AbstractAspectJAdvice:::invokeAdviceMethod (4 samples, 0.08%)</title><rect x="648.4" y="517" width="1.0" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="651.44" y="527.5" ></text>
</g>
<g >
<title>java/util/zip/GZIPInputStream:::readUByte (1 samples, 0.02%)</title><rect x="678.7" y="581" width="0.3" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="681.74" y="591.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="971.2" y="917" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="974.22" y="927.5" ></text>
</g>
<g >
<title>ip_output (1 samples, 0.02%)</title><rect x="14.1" y="1317" width="0.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="17.13" y="1327.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::parseRest (120 samples, 2.33%)</title><rect x="324.1" y="565" width="27.5" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="327.05" y="575.5" >c..</text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="583.9" y="197" width="0.3" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="586.93" y="207.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/FrameworkServlet:::processRequest (3,445 samples, 67.02%)</title><rect x="157.4" y="725" width="790.9" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="160.39" y="735.5" >org/springframework/web/servlet/FrameworkServlet:::processRequest</text>
</g>
<g >
<title>com/alibaba/fastjson/parser/DefaultJSONParser:::parse (2 samples, 0.04%)</title><rect x="343.3" y="501" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="346.34" y="511.5" ></text>
</g>
<g >
<title>G1SATBCardTableLoggingModRefBS::invalidate (1 samples, 0.02%)</title><rect x="1047.2" y="1205" width="0.2" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="1050.21" y="1215.5" ></text>
</g>
<g >
<title>CollectedHeap::new_store_pre_barrier (1 samples, 0.02%)</title><rect x="363.1" y="517" width="0.2" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="366.08" y="527.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream:::write (1 samples, 0.02%)</title><rect x="308.7" y="549" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="311.67" y="559.5" ></text>
</g>
<g >
<title>Unsafe_Park (5 samples, 0.10%)</title><rect x="35.0" y="1237" width="1.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="38.02" y="1247.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="234.8" y="533" width="0.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="237.75" y="543.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="1137.9" y="1141" width="0.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1140.89" y="1151.5" ></text>
</g>
<g >
<title>inflateInit2_ (1 samples, 0.02%)</title><rect x="69.0" y="565" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="72.00" y="575.5" ></text>
</g>
<g >
<title>checkcast_arraycopy (1 samples, 0.02%)</title><rect x="193.4" y="629" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="196.43" y="639.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getPathWithinApplication (1 samples, 0.02%)</title><rect x="288.2" y="645" width="0.3" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="291.24" y="655.5" ></text>
</g>
<g >
<title>JVM_GetEnclosingMethodInfo (1 samples, 0.02%)</title><rect x="943.7" y="613" width="0.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="946.67" y="623.5" ></text>
</g>
<g >
<title>update_time (9 samples, 0.18%)</title><rect x="1172.6" y="1093" width="2.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="1175.55" y="1103.5" ></text>
</g>
<g >
<title>JavaThread::thread_from_jni_environment (4 samples, 0.08%)</title><rect x="876.2" y="517" width="0.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="879.18" y="527.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/SynthesizedAnnotationInvocationHandler:::getAttributeValue (3 samples, 0.06%)</title><rect x="920.5" y="533" width="0.7" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="923.48" y="543.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1146.4" y="1301" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1149.38" y="1311.5" ></text>
</g>
<g >
<title>_tr_flush_block (127 samples, 2.47%)</title><rect x="430.6" y="469" width="29.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="433.58" y="479.5" >_t..</text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (1 samples, 0.02%)</title><rect x="203.3" y="629" width="0.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="206.30" y="639.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="1137.9" y="1205" width="0.2" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="1140.89" y="1215.5" ></text>
</g>
<g >
<title>generic_exec_single (2 samples, 0.04%)</title><rect x="548.3" y="293" width="0.5" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="551.35" y="303.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="155.3" y="773" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="158.32" y="783.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="1020.6" y="821" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1023.58" y="831.5" ></text>
</g>
<g >
<title>__GI___libc_poll (1 samples, 0.02%)</title><rect x="651.4" y="485" width="0.3" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="654.42" y="495.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="52.2" y="533" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="55.24" y="543.5" ></text>
</g>
<g >
<title>os::sleep (8 samples, 0.16%)</title><rect x="1061.0" y="1285" width="1.8" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text x="1063.98" y="1295.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="412.7" y="389" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="415.67" y="399.5" ></text>
</g>
<g >
<title>checkcast_arraycopy_uninit (1 samples, 0.02%)</title><rect x="283.6" y="613" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="286.65" y="623.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.02%)</title><rect x="1179.2" y="1221" width="0.2" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text x="1182.21" y="1231.5" ></text>
</g>
<g >
<title>java/lang/String:::charAt (3 samples, 0.06%)</title><rect x="477.9" y="485" width="0.7" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="480.87" y="495.5" ></text>
</g>
<g >
<title>ciEnv::register_method (1 samples, 0.02%)</title><rect x="33.6" y="1381" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="36.65" y="1391.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::postParseRequest (21 samples, 0.41%)</title><rect x="113.1" y="1221" width="4.8" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="116.08" y="1231.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.02%)</title><rect x="493.0" y="501" width="0.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="496.02" y="511.5" ></text>
</g>
<g >
<title>system_call_after_swapgs (1 samples, 0.02%)</title><rect x="10.5" y="1493" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="13.46" y="1503.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="263.9" y="597" width="0.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="266.91" y="607.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/RequestContextFilter:::doFilterInternal (204 samples, 3.97%)</title><rect x="38.9" y="917" width="46.9" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="41.93" y="927.5" >org/..</text>
</g>
<g >
<title>sys_read (3 samples, 0.06%)</title><rect x="1128.2" y="1237" width="0.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1131.25" y="1247.5" ></text>
</g>
<g >
<title>longest_match (2 samples, 0.04%)</title><rect x="412.9" y="485" width="0.5" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="415.90" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="98.4" y="1109" width="0.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="101.39" y="1119.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/metrics/web/servlet/LongTaskTimingHandlerInterceptor:::getLongTaskTimerSamples (5 samples, 0.10%)</title><rect x="201.7" y="661" width="1.1" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="204.69" y="671.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::doFilter (3,685 samples, 71.69%)</title><rect x="126.2" y="1061" width="845.9" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="129.16" y="1071.5" >org/apache/catalina/core/ApplicationFilterChain:::doFilter</text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (3 samples, 0.06%)</title><rect x="1059.4" y="1301" width="0.7" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="1062.37" y="1311.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/message/ParameterizedMessage:::getFormattedMessage (5 samples, 0.10%)</title><rect x="645.7" y="517" width="1.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="648.68" y="527.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="344.7" y="293" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="347.72" y="303.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher:::chooseProvider (2 samples, 0.04%)</title><rect x="40.8" y="629" width="0.4" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="43.76" y="639.5" ></text>
</g>
<g >
<title>Matcher::xform (1 samples, 0.02%)</title><rect x="23.5" y="1349" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text x="26.54" y="1359.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="13.9" y="1445" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="16.90" y="1455.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (4 samples, 0.08%)</title><rect x="1074.3" y="1205" width="0.9" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1077.30" y="1215.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="207.7" y="501" width="0.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="210.66" y="511.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="962.0" y="629" width="0.3" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="965.04" y="639.5" ></text>
</g>
<g >
<title>pqdownheap (60 samples, 1.17%)</title><rect x="435.6" y="437" width="13.8" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="438.63" y="447.5" ></text>
</g>
<g >
<title>org/springframework/util/MimeType$SpecificityComparator:::compare (3 samples, 0.06%)</title><rect x="260.2" y="533" width="0.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="263.23" y="543.5" ></text>
</g>
<g >
<title>inflateStateCheck (1 samples, 0.02%)</title><rect x="679.2" y="549" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="682.20" y="559.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="965.2" y="597" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="968.25" y="607.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="1092.9" y="1269" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="1095.89" y="1279.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (211 samples, 4.11%)</title><rect x="37.3" y="1029" width="48.5" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="40.32" y="1039.5" >org/..</text>
</g>
<g >
<title>sun/nio/ch/SelectionKeyImpl:::nioInterestOps (1 samples, 0.02%)</title><rect x="1093.6" y="1237" width="0.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1096.58" y="1247.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::preHandle (1 samples, 0.02%)</title><rect x="40.1" y="693" width="0.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="43.07" y="703.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/SymbolTable:::addSymbol (5 samples, 0.10%)</title><rect x="328.9" y="517" width="1.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="331.88" y="527.5" ></text>
</g>
<g >
<title>arrayof_jint_fill (4 samples, 0.08%)</title><rect x="497.6" y="533" width="0.9" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="500.61" y="543.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="1067.4" y="1301" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1070.41" y="1311.5" ></text>
</g>
<g >
<title>netif_receive_skb_internal (1 samples, 0.02%)</title><rect x="332.1" y="373" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="335.09" y="383.5" ></text>
</g>
<g >
<title>sysret_audit (1 samples, 0.02%)</title><rect x="1115.8" y="1221" width="0.3" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="1118.85" y="1231.5" ></text>
</g>
<g >
<title>inet_recvmsg (1 samples, 0.02%)</title><rect x="14.1" y="1429" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="17.13" y="1439.5" ></text>
</g>
<g >
<title>C2Compiler::compile_method (48 samples, 0.93%)</title><rect x="22.9" y="1413" width="11.0" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="25.86" y="1423.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.02%)</title><rect x="630.3" y="485" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="633.30" y="495.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="412.7" y="373" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="415.67" y="383.5" ></text>
</g>
<g >
<title>vfs_writev (18 samples, 0.35%)</title><rect x="1116.1" y="1189" width="4.1" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1119.08" y="1199.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="938.2" y="613" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="941.16" y="623.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Struct:::set (1 samples, 0.02%)</title><rect x="1094.0" y="1253" width="0.3" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="1097.04" y="1263.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (4 samples, 0.08%)</title><rect x="237.3" y="629" width="0.9" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="240.28" y="639.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="180.6" y="485" width="0.2" height="15.0" fill="rgb(241,111,111)" rx="2" ry="2" />
<text x="183.57" y="495.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1013.9" y="1189" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1016.92" y="1199.5" ></text>
</g>
<g >
<title>org/apache/coyote/AbstractProtocol$ConnectionHandler:::process (4,041 samples, 78.62%)</title><rect x="103.2" y="1269" width="927.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="106.21" y="1279.5" >org/apache/coyote/AbstractProtocol$ConnectionHandler:::process</text>
</g>
<g >
<title>com/coohua/caf/core/web/HttpTracingInterceptor:::postHandle (1 samples, 0.02%)</title><rect x="159.9" y="693" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="162.91" y="703.5" ></text>
</g>
<g >
<title>InstanceRefKlass::oop_oop_iterate_backwards_nv (3 samples, 0.06%)</title><rect x="19.4" y="1397" width="0.7" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text x="22.41" y="1407.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="1078.4" y="1301" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1081.43" y="1311.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getPathWithinApplication (1 samples, 0.02%)</title><rect x="251.1" y="645" width="0.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="254.05" y="655.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::parseField (4 samples, 0.08%)</title><rect x="51.1" y="533" width="0.9" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="54.09" y="543.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.02%)</title><rect x="647.1" y="405" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="650.06" y="415.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::newNode (1 samples, 0.02%)</title><rect x="240.3" y="597" width="0.2" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="243.26" y="607.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap$EntryIterator:::next (1 samples, 0.02%)</title><rect x="638.8" y="565" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="641.80" y="575.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="1163.6" y="1269" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="1166.60" y="1279.5" ></text>
</g>
<g >
<title>java/util/Formatter$FormatSpecifier:::print (2 samples, 0.04%)</title><rect x="54.3" y="517" width="0.5" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="57.31" y="527.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="344.7" y="341" width="0.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="347.72" y="351.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/requests/ProduceRequest$Builder:::build (3 samples, 0.06%)</title><rect x="1101.2" y="1269" width="0.6" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="1104.16" y="1279.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (18 samples, 0.35%)</title><rect x="1164.1" y="1301" width="4.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1167.06" y="1311.5" ></text>
</g>
<g >
<title>CodeBuffer::free_blob (1 samples, 0.02%)</title><rect x="33.6" y="1365" width="0.3" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="36.65" y="1375.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (204 samples, 3.97%)</title><rect x="38.9" y="933" width="46.9" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="41.93" y="943.5" >org/..</text>
</g>
<g >
<title>org/apache/kafka/common/requests/AbstractResponse:::parseResponse (2 samples, 0.04%)</title><rect x="1066.9" y="1301" width="0.5" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1069.95" y="1311.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="374.8" y="405" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="377.79" y="415.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/ConversionServiceExposingInterceptor:::preHandle (2 samples, 0.04%)</title><rect x="288.7" y="677" width="0.5" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="291.70" y="687.5" ></text>
</g>
<g >
<title>tcp_time_wait (1 samples, 0.02%)</title><rect x="1182.4" y="1013" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1185.42" y="1023.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat:::setMax (1 samples, 0.02%)</title><rect x="648.4" y="453" width="0.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="651.44" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="895.2" y="261" width="0.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="898.23" y="271.5" ></text>
</g>
<g >
<title>java_lang_Thread::set_thread_status (1 samples, 0.02%)</title><rect x="99.1" y="1237" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="102.07" y="1247.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/stats/SampledStat:::record (1 samples, 0.02%)</title><rect x="1105.3" y="1301" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="1108.29" y="1311.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1137.9" y="1317" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1140.89" y="1327.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="126.4" y="1013" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="129.39" y="1023.5" ></text>
</g>
<g >
<title>MultiNode::is_CFG (1 samples, 0.02%)</title><rect x="31.4" y="1317" width="0.2" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text x="34.35" y="1327.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="583.7" y="437" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="586.70" y="447.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="764.4" y="501" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="767.37" y="511.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/NamesEnumerator:::findNext (12 samples, 0.23%)</title><rect x="960.9" y="725" width="2.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="963.89" y="735.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy0:::annotationType (1 samples, 0.02%)</title><rect x="973.1" y="1045" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="976.05" y="1055.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMethodMapping:::getHandlerInternal (138 samples, 2.68%)</title><rect x="251.7" y="661" width="31.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="254.74" y="671.5" >or..</text>
</g>
<g >
<title>org/apache/tomcat/util/buf/MessageBytes:::toString (1 samples, 0.02%)</title><rect x="187.7" y="661" width="0.2" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="190.69" y="671.5" ></text>
</g>
<g >
<title>sysret_check (1 samples, 0.02%)</title><rect x="10.2" y="1493" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="13.23" y="1503.5" ></text>
</g>
<g >
<title>_complete_monitor_locking_Java (1 samples, 0.02%)</title><rect x="39.6" y="789" width="0.2" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="42.61" y="799.5" ></text>
</g>
<g >
<title>vfs_read (1 samples, 0.02%)</title><rect x="1159.0" y="1253" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1162.01" y="1263.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::deserialze (9 samples, 0.18%)</title><rect x="50.6" y="549" width="2.1" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="53.63" y="559.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="884.4" y="421" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="887.44" y="431.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="344.7" y="405" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="347.72" y="415.5" ></text>
</g>
<g >
<title>inet_gro_receive (1 samples, 0.02%)</title><rect x="141.3" y="805" width="0.2" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="144.32" y="815.5" ></text>
</g>
<g >
<title>org/springframework/cglib/proxy/MethodProxy:::invoke (1 samples, 0.02%)</title><rect x="647.8" y="453" width="0.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="650.75" y="463.5" ></text>
</g>
<g >
<title>com/weibo/api/motan/proxy/RefererInvocationHandler:::invoke (10 samples, 0.19%)</title><rect x="893.6" y="597" width="2.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="896.62" y="607.5" ></text>
</g>
<g >
<title>mark_buffer_dirty (1 samples, 0.02%)</title><rect x="1176.7" y="1045" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1179.68" y="1055.5" ></text>
</g>
<g >
<title>futex_wait_setup (1 samples, 0.02%)</title><rect x="1058.5" y="1173" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="1061.46" y="1183.5" ></text>
</g>
<g >
<title>ThreadLocalAllocBuffer::fill (1 samples, 0.02%)</title><rect x="642.7" y="469" width="0.2" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text x="645.70" y="479.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (1 samples, 0.02%)</title><rect x="1152.8" y="1253" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1155.81" y="1263.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (4 samples, 0.08%)</title><rect x="960.0" y="709" width="0.9" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text x="962.97" y="719.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="117.2" y="1189" width="0.2" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="120.21" y="1199.5" ></text>
</g>
<g >
<title>org/apache/coyote/Request:::recycle (8 samples, 0.16%)</title><rect x="1012.5" y="1237" width="1.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1015.54" y="1247.5" ></text>
</g>
<g >
<title>java/text/DecimalFormat:::parse (1 samples, 0.02%)</title><rect x="650.3" y="517" width="0.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="653.28" y="527.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="779.3" y="373" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="782.30" y="383.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="92.6" y="1045" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="95.65" y="1055.5" ></text>
</g>
<g >
<title>sys_write (1 samples, 0.02%)</title><rect x="86.7" y="1109" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="89.68" y="1119.5" ></text>
</g>
<g >
<title>futex_wake_op (1 samples, 0.02%)</title><rect x="894.5" y="325" width="0.3" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="897.54" y="335.5" ></text>
</g>
<g >
<title>BacktraceBuilder::expand (2 samples, 0.04%)</title><rect x="509.8" y="437" width="0.4" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="512.78" y="447.5" ></text>
</g>
<g >
<title>tcp_ack (1 samples, 0.02%)</title><rect x="1061.2" y="997" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1064.21" y="1007.5" ></text>
</g>
<g >
<title>PhaseChaitin::Register_Allocate (25 samples, 0.49%)</title><rect x="24.0" y="1365" width="5.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="27.00" y="1375.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1013.9" y="1205" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="1016.92" y="1215.5" ></text>
</g>
<g >
<title>updateBytesCRC32 (3 samples, 0.06%)</title><rect x="467.1" y="549" width="0.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="470.08" y="559.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::RemoveQEQuoting (1 samples, 0.02%)</title><rect x="352.8" y="533" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="355.75" y="543.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy43:::annotationType (1 samples, 0.02%)</title><rect x="979.0" y="1013" width="0.3" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="982.02" y="1023.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="901.7" y="357" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="904.66" y="367.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="938.2" y="469" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="941.16" y="479.5" ></text>
</g>
<g >
<title>sys_futex (1 samples, 0.02%)</title><rect x="99.3" y="1221" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="102.30" y="1231.5" ></text>
</g>
<g >
<title>G1RootProcessor::process_java_roots (3 samples, 0.06%)</title><rect x="21.0" y="1429" width="0.7" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="24.02" y="1439.5" ></text>
</g>
<g >
<title>malloc (4 samples, 0.08%)</title><rect x="16.7" y="1509" width="0.9" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="19.66" y="1519.5" ></text>
</g>
<g >
<title>com/google/gson/stream/JsonWriter:::close (1 samples, 0.02%)</title><rect x="223.3" y="581" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="226.27" y="591.5" ></text>
</g>
<g >
<title>tcp_send_mss (1 samples, 0.02%)</title><rect x="1119.5" y="1093" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="1122.52" y="1103.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="344.0" y="501" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="347.03" y="511.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="322.9" y="309" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="325.91" y="319.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/service/impl/AdDataServiceImpl:::dataProcess (8 samples, 0.16%)</title><rect x="308.7" y="613" width="1.8" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text x="311.67" y="623.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/ProducerBatch:::completeFutureAndFireCallbacks (32 samples, 0.62%)</title><rect x="1070.2" y="1285" width="7.3" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="1073.16" y="1295.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="1061.4" y="1237" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1064.44" y="1247.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.02%)</title><rect x="891.6" y="581" width="0.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="894.56" y="591.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl:::translateReadyOps (1 samples, 0.02%)</title><rect x="1159.2" y="1317" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1162.24" y="1327.5" ></text>
</g>
<g >
<title>IndexSetIterator::advance_and_next (1 samples, 0.02%)</title><rect x="28.4" y="1333" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="31.37" y="1343.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntrySet:::iterator (2 samples, 0.04%)</title><rect x="953.5" y="741" width="0.5" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="956.54" y="751.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,685 samples, 71.69%)</title><rect x="126.2" y="1045" width="845.9" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="129.16" y="1055.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractUrlHandlerMapping:::lookupHandler (12 samples, 0.23%)</title><rect x="283.4" y="645" width="2.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="286.42" y="655.5" ></text>
</g>
<g >
<title>vtable stub (2 samples, 0.04%)</title><rect x="1088.1" y="1285" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1091.07" y="1295.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="234.8" y="485" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="237.75" y="495.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="203.5" y="645" width="0.3" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="206.53" y="655.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/nodeselector/NodeSelectorSlot:::exit (15 samples, 0.29%)</title><rect x="243.9" y="629" width="3.5" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="246.93" y="639.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::handleInitiateApiVersionRequests (2 samples, 0.04%)</title><rect x="1068.6" y="1317" width="0.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1071.56" y="1327.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="1075.2" y="1013" width="0.2" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text x="1078.21" y="1023.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="293.5" y="581" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="296.52" y="591.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardContext:::getApplicationEventListeners (1 samples, 0.02%)</title><rect x="194.6" y="661" width="0.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="197.58" y="671.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="488.9" y="133" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="491.89" y="143.5" ></text>
</g>
<g >
<title>[unknown] (15 samples, 0.29%)</title><rect x="10.7" y="1509" width="3.4" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="13.69" y="1519.5" ></text>
</g>
<g >
<title>wake_up_state (2 samples, 0.04%)</title><rect x="80.7" y="405" width="0.5" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="83.71" y="415.5" ></text>
</g>
<g >
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="998.3" y="1045" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1001.31" y="1055.5" ></text>
</g>
<g >
<title>__srcu_read_unlock (1 samples, 0.02%)</title><rect x="1030.7" y="1141" width="0.2" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="1033.68" y="1151.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.02%)</title><rect x="144.1" y="901" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="147.07" y="911.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1 samples, 0.02%)</title><rect x="962.0" y="517" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="965.04" y="527.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/record/ByteBufferLogInputStream:::nextBatch (1 samples, 0.02%)</title><rect x="1100.9" y="1269" width="0.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1103.93" y="1279.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="1182.4" y="1189" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1185.42" y="1199.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="387.9" y="533" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="390.88" y="543.5" ></text>
</g>
<g >
<title>JNIHandleBlock::allocate_block (1 samples, 0.02%)</title><rect x="414.7" y="453" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text x="417.74" y="463.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="263.2" y="581" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="266.22" y="591.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/node/StatisticNode:::addRtAndSuccess (10 samples, 0.19%)</title><rect x="244.4" y="565" width="2.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="247.39" y="575.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (24 samples, 0.47%)</title><rect x="990.0" y="1157" width="5.6" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="993.04" y="1167.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="156.7" y="741" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="159.70" y="751.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="1129.4" y="1301" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="1132.39" y="1311.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="859.4" y="485" width="0.2" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text x="862.42" y="495.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Slice:::match (1 samples, 0.02%)</title><rect x="176.9" y="581" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="179.90" y="591.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (6 samples, 0.12%)</title><rect x="629.2" y="533" width="1.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="632.16" y="543.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1 samples, 0.02%)</title><rect x="35.3" y="1125" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="38.25" y="1135.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getStackTraceElement (1 samples, 0.02%)</title><rect x="625.0" y="549" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="628.02" y="559.5" ></text>
</g>
<g >
<title>sun/security/jca/ProviderList$ServiceList:::tryGet (1 samples, 0.02%)</title><rect x="183.6" y="629" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="186.56" y="639.5" ></text>
</g>
<g >
<title>mutex_lock (1 samples, 0.02%)</title><rect x="1121.4" y="1205" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1124.36" y="1215.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="117.0" y="1077" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="119.98" y="1087.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="293.5" y="565" width="0.3" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="296.52" y="575.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (1 samples, 0.02%)</title><rect x="649.4" y="453" width="0.2" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text x="652.36" y="463.5" ></text>
</g>
<g >
<title>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.02%)</title><rect x="642.7" y="485" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="645.70" y="495.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/CallableMethodReturnValueHandler:::supportsReturnType (1 samples, 0.02%)</title><rect x="938.4" y="661" width="0.2" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="941.39" y="671.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::getEntryAfterMiss (1 samples, 0.02%)</title><rect x="913.6" y="549" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="916.60" y="559.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (14 samples, 0.27%)</title><rect x="486.1" y="469" width="3.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="489.13" y="479.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="901.4" y="549" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="904.43" y="559.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.02%)</title><rect x="176.4" y="613" width="0.3" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="179.44" y="623.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.02%)</title><rect x="47.4" y="565" width="0.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="50.42" y="575.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="656.2" y="581" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="659.25" y="591.5" ></text>
</g>
<g >
<title>consume_skb (1 samples, 0.02%)</title><rect x="1118.8" y="853" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1121.83" y="863.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::compile (7 samples, 0.14%)</title><rect x="233.4" y="613" width="1.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="236.37" y="623.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::doSend (33 samples, 0.64%)</title><rect x="1093.4" y="1269" width="7.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1096.35" y="1279.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClient$$EnhancerBySpringCGLIB$$712d2b04:::incrBy (1 samples, 0.02%)</title><rect x="647.1" y="549" width="0.2" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="650.06" y="559.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="651.9" y="341" width="0.2" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text x="654.88" y="351.5" ></text>
</g>
<g >
<title>sock_poll (1 samples, 0.02%)</title><rect x="1154.9" y="1205" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1157.88" y="1215.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="592.2" y="373" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="595.19" y="383.5" ></text>
</g>
<g >
<title>java/util/HashMap:::newNode (1 samples, 0.02%)</title><rect x="636.0" y="549" width="0.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="639.04" y="559.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="225.3" y="565" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="228.34" y="575.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMapping:::getHandlerExecutionChain (15 samples, 0.29%)</title><rect x="248.3" y="661" width="3.4" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="251.30" y="671.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (14 samples, 0.27%)</title><rect x="227.6" y="629" width="3.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="230.63" y="639.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.02%)</title><rect x="1075.9" y="1061" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1078.90" y="1071.5" ></text>
</g>
<g >
<title>CodeCache::find_blob (1 samples, 0.02%)</title><rect x="510.5" y="437" width="0.2" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text x="513.47" y="447.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (1 samples, 0.02%)</title><rect x="1116.8" y="1093" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1119.77" y="1103.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="23.3" y="1189" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="26.32" y="1199.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="1120.4" y="1301" width="0.3" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text x="1123.44" y="1311.5" ></text>
</g>
<g >
<title>nmethod::is_zombie (1 samples, 0.02%)</title><rect x="213.6" y="549" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="216.63" y="559.5" ></text>
</g>
<g >
<title>tcp_data_queue (1 samples, 0.02%)</title><rect x="234.8" y="325" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="237.75" y="335.5" ></text>
</g>
<g >
<title>org/springframework/aop/aspectj/AbstractAspectJAdvice:::invokeAdviceMethod (1 samples, 0.02%)</title><rect x="647.8" y="501" width="0.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="650.75" y="511.5" ></text>
</g>
<g >
<title>__srcu_read_lock (3 samples, 0.06%)</title><rect x="1177.1" y="1157" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1180.14" y="1167.5" ></text>
</g>
<g >
<title>java/util/IdentityHashMap:::get (1 samples, 0.02%)</title><rect x="41.5" y="613" width="0.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="44.45" y="623.5" ></text>
</g>
<g >
<title>CollectedHeap::common_mem_allocate_init (2 samples, 0.04%)</title><rect x="642.5" y="501" width="0.4" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="645.47" y="511.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="949.2" y="661" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="952.18" y="671.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (2 samples, 0.04%)</title><rect x="1022.2" y="1029" width="0.4" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1025.18" y="1039.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardWrapperValve:::invoke (216 samples, 4.20%)</title><rect x="37.1" y="1173" width="49.6" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="40.09" y="1183.5" >org/a..</text>
</g>
<g >
<title>GenericTaskQueueSet&lt;OverflowTaskQueue&lt;StarTask, (4 samples, 0.08%)</title><rect x="20.1" y="1429" width="0.9" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="23.10" y="1439.5" ></text>
</g>
<g >
<title>jni_fast_GetIntField (25 samples, 0.49%)</title><rect x="884.7" y="549" width="5.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="887.67" y="559.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardWrapperValve:::invoke (3,775 samples, 73.44%)</title><rect x="120.7" y="1173" width="866.6" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="123.65" y="1183.5" >org/apache/catalina/core/StandardWrapperValve:::invoke</text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="152.8" y="837" width="0.2" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="155.79" y="847.5" ></text>
</g>
<g >
<title>ObjArrayKlass::multi_allocate (1 samples, 0.02%)</title><rect x="168.6" y="549" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="171.63" y="559.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="449.2" y="277" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="452.17" y="287.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.06%)</title><rect x="1075.7" y="1093" width="0.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1078.67" y="1103.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractUrlHandlerMapping:::getHandlerInternal (1 samples, 0.02%)</title><rect x="288.5" y="677" width="0.2" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="291.47" y="687.5" ></text>
</g>
<g >
<title>Parse::do_call (1 samples, 0.02%)</title><rect x="33.4" y="1109" width="0.2" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text x="36.42" y="1119.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="1137.9" y="1125" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="1140.89" y="1135.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serializeFields (2 samples, 0.04%)</title><rect x="378.5" y="533" width="0.4" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="381.46" y="543.5" ></text>
</g>
<g >
<title>com/google/gson/stream/JsonWriter:::string (5 samples, 0.10%)</title><rect x="223.5" y="581" width="1.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="226.50" y="591.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentMap:::computeIfAbsent (1 samples, 0.02%)</title><rect x="305.5" y="613" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="308.46" y="623.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (2 samples, 0.04%)</title><rect x="979.5" y="997" width="0.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="982.48" y="1007.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::format (4 samples, 0.08%)</title><rect x="652.3" y="581" width="1.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="655.34" y="591.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.02%)</title><rect x="80.5" y="533" width="0.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="83.48" y="543.5" ></text>
</g>
<g >
<title>dev_gro_receive (1 samples, 0.02%)</title><rect x="1146.4" y="1189" width="0.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="1149.38" y="1199.5" ></text>
</g>
<g >
<title>__alloc_skb (1 samples, 0.02%)</title><rect x="1116.8" y="1077" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="1119.77" y="1087.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.06%)</title><rect x="1059.4" y="1269" width="0.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1062.37" y="1279.5" ></text>
</g>
<g >
<title>G1CollectorPolicy::update_incremental_cset_info (1 samples, 0.02%)</title><rect x="18.0" y="1413" width="0.3" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text x="21.04" y="1423.5" ></text>
</g>
<g >
<title>__skb_checksum (1 samples, 0.02%)</title><rect x="80.0" y="325" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="83.02" y="335.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardHostValve:::invoke (216 samples, 4.20%)</title><rect x="37.1" y="1221" width="49.6" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="40.09" y="1231.5" >org/a..</text>
</g>
<g >
<title>wake_up_state (5 samples, 0.10%)</title><rect x="99.8" y="1141" width="1.1" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="102.76" y="1151.5" ></text>
</g>
<g >
<title>getnstimeofday64 (1 samples, 0.02%)</title><rect x="884.4" y="373" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="887.44" y="383.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="947.6" y="613" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="950.57" y="623.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.04%)</title><rect x="914.1" y="581" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="917.05" y="591.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (2 samples, 0.04%)</title><rect x="213.4" y="629" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="216.40" y="639.5" ></text>
</g>
<g >
<title>Symbol::as_klass_external_name (4 samples, 0.08%)</title><rect x="60.0" y="453" width="1.0" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="63.05" y="463.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="560.7" y="181" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="563.74" y="191.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="1010.5" y="997" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1013.47" y="1007.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (8 samples, 0.16%)</title><rect x="961.6" y="709" width="1.8" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="964.58" y="719.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/logger/LogSlot:::entry (1 samples, 0.02%)</title><rect x="43.1" y="629" width="0.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="46.06" y="639.5" ></text>
</g>
<g >
<title>wake_up_state (3 samples, 0.06%)</title><rect x="1059.4" y="1173" width="0.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1062.37" y="1183.5" ></text>
</g>
<g >
<title>G1ParTask::work (19 samples, 0.37%)</title><rect x="18.5" y="1461" width="4.4" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="21.49" y="1471.5" ></text>
</g>
<g >
<title>system_call_fastpath (43 samples, 0.84%)</title><rect x="997.8" y="1093" width="9.9" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="1000.85" y="1103.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/StandardContext:::getApplicationEventListeners (1 samples, 0.02%)</title><rect x="122.9" y="1125" width="0.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="125.95" y="1135.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1061.2" y="1221" width="0.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1064.21" y="1231.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender:::completeBatch (34 samples, 0.66%)</title><rect x="1069.7" y="1301" width="7.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="1072.70" y="1311.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (1 samples, 0.02%)</title><rect x="466.8" y="549" width="0.3" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="469.85" y="559.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/message/ParameterFormatter:::recursiveDeepToString (1 samples, 0.02%)</title><rect x="900.1" y="549" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="903.05" y="559.5" ></text>
</g>
<g >
<title>finish_task_switch (11 samples, 0.21%)</title><rect x="1165.2" y="1173" width="2.5" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="1168.21" y="1183.5" ></text>
</g>
<g >
<title>pthread_getspecific (1 samples, 0.02%)</title><rect x="516.0" y="469" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="518.98" y="479.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="180.6" y="421" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="183.57" y="431.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.02%)</title><rect x="1048.8" y="1141" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1051.81" y="1151.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1146.4" y="1253" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1149.38" y="1263.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/ModelFactory:::findSessionAttributeArguments (1 samples, 0.02%)</title><rect x="294.7" y="661" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="297.67" y="671.5" ></text>
</g>
<g >
<title>org/jboss/netty/channel/socket/nio/NioWorker:::writeFromUserCode (1 samples, 0.02%)</title><rect x="895.2" y="405" width="0.3" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="898.23" y="415.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="334.4" y="341" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="337.39" y="351.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/SynthesizedAnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="922.1" y="517" width="0.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="925.09" y="527.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (1 samples, 0.02%)</title><rect x="276.8" y="549" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="279.76" y="559.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="903.3" y="469" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="906.26" y="479.5" ></text>
</g>
<g >
<title>sun/nio/ch/SelectorImpl:::select (1 samples, 0.02%)</title><rect x="34.8" y="1253" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="37.79" y="1263.5" ></text>
</g>
<g >
<title>longest_match (12 samples, 0.23%)</title><rect x="460.9" y="469" width="2.7" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="463.88" y="479.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (16 samples, 0.31%)</title><rect x="1155.1" y="1205" width="3.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="1158.11" y="1215.5" ></text>
</g>
<g >
<title>select_estimate_accuracy (1 samples, 0.02%)</title><rect x="1128.0" y="1189" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1131.02" y="1199.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultSingletonBeanRegistry:::getSingleton (1 samples, 0.02%)</title><rect x="252.4" y="613" width="0.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="255.43" y="623.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/HttpEntityMethodProcessor:::supportsReturnType (1 samples, 0.02%)</title><rect x="938.6" y="661" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="941.62" y="671.5" ></text>
</g>
<g >
<title>java/util/HashSet:::iterator (1 samples, 0.02%)</title><rect x="1107.1" y="1285" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1110.12" y="1295.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="971.2" y="853" width="0.2" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="974.22" y="863.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_nozero_C (1 samples, 0.02%)</title><rect x="1045.8" y="1253" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text x="1048.83" y="1263.5" ></text>
</g>
<g >
<title>sun/nio/ch/NativeThread:::current (1 samples, 0.02%)</title><rect x="1110.3" y="1253" width="0.3" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text x="1113.34" y="1263.5" ></text>
</g>
<g >
<title>OptoRuntime::new_instance_C (1 samples, 0.02%)</title><rect x="936.8" y="597" width="0.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="939.78" y="607.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (1 samples, 0.02%)</title><rect x="129.1" y="965" width="0.3" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="132.15" y="975.5" ></text>
</g>
<g >
<title>org/springframework/util/AntPathMatcher:::match (3 samples, 0.06%)</title><rect x="47.2" y="597" width="0.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="50.19" y="607.5" ></text>
</g>
<g >
<title>inet_sendmsg (37 samples, 0.72%)</title><rect x="998.8" y="1013" width="8.5" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1001.77" y="1023.5" ></text>
</g>
<g >
<title>org/springframework/web/accept/ContentNegotiationManager:::resolveMediaTypes (1 samples, 0.02%)</title><rect x="262.3" y="581" width="0.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="265.30" y="591.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/ModelAttributeMethodProcessor:::supportsReturnType (31 samples, 0.60%)</title><rect x="296.7" y="645" width="7.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="299.74" y="655.5" ></text>
</g>
<g >
<title>anon_pipe_buf_release (1 samples, 0.02%)</title><rect x="1188.6" y="1221" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1191.62" y="1231.5" ></text>
</g>
<g >
<title>jni_SetIntField (6 samples, 0.12%)</title><rect x="883.3" y="549" width="1.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="886.29" y="559.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="488.9" y="229" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="491.89" y="239.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="514.4" y="405" width="0.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="517.37" y="415.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil:::write (3 samples, 0.06%)</title><rect x="87.1" y="1141" width="0.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="90.14" y="1151.5" ></text>
</g>
<g >
<title>sun/security/provider/ByteArrayAccess:::b2iBig64 (1 samples, 0.02%)</title><rect x="1044.5" y="1237" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1047.45" y="1247.5" ></text>
</g>
<g >
<title>jshort_arraycopy (1 samples, 0.02%)</title><rect x="387.0" y="485" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="389.96" y="495.5" ></text>
</g>
<g >
<title>post_allocation_notify (1 samples, 0.02%)</title><rect x="535.0" y="453" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="538.03" y="463.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="1050.2" y="1077" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1053.19" y="1087.5" ></text>
</g>
<g >
<title>G1RootProcessor::evacuate_roots (3 samples, 0.06%)</title><rect x="21.0" y="1445" width="0.7" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text x="24.02" y="1455.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="628.2" y="501" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="631.24" y="511.5" ></text>
</g>
<g >
<title>inflateInit2_ (1 samples, 0.02%)</title><rect x="680.1" y="565" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="683.12" y="575.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="910.4" y="117" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="913.38" y="127.5" ></text>
</g>
<g >
<title>ksize (1 samples, 0.02%)</title><rect x="14.6" y="1365" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="17.59" y="1375.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/MdcPatternConverter:::format (1 samples, 0.02%)</title><rect x="1180.4" y="1301" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1183.36" y="1311.5" ></text>
</g>
<g >
<title>java/lang/Thread:::sleep (12 samples, 0.23%)</title><rect x="1060.1" y="1317" width="2.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="1063.06" y="1327.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer:::getHeadersIfIncluded (5 samples, 0.10%)</title><rect x="84.2" y="757" width="1.1" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="87.15" y="767.5" ></text>
</g>
<g >
<title>hrtimer_cancel (1 samples, 0.02%)</title><rect x="1185.2" y="1205" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1188.18" y="1215.5" ></text>
</g>
<g >
<title>__fsnotify_parent (1 samples, 0.02%)</title><rect x="1113.8" y="1125" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1116.78" y="1135.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (2 samples, 0.04%)</title><rect x="412.2" y="341" width="0.5" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="415.21" y="351.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="592.4" y="357" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="595.42" y="367.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/RequestMappingInfo:::getMatchingCondition (36 samples, 0.70%)</title><rect x="255.6" y="613" width="8.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="258.64" y="623.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="1168.4" y="1141" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="1171.42" y="1151.5" ></text>
</g>
<g >
<title>org/springframework/http/MediaType:::isCompatibleWith (1 samples, 0.02%)</title><rect x="82.1" y="645" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="85.09" y="655.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1033.9" y="1237" width="0.2" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="1036.89" y="1247.5" ></text>
</g>
<g >
<title>vfs_read (1 samples, 0.02%)</title><rect x="1188.6" y="1269" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1191.62" y="1279.5" ></text>
</g>
<g >
<title>JVM_IsThreadAlive (1 samples, 0.02%)</title><rect x="1033.9" y="1253" width="0.2" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="1036.89" y="1263.5" ></text>
</g>
<g >
<title>system_call_fastpath (14 samples, 0.27%)</title><rect x="1148.9" y="1269" width="3.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1151.91" y="1279.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (3 samples, 0.06%)</title><rect x="629.2" y="373" width="0.6" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="632.16" y="383.5" ></text>
</g>
<g >
<title>org/springframework/core/ResolvableType:::forType (2 samples, 0.04%)</title><rect x="924.2" y="597" width="0.4" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="927.16" y="607.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="947.6" y="549" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="950.57" y="559.5" ></text>
</g>
<g >
<title>Java_java_util_zip_Deflater_deflateBytes (1 samples, 0.02%)</title><rect x="308.7" y="517" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="311.67" y="527.5" ></text>
</g>
<g >
<title>java/util/ComparableTimSort:::sort (3 samples, 0.06%)</title><rect x="260.2" y="565" width="0.7" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="263.23" y="575.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock@plt (1 samples, 0.02%)</title><rect x="1058.9" y="1253" width="0.2" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="1061.91" y="1263.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.04%)</title><rect x="976.7" y="1029" width="0.5" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="979.73" y="1039.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1137.9" y="1253" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1140.89" y="1263.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor108:::invoke (9 samples, 0.18%)</title><rect x="308.4" y="629" width="2.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="311.44" y="639.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/NamesEnumerator:::findNext (3 samples, 0.06%)</title><rect x="84.6" y="725" width="0.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="87.61" y="735.5" ></text>
</g>
<g >
<title>__alloc_skb (1 samples, 0.02%)</title><rect x="14.6" y="1381" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="17.59" y="1391.5" ></text>
</g>
<g >
<title>java/lang/String:::regionMatches (1 samples, 0.02%)</title><rect x="197.1" y="677" width="0.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="200.10" y="687.5" ></text>
</g>
<g >
<title>epoll_ctl (2 samples, 0.04%)</title><rect x="1121.4" y="1253" width="0.4" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="1124.36" y="1263.5" ></text>
</g>
<g >
<title>org/jboss/netty/channel/socket/nio/NioSocketChannel$WriteTask:::run (1 samples, 0.02%)</title><rect x="34.6" y="1269" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="37.56" y="1279.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/system/SystemSlot:::exit (1 samples, 0.02%)</title><rect x="246.9" y="565" width="0.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="249.92" y="575.5" ></text>
</g>
<g >
<title>org/joda/time/chrono/BasicYearDateTimeField:::get (1 samples, 0.02%)</title><rect x="945.5" y="629" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="948.51" y="639.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="592.4" y="213" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="595.42" y="223.5" ></text>
</g>
<g >
<title>java/util/AbstractList:::equals (1 samples, 0.02%)</title><rect x="895.7" y="549" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="898.69" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1086.5" y="1237" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="1089.46" y="1247.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.02%)</title><rect x="138.3" y="949" width="0.3" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="141.33" y="959.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (7 samples, 0.14%)</title><rect x="1075.2" y="1237" width="1.6" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="1078.21" y="1247.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="155.3" y="693" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="158.32" y="703.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (33 samples, 0.64%)</title><rect x="903.0" y="517" width="7.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="906.04" y="527.5" ></text>
</g>
<g >
<title>JavaThread::handle_special_suspend_equivalent_condition (1 samples, 0.02%)</title><rect x="1162.7" y="1301" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="1165.68" y="1311.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (2 samples, 0.04%)</title><rect x="242.1" y="645" width="0.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="245.10" y="655.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater:::inflateBytes (835 samples, 16.25%)</title><rect x="698.7" y="565" width="191.7" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="701.72" y="575.5" >java/util/zip/Inflater:::..</text>
</g>
<g >
<title>java/util/stream/ReduceOps$ReduceOp:::evaluateSequential (12 samples, 0.23%)</title><rect x="955.6" y="725" width="2.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="958.61" y="735.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="914.3" y="469" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="917.28" y="479.5" ></text>
</g>
<g >
<title>PhaseChaitin::Simplify (3 samples, 0.06%)</title><rect x="24.2" y="1349" width="0.7" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="27.23" y="1359.5" ></text>
</g>
<g >
<title>sock_aio_read.part.7 (3 samples, 0.06%)</title><rect x="1113.1" y="1125" width="0.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1116.09" y="1135.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (5 samples, 0.10%)</title><rect x="99.8" y="1109" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="102.76" y="1119.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getLookupPathForRequest (10 samples, 0.19%)</title><rect x="277.7" y="613" width="2.3" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="280.68" y="623.5" ></text>
</g>
<g >
<title>deflateStateCheck (1 samples, 0.02%)</title><rect x="464.1" y="501" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="467.09" y="511.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::resolveEmbeddedValue (2 samples, 0.04%)</title><rect x="924.6" y="629" width="0.5" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="927.61" y="639.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (3 samples, 0.06%)</title><rect x="405.8" y="453" width="0.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="408.78" y="463.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (8 samples, 0.16%)</title><rect x="473.0" y="501" width="1.9" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="476.05" y="511.5" ></text>
</g>
<g >
<title>G1SATBCardTableLoggingModRefBS::write_ref_array_work (1 samples, 0.02%)</title><rect x="627.8" y="485" width="0.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="630.78" y="495.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseAuthority (4 samples, 0.08%)</title><rect x="966.4" y="725" width="0.9" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="969.40" y="735.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (4 samples, 0.08%)</title><rect x="1153.3" y="1221" width="0.9" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1156.27" y="1231.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy109:::annotationType (1 samples, 0.02%)</title><rect x="199.2" y="661" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="202.17" y="671.5" ></text>
</g>
<g >
<title>__mnt_want_write_file (1 samples, 0.02%)</title><rect x="994.6" y="1029" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="997.63" y="1039.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/LongCodec:::deserialze (1 samples, 0.02%)</title><rect x="354.4" y="581" width="0.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="357.36" y="591.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="496.5" y="533" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="499.46" y="543.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (31 samples, 0.60%)</title><rect x="474.9" y="501" width="7.1" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="477.88" y="511.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serialize (2 samples, 0.04%)</title><rect x="365.8" y="517" width="0.5" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="368.84" y="527.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="1010.5" y="965" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1013.47" y="975.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_mask (2 samples, 0.04%)</title><rect x="548.3" y="245" width="0.5" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="551.35" y="255.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/MessageBytes:::recycle (1 samples, 0.02%)</title><rect x="1014.1" y="1221" width="0.3" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="1017.15" y="1231.5" ></text>
</g>
<g >
<title>finish_task_switch (10 samples, 0.19%)</title><rect x="1125.7" y="1125" width="2.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1128.72" y="1135.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="374.8" y="389" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="377.79" y="399.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="859.4" y="469" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="862.42" y="479.5" ></text>
</g>
<g >
<title>add_transaction_credits (1 samples, 0.02%)</title><rect x="1172.6" y="997" width="0.2" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text x="1175.55" y="1007.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="877.1" y="421" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="880.09" y="431.5" ></text>
</g>
<g >
<title>arrayof_jint_fill (2 samples, 0.04%)</title><rect x="269.4" y="565" width="0.5" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="272.42" y="575.5" ></text>
</g>
<g >
<title>CollectedHeap::common_mem_allocate_init (1 samples, 0.02%)</title><rect x="107.6" y="1189" width="0.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text x="110.57" y="1199.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/CoyoteAdapter:::service (3,927 samples, 76.40%)</title><rect x="110.6" y="1237" width="901.5" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="113.55" y="1247.5" >org/apache/catalina/connector/CoyoteAdapter:::service</text>
</g>
<g >
<title>enqueue_to_backlog (1 samples, 0.02%)</title><rect x="1152.4" y="1109" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1155.35" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="270.3" y="517" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="273.33" y="527.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.02%)</title><rect x="628.2" y="517" width="0.3" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="631.24" y="527.5" ></text>
</g>
<g >
<title>_tr_init (2 samples, 0.04%)</title><rect x="423.5" y="469" width="0.4" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="426.46" y="479.5" ></text>
</g>
<g >
<title>jshort_arraycopy (2 samples, 0.04%)</title><rect x="54.3" y="485" width="0.5" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="57.31" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (28 samples, 0.54%)</title><rect x="904.0" y="373" width="6.4" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="906.95" y="383.5" ></text>
</g>
<g >
<title>java/util/ComparableTimSort:::sort (5 samples, 0.10%)</title><rect x="976.7" y="1045" width="1.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="979.73" y="1055.5" ></text>
</g>
<g >
<title>BarrierSet::static_write_ref_array_post (1 samples, 0.02%)</title><rect x="1047.2" y="1237" width="0.2" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text x="1050.21" y="1247.5" ></text>
</g>
<g >
<title>system_call_fastpath (3 samples, 0.06%)</title><rect x="1128.2" y="1253" width="0.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1131.25" y="1263.5" ></text>
</g>
<g >
<title>TypeLong::xmeet (1 samples, 0.02%)</title><rect x="33.0" y="1301" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="35.96" y="1311.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="1117.5" y="981" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1120.46" y="991.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="92.6" y="1157" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="95.65" y="1167.5" ></text>
</g>
<g >
<title>G1CollectedHeap::unsafe_max_tlab_alloc (1 samples, 0.02%)</title><rect x="936.8" y="533" width="0.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="939.78" y="543.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONScanner:::scanFieldInt (3 samples, 0.06%)</title><rect x="330.0" y="533" width="0.7" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="333.02" y="543.5" ></text>
</g>
<g >
<title>resource_allocate_bytes (1 samples, 0.02%)</title><rect x="21.2" y="1349" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="24.25" y="1359.5" ></text>
</g>
<g >
<title>Symbol::as_unicode (48 samples, 0.93%)</title><rect x="592.7" y="453" width="11.0" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text x="595.65" y="463.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1146.4" y="1285" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1149.38" y="1295.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="13.9" y="1429" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="16.90" y="1439.5" ></text>
</g>
<g >
<title>start_xmit (8 samples, 0.16%)</title><rect x="1004.0" y="789" width="1.9" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="1007.05" y="799.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="1061.2" y="1125" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="1064.21" y="1135.5" ></text>
</g>
<g >
<title>ip_queue_xmit (1 samples, 0.02%)</title><rect x="14.1" y="1349" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="17.13" y="1359.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="947.6" y="469" width="0.2" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="950.57" y="479.5" ></text>
</g>
<g >
<title>org/springframework/http/converter/ByteArrayHttpMessageConverter:::supports (1 samples, 0.02%)</title><rect x="937.0" y="629" width="0.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="940.01" y="639.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/block/flow/FlowSlot:::entry (1 samples, 0.02%)</title><rect x="191.6" y="549" width="0.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="194.59" y="559.5" ></text>
</g>
<g >
<title>ret_from_intr (2 samples, 0.04%)</title><rect x="548.3" y="437" width="0.5" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="551.35" y="447.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (1 samples, 0.02%)</title><rect x="1116.1" y="1109" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1119.08" y="1119.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/message/ParameterFormatter:::appendMap (5 samples, 0.10%)</title><rect x="645.7" y="485" width="1.1" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="648.68" y="495.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="322.9" y="261" width="0.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="325.91" y="271.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy8:::annotationType (1 samples, 0.02%)</title><rect x="973.7" y="1045" width="0.3" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="976.74" y="1055.5" ></text>
</g>
<g >
<title>__libc_recv (1 samples, 0.02%)</title><rect x="14.1" y="1509" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="17.13" y="1519.5" ></text>
</g>
<g >
<title>page_to_skb (1 samples, 0.02%)</title><rect x="944.4" y="501" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="947.36" y="511.5" ></text>
</g>
<g >
<title>ep_unregister_pollwait.isra.6 (1 samples, 0.02%)</title><rect x="1150.1" y="1221" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1153.05" y="1231.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="514.6" y="357" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="517.60" y="367.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11InputBuffer:::parseHeader (8 samples, 0.16%)</title><rect x="1014.6" y="1237" width="1.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="1017.61" y="1247.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.04%)</title><rect x="763.9" y="501" width="0.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="766.91" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="306.1" y="581" width="0.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="309.15" y="591.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet:::iterator (1 samples, 0.02%)</title><rect x="196.2" y="645" width="0.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="199.18" y="655.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (2 samples, 0.04%)</title><rect x="103.7" y="1253" width="0.4" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="106.67" y="1263.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="532.3" y="421" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="535.28" y="431.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="117.0" y="1093" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="119.98" y="1103.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method:::hashCode (1 samples, 0.02%)</title><rect x="206.5" y="629" width="0.2" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="209.51" y="639.5" ></text>
</g>
<g >
<title>ext4_reserve_inode_write (3 samples, 0.06%)</title><rect x="1173.9" y="1029" width="0.7" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1176.93" y="1039.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="488.9" y="245" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="491.89" y="255.5" ></text>
</g>
<g >
<title>org/springframework/util/StringUtils:::tokenizeToStringArray (8 samples, 0.16%)</title><rect x="284.3" y="613" width="1.9" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="287.34" y="623.5" ></text>
</g>
<g >
<title>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.02%)</title><rect x="950.3" y="677" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text x="953.33" y="687.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/metrics/web/servlet/WebMvcMetricsFilter:::doFilterInternal (215 samples, 4.18%)</title><rect x="37.3" y="1077" width="49.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="40.32" y="1087.5" >org/..</text>
</g>
<g >
<title>org/springframework/util/StringUtils:::tokenizeToStringArray (5 samples, 0.10%)</title><rect x="249.9" y="629" width="1.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="252.90" y="639.5" ></text>
</g>
<g >
<title>sys_futex (1 samples, 0.02%)</title><rect x="16.0" y="1493" width="0.2" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="18.97" y="1503.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="332.1" y="405" width="0.2" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="335.09" y="415.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/ThreadNamePatternConverter:::format (1 samples, 0.02%)</title><rect x="1181.7" y="1317" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1184.74" y="1327.5" ></text>
</g>
<g >
<title>org/springframework/util/MimeType$SpecificityComparator:::compare (1 samples, 0.02%)</title><rect x="81.9" y="597" width="0.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="84.86" y="607.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/StatisticSlot:::entry (1 samples, 0.02%)</title><rect x="42.8" y="581" width="0.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="45.83" y="591.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="1061.2" y="1029" width="0.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1064.21" y="1039.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1086.5" y="1221" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1089.46" y="1231.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.02%)</title><rect x="425.1" y="517" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="428.07" y="527.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="242.8" y="645" width="0.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="245.79" y="655.5" ></text>
</g>
<g >
<title>java/util/Comparator$$Lambda$213/1325144078:::compare (1 samples, 0.02%)</title><rect x="81.9" y="613" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="84.86" y="623.5" ></text>
</g>
<g >
<title>jbd2_journal_put_journal_head (1 samples, 0.02%)</title><rect x="1174.2" y="981" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1177.16" y="991.5" ></text>
</g>
<g >
<title>inflateStateCheck (15 samples, 0.29%)</title><rect x="764.6" y="517" width="3.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="767.60" y="527.5" ></text>
</g>
<g >
<title>start_xmit (1 samples, 0.02%)</title><rect x="1118.8" y="901" width="0.3" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1121.83" y="911.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/service/impl/AdDataServiceImpl:::clickProcess (20 samples, 0.39%)</title><rect x="647.1" y="581" width="4.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="650.06" y="591.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdDataManager:::adChargeForCreative (1 samples, 0.02%)</title><rect x="647.1" y="565" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="650.06" y="575.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="250.8" y="565" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="253.82" y="575.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor73:::invoke (3 samples, 0.06%)</title><rect x="345.9" y="517" width="0.7" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="348.86" y="527.5" ></text>
</g>
<g >
<title>generic_exec_single (1 samples, 0.02%)</title><rect x="859.4" y="373" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="862.42" y="383.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerAdapter:::invokeHandlerMethod (2,834 samples, 55.14%)</title><rect x="289.2" y="677" width="650.6" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="292.16" y="687.5" >org/springframework/web/servlet/mvc/method/annotation/RequestMappingHandlerAdapter:::invo..</text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMapping:::getHandler (177 samples, 3.44%)</title><rect x="247.8" y="677" width="40.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="250.84" y="687.5" >org..</text>
</g>
<g >
<title>org/joda/time/chrono/BasicMonthOfYearDateTimeField:::get (1 samples, 0.02%)</title><rect x="943.9" y="645" width="0.2" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="946.90" y="655.5" ></text>
</g>
<g >
<title>call_softirq (2 samples, 0.04%)</title><rect x="412.2" y="389" width="0.5" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="415.21" y="399.5" ></text>
</g>
<g >
<title>UTF8::convert_to_unicode (15 samples, 0.29%)</title><rect x="594.7" y="437" width="3.5" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text x="597.72" y="447.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1075.2" y="1221" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1078.21" y="1231.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (2 samples, 0.04%)</title><rect x="377.5" y="517" width="0.5" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="380.54" y="527.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy50:::annotationType (1 samples, 0.02%)</title><rect x="199.4" y="661" width="0.2" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="202.40" y="671.5" ></text>
</g>
<g >
<title>sock_recvmsg (1 samples, 0.02%)</title><rect x="14.1" y="1445" width="0.3" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="17.13" y="1455.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.04%)</title><rect x="763.9" y="517" width="0.5" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="766.91" y="527.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.06%)</title><rect x="629.2" y="421" width="0.6" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="632.16" y="431.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.02%)</title><rect x="1115.8" y="1205" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1118.85" y="1215.5" ></text>
</g>
<g >
<title>do_csum (1 samples, 0.02%)</title><rect x="1146.4" y="1061" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="1149.38" y="1071.5" ></text>
</g>
<g >
<title>org/apache/coyote/AbstractProtocol$RecycledProcessors:::push (1 samples, 0.02%)</title><rect x="108.5" y="1253" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="111.49" y="1263.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="1122.5" y="1237" width="0.5" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1125.51" y="1247.5" ></text>
</g>
<g >
<title>java (5,140 samples, 100.00%)</title><rect x="10.0" y="1525" width="1180.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="13.00" y="1535.5" >java</text>
</g>
<g >
<title>org/apache/catalina/mapper/Mapper:::internalMapWrapper (8 samples, 0.16%)</title><rect x="115.4" y="1189" width="1.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="118.37" y="1199.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::getLibProperties (35 samples, 0.68%)</title><rect x="58.0" y="565" width="8.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="60.98" y="575.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil:::write (51 samples, 0.99%)</title><rect x="996.2" y="1141" width="11.7" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="999.24" y="1151.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (2 samples, 0.04%)</title><rect x="926.5" y="613" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="929.45" y="623.5" ></text>
</g>
<g >
<title>OptoRuntime::multianewarray2_C (1 samples, 0.02%)</title><rect x="168.4" y="565" width="0.2" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text x="171.40" y="575.5" ></text>
</g>
<g >
<title>packet_rcv (1 samples, 0.02%)</title><rect x="1118.4" y="901" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1121.37" y="911.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/JSONLexerBase:::scanSymbol (1 samples, 0.02%)</title><rect x="324.1" y="549" width="0.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="327.05" y="559.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (1 samples, 0.02%)</title><rect x="156.5" y="773" width="0.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="159.47" y="783.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream:::write (1 samples, 0.02%)</title><rect x="54.8" y="549" width="0.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="57.77" y="559.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/kv/JedisClient$$FastClassBySpringCGLIB$$11ce05b4:::invoke (1 samples, 0.02%)</title><rect x="647.1" y="453" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="650.06" y="463.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1086.5" y="1205" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="1089.46" y="1215.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="305.2" y="613" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="308.23" y="623.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (1 samples, 0.02%)</title><rect x="253.3" y="613" width="0.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="256.35" y="623.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="92.6" y="1125" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="95.65" y="1135.5" ></text>
</g>
<g >
<title>epoll_ctl (1 samples, 0.02%)</title><rect x="16.4" y="1509" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="19.43" y="1519.5" ></text>
</g>
<g >
<title>java/util/zip/GZIPOutputStream:::finish (1 samples, 0.02%)</title><rect x="308.9" y="549" width="0.2" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="311.90" y="559.5" ></text>
</g>
<g >
<title>os::Linux::safe_cond_timedwait (1 samples, 0.02%)</title><rect x="91.7" y="1221" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text x="94.73" y="1231.5" ></text>
</g>
<g >
<title>java/lang/String:::indexOf (1 samples, 0.02%)</title><rect x="331.6" y="517" width="0.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="334.63" y="527.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="795.6" y="485" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="798.60" y="495.5" ></text>
</g>
<g >
<title>sun/nio/ch/NativeThread:::current (1 samples, 0.02%)</title><rect x="1114.2" y="1285" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1117.24" y="1295.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1061.2" y="1189" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1064.21" y="1199.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (19 samples, 0.37%)</title><rect x="1002.0" y="837" width="4.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1004.98" y="847.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::isInJavaLangAnnotationPackage (3 samples, 0.06%)</title><rect x="984.3" y="1029" width="0.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="987.30" y="1039.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="995.6" y="1077" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="998.55" y="1087.5" ></text>
</g>
<g >
<title>__ext4_journal_start_sb (1 samples, 0.02%)</title><rect x="1172.6" y="1045" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1175.55" y="1055.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/DispatcherServlet:::doService (3,406 samples, 66.26%)</title><rect x="159.5" y="709" width="781.9" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="162.45" y="719.5" >org/springframework/web/servlet/DispatcherServlet:::doService</text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="608.5" y="341" width="0.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="611.49" y="351.5" ></text>
</g>
<g >
<title>virtqueue_get_buf (1 samples, 0.02%)</title><rect x="1004.5" y="757" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1007.51" y="767.5" ></text>
</g>
<g >
<title>__alloc_skb (2 samples, 0.04%)</title><rect x="999.5" y="965" width="0.4" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="1002.46" y="975.5" ></text>
</g>
<g >
<title>vfs_write (1 samples, 0.02%)</title><rect x="895.2" y="325" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="898.23" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1168.4" y="1237" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1171.42" y="1247.5" ></text>
</g>
<g >
<title>Parse::do_get_xxx (1 samples, 0.02%)</title><rect x="33.4" y="997" width="0.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="36.42" y="1007.5" ></text>
</g>
<g >
<title>java/util/zip/InflaterInputStream:::read (1 samples, 0.02%)</title><rect x="80.2" y="597" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="83.25" y="607.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat$Timer:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="649.4" y="469" width="0.2" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="652.36" y="479.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="21.9" y="1333" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="24.94" y="1343.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="1163.8" y="1285" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="1166.83" y="1295.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="628.2" y="453" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="631.24" y="463.5" ></text>
</g>
<g >
<title>futex_wait (14 samples, 0.27%)</title><rect x="1165.0" y="1237" width="3.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1167.98" y="1247.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (8 samples, 0.16%)</title><rect x="489.3" y="485" width="1.9" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="492.35" y="495.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::deserialze (118 samples, 2.30%)</title><rect x="324.5" y="549" width="27.1" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="327.51" y="559.5" >c..</text>
</g>
<g >
<title>Threads::possibly_parallel_oops_do (2 samples, 0.04%)</title><rect x="21.2" y="1413" width="0.5" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="24.25" y="1423.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/utils/AbstractIterator:::next (1 samples, 0.02%)</title><rect x="1102.1" y="1269" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="1105.07" y="1279.5" ></text>
</g>
<g >
<title>CodeHeap::deallocate (1 samples, 0.02%)</title><rect x="33.6" y="1333" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="36.65" y="1343.5" ></text>
</g>
<g >
<title>G1ParScanThreadState::trim_queue (4 samples, 0.08%)</title><rect x="19.2" y="1429" width="0.9" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text x="22.18" y="1439.5" ></text>
</g>
<g >
<title>__do_softirq (2 samples, 0.04%)</title><rect x="448.9" y="341" width="0.5" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="451.94" y="351.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/FrameworkServlet:::service (1 samples, 0.02%)</title><rect x="948.3" y="757" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="951.26" y="767.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="180.6" y="357" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="183.57" y="367.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="1061.2" y="1061" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1064.21" y="1071.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/metrics/web/servlet/WebMvcMetricsFilter:::record (57 samples, 1.11%)</title><rect x="972.1" y="1061" width="13.1" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="975.14" y="1071.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_nozero_C (1 samples, 0.02%)</title><rect x="213.6" y="613" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text x="216.63" y="623.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor:::getTask (41 samples, 0.80%)</title><rect x="1050.6" y="1317" width="9.5" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="1053.65" y="1327.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (2 samples, 0.04%)</title><rect x="162.2" y="677" width="0.5" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="165.21" y="687.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/metrics/web/servlet/WebMvcMetricsFilter:::record (4 samples, 0.08%)</title><rect x="85.8" y="1061" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="88.76" y="1071.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="897.1" y="597" width="0.2" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="900.07" y="607.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="1048.8" y="1077" width="0.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1051.81" y="1087.5" ></text>
</g>
<g >
<title>pthread_getspecific@plt (1 samples, 0.02%)</title><rect x="624.6" y="501" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="627.56" y="511.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1033.9" y="1205" width="0.2" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text x="1036.89" y="1215.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1050.2" y="1253" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="1053.19" y="1263.5" ></text>
</g>
<g >
<title>java/lang/String:::split (1 samples, 0.02%)</title><rect x="184.5" y="645" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="187.47" y="655.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="449.2" y="245" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="452.17" y="255.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="176.9" y="565" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="179.90" y="575.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (2 samples, 0.04%)</title><rect x="1033.0" y="1253" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1035.97" y="1263.5" ></text>
</g>
<g >
<title>clock_gettime (1 samples, 0.02%)</title><rect x="164.3" y="661" width="0.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="167.27" y="671.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="982.9" y="1013" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="985.93" y="1023.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedConstructorAccessor83:::newInstance (1 samples, 0.02%)</title><rect x="172.8" y="613" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="175.77" y="623.5" ></text>
</g>
<g >
<title>tcp_data_queue (1 samples, 0.02%)</title><rect x="180.6" y="277" width="0.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="183.57" y="287.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (3 samples, 0.06%)</title><rect x="238.2" y="629" width="0.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="241.19" y="639.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/metrics/LatencyStat:::setMin (9 samples, 0.18%)</title><rect x="148.2" y="853" width="2.1" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="151.20" y="863.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (11 samples, 0.21%)</title><rect x="1125.5" y="1173" width="2.5" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1128.49" y="1183.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (10 samples, 0.19%)</title><rect x="675.8" y="581" width="2.3" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="678.76" y="591.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/CglibAopProxy$DynamicAdvisedInterceptor:::intercept (1 samples, 0.02%)</title><rect x="647.1" y="533" width="0.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="650.06" y="543.5" ></text>
</g>
<g >
<title>redis/clients/jedis/Jedis:::close (1 samples, 0.02%)</title><rect x="650.5" y="565" width="0.2" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text x="653.51" y="575.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (9 samples, 0.18%)</title><rect x="1172.6" y="1061" width="2.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1175.55" y="1071.5" ></text>
</g>
<g >
<title>VMThread::evaluate_operation (4 samples, 0.08%)</title><rect x="1189.1" y="1445" width="0.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text x="1192.08" y="1455.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="87.1" y="1093" width="0.5" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="90.14" y="1103.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/LoggerContext:::getLogger (1 samples, 0.02%)</title><rect x="306.8" y="645" width="0.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="309.84" y="655.5" ></text>
</g>
<g >
<title>Monitor::lock_without_safepoint_check (1 samples, 0.02%)</title><rect x="1052.7" y="1221" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="1055.72" y="1231.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1152.4" y="1189" width="0.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1155.35" y="1199.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="1168.4" y="1157" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1171.42" y="1167.5" ></text>
</g>
<g >
<title>VMThread::run (4 samples, 0.08%)</title><rect x="1189.1" y="1477" width="0.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="1192.08" y="1487.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="1061.2" y="1077" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1064.21" y="1087.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy0:::annotationType (1 samples, 0.02%)</title><rect x="198.9" y="661" width="0.3" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="201.94" y="671.5" ></text>
</g>
<g >
<title>JavaCalls::call_helper (3 samples, 0.06%)</title><rect x="414.5" y="485" width="0.7" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="417.51" y="495.5" ></text>
</g>
<g >
<title>redis/clients/jedis/Protocol:::process (1 samples, 0.02%)</title><rect x="647.1" y="421" width="0.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="650.06" y="431.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (30 samples, 0.58%)</title><rect x="1152.1" y="1301" width="6.9" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="1155.12" y="1311.5" ></text>
</g>
<g >
<title>rcu_process_gp_end (1 samples, 0.02%)</title><rect x="592.2" y="309" width="0.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="595.19" y="319.5" ></text>
</g>
<g >
<title>java/util/Formatter:::format (3 samples, 0.06%)</title><rect x="54.1" y="549" width="0.7" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="57.08" y="559.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="514.4" y="261" width="0.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="517.37" y="271.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeTime (1 samples, 0.02%)</title><rect x="655.1" y="565" width="0.2" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="658.10" y="575.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="510.2" y="261" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="513.24" y="271.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/record/MemoryRecordsBuilder:::close (8 samples, 0.16%)</title><rect x="1079.8" y="1285" width="1.8" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="1082.81" y="1295.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11OutputBuffer:::write (1 samples, 0.02%)</title><rect x="87.8" y="1189" width="0.3" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="90.82" y="1199.5" ></text>
</g>
<g >
<title>java/util/TimSort:::sort (1 samples, 0.02%)</title><rect x="81.9" y="629" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="84.86" y="639.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (216 samples, 4.20%)</title><rect x="37.1" y="1109" width="49.6" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="40.09" y="1119.5" >org/a..</text>
</g>
<g >
<title>sock_poll (1 samples, 0.02%)</title><rect x="1154.6" y="1189" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1157.65" y="1199.5" ></text>
</g>
<g >
<title>tcp_sendmsg (2 samples, 0.04%)</title><rect x="87.1" y="997" width="0.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="90.14" y="1007.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1033.9" y="1221" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1036.89" y="1231.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::encode (14 samples, 0.27%)</title><rect x="381.4" y="549" width="3.3" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="384.45" y="559.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$Poller:::events (6 samples, 0.12%)</title><rect x="1144.3" y="1333" width="1.4" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1147.32" y="1343.5" ></text>
</g>
<g >
<title>schedule (10 samples, 0.19%)</title><rect x="1125.7" y="1157" width="2.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1128.72" y="1167.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (8 samples, 0.16%)</title><rect x="221.4" y="533" width="1.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="224.44" y="543.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="13.9" y="1461" width="0.2" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text x="16.90" y="1471.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="374.8" y="469" width="0.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="377.79" y="479.5" ></text>
</g>
<g >
<title>tcp_transmit_skb (23 samples, 0.45%)</title><rect x="1001.3" y="933" width="5.3" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1004.29" y="943.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/message/ParameterFormatter:::recursiveDeepToString (5 samples, 0.10%)</title><rect x="645.7" y="501" width="1.1" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="648.68" y="511.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.02%)</title><rect x="1092.7" y="1269" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="1095.66" y="1279.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="583.9" y="261" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="586.93" y="271.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::await (37 samples, 0.72%)</title><rect x="1050.9" y="1301" width="8.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="1053.88" y="1311.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1148.2" y="1253" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1151.22" y="1263.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.02%)</title><rect x="43.7" y="677" width="0.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="46.75" y="687.5" ></text>
</g>
<g >
<title>JavaCalls::call_helper (5,032 samples, 97.90%)</title><rect x="33.9" y="1397" width="1155.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="36.88" y="1407.5" >JavaCalls::call_helper</text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/StatisticSlot:::entry (9 samples, 0.18%)</title><rect x="189.8" y="597" width="2.0" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="192.75" y="607.5" ></text>
</g>
<g >
<title>ThreadStateTransition::trans_from_native (1 samples, 0.02%)</title><rect x="90.8" y="1221" width="0.2" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="93.81" y="1231.5" ></text>
</g>
<g >
<title>org/springframework/web/context/request/ServletWebRequest:::getHeaderValues (1 samples, 0.02%)</title><rect x="262.3" y="565" width="0.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="265.30" y="575.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (1 samples, 0.02%)</title><rect x="15.3" y="1221" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="18.28" y="1231.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap$LinkedHashIterator:::hasNext (1 samples, 0.02%)</title><rect x="257.2" y="597" width="0.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="260.25" y="607.5" ></text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.02%)</title><rect x="1050.2" y="1013" width="0.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1053.19" y="1023.5" ></text>
</g>
<g >
<title>io/micrometer/core/instrument/Tags$ArrayIterator:::&lt;init&gt; (1 samples, 0.02%)</title><rect x="974.4" y="1029" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="977.43" y="1039.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/metrics/stats/Meter:::record (1 samples, 0.02%)</title><rect x="1090.4" y="1269" width="0.2" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="1093.37" y="1279.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1137.9" y="1221" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1140.89" y="1231.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::removeAttribute (2 samples, 0.04%)</title><rect x="153.9" y="805" width="0.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="156.94" y="815.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="859.4" y="453" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="862.42" y="463.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="334.4" y="357" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="337.39" y="367.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/SocketProcessorBase:::run (4,047 samples, 78.74%)</title><rect x="101.8" y="1301" width="929.1" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="104.83" y="1311.5" >org/apache/tomcat/util/net/SocketProcessorBase:::run</text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="608.5" y="437" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="611.49" y="447.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="877.3" y="501" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="880.32" y="511.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="1048.6" y="1141" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1051.58" y="1151.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="931.5" y="629" width="0.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="934.50" y="639.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/databind/ser/std/MapSerializer:::serializeFields (46 samples, 0.89%)</title><rect x="366.3" y="517" width="10.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="369.30" y="527.5" ></text>
</g>
<g >
<title>java/util/Collection:::stream (1 samples, 0.02%)</title><rect x="201.2" y="661" width="0.3" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="204.23" y="671.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1116.8" y="1061" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1119.77" y="1071.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (1 samples, 0.02%)</title><rect x="1029.8" y="1125" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1032.76" y="1135.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="207.7" y="533" width="0.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="210.66" y="543.5" ></text>
</g>
<g >
<title>ReferenceProcessor::process_phase3 (3 samples, 0.06%)</title><rect x="1189.1" y="1317" width="0.7" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="1192.08" y="1327.5" ></text>
</g>
<g >
<title>sysret_audit (1 samples, 0.02%)</title><rect x="1163.6" y="1285" width="0.2" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1166.60" y="1295.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="180.6" y="261" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="183.57" y="271.5" ></text>
</g>
<g >
<title>virtnet_poll (1 samples, 0.02%)</title><rect x="779.3" y="389" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="782.30" y="399.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::parse (1 samples, 0.02%)</title><rect x="650.3" y="549" width="0.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="653.28" y="559.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (24 samples, 0.47%)</title><rect x="990.0" y="1141" width="5.6" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="993.04" y="1151.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="592.4" y="421" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="595.42" y="431.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="914.3" y="549" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="917.28" y="559.5" ></text>
</g>
<g >
<title>Parse::Parse (1 samples, 0.02%)</title><rect x="33.4" y="1077" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="36.42" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1048.6" y="1221" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="1051.58" y="1231.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap$LinkedKeyIterator:::next (1 samples, 0.02%)</title><rect x="263.7" y="581" width="0.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="266.68" y="591.5" ></text>
</g>
<g >
<title>futex_wait_setup (1 samples, 0.02%)</title><rect x="1167.7" y="1221" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1170.73" y="1231.5" ></text>
</g>
<g >
<title>sys_epoll_ctl (2 samples, 0.04%)</title><rect x="1122.5" y="1221" width="0.5" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1125.51" y="1231.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1053.2" y="1189" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1056.18" y="1199.5" ></text>
</g>
<g >
<title>Parse::do_all_blocks (1 samples, 0.02%)</title><rect x="33.4" y="1157" width="0.2" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text x="36.42" y="1167.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (3,612 samples, 70.27%)</title><rect x="142.0" y="981" width="829.2" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="145.00" y="991.5" >org/springframework/web/filter/OncePerRequestFilter:::doFilter</text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="583.9" y="437" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="586.93" y="447.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="901.7" y="469" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="904.66" y="479.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/NetworkClient:::handleCompletedSends (4 samples, 0.08%)</title><rect x="1067.6" y="1317" width="1.0" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1070.64" y="1327.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (52 samples, 1.01%)</title><rect x="89.2" y="1285" width="11.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="92.20" y="1295.5" ></text>
</g>
<g >
<title>pipe_write (1 samples, 0.02%)</title><rect x="895.2" y="293" width="0.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="898.23" y="303.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (2 samples, 0.04%)</title><rect x="448.9" y="421" width="0.5" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="451.94" y="431.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/PatternsRequestCondition:::getMatchingPatterns (1 samples, 0.02%)</title><rect x="258.9" y="597" width="0.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="261.86" y="607.5" ></text>
</g>
<g >
<title>Symbol::as_klass_external_name (5 samples, 0.10%)</title><rect x="616.5" y="469" width="1.2" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text x="619.53" y="479.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/ValuesEnumerator:::findNext (1 samples, 0.02%)</title><rect x="934.7" y="613" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="937.72" y="623.5" ></text>
</g>
<g >
<title>virtqueue_add_outbuf (1 samples, 0.02%)</title><rect x="1005.9" y="789" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1008.88" y="799.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/service/impl/AdDataServiceImpl:::clickProcess (1 samples, 0.02%)</title><rect x="310.1" y="581" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="313.05" y="591.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/web/trace/servlet/HttpTraceFilter:::doFilterInternal (3,545 samples, 68.97%)</title><rect x="154.4" y="805" width="813.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="157.40" y="815.5" >org/springframework/boot/actuate/web/trace/servlet/HttpTraceFilter:::doFilterInternal</text>
</g>
<g >
<title>java/lang/reflect/Method:::equals (1 samples, 0.02%)</title><rect x="206.1" y="645" width="0.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="209.05" y="655.5" ></text>
</g>
<g >
<title>Parker::park (1 samples, 0.02%)</title><rect x="90.6" y="1221" width="0.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text x="93.58" y="1231.5" ></text>
</g>
<g >
<title>java/math/BigDecimal:::layoutChars (1 samples, 0.02%)</title><rect x="344.5" y="517" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="347.49" y="527.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="1010.5" y="1029" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="1013.47" y="1039.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="334.4" y="421" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="337.39" y="431.5" ></text>
</g>
<g >
<title>org/apache/catalina/authenticator/AuthenticatorBase:::invoke (216 samples, 4.20%)</title><rect x="37.1" y="1205" width="49.6" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="40.09" y="1215.5" >org/a..</text>
</g>
<g >
<title>skb_release_all (1 samples, 0.02%)</title><rect x="1118.8" y="837" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="1121.83" y="847.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl:::read (27 samples, 0.53%)</title><rect x="1017.4" y="1205" width="6.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1020.36" y="1215.5" ></text>
</g>
<g >
<title>com/google/gson/Gson:::toJson (60 samples, 1.17%)</title><rect x="213.9" y="629" width="13.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="216.86" y="639.5" ></text>
</g>
<g >
<title>BacktraceBuilder::push (25 samples, 0.49%)</title><rect x="504.7" y="453" width="5.8" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="507.73" y="463.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.02%)</title><rect x="498.5" y="533" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="501.53" y="543.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="117.2" y="981" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="120.21" y="991.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (1 samples, 0.02%)</title><rect x="514.4" y="213" width="0.2" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="517.37" y="223.5" ></text>
</g>
<g >
<title>com/weibo/api/motan/rpc/AbstractReferer:::call (3 samples, 0.06%)</title><rect x="894.8" y="501" width="0.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="897.77" y="511.5" ></text>
</g>
<g >
<title>java/util/Calendar:::createCalendar (4 samples, 0.08%)</title><rect x="655.3" y="581" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="658.33" y="591.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (1 samples, 0.02%)</title><rect x="499.0" y="517" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="501.99" y="527.5" ></text>
</g>
<g >
<title>mod_timer (1 samples, 0.02%)</title><rect x="1061.2" y="949" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1064.21" y="959.5" ></text>
</g>
<g >
<title>ep_poll (1 samples, 0.02%)</title><rect x="34.8" y="1157" width="0.2" height="15.0" fill="rgb(208,63,63)" rx="2" ry="2" />
<text x="37.79" y="1167.5" ></text>
</g>
<g >
<title>UTF8::unicode_length (28 samples, 0.54%)</title><rect x="608.7" y="453" width="6.5" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text x="611.72" y="463.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.04%)</title><rect x="1102.8" y="1301" width="0.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1105.76" y="1311.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/system/SystemSlot:::exit (1 samples, 0.02%)</title><rect x="247.1" y="581" width="0.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="250.15" y="591.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics:::assertKeyWithRegex (3 samples, 0.06%)</title><rect x="467.8" y="565" width="0.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="470.77" y="575.5" ></text>
</g>
<g >
<title>skb_defer_rx_timestamp (1 samples, 0.02%)</title><rect x="628.2" y="357" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="631.24" y="367.5" ></text>
</g>
<g >
<title>com/google/gson/internal/bind/ArrayTypeAdapter:::write (40 samples, 0.78%)</title><rect x="217.1" y="597" width="9.2" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="220.07" y="607.5" ></text>
</g>
<g >
<title>Unsafe_Unpark (2 samples, 0.04%)</title><rect x="101.4" y="1269" width="0.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="104.37" y="1279.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="334.4" y="517" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="337.39" y="527.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/RequestContextFilter:::doFilterInternal (1 samples, 0.02%)</title><rect x="970.8" y="933" width="0.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="973.76" y="943.5" ></text>
</g>
<g >
<title>Unsafe_Park (30 samples, 0.58%)</title><rect x="1052.3" y="1269" width="6.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1055.26" y="1279.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::smartMatch (3 samples, 0.06%)</title><rect x="348.4" y="533" width="0.7" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="351.39" y="543.5" ></text>
</g>
<g >
<title>arrayof_jint_fill (1 samples, 0.02%)</title><rect x="57.8" y="533" width="0.2" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="60.75" y="543.5" ></text>
</g>
<g >
<title>__memmove_ssse3_back (1 samples, 0.02%)</title><rect x="430.3" y="469" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="433.35" y="479.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="583.9" y="309" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="586.93" y="319.5" ></text>
</g>
<g >
<title>G1RemSet::refine_card (3 samples, 0.06%)</title><rect x="22.2" y="1365" width="0.7" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text x="25.17" y="1375.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="80.0" y="453" width="0.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="83.02" y="463.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (2 samples, 0.04%)</title><rect x="979.5" y="1013" width="0.4" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="982.48" y="1023.5" ></text>
</g>
<g >
<title>tcp_v4_destroy_sock (1 samples, 0.02%)</title><rect x="1182.4" y="965" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1185.42" y="975.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.06%)</title><rect x="1075.7" y="1125" width="0.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1078.67" y="1135.5" ></text>
</g>
<g >
<title>do_sync_write (21 samples, 0.41%)</title><rect x="990.3" y="1077" width="4.8" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="993.27" y="1087.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="412.7" y="357" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="415.67" y="367.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="983.8" y="997" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="986.84" y="1007.5" ></text>
</g>
<g >
<title>JavaThread::check_and_handle_async_exceptions (1 samples, 0.02%)</title><rect x="1178.8" y="1221" width="0.2" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text x="1181.75" y="1231.5" ></text>
</g>
<g >
<title>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.02%)</title><rect x="107.6" y="1173" width="0.2" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text x="110.57" y="1183.5" ></text>
</g>
<g >
<title>_new_instance_Java (1 samples, 0.02%)</title><rect x="950.3" y="741" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="953.33" y="751.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (2 samples, 0.04%)</title><rect x="548.3" y="277" width="0.5" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="551.35" y="287.5" ></text>
</g>
<g >
<title>itable stub (3 samples, 0.06%)</title><rect x="350.0" y="533" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="353.00" y="543.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1182.4" y="1253" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1185.42" y="1263.5" ></text>
</g>
<g >
<title>net_rx_action (2 samples, 0.04%)</title><rect x="891.1" y="485" width="0.5" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="894.10" y="495.5" ></text>
</g>
<g >
<title>kfree (1 samples, 0.02%)</title><rect x="1168.4" y="981" width="0.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1171.42" y="991.5" ></text>
</g>
<g >
<title>HandleArea::allocate_handle (3 samples, 0.06%)</title><rect x="523.1" y="485" width="0.7" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text x="526.09" y="495.5" ></text>
</g>
<g >
<title>PhaseIterGVN::subsume_node (1 samples, 0.02%)</title><rect x="32.5" y="1317" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="35.50" y="1327.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="779.3" y="437" width="0.2" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="782.30" y="447.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotationUtils:::getAnnotation (1 samples, 0.02%)</title><rect x="985.0" y="1045" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="987.99" y="1055.5" ></text>
</g>
<g >
<title>org/apache/kafka/clients/producer/internals/Sender:::run (290 samples, 5.64%)</title><rect x="1063.0" y="1349" width="66.6" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1066.05" y="1359.5" >org/apa..</text>
</g>
<g >
<title>java_lang_Throwable::get_stack_trace_depth (1 samples, 0.02%)</title><rect x="58.9" y="501" width="0.2" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text x="61.90" y="511.5" ></text>
</g>
<g >
<title>deflate_slow (1 samples, 0.02%)</title><rect x="308.7" y="485" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="311.67" y="495.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="583.9" y="149" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="586.93" y="159.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="891.3" y="469" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="894.33" y="479.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="117.0" y="1157" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="119.98" y="1167.5" ></text>
</g>
<g >
<title>updateBytesCRC32 (4 samples, 0.08%)</title><rect x="914.5" y="597" width="0.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="917.51" y="607.5" ></text>
</g>
<g >
<title>local_clock (2 samples, 0.04%)</title><rect x="1000.1" y="933" width="0.5" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="1003.14" y="943.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.02%)</title><rect x="1069.9" y="1285" width="0.3" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="1072.93" y="1295.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="910.4" y="357" width="0.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="913.38" y="367.5" ></text>
</g>
<g >
<title>plist_add (1 samples, 0.02%)</title><rect x="35.5" y="1125" width="0.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="38.48" y="1135.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (3,603 samples, 70.10%)</title><rect x="143.6" y="933" width="827.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="146.61" y="943.5" >org/springframework/web/filter/OncePerRequestFilter:::doFilter</text>
</g>
<g >
<title>java/util/HashMap:::entrySet (1 samples, 0.02%)</title><rect x="633.1" y="565" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="636.06" y="575.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="560.7" y="261" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="563.74" y="271.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/Type$8:::write (1 samples, 0.02%)</title><rect x="1098.6" y="1237" width="0.3" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="1101.63" y="1247.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/utils/PureJavaCrc32C:::update (8 samples, 0.16%)</title><rect x="1079.8" y="1253" width="1.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1082.81" y="1263.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/StatisticSlot:::entry (1 samples, 0.02%)</title><rect x="191.8" y="613" width="0.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="194.82" y="623.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::poll (27 samples, 0.53%)</title><rect x="1122.0" y="1285" width="6.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="1125.05" y="1295.5" ></text>
</g>
<g >
<title>release_sock (1 samples, 0.02%)</title><rect x="1116.5" y="1093" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1119.54" y="1103.5" ></text>
</g>
<g >
<title>java/util/Formatter:::checkText (1 samples, 0.02%)</title><rect x="1046.5" y="1285" width="0.2" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="1049.52" y="1295.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/CharacterEncodingFilter:::doFilterInternal (216 samples, 4.20%)</title><rect x="37.1" y="1125" width="49.6" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="40.09" y="1135.5" >org/s..</text>
</g>
<g >
<title>ConstMethod::compressed_linenumber_table (1 samples, 0.02%)</title><rect x="531.1" y="469" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text x="534.13" y="479.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioBlockingSelector$BlockPoller:::run (27 samples, 0.53%)</title><rect x="1182.9" y="1365" width="6.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="1185.88" y="1375.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="1168.2" y="1301" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="1171.19" y="1311.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/http/Parameters:::processParameters (55 samples, 1.07%)</title><rect x="129.4" y="981" width="12.6" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text x="132.38" y="991.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="532.3" y="293" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="535.28" y="303.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="332.1" y="389" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="335.09" y="399.5" ></text>
</g>
<g >
<title>java/util/regex/Matcher:::end (1 samples, 0.02%)</title><rect x="1077.1" y="1253" width="0.2" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="1080.05" y="1263.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="117.2" y="1077" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="120.21" y="1087.5" ></text>
</g>
<g >
<title>vtable stub (2 samples, 0.04%)</title><rect x="141.5" y="965" width="0.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="144.54" y="975.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$3:::isSatisfiedBy (4 samples, 0.08%)</title><rect x="488.2" y="437" width="0.9" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="491.20" y="447.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="344.7" y="469" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="347.72" y="479.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace (3 samples, 0.06%)</title><rect x="58.2" y="469" width="0.7" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text x="61.21" y="479.5" ></text>
</g>
<g >
<title>inflate_table (30 samples, 0.58%)</title><rect x="768.0" y="517" width="6.9" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="771.05" y="527.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (1 samples, 0.02%)</title><rect x="14.1" y="1397" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="17.13" y="1407.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="117.2" y="1157" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="120.21" y="1167.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="279.7" y="533" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="282.75" y="543.5" ></text>
</g>
<g >
<title>java/util/Calendar$Builder:::build (3 samples, 0.06%)</title><rect x="655.3" y="565" width="0.7" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text x="658.33" y="575.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="488.9" y="357" width="0.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="491.89" y="367.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/service/impl/AdDataServiceImpl:::ecpProcess (1 samples, 0.02%)</title><rect x="310.1" y="597" width="0.2" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="313.05" y="607.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1052.7" y="1189" width="0.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1055.72" y="1199.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::parseAuthority (3 samples, 0.06%)</title><rect x="155.5" y="773" width="0.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="158.55" y="783.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (1 samples, 0.02%)</title><rect x="472.8" y="485" width="0.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="475.82" y="495.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="532.3" y="437" width="0.2" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="535.28" y="447.5" ></text>
</g>
<g >
<title>org/apache/coyote/http11/Http11Processor:::service (225 samples, 4.38%)</title><rect x="36.6" y="1253" width="51.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="39.63" y="1263.5" >org/a..</text>
</g>
<g >
<title>futex_wake_op (16 samples, 0.31%)</title><rect x="389.5" y="421" width="3.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="392.48" y="431.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/AsyncAppender:::append (4 samples, 0.08%)</title><rect x="899.4" y="581" width="0.9" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="902.36" y="591.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="510.2" y="421" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="513.24" y="431.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.25 (2 samples, 0.04%)</title><rect x="98.4" y="1125" width="0.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="101.39" y="1135.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.02%)</title><rect x="172.1" y="613" width="0.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="175.08" y="623.5" ></text>
</g>
<g >
<title>sys_futex (31 samples, 0.60%)</title><rect x="903.5" y="469" width="7.1" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="906.49" y="479.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="1100.2" y="1237" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1103.24" y="1247.5" ></text>
</g>
<g >
<title>wake_up_state (2 samples, 0.04%)</title><rect x="899.6" y="421" width="0.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="902.59" y="431.5" ></text>
</g>
<g >
<title>Method::line_number_from_bci (5 samples, 0.10%)</title><rect x="61.0" y="469" width="1.1" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="63.96" y="479.5" ></text>
</g>
<g >
<title>java/lang/Class:::getEnclosingMethod0 (1 samples, 0.02%)</title><rect x="943.7" y="629" width="0.2" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="946.67" y="639.5" ></text>
</g>
<g >
<title>system_call_fastpath (2 samples, 0.04%)</title><rect x="899.6" y="501" width="0.5" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="902.59" y="511.5" ></text>
</g>
<g >
<title>deflate_slow (161 samples, 3.13%)</title><rect x="426.7" y="485" width="36.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="429.67" y="495.5" >def..</text>
</g>
<g >
<title>com/alibaba/fastjson/serializer/LongCodec:::deserialze (1 samples, 0.02%)</title><rect x="342.6" y="517" width="0.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="345.65" y="527.5" ></text>
</g>
<g >
<title>adler32 (1 samples, 0.02%)</title><rect x="423.2" y="485" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="426.23" y="495.5" ></text>
</g>
<g >
<title>java/lang/StringBuffer:::append (4 samples, 0.08%)</title><rect x="223.5" y="565" width="0.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="226.50" y="575.5" ></text>
</g>
<g >
<title>do_futex (2 samples, 0.04%)</title><rect x="899.6" y="469" width="0.5" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="902.59" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="384.4" y="437" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="387.43" y="447.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method:::hashCode (1 samples, 0.02%)</title><rect x="206.3" y="645" width="0.2" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="209.28" y="655.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/Selector:::poll (117 samples, 2.28%)</title><rect x="1102.5" y="1317" width="26.9" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="1105.53" y="1327.5" >o..</text>
</g>
<g >
<title>G1CollectedHeap::free_collection_set (1 samples, 0.02%)</title><rect x="1189.8" y="1381" width="0.2" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text x="1192.77" y="1391.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="322.9" y="565" width="0.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="325.91" y="575.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy109:::annotationType (1 samples, 0.02%)</title><rect x="49.0" y="613" width="0.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="52.03" y="623.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="901.4" y="565" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="904.43" y="575.5" ></text>
</g>
<g >
<title>tcp_ack (1 samples, 0.02%)</title><rect x="1075.2" y="949" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1078.21" y="959.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractUrlHandlerMapping:::getHandlerInternal (22 samples, 0.43%)</title><rect x="283.4" y="661" width="5.1" height="15.0" fill="rgb(100,245,100)" rx="2" ry="2" />
<text x="286.42" y="671.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="592.2" y="389" width="0.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="595.19" y="399.5" ></text>
</g>
<g >
<title>rcu_process_callbacks (1 samples, 0.02%)</title><rect x="678.1" y="485" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="681.05" y="495.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/utils/ByteBufferOutputStream:::write (1 samples, 0.02%)</title><rect x="1040.1" y="1205" width="0.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1043.09" y="1215.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.02%)</title><rect x="1179.7" y="1285" width="0.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="1182.67" y="1295.5" ></text>
</g>
<g >
<title>do_sys_poll (1 samples, 0.02%)</title><rect x="647.8" y="261" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="650.75" y="271.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getOurStackTrace (4 samples, 0.08%)</title><rect x="309.1" y="549" width="1.0" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="312.13" y="559.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="384.4" y="469" width="0.3" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="387.43" y="479.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater:::end (1 samples, 0.02%)</title><rect x="679.2" y="581" width="0.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="682.20" y="591.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::afterCompletion (9 samples, 0.18%)</title><rect x="44.0" y="661" width="2.0" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="46.98" y="671.5" ></text>
</g>
<g >
<title>wake_up_state (19 samples, 0.37%)</title><rect x="1139.5" y="1157" width="4.4" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1142.49" y="1167.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1048.6" y="1173" width="0.2" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1051.58" y="1183.5" ></text>
</g>
<g >
<title>org/springframework/util/ObjectUtils:::unwrapOptional (1 samples, 0.02%)</title><rect x="915.9" y="645" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="918.89" y="655.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.02%)</title><rect x="1076.1" y="1061" width="0.3" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="1079.13" y="1071.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="293.5" y="629" width="0.3" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="296.52" y="639.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="901.7" y="373" width="0.2" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="904.66" y="383.5" ></text>
</g>
<g >
<title>sys_futex (3 samples, 0.06%)</title><rect x="1059.4" y="1237" width="0.7" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" />
<text x="1062.37" y="1247.5" ></text>
</g>
<g >
<title>HandleMarkCleaner::~HandleMarkCleaner (2 samples, 0.04%)</title><rect x="71.3" y="533" width="0.5" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="74.30" y="543.5" ></text>
</g>
<g >
<title>ip_finish_output (1 samples, 0.02%)</title><rect x="1022.4" y="933" width="0.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1025.41" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (19 samples, 0.37%)</title><rect x="1139.5" y="1125" width="4.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1142.49" y="1135.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="281.8" y="629" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="284.81" y="639.5" ></text>
</g>
<g >
<title>OptoRuntime::new_instance_C (1 samples, 0.02%)</title><rect x="107.6" y="1221" width="0.2" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text x="110.57" y="1231.5" ></text>
</g>
<g >
<title>system_call_fastpath (1 samples, 0.02%)</title><rect x="895.2" y="357" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="898.23" y="367.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="279.7" y="501" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="282.75" y="511.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="250.8" y="597" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="253.82" y="607.5" ></text>
</g>
<g >
<title>org/springframework/cglib/proxy/MethodProxy:::invoke (1 samples, 0.02%)</title><rect x="649.6" y="469" width="0.2" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text x="652.59" y="479.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/SynthesizedAnnotationInvocationHandler:::invoke (3 samples, 0.06%)</title><rect x="921.4" y="517" width="0.7" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="924.40" y="527.5" ></text>
</g>
<g >
<title>skb_checksum (1 samples, 0.02%)</title><rect x="1146.4" y="1125" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1149.38" y="1135.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="971.2" y="805" width="0.2" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="974.22" y="815.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (1 samples, 0.02%)</title><rect x="297.7" y="629" width="0.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="300.65" y="639.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/trace/http/HttpExchangeTracer$$Lambda$701/1778763541:::accept (1 samples, 0.02%)</title><rect x="949.6" y="773" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="952.64" y="783.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (2 samples, 0.04%)</title><rect x="252.2" y="629" width="0.5" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="255.20" y="639.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/CglibAopProxy$DynamicAdvisedInterceptor:::intercept (1 samples, 0.02%)</title><rect x="310.1" y="549" width="0.2" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="313.05" y="559.5" ></text>
</g>
<g >
<title>java/util/TimSort:::sort (1 samples, 0.02%)</title><rect x="932.4" y="645" width="0.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="935.42" y="655.5" ></text>
</g>
<g >
<title>ext4_file_write (22 samples, 0.43%)</title><rect x="1172.1" y="1157" width="5.0" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text x="1175.09" y="1167.5" ></text>
</g>
<g >
<title>oop_disjoint_arraycopy (2 samples, 0.04%)</title><rect x="977.9" y="1045" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="980.88" y="1055.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="917.0" y="613" width="0.3" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="920.04" y="623.5" ></text>
</g>
<g >
<title>__mnt_want_write (1 samples, 0.02%)</title><rect x="994.6" y="1013" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="997.63" y="1023.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="965.2" y="501" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="968.25" y="511.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="629.6" y="325" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="632.61" y="335.5" ></text>
</g>
<g >
<title>java/util/Spliterators$IteratorSpliterator:::forEachRemaining (11 samples, 0.21%)</title><rect x="955.8" y="709" width="2.6" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="958.84" y="719.5" ></text>
</g>
<g >
<title>Matcher::Matcher (1 samples, 0.02%)</title><rect x="23.3" y="1365" width="0.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text x="26.32" y="1375.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/statistic/StatisticSlot:::entry (9 samples, 0.18%)</title><rect x="189.8" y="581" width="2.0" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="192.75" y="591.5" ></text>
</g>
<g >
<title>WeakPreserveExceptionMark::WeakPreserveExceptionMark (1 samples, 0.02%)</title><rect x="859.2" y="517" width="0.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text x="862.19" y="527.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (2 samples, 0.04%)</title><rect x="303.2" y="549" width="0.4" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="306.16" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1137.9" y="1285" width="0.2" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1140.89" y="1295.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.02%)</title><rect x="947.6" y="453" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="950.57" y="463.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="1022.0" y="885" width="0.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1024.95" y="895.5" ></text>
</g>
<g >
<title>org/springframework/core/annotation/AnnotatedElementUtils:::searchWithFindSemantics (1 samples, 0.02%)</title><rect x="49.3" y="613" width="0.2" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="52.26" y="623.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1052.7" y="1125" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1055.72" y="1135.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater:::deflateBytes (1 samples, 0.02%)</title><rect x="308.9" y="533" width="0.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="311.90" y="543.5" ></text>
</g>
<g >
<title>jni_GetPrimitiveArrayCritical (3 samples, 0.06%)</title><rect x="76.3" y="533" width="0.7" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="79.35" y="543.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::setAttribute (3 samples, 0.06%)</title><rect x="121.8" y="1125" width="0.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="124.80" y="1135.5" ></text>
</g>
<g >
<title>ep_send_events_proc (1 samples, 0.02%)</title><rect x="1184.7" y="1221" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1187.72" y="1231.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1146.4" y="1237" width="0.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1149.38" y="1247.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="1182.4" y="1301" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1185.42" y="1311.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (1 samples, 0.02%)</title><rect x="877.1" y="517" width="0.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="880.09" y="527.5" ></text>
</g>
<g >
<title>java/nio/Buffer:::limit (1 samples, 0.02%)</title><rect x="36.9" y="1205" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="39.86" y="1215.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="344.3" y="501" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="347.26" y="511.5" ></text>
</g>
<g >
<title>PhaseIterGVN::transform_old (1 samples, 0.02%)</title><rect x="32.0" y="1301" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="35.04" y="1311.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.02%)</title><rect x="914.3" y="261" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="917.28" y="271.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/config/LoggerConfig:::log (56 samples, 1.09%)</title><rect x="901.2" y="581" width="12.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="904.20" y="591.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="592.4" y="309" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="595.42" y="319.5" ></text>
</g>
<g >
<title>java/lang/Long:::getChars (1 samples, 0.02%)</title><rect x="195.0" y="661" width="0.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="198.04" y="671.5" ></text>
</g>
<g >
<title>JNIHandles::make_local (5 samples, 0.10%)</title><rect x="800.2" y="517" width="1.1" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text x="803.19" y="527.5" ></text>
</g>
<g >
<title>_new_instance_Java (1 samples, 0.02%)</title><rect x="107.6" y="1237" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="110.57" y="1247.5" ></text>
</g>
<g >
<title>finish_task_switch (1 samples, 0.02%)</title><rect x="34.8" y="1077" width="0.2" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text x="37.79" y="1087.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/condition/PatternsRequestCondition:::getMatchingPatterns (3 samples, 0.06%)</title><rect x="47.2" y="613" width="0.7" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="50.19" y="623.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (3 samples, 0.06%)</title><rect x="490.3" y="437" width="0.7" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="493.26" y="447.5" ></text>
</g>
<g >
<title>tcp_child_process (1 samples, 0.02%)</title><rect x="965.2" y="469" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="968.25" y="479.5" ></text>
</g>
<g >
<title>netif_receive_skb_internal (1 samples, 0.02%)</title><rect x="623.4" y="325" width="0.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="626.42" y="335.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$ReduceOp:::evaluateSequential (1 samples, 0.02%)</title><rect x="950.8" y="741" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="953.79" y="751.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.04%)</title><rect x="304.8" y="613" width="0.4" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="307.77" y="623.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="877.3" y="453" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="880.32" y="463.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::remove (2 samples, 0.04%)</title><rect x="144.5" y="901" width="0.5" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="147.53" y="911.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::doRun (4,046 samples, 78.72%)</title><rect x="102.1" y="1285" width="928.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="105.06" y="1295.5" >org/apache/tomcat/util/net/NioEndpoint$SocketProcessor:::doRun</text>
</g>
<g >
<title>java/lang/String:::charAt (1 samples, 0.02%)</title><rect x="1010.2" y="1141" width="0.3" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1013.25" y="1151.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="1010.5" y="1061" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="1013.47" y="1071.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy8:::annotationType (1 samples, 0.02%)</title><rect x="300.9" y="597" width="0.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="303.87" y="607.5" ></text>
</g>
<g >
<title>pipe_write (21 samples, 0.41%)</title><rect x="1025.9" y="1141" width="4.8" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1028.86" y="1151.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (2 samples, 0.04%)</title><rect x="177.8" y="613" width="0.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="180.82" y="623.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="965.2" y="693" width="0.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="968.25" y="703.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/SocketProcessorBase:::run (2 samples, 0.04%)</title><rect x="1031.1" y="1317" width="0.5" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1034.14" y="1327.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (1 samples, 0.02%)</title><rect x="1148.2" y="1157" width="0.2" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="1151.22" y="1167.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="995.6" y="1125" width="0.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="998.55" y="1135.5" ></text>
</g>
<g >
<title>PhaseChaitin::post_allocate_copy_removal (1 samples, 0.02%)</title><rect x="28.1" y="1349" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text x="31.14" y="1359.5" ></text>
</g>
<g >
<title>java/util/TimSort:::sort (1 samples, 0.02%)</title><rect x="932.2" y="629" width="0.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="935.19" y="639.5" ></text>
</g>
<g >
<title>G1UpdateRSOrPushRefOopClosure::do_oop (1 samples, 0.02%)</title><rect x="22.6" y="1317" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text x="25.63" y="1327.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (1 samples, 0.02%)</title><rect x="1038.9" y="1221" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="1041.94" y="1231.5" ></text>
</g>
<g >
<title>LShiftLNode::Ideal (1 samples, 0.02%)</title><rect x="32.0" y="1317" width="0.3" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="35.04" y="1327.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="1050.2" y="1045" width="0.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1053.19" y="1055.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.02%)</title><rect x="560.7" y="165" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="563.74" y="175.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (1 samples, 0.02%)</title><rect x="14.6" y="1397" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="17.59" y="1407.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1 samples, 0.02%)</title><rect x="651.4" y="389" width="0.3" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="654.42" y="399.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,447 samples, 67.06%)</title><rect x="156.9" y="757" width="791.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="159.93" y="767.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>org/apache/tomcat/util/buf/StringCache:::toString (2 samples, 0.04%)</title><rect x="84.8" y="709" width="0.5" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="87.84" y="719.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Connector:::isParseBodyMethod (1 samples, 0.02%)</title><rect x="127.8" y="981" width="0.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="130.77" y="991.5" ></text>
</g>
<g >
<title>skb_release_data (1 samples, 0.02%)</title><rect x="910.4" y="53" width="0.2" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="913.38" y="63.5" ></text>
</g>
<g >
<title>InstanceKlass::allocate_instance (12 samples, 0.23%)</title><rect x="532.5" y="469" width="2.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="535.51" y="479.5" ></text>
</g>
<g >
<title>llist_add_batch (1 samples, 0.02%)</title><rect x="891.3" y="421" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="894.33" y="431.5" ></text>
</g>
<g >
<title>org/springframework/http/converter/AbstractGenericHttpMessageConverter:::canWrite (1 samples, 0.02%)</title><rect x="936.8" y="629" width="0.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="939.78" y="639.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/buf/MessageBytes:::toString (6 samples, 0.12%)</title><rect x="959.5" y="725" width="1.4" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="962.51" y="735.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.02%)</title><rect x="965.2" y="485" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="968.25" y="495.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$3:::isSatisfiedBy (2 samples, 0.04%)</title><rect x="468.0" y="437" width="0.5" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="471.00" y="447.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1013.9" y="1173" width="0.2" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="1016.92" y="1183.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::getAttribute (1 samples, 0.02%)</title><rect x="143.8" y="917" width="0.3" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="146.84" y="927.5" ></text>
</g>
<g >
<title>G1CollectedHeap::iterate_dirty_card_closure (5 samples, 0.10%)</title><rect x="21.7" y="1413" width="1.2" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text x="24.71" y="1423.5" ></text>
</g>
<g >
<title>com/alibaba/csp/sentinel/slots/clusterbuilder/ClusterBuilderSlot:::entry (1 samples, 0.02%)</title><rect x="42.8" y="629" width="0.3" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="45.83" y="639.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (3 samples, 0.06%)</title><rect x="1040.3" y="1237" width="0.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1043.32" y="1247.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="344.7" y="421" width="0.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="347.72" y="431.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/DispatcherServlet:::doDispatch (3,386 samples, 65.88%)</title><rect x="162.9" y="693" width="777.3" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="165.89" y="703.5" >org/springframework/web/servlet/DispatcherServlet:::doDispatch</text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (2 samples, 0.04%)</title><rect x="1075.9" y="1077" width="0.5" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1078.90" y="1087.5" ></text>
</g>
<g >
<title>Parse::do_call (1 samples, 0.02%)</title><rect x="33.4" y="1205" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="36.42" y="1215.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1 samples, 0.02%)</title><rect x="34.8" y="1141" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="37.79" y="1151.5" ></text>
</g>
<g >
<title>java_lang_Thread::set_thread_status (1 samples, 0.02%)</title><rect x="1059.1" y="1269" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text x="1062.14" y="1279.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/util/TypeUtils:::castToLong (4 samples, 0.08%)</title><rect x="352.1" y="549" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="355.06" y="559.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="224.2" y="549" width="0.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="227.19" y="559.5" ></text>
</g>
<g >
<title>CollectedHeap::new_store_pre_barrier (1 samples, 0.02%)</title><rect x="213.2" y="597" width="0.2" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text x="216.17" y="607.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (1 samples, 0.02%)</title><rect x="34.8" y="1221" width="0.2" height="15.0" fill="rgb(51,200,51)" rx="2" ry="2" />
<text x="37.79" y="1231.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (16 samples, 0.31%)</title><rect x="640.4" y="581" width="3.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="643.40" y="591.5" ></text>
</g>
<g >
<title>org/springframework/core/MethodParameter:::getNestedParameterType (1 samples, 0.02%)</title><rect x="928.7" y="613" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="931.75" y="623.5" ></text>
</g>
<g >
<title>sys_futex (1 samples, 0.02%)</title><rect x="1053.9" y="1221" width="0.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1056.86" y="1231.5" ></text>
</g>
<g >
<title>ip_local_out_sk (6 samples, 0.12%)</title><rect x="1117.9" y="1013" width="1.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="1120.91" y="1023.5" ></text>
</g>
<g >
<title>net_rps_action_and_irq_enable.isra.91 (1 samples, 0.02%)</title><rect x="938.2" y="533" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="941.16" y="543.5" ></text>
</g>
<g >
<title>wake_futex (20 samples, 0.39%)</title><rect x="1139.3" y="1173" width="4.6" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="1142.26" y="1183.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/network/Selector:::send (2 samples, 0.04%)</title><rect x="1093.4" y="1253" width="0.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1096.35" y="1263.5" ></text>
</g>
<g >
<title>PhaseCCP::analyze (1 samples, 0.02%)</title><rect x="29.7" y="1365" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text x="32.74" y="1375.5" ></text>
</g>
<g >
<title>org/springframework/util/LinkedCaseInsensitiveMap:::hashCode (1 samples, 0.02%)</title><rect x="46.7" y="565" width="0.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="49.73" y="575.5" ></text>
</g>
<g >
<title>skb_to_sgvec (1 samples, 0.02%)</title><rect x="15.3" y="1189" width="0.2" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="18.28" y="1199.5" ></text>
</g>
<g >
<title>__list_del_entry (1 samples, 0.02%)</title><rect x="279.7" y="453" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="282.75" y="463.5" ></text>
</g>
<g >
<title>ip_finish_output (3 samples, 0.06%)</title><rect x="14.8" y="1285" width="0.7" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="17.82" y="1295.5" ></text>
</g>
<g >
<title>org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter (3,589 samples, 69.82%)</title><rect x="145.9" y="901" width="823.9" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="148.91" y="911.5" >org/apache/catalina/core/ApplicationFilterChain:::internalDoFilter</text>
</g>
<g >
<title>ext4_inode_table (1 samples, 0.02%)</title><rect x="1174.4" y="997" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1177.39" y="1007.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="141.3" y="837" width="0.2" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="144.32" y="847.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="583.9" y="421" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="586.93" y="431.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/WriterBasedJsonGenerator:::writeStartObject (1 samples, 0.02%)</title><rect x="365.1" y="517" width="0.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="368.15" y="527.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (5 samples, 0.10%)</title><rect x="1075.4" y="1205" width="1.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="1078.44" y="1215.5" ></text>
</g>
<g >
<title>fill_window (1 samples, 0.02%)</title><rect x="463.6" y="485" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="466.63" y="495.5" ></text>
</g>
<g >
<title>java/util/HashMap:::putMapEntries (2 samples, 0.04%)</title><rect x="66.0" y="565" width="0.5" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="69.02" y="575.5" ></text>
</g>
<g >
<title>org/springframework/util/AntPathMatcher:::doMatch (49 samples, 0.95%)</title><rect x="266.4" y="581" width="11.3" height="15.0" fill="rgb(99,244,99)" rx="2" ry="2" />
<text x="269.43" y="591.5" ></text>
</g>
<g >
<title>com/alibaba/fastjson/parser/deserializer/JavaBeanDeserializer:::parseRest (9 samples, 0.18%)</title><rect x="50.6" y="565" width="2.1" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="53.63" y="575.5" ></text>
</g>
<g >
<title>deflate_slow (81 samples, 1.58%)</title><rect x="394.3" y="485" width="18.6" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="397.30" y="495.5" ></text>
</g>
<g >
<title>JavaThread::thread_from_jni_environment (1 samples, 0.02%)</title><rect x="859.0" y="517" width="0.2" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text x="861.96" y="527.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="207.7" y="405" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="210.66" y="415.5" ></text>
</g>
<g >
<title>Parker::unpark (1 samples, 0.02%)</title><rect x="1138.6" y="1253" width="0.2" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text x="1141.58" y="1263.5" ></text>
</g>
<g >
<title>tcp_write_xmit (4 samples, 0.08%)</title><rect x="14.8" y="1365" width="0.9" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="17.82" y="1375.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (1 samples, 0.02%)</title><rect x="100.9" y="1237" width="0.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="103.91" y="1247.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="592.4" y="405" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="595.42" y="415.5" ></text>
</g>
<g >
<title>[libpthread-2.17.so] (2 samples, 0.04%)</title><rect x="87.1" y="1109" width="0.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="90.14" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.02%)</title><rect x="532.3" y="277" width="0.2" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="535.28" y="287.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::getFixedDate (1 samples, 0.02%)</title><rect x="67.2" y="549" width="0.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="70.16" y="559.5" ></text>
</g>
<g >
<title>sock_aio_write (2 samples, 0.04%)</title><rect x="87.1" y="1029" width="0.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="90.14" y="1039.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor70:::invoke (2 samples, 0.04%)</title><rect x="345.4" y="517" width="0.5" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="348.40" y="527.5" ></text>
</g>
<g >
<title>java/util/Calendar$Builder:::build (3 samples, 0.06%)</title><rect x="236.1" y="613" width="0.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="239.13" y="623.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="961.8" y="661" width="0.2" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="964.81" y="671.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::set (2 samples, 0.04%)</title><rect x="158.1" y="693" width="0.4" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="161.07" y="703.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="944.4" y="629" width="0.2" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text x="947.36" y="639.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1053.6" y="1205" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1056.63" y="1215.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/ResponseFacade:::containsHeader (1 samples, 0.02%)</title><rect x="162.7" y="693" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="165.67" y="703.5" ></text>
</g>
<g >
<title>resource_allocate_bytes (4 samples, 0.08%)</title><rect x="615.6" y="453" width="0.9" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="618.61" y="463.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="1010.5" y="1093" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1013.47" y="1103.5" ></text>
</g>
<g >
<title>java/lang/String:::toUpperCase (8 samples, 0.16%)</title><rect x="178.7" y="565" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="181.74" y="575.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (2 samples, 0.04%)</title><rect x="139.5" y="949" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="142.48" y="959.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="947.6" y="501" width="0.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="950.57" y="511.5" ></text>
</g>
<g >
<title>org/apache/tomcat/util/net/SocketProcessorBase:::run (227 samples, 4.42%)</title><rect x="36.2" y="1301" width="52.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="39.17" y="1311.5" >org/a..</text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="207.7" y="549" width="0.2" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="210.66" y="559.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/manager/AdDataManager:::buildRedisAdClickCounter (2 samples, 0.04%)</title><rect x="647.3" y="565" width="0.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="650.29" y="575.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.02%)</title><rect x="645.2" y="565" width="0.3" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="648.23" y="575.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="779.3" y="421" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="782.30" y="431.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_C (1 samples, 0.02%)</title><rect x="497.4" y="517" width="0.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text x="500.38" y="527.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="859.4" y="421" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="862.42" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="1151.7" y="1173" width="0.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="1154.66" y="1183.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (1 samples, 0.02%)</title><rect x="1019.4" y="1141" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="1022.43" y="1151.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="608.5" y="357" width="0.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="611.49" y="367.5" ></text>
</g>
<g >
<title>java/util/Formatter$FixedString:::print (1 samples, 0.02%)</title><rect x="1073.1" y="1237" width="0.3" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="1076.15" y="1247.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/mvc/method/annotation/AbstractMessageConverterMethodProcessor:::getProducibleMediaTypes (14 samples, 0.27%)</title><rect x="934.9" y="645" width="3.3" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="937.95" y="655.5" ></text>
</g>
<g >
<title>ip_local_out_sk (23 samples, 0.45%)</title><rect x="1001.3" y="901" width="5.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="1004.29" y="911.5" ></text>
</g>
<g >
<title>java/lang/Object:::toString (3 samples, 0.06%)</title><rect x="1070.9" y="1253" width="0.6" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1073.85" y="1263.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (3 samples, 0.06%)</title><rect x="1090.8" y="1285" width="0.7" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text x="1093.82" y="1295.5" ></text>
</g>
<g >
<title>memcpy@plt (1 samples, 0.02%)</title><rect x="774.9" y="517" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="777.93" y="527.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/support/WebContentGenerator:::checkRequest (1 samples, 0.02%)</title><rect x="940.9" y="693" width="0.2" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="943.91" y="703.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="628.2" y="437" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="631.24" y="447.5" ></text>
</g>
<g >
<title>org/springframework/boot/actuate/metrics/web/servlet/LongTaskTimingHandlerInterceptor:::preHandle (47 samples, 0.91%)</title><rect x="198.7" y="677" width="10.8" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="201.71" y="687.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="592.4" y="133" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="595.42" y="143.5" ></text>
</g>
<g >
<title>java/lang/Class:::getSimpleName (3 samples, 0.06%)</title><rect x="943.2" y="645" width="0.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="946.21" y="655.5" ></text>
</g>
<g >
<title>com/google/gson/Gson:::toJson (1 samples, 0.02%)</title><rect x="44.2" y="629" width="0.2" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text x="47.21" y="639.5" ></text>
</g>
<g >
<title>org/apache/commons/lang3/StringUtils:::splitWorker (5 samples, 0.10%)</title><rect x="192.5" y="645" width="1.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="195.51" y="655.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.02%)</title><rect x="207.7" y="469" width="0.2" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="210.66" y="479.5" ></text>
</g>
<g >
<title>G1SATBCardTableModRefBS::g1_mark_as_young (1 samples, 0.02%)</title><rect x="497.4" y="469" width="0.2" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text x="500.38" y="479.5" ></text>
</g>
<g >
<title>Monitor::unlock (1 samples, 0.02%)</title><rect x="21.5" y="1317" width="0.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text x="24.48" y="1327.5" ></text>
</g>
<g >
<title>dput (1 samples, 0.02%)</title><rect x="388.6" y="421" width="0.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="391.56" y="431.5" ></text>
</g>
<g >
<title>org/springframework/web/method/annotation/AbstractNamedValueMethodArgumentResolver:::resolveArgument (1 samples, 0.02%)</title><rect x="294.4" y="661" width="0.3" height="15.0" fill="rgb(99,244,99)" rx="2" ry="2" />
<text x="297.44" y="671.5" ></text>
</g>
<g >
<title>Method::mask_for (1 samples, 0.02%)</title><rect x="21.5" y="1365" width="0.2" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="24.48" y="1375.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="306.4" y="581" width="0.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="309.38" y="591.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BranchConn:::match (4 samples, 0.08%)</title><rect x="1075.7" y="1141" width="0.9" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="1078.67" y="1151.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="374.8" y="373" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="377.79" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.06%)</title><rect x="1124.3" y="1189" width="0.7" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="1127.34" y="1199.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.02%)</title><rect x="901.7" y="437" width="0.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="904.66" y="447.5" ></text>
</g>
<g >
<title>sk_reset_timer (1 samples, 0.02%)</title><rect x="1117.7" y="1029" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1120.68" y="1039.5" ></text>
</g>
<g >
<title>sys_epoll_wait (1 samples, 0.02%)</title><rect x="1121.8" y="1221" width="0.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="1124.82" y="1231.5" ></text>
</g>
<g >
<title>org/springframework/web/servlet/handler/AbstractHandlerMapping:::getHandler (1 samples, 0.02%)</title><rect x="17.6" y="1509" width="0.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="20.58" y="1519.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="1148.2" y="1141" width="0.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1151.22" y="1151.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="910.4" y="277" width="0.2" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="913.38" y="287.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.02%)</title><rect x="583.9" y="165" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="586.93" y="175.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="263.9" y="565" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="266.91" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="1125.0" y="1173" width="0.5" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text x="1128.03" y="1183.5" ></text>
</g>
<g >
<title>com/coohuadata/analytics/javasdk/CoohuaAnalytics$KafkaConsumer:::send (19 samples, 0.37%)</title><rect x="52.7" y="565" width="4.4" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="55.70" y="575.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (1 samples, 0.02%)</title><rect x="999.7" y="949" width="0.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1002.68" y="959.5" ></text>
</g>
<g >
<title>vtable stub (2 samples, 0.04%)</title><rect x="347.9" y="517" width="0.5" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="350.93" y="527.5" ></text>
</g>
<g >
<title>arrayOopDesc::base (5 samples, 0.10%)</title><rect x="728.1" y="533" width="1.1" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text x="731.10" y="543.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="1086.5" y="1253" width="0.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="1089.46" y="1263.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (11 samples, 0.21%)</title><rect x="1165.2" y="1221" width="2.5" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1168.21" y="1231.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.02%)</title><rect x="112.2" y="1221" width="0.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="115.16" y="1231.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (2 samples, 0.04%)</title><rect x="53.6" y="533" width="0.5" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="56.62" y="543.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (1 samples, 0.02%)</title><rect x="1143.9" y="1253" width="0.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="1146.86" y="1263.5" ></text>
</g>
<g >
<title>scan_tree (5 samples, 0.10%)</title><rect x="456.5" y="453" width="1.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="459.52" y="463.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.02%)</title><rect x="1182.4" y="1093" width="0.3" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1185.42" y="1103.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="592.4" y="373" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="595.42" y="383.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/AsyncAppender:::append (3 samples, 0.06%)</title><rect x="80.5" y="565" width="0.7" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="83.48" y="575.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="13.9" y="1413" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="16.90" y="1423.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="795.6" y="373" width="0.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="798.60" y="383.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="639.9" y="565" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="642.95" y="575.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="1148.2" y="1285" width="0.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1151.22" y="1295.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.02%)</title><rect x="628.9" y="485" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="631.93" y="495.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.02%)</title><rect x="207.7" y="437" width="0.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="210.66" y="447.5" ></text>
</g>
<g >
<title>napi_gro_receive (1 samples, 0.02%)</title><rect x="764.1" y="389" width="0.3" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="767.14" y="399.5" ></text>
</g>
<g >
<title>java/net/URLEncoder:::encode (2 samples, 0.04%)</title><rect x="893.6" y="485" width="0.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="896.62" y="495.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/requests/AbstractRequestResponse:::serialize (16 samples, 0.31%)</title><rect x="1095.2" y="1253" width="3.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="1098.19" y="1263.5" ></text>
</g>
<g >
<title>java_lang_Throwable::get_stack_trace_depth (1 samples, 0.02%)</title><rect x="517.4" y="501" width="0.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text x="520.35" y="511.5" ></text>
</g>
<g >
<title>java/util/stream/Collectors$$Lambda$421/1176968662:::accept (4 samples, 0.08%)</title><rect x="957.0" y="661" width="0.9" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="959.98" y="671.5" ></text>
</g>
<g >
<title>org/springframework/util/ConcurrentReferenceHashMap$Segment:::restructureIfNecessary (1 samples, 0.02%)</title><rect x="209.3" y="661" width="0.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="212.27" y="671.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="344.7" y="453" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="347.72" y="463.5" ></text>
</g>
<g >
<title>org/apache/kafka/common/protocol/types/ArrayOf:::write (1 samples, 0.02%)</title><rect x="1097.5" y="1221" width="0.2" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="1100.48" y="1231.5" ></text>
</g>
<g >
<title>PhaseLive::compute (4 samples, 0.08%)</title><rect x="28.8" y="1349" width="0.9" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text x="31.82" y="1359.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::getRequestURL (2 samples, 0.04%)</title><rect x="156.5" y="789" width="0.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="159.47" y="799.5" ></text>
</g>
<g >
<title>sk_reset_timer (1 samples, 0.02%)</title><rect x="1001.1" y="917" width="0.2" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1004.06" y="927.5" ></text>
</g>
<g >
<title>java/lang/String:::toString (1 samples, 0.02%)</title><rect x="627.3" y="533" width="0.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="630.32" y="543.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.02%)</title><rect x="1022.0" y="917" width="0.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1024.95" y="927.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (5 samples, 0.10%)</title><rect x="35.0" y="1221" width="1.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="38.02" y="1231.5" ></text>
</g>
<g >
<title>do_softirq (2 samples, 0.04%)</title><rect x="763.9" y="469" width="0.5" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="766.91" y="479.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="1116.8" y="997" width="0.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1119.77" y="1007.5" ></text>
</g>
<g >
<title>org/springframework/web/filter/OncePerRequestFilter:::doFilter (216 samples, 4.20%)</title><rect x="37.1" y="1141" width="49.6" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="40.09" y="1151.5" >org/s..</text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="322.9" y="453" width="0.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="325.91" y="463.5" ></text>
</g>
<g >
<title>org/springframework/web/util/UrlPathHelper:::getPathWithinApplication (7 samples, 0.14%)</title><rect x="278.4" y="597" width="1.6" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="281.37" y="607.5" ></text>
</g>
<g >
<title>org/springframework/aop/framework/ReflectiveMethodInvocation:::proceed (4 samples, 0.08%)</title><rect x="648.4" y="533" width="1.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="651.44" y="543.5" ></text>
</g>
<g >
<title>sun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.02%)</title><rect x="204.4" y="629" width="0.3" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="207.45" y="639.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="152.8" y="805" width="0.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="155.79" y="815.5" ></text>
</g>
<g >
<title>java/util/zip/InflaterInputStream:::fill (1 samples, 0.02%)</title><rect x="890.4" y="565" width="0.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="893.41" y="575.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getStackTraceElement (4 samples, 0.08%)</title><rect x="309.1" y="533" width="1.0" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text x="312.13" y="543.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/appender/OutputStreamManager:::flushBuffer (42 samples, 0.82%)</title><rect x="1170.0" y="1301" width="9.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1173.03" y="1311.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/LockSupport:::parkNanos (40 samples, 0.78%)</title><rect x="90.1" y="1269" width="9.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="93.12" y="1279.5" ></text>
</g>
<g >
<title>__kfree_skb (1 samples, 0.02%)</title><rect x="1168.4" y="1029" width="0.2" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="1171.42" y="1039.5" ></text>
</g>
<g >
<title>os::javaTimeMillis (1 samples, 0.02%)</title><rect x="1129.4" y="1317" width="0.2" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text x="1132.39" y="1327.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (1 samples, 0.02%)</title><rect x="1030.2" y="1109" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1033.22" y="1119.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/Request:::parseLocales (3 samples, 0.06%)</title><rect x="145.2" y="885" width="0.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="148.22" y="895.5" ></text>
</g>
<g >
<title>do_softirq (1 samples, 0.02%)</title><rect x="949.2" y="709" width="0.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="952.18" y="719.5" ></text>
</g>
<g >
<title>JVM_GetStackTraceDepth (1 samples, 0.02%)</title><rect x="58.9" y="517" width="0.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="61.90" y="527.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.02%)</title><rect x="117.2" y="1045" width="0.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="120.21" y="1055.5" ></text>
</g>
<g >
<title>dev_queue_xmit (2 samples, 0.04%)</title><rect x="15.1" y="1269" width="0.4" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="18.05" y="1279.5" ></text>
</g>
<g >
<title>skb_clone (1 samples, 0.02%)</title><rect x="1118.6" y="901" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1121.60" y="911.5" ></text>
</g>
<g >
<title>call_softirq (1 samples, 0.02%)</title><rect x="303.6" y="549" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="306.62" y="559.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="466.6" y="517" width="0.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="469.62" y="527.5" ></text>
</g>
<g >
<title>java/util/Comparator$$Lambda$213/1325144078:::compare (1 samples, 0.02%)</title><rect x="932.2" y="613" width="0.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="935.19" y="623.5" ></text>
</g>
<g >
<title>JNIHandles::make_local (1 samples, 0.02%)</title><rect x="719.6" y="533" width="0.2" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text x="722.61" y="543.5" ></text>
</g>
<g >
<title>_new_array_nozero_Java (1 samples, 0.02%)</title><rect x="137.2" y="965" width="0.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="140.18" y="975.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.02%)</title><rect x="647.5" y="533" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="650.52" y="543.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::initialize (2 samples, 0.04%)</title><rect x="649.8" y="549" width="0.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="652.82" y="559.5" ></text>
</g>
<g >
<title>sock_poll (4 samples, 0.08%)</title><rect x="1151.2" y="1237" width="0.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1154.20" y="1247.5" ></text>
</g>
<g >
<title>com/coohua/caf/core/rpc/MotanSentinelFilter:::filter (8 samples, 0.16%)</title><rect x="893.6" y="533" width="1.9" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="896.62" y="543.5" ></text>
</g>
<g >
<title>java/lang/Long:::toString (1 samples, 0.02%)</title><rect x="1074.1" y="1221" width="0.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="1077.07" y="1231.5" ></text>
</g>
<g >
<title>com/google/gson/reflect/TypeToken:::&lt;init&gt; (3 samples, 0.06%)</title><rect x="226.9" y="613" width="0.7" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="229.95" y="623.5" ></text>
</g>
<g >
<title>java_lang_Throwable::set_backtrace (2 samples, 0.04%)</title><rect x="514.8" y="453" width="0.5" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text x="517.83" y="463.5" ></text>
</g>
<g >
<title>smp_call_function_single_async (1 samples, 0.02%)</title><rect x="374.8" y="341" width="0.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="377.79" y="351.5" ></text>
</g>
<g >
<title>com/coohua/ad/data/interceptor/UserInterceptor:::preHandle (105 samples, 2.04%)</title><rect x="164.0" y="677" width="24.1" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="167.04" y="687.5" >c..</text>
</g>
<g >
<title>smp_call_function_single_interrupt (1 samples, 0.02%)</title><rect x="801.3" y="501" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="804.33" y="511.5" ></text>
</g>
<g >
<title>Type::cmp (1 samples, 0.02%)</title><rect x="31.8" y="1269" width="0.2" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text x="34.81" y="1279.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2 samples, 0.04%)</title><rect x="93.8" y="1109" width="0.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="96.79" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.02%)</title><rect x="983.8" y="981" width="0.3" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text x="986.84" y="991.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.04%)</title><rect x="1086.0" y="1285" width="0.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1089.00" y="1295.5" ></text>
</g>
<g >
<title>x2apic_send_IPI_mask (1 samples, 0.02%)</title><rect x="381.2" y="341" width="0.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="384.22" y="351.5" ></text>
</g>
<g >
<title>__do_softirq (1 samples, 0.02%)</title><rect x="303.6" y="533" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="306.62" y="543.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::doSignal (1 samples, 0.02%)</title><rect x="393.2" y="533" width="0.2" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="396.16" y="543.5" ></text>
</g>
<g >
<title>BufferBlob::free (1 samples, 0.02%)</title><rect x="33.6" y="1349" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text x="36.65" y="1359.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/core/pattern/MdcPatternConverter:::format (1 samples, 0.02%)</title><rect x="1181.5" y="1317" width="0.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1184.51" y="1327.5" ></text>
</g>
<g >
<title>sun/misc/Unsafe:::unpark (1 samples, 0.02%)</title><rect x="645.5" y="501" width="0.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="648.46" y="511.5" ></text>
</g>
<g >
<title>PhaseIterGVN::transform_old (3 samples, 0.06%)</title><rect x="32.7" y="1349" width="0.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text x="35.73" y="1359.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.06%)</title><rect x="1059.4" y="1141" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1062.37" y="1151.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.02%)</title><rect x="51.8" y="517" width="0.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="54.78" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1 samples, 0.02%)</title><rect x="99.5" y="1173" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="102.53" y="1183.5" ></text>
</g>
<g >
<title>system_call_fastpath (21 samples, 0.41%)</title><rect x="1139.0" y="1237" width="4.9" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="1142.04" y="1247.5" ></text>
</g>
<g >
<title>org/apache/catalina/connector/RequestFacade:::removeAttribute (2 samples, 0.04%)</title><rect x="122.5" y="1125" width="0.4" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="125.49" y="1135.5" ></text>
</g>
<g >
<title>redis/clients/jedis/JedisClusterCommand:::runWithRetries (1 samples, 0.02%)</title><rect x="649.6" y="421" width="0.2" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text x="652.59" y="431.5" ></text>
</g>
<g >
<title>sys_read (1 samples, 0.02%)</title><rect x="1159.0" y="1269" width="0.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1162.01" y="1279.5" ></text>
</g>
<g >
<title>__irqentry_text_start (1 samples, 0.02%)</title><rect x="381.2" y="501" width="0.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="384.22" y="511.5" ></text>
</g>
<g >
<title>java/lang/String:::toUpperCase (2 samples, 0.04%)</title><rect x="40.8" y="597" width="0.4" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="43.76" y="607.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.02%)</title><rect x="1048.8" y="1205" width="0.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="1051.81" y="1215.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.02%)</title><rect x="1075.2" y="1109" width="0.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1078.21" y="1119.5" ></text>
</g>
<g >
<title>G1CollectedHeap::can_elide_tlab_store_barriers (1 samples, 0.02%)</title><rect x="276.8" y="533" width="0.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text x="279.76" y="543.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getStackTraceElement (30 samples, 0.58%)</title><rect x="59.1" y="533" width="6.9" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="62.13" y="543.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="141.3" y="965" width="0.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="144.32" y="975.5" ></text>
</g>
<g >
<title>schedule (16 samples, 0.31%)</title><rect x="1054.8" y="1157" width="3.7" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="1057.78" y="1167.5" ></text>
</g>
<g >
<title>org/springframework/web/context/support/ServletRequestHandledEvent:::&lt;init&gt; (2 samples, 0.04%)</title><rect x="947.8" y="693" width="0.5" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="950.80" y="703.5" ></text>
</g>
</g>
</svg>