Skip to content

Instantly share code, notes, and snippets.

@epickrram
Created March 27, 2017 20:02
Show Gist options
  • Select an option

  • Save epickrram/e3956b86e2a3984b49986ce49a8cf7d0 to your computer and use it in GitHub Desktop.

Select an option

Save epickrram/e3956b86e2a3984b49986ce49a8cf7d0 to your computer and use it in GitHub Desktop.
flamegraph-aggregate-stacks.svg
Display the source blob
Display the rendered blob
Raw
<?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="1842" onload="init(evt)" viewBox="0 0 1200 1842" 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. -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
if (func != null)
func = func.replace(/ .*/, "");
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// 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.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1842.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="1825" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="1825" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>UncommonTrapBlob (1 samples, 0.07%)</title><rect x="315.9" y="1345" width="0.8" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (1 samples, 0.07%)</title><rect x="356.3" y="1409" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="359.31" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.07%)</title><rect x="32.2" y="1377" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="239.8" y="1473" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="10.0" y="1617" width="1.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.07%)</title><rect x="657.5" y="689" width="0.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="660.45" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (17 samples, 1.14%)</title><rect x="181.2" y="1713" width="13.4" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="184.18" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/util/ConcurrentReferenceHashMap:::get (1 samples, 0.07%)</title><rect x="788.2" y="705" width="0.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="791.21" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/UriBuilder:::fromUri (129 samples, 8.66%)</title><rect x="457.8" y="1073" width="102.2" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >javax/ws/rs/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (5 samples, 0.34%)</title><rect x="649.5" y="657" width="4.0" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="652.53" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (2 samples, 0.13%)</title><rect x="673.3" y="769" width="1.6" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="676.30" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.07%)</title><rect x="1097.3" y="1281" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.07%)</title><rect x="910.3" y="801" width="0.7" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="913.26" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="27.4" y="1457" width="1.6" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Bytecode_member_ref::signature (1 samples, 0.07%)</title><rect x="271.5" y="1617" width="0.8" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="274.52" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.13%)</title><rect x="33.8" y="1153" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="36.77" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="235.9" y="1521" width="0.7" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::replaceNode (1 samples, 0.07%)</title><rect x="588.5" y="689" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="591.51" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/cache/Cache:::compute (5 samples, 0.34%)</title><rect x="926.9" y="785" width="4.0" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="929.90" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/Reference:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="567.9" y="833" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="570.90" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String$CaseInsensitiveComparator:::compare (1 samples, 0.07%)</title><rect x="390.4" y="1249" width="0.8" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="393.39" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.34%)</title><rect x="315.9" y="1377" width="4.0" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="1061.6" y="1409" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1064.62" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::getRequestParameterMap (5 samples, 0.34%)</title><rect x="399.9" y="1313" width="4.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="402.90" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_smp_call_function_single_interrupt (2 samples, 0.13%)</title><rect x="434.8" y="1217" width="1.6" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="786.6" y="705" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="789.63" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (8 samples, 0.54%)</title><rect x="31.4" y="1649" width="6.3" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="34.40" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/handler/gzip/GzipHandler:::handle (752 samples, 50.50%)</title><rect x="422.1" y="1361" width="595.9" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/server/handler/gzip/GzipHandler:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (4 samples, 0.27%)</title><rect x="56.0" y="1505" width="3.1" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.34%)</title><rect x="45.7" y="1729" width="3.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="48.66" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::scan (5 samples, 0.34%)</title><rect x="1002.2" y="961" width="3.9" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1005.18" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="316.7" y="1073" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HandleArea::allocate_handle (1 samples, 0.07%)</title><rect x="459.3" y="849" width="0.8" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="462.34" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.13%)</title><rect x="204.9" y="1601" width="1.6" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (16 samples, 1.07%)</title><rect x="182.0" y="1553" width="12.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="184.97" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::build_ifg_physical (1 samples, 0.07%)</title><rect x="295.3" y="1601" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="298.29" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ApplicationHandler:::handle (484 samples, 32.51%)</title><rect x="563.9" y="1025" width="383.6" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="566.94" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/jersey/server/ApplicationHandler:::han..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="658.2" y="545" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="256.5" y="1553" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="259.46" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_check_callbacks (1 samples, 0.07%)</title><rect x="1075.9" y="1169" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1078.88" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="204.2" y="1585" width="0.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ArrayByteBufferPool:::release (1 samples, 0.07%)</title><rect x="1056.1" y="1425" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1059.07" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="285.8" y="1297" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (2 samples, 0.13%)</title><rect x="1088.6" y="1313" width="1.5" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.13%)</title><rect x="708.2" y="305" width="1.6" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (2 samples, 0.13%)</title><rect x="714.5" y="593" width="1.6" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="49.6" y="1313" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Arrays:::copyOf (1 samples, 0.07%)</title><rect x="550.5" y="881" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="553.47" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ArrayBlockingQueue:::enqueue (1 samples, 0.07%)</title><rect x="379.3" y="1329" width="0.8" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="382.29" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::prepareForDeferredProcessing (30 samples, 2.01%)</title><rect x="386.4" y="1329" width="23.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="389.43" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="300.0" y="1377" width="1.6" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="110.6" y="1569" width="0.8" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::pushInjectee (1 samples, 0.07%)</title><rect x="925.3" y="753" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="928.31" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::epollWait (6 samples, 0.40%)</title><rect x="357.9" y="1409" width="4.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::charAt (4 samples, 0.27%)</title><rect x="1003.0" y="945" width="3.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1005.98" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/UnixFileSystem:::getBooleanAttributes0 (1 samples, 0.07%)</title><rect x="319.9" y="1393" width="0.8" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="322.86" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (6 samples, 0.40%)</title><rect x="649.5" y="769" width="4.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="652.53" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.07%)</title><rect x="47.2" y="1601" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="50.25" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="975.2" y="737" width="1.6" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::Code_Gen (14 samples, 0.94%)</title><rect x="285.8" y="1633" width="11.1" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::getRequestURL (1 samples, 0.07%)</title><rect x="1079.1" y="1409" width="0.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="1082.05" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileDescriptor:::closeAll (4 samples, 0.27%)</title><rect x="49.6" y="1649" width="3.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$LastNode:::match (1 samples, 0.07%)</title><rect x="535.4" y="657" width="0.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="538.41" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/IdentityHashMap:::keySet (1 samples, 0.07%)</title><rect x="946.7" y="881" width="0.8" height="15.0" fill="rgb(95,207,207)" rx="2" ry="2" />
<text text-anchor="" x="949.71" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/PropertiesHelper:::getValue (14 samples, 0.94%)</title><rect x="755.7" y="785" width="11.1" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="758.72" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MessageBodyFactory:::isReadable (3 samples, 0.20%)</title><rect x="813.6" y="577" width="2.4" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="816.57" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.07%)</title><rect x="203.4" y="1633" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal$ThreadLocalMap:::access$100 (1 samples, 0.07%)</title><rect x="538.6" y="801" width="0.8" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="541.58" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/AttributesMap:::map (1 samples, 0.07%)</title><rect x="952.3" y="897" width="0.7" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="955.26" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (2 samples, 0.13%)</title><rect x="987.9" y="977" width="1.6" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="990.92" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::select (10 samples, 0.67%)</title><rect x="355.5" y="1473" width="7.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.07%)</title><rect x="715.3" y="225" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::enableBuffering (17 samples, 1.14%)</title><rect x="753.3" y="817" width="13.5" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="756.34" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (3 samples, 0.20%)</title><rect x="571.1" y="769" width="2.4" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (6 samples, 0.40%)</title><rect x="32.2" y="1489" width="4.7" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (30 samples, 2.01%)</title><rect x="683.6" y="785" width="23.8" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="686.61" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (5 samples, 0.34%)</title><rect x="649.5" y="737" width="4.0" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="652.53" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="435.6" y="1041" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="438.56" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (6 samples, 0.40%)</title><rect x="482.3" y="801" width="4.8" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="485.32" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VM_Operation::evaluate (11 samples, 0.74%)</title><rect x="1170.2" y="1681" width="8.7" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="1173.19" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (6 samples, 0.40%)</title><rect x="769.2" y="737" width="4.7" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="772.19" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/ArrayTrie:::getBest (1 samples, 0.07%)</title><rect x="1043.4" y="1377" width="0.8" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="1046.39" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::execute (4 samples, 0.27%)</title><rect x="316.7" y="1329" width="3.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_prequeue (1 samples, 0.07%)</title><rect x="651.1" y="353" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.07%)</title><rect x="239.0" y="1537" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="235.1" y="1553" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (1 samples, 0.07%)</title><rect x="70.2" y="1505" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectReader:::readValue (9 samples, 0.60%)</title><rect x="816.7" y="577" width="7.2" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="819.74" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="1088.6" y="1265" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.07%)</title><rect x="658.2" y="433" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (2 samples, 0.13%)</title><rect x="1123.4" y="1425" width="1.6" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.43" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="78.2" y="1409" width="0.7" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="256.5" y="1601" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="259.46" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (3 samples, 0.20%)</title><rect x="571.1" y="753" width="2.4" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (4 samples, 0.27%)</title><rect x="805.6" y="657" width="3.2" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="808.65" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace (1 samples, 0.07%)</title><rect x="347.6" y="1457" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="350.60" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="366.6" y="1137" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="204.9" y="1473" width="1.6" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="256.5" y="1473" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="259.46" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpConnection:::releaseRequestBuffer (1 samples, 0.07%)</title><rect x="844.5" y="369" width="0.8" height="15.0" fill="rgb(59,174,174)" rx="2" ry="2" />
<text text-anchor="" x="847.48" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/raw/ExecutableElement:::forMethod (2 samples, 0.13%)</title><rect x="800.1" y="753" width="1.6" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="803.10" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory:::createParser (22 samples, 1.48%)</title><rect x="828.6" y="561" width="17.5" height="15.0" fill="rgb(95,207,207)" rx="2" ry="2" />
<text text-anchor="" x="831.63" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection:::toArray (1 samples, 0.07%)</title><rect x="916.6" y="737" width="0.8" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="919.60" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::Compilation (1 samples, 0.07%)</title><rect x="304.0" y="1649" width="0.8" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__remove_hrtimer (1 samples, 0.07%)</title><rect x="132.8" y="1617" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="135.83" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="77.4" y="1681" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="80.36" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::findOrCreate (6 samples, 0.40%)</title><rect x="586.1" y="753" width="4.8" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="589.13" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="28.2" y="1441" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="31.23" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/PushMatchedUriRouter:::apply (2 samples, 0.13%)</title><rect x="645.6" y="785" width="1.6" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="648.57" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock:::unlock (1 samples, 0.07%)</title><rect x="432.4" y="1281" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="435.39" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__xstat64 (1 samples, 0.07%)</title><rect x="319.9" y="1329" width="0.8" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="322.86" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="71.8" y="1425" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="74.81" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Arrays:::copyOfRange (1 samples, 0.07%)</title><rect x="441.9" y="1089" width="0.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="444.90" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::setLength (1 samples, 0.07%)</title><rect x="1033.1" y="1393" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1036.09" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Lists:::newLinkedList (1 samples, 0.07%)</title><rect x="951.5" y="993" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="954.46" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="572.7" y="609" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap:::get (1 samples, 0.07%)</title><rect x="910.3" y="817" width="0.7" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="913.26" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::toString (1 samples, 0.07%)</title><rect x="796.1" y="673" width="0.8" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="799.14" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="1172.6" y="1537" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="451.4" y="801" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.07%)</title><rect x="650.3" y="561" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="653.32" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/AbstractRuntimeDelegate:::createResponseBuilder (1 samples, 0.07%)</title><rect x="785.0" y="737" width="0.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="366.6" y="1233" width="1.6" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.13%)</title><rect x="657.5" y="737" width="1.5" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="660.45" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="450.6" y="849" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.07%)</title><rect x="451.4" y="529" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="451.4" y="865" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketDispatcher:::writev (2 samples, 0.13%)</title><rect x="730.4" y="481" width="1.5" height="15.0" fill="rgb(64,177,177)" rx="2" ry="2" />
<text text-anchor="" x="733.36" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::setCurrent (1 samples, 0.07%)</title><rect x="936.4" y="977" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="939.41" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.07%)</title><rect x="110.6" y="1457" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.07%)</title><rect x="13.2" y="1681" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/Stages:::process (18 samples, 1.21%)</title><rect x="662.2" y="849" width="14.3" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="665.21" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="39.3" y="1601" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/JsonWithPaddingInterceptor:::getJsonpAnnotation (3 samples, 0.20%)</title><rect x="705.0" y="753" width="2.4" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="708.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="239.0" y="1601" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/ServletContainer:::service (5 samples, 0.34%)</title><rect x="78.2" y="1681" width="3.9" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::checkLookupType (1 samples, 0.07%)</title><rect x="870.6" y="481" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="873.63" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="107.5" y="1681" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.07%)</title><rect x="975.2" y="593" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (5 samples, 0.34%)</title><rect x="861.1" y="513" width="4.0" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="864.12" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.07%)</title><rect x="573.5" y="817" width="0.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="576.45" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="361.9" y="1377" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="364.86" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="253.3" y="1617" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ImmediateResults:::addValidatedResult (1 samples, 0.07%)</title><rect x="598.0" y="721" width="0.8" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="601.02" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (4 samples, 0.27%)</title><rect x="33.0" y="1377" width="3.2" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/AbstractRuntimeDelegate:::createHeaderDelegate (1 samples, 0.07%)</title><rect x="977.6" y="913" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="980.62" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="366.6" y="1105" width="1.6" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/ResourceMethodInvoker:::invoke (148 samples, 9.94%)</title><rect x="778.7" y="849" width="117.3" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="781.70" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.13%)</title><rect x="708.2" y="417" width="1.6" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/Parameter:::getAnnotations (1 samples, 0.07%)</title><rect x="895.2" y="737" width="0.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="898.20" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Iterables:::addAll (4 samples, 0.27%)</title><rect x="614.7" y="801" width="3.1" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="617.66" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipt_do_table (1 samples, 0.07%)</title><rect x="651.9" y="337" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="654.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.13%)</title><rect x="714.5" y="481" width="1.6" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (2 samples, 0.13%)</title><rect x="721.6" y="465" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.07%)</title><rect x="713.7" y="65" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::releaseShared (1 samples, 0.07%)</title><rect x="884.1" y="369" width="0.8" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="887.10" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="82.1" y="1601" width="0.8" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="85.12" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (4 samples, 0.27%)</title><rect x="770.8" y="641" width="3.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="773.78" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_vm_enough_memory_mm (1 samples, 0.07%)</title><rect x="38.5" y="1585" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="41.53" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.27%)</title><rect x="49.6" y="1681" width="3.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check (1 samples, 0.07%)</title><rect x="251.7" y="1665" width="0.8" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="254.71" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_function_single_interrupt (2 samples, 0.13%)</title><rect x="434.8" y="1249" width="1.6" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iptable_nat_ipv4_local_fn (1 samples, 0.07%)</title><rect x="565.5" y="641" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/MethodHandler$ClassBasedMethodHandler:::getInstance (1 samples, 0.07%)</title><rect x="647.9" y="753" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="650.94" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (1 samples, 0.07%)</title><rect x="349.2" y="1537" width="0.8" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="352.18" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_trylock (1 samples, 0.07%)</title><rect x="1151.2" y="1521" width="0.8" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1154.17" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/BeanSerializer:::serialize (2 samples, 0.13%)</title><rect x="695.5" y="641" width="1.6" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="698.49" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace@plt (1 samples, 0.07%)</title><rect x="458.5" y="865" width="0.8" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="461.54" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/UriTemplate:::createUriComponent (7 samples, 0.47%)</title><rect x="989.5" y="993" width="5.6" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="992.50" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.07%)</title><rect x="715.3" y="97" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="1150.4" y="1409" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.38" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NativeCall::destination (1 samples, 0.07%)</title><rect x="308.0" y="1601" width="0.8" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="310.97" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.07%)</title><rect x="309.6" y="1601" width="0.7" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="312.56" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.07%)</title><rect x="713.7" y="321" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_packet (2 samples, 0.13%)</title><rect x="186.7" y="1409" width="1.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="189.72" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="406.2" y="1281" width="0.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="409.24" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>YoungList::rs_length_sampling_next (4 samples, 0.27%)</title><rect x="250.1" y="1681" width="3.2" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="253.12" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mark_wake_futex (1 samples, 0.07%)</title><rect x="105.1" y="1601" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="108.10" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory:::_createParser (21 samples, 1.41%)</title><rect x="829.4" y="545" width="16.7" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="832.42" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::unparkSuccessor (1 samples, 0.07%)</title><rect x="380.1" y="1297" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="383.09" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MacroAssembler::jump (8 samples, 0.54%)</title><rect x="285.8" y="1585" width="6.3" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ConstantActiveDescriptor:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="596.4" y="753" width="0.8" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="599.43" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="253.3" y="1441" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.07%)</title><rect x="1094.9" y="1121" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.90" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/Finalizer:::remove (1 samples, 0.07%)</title><rect x="1059.2" y="1569" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1062.24" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.07%)</title><rect x="715.3" y="193" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.13%)</title><rect x="246.2" y="1697" width="1.5" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="249.16" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.07%)</title><rect x="451.4" y="705" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="796.1" y="657" width="0.8" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="799.14" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (4 samples, 0.27%)</title><rect x="848.4" y="673" width="3.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="851.44" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.07%)</title><rect x="450.6" y="801" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="422.1" y="1313" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime$2:::run (402 samples, 27.00%)</title><rect x="577.4" y="897" width="318.6" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="580.41" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/jersey/server/ServerRuntime$..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (2 samples, 0.13%)</title><rect x="571.1" y="609" width="1.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$Traverser:::advance (1 samples, 0.07%)</title><rect x="1067.2" y="1473" width="0.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1070.17" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="42.5" y="1553" width="1.6" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="651.9" y="369" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="654.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollArrayWrapper:::interrupt (4 samples, 0.27%)</title><rect x="369.8" y="1329" width="3.2" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.07%)</title><rect x="98.0" y="1393" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="100.97" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.07%)</title><rect x="320.7" y="1185" width="0.7" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/annotation/AnnotationInvocationHandler:::hashCodeImpl (1 samples, 0.07%)</title><rect x="704.2" y="625" width="0.8" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="707.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (12 samples, 0.81%)</title><rect x="324.6" y="1281" width="9.5" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="327.61" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (2 samples, 0.13%)</title><rect x="767.6" y="737" width="1.6" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="770.61" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (7 samples, 0.47%)</title><rect x="188.3" y="1425" width="5.6" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="191.31" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="316.7" y="1121" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (4 samples, 0.27%)</title><rect x="33.0" y="1249" width="3.2" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (2 samples, 0.13%)</title><rect x="1088.6" y="1345" width="1.5" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::resumeCurrent (5 samples, 0.34%)</title><rect x="78.2" y="1569" width="3.9" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (2 samples, 0.13%)</title><rect x="105.1" y="1617" width="1.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="108.10" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="1123.4" y="1537" width="1.6" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.43" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/validation/DropwizardConfiguredValidator:::getGroup (3 samples, 0.20%)</title><rect x="789.0" y="769" width="2.4" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="792.01" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="1175.7" y="1537" width="1.6" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (6 samples, 0.40%)</title><rect x="972.1" y="865" width="4.7" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="975.07" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="56.0" y="1457" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/ConcurrentHashMapV8:::get (2 samples, 0.13%)</title><rect x="686.8" y="689" width="1.6" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="689.78" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.07%)</title><rect x="357.1" y="1297" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/Response:::status (1 samples, 0.07%)</title><rect x="785.0" y="769" width="0.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_sample_event_took (2 samples, 0.13%)</title><rect x="117.8" y="1409" width="1.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="120.78" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="441.1" y="1009" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="56.0" y="1473" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpInput:::nextContent (15 samples, 1.01%)</title><rect x="833.4" y="433" width="11.9" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="836.38" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_nat_ipv4_fn (1 samples, 0.07%)</title><rect x="97.2" y="1217" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="100.17" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/raw/ExecutableElement:::&lt;init&gt; (4 samples, 0.27%)</title><rect x="793.8" y="705" width="3.1" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="796.76" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectedHeap::evacuate_collection_set (7 samples, 0.47%)</title><rect x="1170.2" y="1633" width="5.5" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1173.19" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.07%)</title><rect x="658.2" y="513" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="67.1" y="1585" width="1.5" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.07%)</title><rect x="1096.5" y="1169" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.07%)</title><rect x="110.6" y="1393" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MethodLiveness::init_basic_blocks (1 samples, 0.07%)</title><rect x="304.0" y="1473" width="0.8" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (6 samples, 0.40%)</title><rect x="990.3" y="961" width="4.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="993.30" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (22 samples, 1.48%)</title><rect x="85.3" y="1665" width="17.4" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="88.29" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::charAt (1 samples, 0.07%)</title><rect x="1000.6" y="961" width="0.8" height="15.0" fill="rgb(51,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1003.60" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="82.1" y="1585" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="85.12" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::length (2 samples, 0.13%)</title><rect x="1072.7" y="1409" width="1.6" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1075.71" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="77.4" y="1665" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="80.36" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.27%)</title><rect x="49.6" y="1713" width="3.2" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.07%)</title><rect x="451.4" y="497" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ThreadLocalRandom:::current (1 samples, 0.07%)</title><rect x="430.8" y="1217" width="0.8" height="15.0" fill="rgb(99,209,209)" rx="2" ry="2" />
<text text-anchor="" x="433.81" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="211.3" y="1473" width="1.6" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/FillInterest:::fillable (874 samples, 58.70%)</title><rect x="365.0" y="1505" width="692.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="368.03" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/io/FillInterest:::fillable</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::listIterator (2 samples, 0.13%)</title><rect x="607.5" y="673" width="1.6" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="610.53" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.27%)</title><rect x="278.7" y="1489" width="3.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="204.9" y="1521" width="1.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toUpperCase (2 samples, 0.13%)</title><rect x="382.5" y="1233" width="1.5" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="385.46" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.07%)</title><rect x="823.9" y="513" width="0.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="826.88" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (5 samples, 0.34%)</title><rect x="649.5" y="689" width="4.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="652.53" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="309.6" y="1553" width="0.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="312.56" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.07%)</title><rect x="1088.6" y="1233" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/Reflection:::quickCheckMemberAccess (1 samples, 0.07%)</title><rect x="801.7" y="737" width="0.8" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="804.69" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (3 samples, 0.20%)</title><rect x="239.8" y="1521" width="2.4" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="52.8" y="1457" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection:::toArray (1 samples, 0.07%)</title><rect x="879.3" y="417" width="0.8" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="882.35" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="1167.0" y="1425" width="1.6" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="754.9" y="785" width="0.8" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="757.93" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::produceConsume (893 samples, 59.97%)</title><rect x="351.6" y="1553" width="707.6" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="354.56" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::produceConsume</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="42.5" y="1521" width="1.6" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/DefaultSerializerProvider$Impl:::createInstance (1 samples, 0.07%)</title><rect x="697.1" y="641" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="700.08" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList$ListItr:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="912.6" y="753" width="0.8" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="915.63" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HttpHeaderReader:::nextToken (2 samples, 0.13%)</title><rect x="980.0" y="865" width="1.6" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="982.99" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/UriParser:::parseAuthority (12 samples, 0.81%)</title><rect x="548.1" y="993" width="9.5" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="551.09" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="11.6" y="1729" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="14.58" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/Timer$Context:::stop (1 samples, 0.07%)</title><rect x="780.3" y="753" width="0.8" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="783.29" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="1067.2" y="1489" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1070.17" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.07%)</title><rect x="441.1" y="945" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.07%)</title><rect x="327.0" y="1169" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="329.99" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/monitoring/CompositeRequestEventListener:::onEvent (1 samples, 0.07%)</title><rect x="777.1" y="833" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="780.12" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (3 samples, 0.20%)</title><rect x="239.8" y="1649" width="2.4" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/base/ProviderBase:::_isIgnorableForWriting (2 samples, 0.13%)</title><rect x="689.9" y="625" width="1.6" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="692.95" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_rfree (1 samples, 0.07%)</title><rect x="13.2" y="1553" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$HashIterator:::nextNode (1 samples, 0.07%)</title><rect x="954.6" y="961" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="957.63" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (1 samples, 0.07%)</title><rect x="165.3" y="1489" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="168.33" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandleImpl (1 samples, 0.07%)</title><rect x="926.1" y="737" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="929.10" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (2 samples, 0.13%)</title><rect x="639.2" y="561" width="1.6" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="642.23" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (3 samples, 0.20%)</title><rect x="651.1" y="545" width="2.4" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList$Node:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="645.6" y="721" width="1.6" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="648.57" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuffer:::append (1 samples, 0.07%)</title><rect x="1075.1" y="1345" width="0.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1078.09" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.07%)</title><rect x="13.2" y="1697" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractCollection:::addAll (1 samples, 0.07%)</title><rect x="880.1" y="401" width="0.8" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="883.14" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (7 samples, 0.47%)</title><rect x="971.3" y="881" width="5.5" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="974.28" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (4 samples, 0.27%)</title><rect x="33.0" y="1313" width="3.2" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerRequest:::readEntity (1 samples, 0.07%)</title><rect x="897.6" y="913" width="0.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="900.58" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parseServer (1 samples, 0.07%)</title><rect x="1001.4" y="961" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1004.39" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Sets$ImprovedAbstractSet:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="739.9" y="625" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="742.87" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="369.8" y="1217" width="1.6" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.40 (1 samples, 0.07%)</title><rect x="1096.5" y="1137" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_send_check (1 samples, 0.07%)</title><rect x="184.3" y="1473" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="187.35" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.47%)</title><rect x="219.2" y="1633" width="5.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/raw/ExecutableElement:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="800.1" y="705" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="803.10" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (7 samples, 0.47%)</title><rect x="219.2" y="1585" width="5.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.07%)</title><rect x="804.9" y="641" width="0.7" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="807.86" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::lockForRegularUsage (3 samples, 0.20%)</title><rect x="428.4" y="1217" width="2.4" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectedHeap::iterate_dirty_card_closure (2 samples, 0.13%)</title><rect x="276.3" y="1665" width="1.6" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="279.27" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.07%)</title><rect x="1150.4" y="1377" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.38" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (5 samples, 0.34%)</title><rect x="90.0" y="1473" width="4.0" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="93.04" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Executable:::declaredAnnotations (1 samples, 0.07%)</title><rect x="798.5" y="721" width="0.8" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="801.52" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/channels/spi/AbstractInterruptibleChannel:::begin (1 samples, 0.07%)</title><rect x="1018.8" y="1409" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1021.82" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.07%)</title><rect x="707.4" y="641" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (8 samples, 0.54%)</title><rect x="31.4" y="1665" width="6.3" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="34.40" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="1167.0" y="1585" width="1.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="731.2" y="433" width="0.7" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/MethodSelectingRouter$3:::apply (1 samples, 0.07%)</title><rect x="777.9" y="865" width="0.8" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="780.91" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="1162.3" y="1505" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::length (1 samples, 0.07%)</title><rect x="546.5" y="993" width="0.8" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="549.51" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::update (2 samples, 0.13%)</title><rect x="426.1" y="1249" width="1.5" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="429.05" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::read0 (1 samples, 0.07%)</title><rect x="1020.4" y="1361" width="0.8" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="1023.41" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (2 samples, 0.13%)</title><rect x="1121.1" y="1569" width="1.5" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="1124.05" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="1172.6" y="1377" width="0.8" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.07%)</title><rect x="535.4" y="673" width="0.8" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="538.41" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::indexOf (2 samples, 0.13%)</title><rect x="1006.1" y="961" width="1.6" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1009.15" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="731.2" y="305" width="0.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/PerLocatorUtilities:::getAutoAnalyzerName (1 samples, 0.07%)</title><rect x="920.6" y="721" width="0.7" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="923.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.27%)</title><rect x="221.6" y="1505" width="3.2" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="224.59" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="27.4" y="1537" width="1.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/handler/ContextHandler:::doHandle (1 samples, 0.07%)</title><rect x="110.6" y="1713" width="0.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="572.7" y="465" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="763.6" y="721" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="766.65" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.07%)</title><rect x="32.2" y="1441" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (3 samples, 0.20%)</title><rect x="239.8" y="1537" width="2.4" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="1096.5" y="1201" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="561.6" y="1009" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="731.2" y="385" width="0.7" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator:::&lt;init&gt; (6 samples, 0.40%)</title><rect x="697.9" y="641" width="4.7" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="700.87" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="1060.8" y="1569" width="1.6" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1063.83" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::~JavaThread (4 samples, 0.27%)</title><rect x="24.3" y="1745" width="3.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/UriRoutingContext:::setMatchedResourceMethod (1 samples, 0.07%)</title><rect x="647.2" y="753" width="0.7" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="650.15" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (17 samples, 1.14%)</title><rect x="181.2" y="1665" width="13.4" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="184.18" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/io/SerializedString:::appendQuotedUTF8 (1 samples, 0.07%)</title><rect x="696.3" y="577" width="0.8" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="699.29" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::get (2 samples, 0.13%)</title><rect x="850.0" y="625" width="1.6" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="853.03" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerRequest:::readEntity (55 samples, 3.69%)</title><rect x="804.1" y="737" width="43.5" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="807.06" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="247.0" y="1617" width="0.7" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="249.95" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::toString (4 samples, 0.27%)</title><rect x="984.0" y="1041" width="3.1" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="986.96" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/CharacterDataLatin1:::getProperties (1 samples, 0.07%)</title><rect x="636.1" y="513" width="0.8" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="639.06" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Sets:::newIdentityHashSet (1 samples, 0.07%)</title><rect x="634.5" y="721" width="0.8" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="637.47" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/IdentityHashMap:::keySet (1 samples, 0.07%)</title><rect x="634.5" y="641" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="637.47" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketDispatcher:::writev (4 samples, 0.27%)</title><rect x="216.0" y="1697" width="3.2" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/IterableProviderImpl:::get (60 samples, 4.03%)</title><rect x="847.6" y="721" width="47.6" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="850.65" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/general/GeneralUtilities:::safeEquals (1 samples, 0.07%)</title><rect x="866.7" y="385" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="869.67" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_mmap (1 samples, 0.07%)</title><rect x="38.5" y="1665" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="41.53" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="200.2" y="1697" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="203.19" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/ArrayList:::addAll (1 samples, 0.07%)</title><rect x="671.7" y="785" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="674.72" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileOutputStream:::write (30 samples, 2.01%)</title><rect x="1087.8" y="1425" width="23.7" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1090.77" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="247.7" y="1745" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="250.74" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Long:::toString (1 samples, 0.07%)</title><rect x="1074.3" y="1409" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1077.30" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/TracingLogger:::getInstance (1 samples, 0.07%)</title><rect x="952.3" y="993" width="0.7" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="955.26" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.07%)</title><rect x="215.3" y="1601" width="0.7" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="218.25" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.07%)</title><rect x="316.7" y="1249" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InterceptorExecutor:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="681.2" y="801" width="0.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="684.23" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.13%)</title><rect x="721.6" y="305" width="1.6" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::regionMatches (1 samples, 0.07%)</title><rect x="691.5" y="593" width="0.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="694.53" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/RoutingStage:::apply (37 samples, 2.48%)</title><rect x="619.4" y="865" width="29.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="622.42" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getService (7 samples, 0.47%)</title><rect x="921.3" y="769" width="5.6" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="924.35" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::resumeCurrent (1 samples, 0.07%)</title><rect x="103.5" y="1585" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/google/common/collect/ImmutableList$Builder:::build (1 samples, 0.07%)</title><rect x="790.6" y="753" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="793.59" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (71 samples, 4.77%)</title><rect x="463.3" y="833" width="56.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="466.30" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (3 samples, 0.20%)</title><rect x="455.4" y="865" width="2.4" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="458.37" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/DescriptorImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="919.8" y="705" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="922.76" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime$Responder:::process (164 samples, 11.01%)</title><rect x="648.7" y="881" width="130.0" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="651.74" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/je..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="214.5" y="1697" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.07%)</title><rect x="1096.5" y="1153" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_task_tick (1 samples, 0.07%)</title><rect x="865.1" y="353" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="868.08" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/TimSort:::sort (1 samples, 0.07%)</title><rect x="315.9" y="1361" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$Node:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="602.8" y="673" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="605.77" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::getFieldNamesCollection (3 samples, 0.20%)</title><rect x="397.5" y="1249" width="2.4" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="400.52" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="520.4" y="929" width="1.5" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="523.36" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/general/ThreadSpecificObject:::hashCode (1 samples, 0.07%)</title><rect x="587.7" y="673" width="0.8" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text text-anchor="" x="590.72" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.07%)</title><rect x="214.5" y="1553" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.07%)</title><rect x="37.7" y="1249" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::write (4 samples, 0.27%)</title><rect x="728.8" y="497" width="3.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="731.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.07%)</title><rect x="33.8" y="1025" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="36.77" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (2 samples, 0.13%)</title><rect x="535.4" y="689" width="1.6" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="538.41" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="565.5" y="769" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/module/afterburner/deser/SuperSonicBeanDeserializer:::deserialize (7 samples, 0.47%)</title><rect x="818.3" y="545" width="5.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="821.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/AsyncAppenderBase:::put (3 samples, 0.20%)</title><rect x="376.9" y="1361" width="2.4" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="379.92" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/type/TypeFactory:::_fromAny (1 samples, 0.07%)</title><rect x="823.9" y="561" width="0.8" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="826.88" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.13%)</title><rect x="71.0" y="1617" width="1.6" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser:::nextFieldName (4 samples, 0.27%)</title><rect x="818.3" y="529" width="3.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="821.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="205.7" y="1441" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="208.74" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::narrow (1 samples, 0.07%)</title><rect x="598.0" y="737" width="0.8" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="601.02" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (17 samples, 1.14%)</title><rect x="153.4" y="1697" width="13.5" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="156.44" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="300.0" y="1249" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="713.7" y="449" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileOutputStream:::close (4 samples, 0.27%)</title><rect x="24.3" y="1681" width="3.1" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (2 samples, 0.13%)</title><rect x="1110.0" y="1297" width="1.5" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1112.96" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/type/TypeFactory:::constructType (1 samples, 0.07%)</title><rect x="823.9" y="577" width="0.8" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="826.88" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/pattern/DateConverter:::convert (4 samples, 0.27%)</title><rect x="1075.1" y="1425" width="3.2" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1078.09" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeArrayKlass::allocate_common (2 samples, 0.13%)</title><rect x="831.0" y="417" width="1.6" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="834.01" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::buildRequestParameterMap (5 samples, 0.34%)</title><rect x="399.9" y="1297" width="4.0" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="402.90" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (6 samples, 0.40%)</title><rect x="990.3" y="977" width="4.8" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="993.30" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="707.4" y="673" width="0.8" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner (1,117 samples, 75.02%)</title><rect x="285.0" y="1713" width="885.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="287.99" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::thread_main_inner</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="235.1" y="1649" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.07%)</title><rect x="239.0" y="1681" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="106.7" y="1713" width="0.8" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="109.68" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (2 samples, 0.13%)</title><rect x="434.8" y="1233" width="1.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (4 samples, 0.27%)</title><rect x="514.0" y="753" width="3.2" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="517.02" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (5 samples, 0.34%)</title><rect x="45.7" y="1745" width="3.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="48.66" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getRequestURL (2 samples, 0.13%)</title><rect x="560.0" y="1073" width="1.6" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="562.98" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (4 samples, 0.27%)</title><rect x="94.8" y="1425" width="3.2" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="97.80" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (21 samples, 1.41%)</title><rect x="117.0" y="1681" width="16.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.07%)</title><rect x="355.5" y="1281" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpParser:::parseNext (10 samples, 0.67%)</title><rect x="836.6" y="369" width="7.9" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text text-anchor="" x="839.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::lock (3 samples, 0.20%)</title><rect x="428.4" y="1201" width="2.4" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="390.4" y="1217" width="0.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="393.39" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.13%)</title><rect x="721.6" y="273" width="1.6" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (3 samples, 0.20%)</title><rect x="597.2" y="753" width="2.4" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="600.23" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="664.6" y="577" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (7 samples, 0.47%)</title><rect x="219.2" y="1553" width="5.6" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="715.3" y="289" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::mask_for (2 samples, 0.13%)</title><rect x="273.9" y="1601" width="1.6" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="276.90" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="78.9" y="1345" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="81.95" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ApplicationHandler:::handle (1 samples, 0.07%)</title><rect x="103.5" y="1633" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="70.2" y="1697" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal$ThreadLocalMap:::access$200 (3 samples, 0.20%)</title><rect x="577.4" y="849" width="2.4" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="580.41" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ManagedSelector$SelectorProducer:::update (1 samples, 0.07%)</title><rect x="364.2" y="1521" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="367.24" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.07%)</title><rect x="211.3" y="1409" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (3 samples, 0.20%)</title><rect x="571.1" y="689" width="2.4" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/ConcurrentArrayQueue$Block:::head (2 samples, 0.13%)</title><rect x="1023.6" y="1377" width="1.6" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandleImpl (1 samples, 0.07%)</title><rect x="888.1" y="433" width="0.8" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="891.07" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.07%)</title><rect x="31.4" y="1585" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="34.40" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannel:::commit (1 samples, 0.07%)</title><rect x="712.9" y="641" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="715.93" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="1094.9" y="1185" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.90" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="74.2" y="1649" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="742.2" y="577" width="0.8" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="745.25" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="107.5" y="1553" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (4 samples, 0.27%)</title><rect x="324.6" y="1233" width="3.2" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="327.61" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.07%)</title><rect x="1088.6" y="1281" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/Timer:::update (5 samples, 0.34%)</title><rect x="424.5" y="1313" width="3.9" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="427.47" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_mprotect (1 samples, 0.07%)</title><rect x="82.9" y="1713" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="85.91" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (6 samples, 0.40%)</title><rect x="94.0" y="1473" width="4.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="97.00" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Lists:::newLinkedList (1 samples, 0.07%)</title><rect x="675.7" y="769" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="678.68" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="1167.0" y="1441" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="1023.6" y="1281" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[vdso]] (1 samples, 0.07%)</title><rect x="1017.2" y="1297" width="0.8" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1020.24" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.07%)</title><rect x="36.9" y="1601" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="39.94" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="235.9" y="1649" width="0.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Maps$TransformedEntriesMap:::createEntrySet (1 samples, 0.07%)</title><rect x="739.9" y="673" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="742.87" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (32 samples, 2.15%)</title><rect x="623.4" y="817" width="25.3" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="626.38" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (16 samples, 1.07%)</title><rect x="219.2" y="1745" width="12.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter$FormatSpecifier:::print (1 samples, 0.07%)</title><rect x="522.7" y="929" width="0.8" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="525.73" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="70.2" y="1713" width="0.8" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (17 samples, 1.14%)</title><rect x="153.4" y="1681" width="13.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="156.44" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (728 samples, 48.89%)</title><rect x="438.7" y="1185" width="577.0" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="441.73" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io/dropwizard/jersey/filter/AllowedMethodsFilter:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="254.1" y="1649" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="257.08" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.07%)</title><rect x="201.8" y="1601" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="204.78" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="357.9" y="1233" width="1.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="235.9" y="1697" width="0.7" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace (1 samples, 0.07%)</title><rect x="26.6" y="1585" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="29.64" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="804.9" y="545" width="0.7" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text text-anchor="" x="807.86" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker:::lock (1 samples, 0.07%)</title><rect x="431.6" y="1297" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="434.60" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.07%)</title><rect x="192.3" y="1073" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="195.27" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="1023.6" y="1297" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections:::enumeration (1 samples, 0.07%)</title><rect x="396.7" y="1249" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="399.73" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="565.5" y="849" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::compareAndSetWaitStatus (1 samples, 0.07%)</title><rect x="416.5" y="1361" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="419.54" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.07%)</title><rect x="1183.7" y="1409" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="104.3" y="1649" width="0.8" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text text-anchor="" x="107.30" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_ExceptionOccurred (1 samples, 0.07%)</title><rect x="1098.1" y="1377" width="0.8" height="15.0" fill="rgb(202,52,52)" rx="2" ry="2" />
<text text-anchor="" x="1101.07" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::PlatformEvent::park (1 samples, 0.07%)</title><rect x="306.4" y="1633" width="0.8" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="309.39" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::toString (2 samples, 0.13%)</title><rect x="1033.9" y="1393" width="1.6" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1036.88" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap$LinkedKeySet:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="396.7" y="1185" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="399.73" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.07%)</title><rect x="431.6" y="1281" width="0.8" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="434.60" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.07%)</title><rect x="651.1" y="209" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (13 samples, 0.87%)</title><rect x="56.0" y="1729" width="10.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (728 samples, 48.89%)</title><rect x="438.7" y="1201" width="577.0" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="441.73" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="235.1" y="1729" width="0.8" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.07%)</title><rect x="1150.4" y="1361" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.38" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/MetaData:::getContentLength (1 samples, 0.07%)</title><rect x="402.3" y="1217" width="0.8" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text text-anchor="" x="405.28" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.13%)</title><rect x="27.4" y="1617" width="1.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime$AsyncResponderHolder:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="938.0" y="993" width="0.8" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="940.99" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.34%)</title><rect x="315.9" y="1393" width="4.0" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.07%)</title><rect x="651.1" y="225" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (17 samples, 1.14%)</title><rect x="181.2" y="1617" width="13.4" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="184.18" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (2 samples, 0.13%)</title><rect x="594.8" y="673" width="1.6" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="597.85" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="24.3" y="1489" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="658.2" y="641" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/ArrayTrie:::getBest (1 samples, 0.07%)</title><rect x="1055.3" y="1425" width="0.8" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="1058.28" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/charset/CharsetEncoder:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="720.9" y="433" width="0.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="723.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="95.6" y="1169" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_prequeue (1 samples, 0.07%)</title><rect x="37.7" y="1185" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/atomic/AtomicIntegerArray:::checkedByteOffset (1 samples, 0.07%)</title><rect x="1024.4" y="1345" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1027.37" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="1123.4" y="1457" width="1.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.43" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorNotify (3 samples, 0.20%)</title><rect x="842.1" y="273" width="2.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="845.10" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (20 samples, 1.34%)</title><rect x="85.3" y="1601" width="15.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="88.29" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="235.1" y="1521" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.07%)</title><rect x="910.3" y="689" width="0.7" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="913.26" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="211.3" y="1457" width="1.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (5 samples, 0.34%)</title><rect x="292.9" y="1617" width="4.0" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="295.91" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/ConcurrentArrayQueue:::poll (4 samples, 0.27%)</title><rect x="1023.6" y="1393" width="3.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (22 samples, 1.48%)</title><rect x="135.2" y="1713" width="17.4" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="138.21" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (1 samples, 0.07%)</title><rect x="640.8" y="657" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="643.81" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.07%)</title><rect x="715.3" y="209" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/engine/ValidatorImpl:::validateReturnValue (2 samples, 0.13%)</title><rect x="800.1" y="769" width="1.6" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="803.10" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/WebComponent$4$1:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="953.8" y="993" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="956.84" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="14.8" y="1457" width="0.7" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_rx_internal (1 samples, 0.07%)</title><rect x="98.0" y="1345" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="100.97" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (19 samples, 1.28%)</title><rect x="117.0" y="1537" width="15.0" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.07%)</title><rect x="323.0" y="1409" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="326.03" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.13%)</title><rect x="71.0" y="1585" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.07%)</title><rect x="887.3" y="449" width="0.8" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text text-anchor="" x="890.27" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="785.0" y="673" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="231.9" y="1489" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (6 samples, 0.40%)</title><rect x="32.2" y="1505" width="4.7" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.07%)</title><rect x="66.3" y="1665" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="69.27" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_enable (2 samples, 0.13%)</title><rect x="434.8" y="1169" width="1.6" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::indexOf (2 samples, 0.13%)</title><rect x="548.9" y="945" width="1.6" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="551.89" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectWriter:::writeValue (3 samples, 0.20%)</title><rect x="695.5" y="689" width="2.4" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="698.49" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="37.7" y="1665" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (1 samples, 0.07%)</title><rect x="361.1" y="1393" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="364.07" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (34 samples, 2.28%)</title><rect x="621.8" y="833" width="26.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="624.79" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (3 samples, 0.20%)</title><rect x="285.8" y="1441" width="2.4" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="246.2" y="1665" width="1.5" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="249.16" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpOutput:::write (35 samples, 2.35%)</title><rect x="710.6" y="721" width="27.7" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text text-anchor="" x="713.55" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="37.7" y="1377" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (2 samples, 0.13%)</title><rect x="1138.5" y="1489" width="1.6" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="1141.49" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (2 samples, 0.13%)</title><rect x="1102.0" y="1265" width="1.6" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putVal (2 samples, 0.13%)</title><rect x="876.2" y="465" width="1.6" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="879.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.07%)</title><rect x="589.3" y="705" width="0.8" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="592.30" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.47%)</title><rect x="315.9" y="1505" width="5.5" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="561.6" y="945" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.13%)</title><rect x="714.5" y="465" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (7 samples, 0.47%)</title><rect x="219.2" y="1521" width="5.6" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::create (1 samples, 0.07%)</title><rect x="609.1" y="753" width="0.8" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="612.11" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="204.2" y="1617" width="0.7" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::linkLast (1 samples, 0.07%)</title><rect x="869.8" y="433" width="0.8" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="872.84" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::update (2 samples, 0.13%)</title><rect x="426.1" y="1265" width="1.5" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="429.05" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getAttribute (1 samples, 0.07%)</title><rect x="952.3" y="929" width="0.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="955.26" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$SetFromMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="946.7" y="897" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="949.71" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="49.6" y="1473" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime:::process (5 samples, 0.34%)</title><rect x="78.2" y="1601" width="3.9" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="308.8" y="1665" width="0.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="311.76" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/TreeMap:::compare (1 samples, 0.07%)</title><rect x="393.6" y="1265" width="0.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="396.56" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.07%)</title><rect x="239.0" y="1617" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractSequentialList:::iterator (1 samples, 0.07%)</title><rect x="873.8" y="497" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="876.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::singleHeader (6 samples, 0.40%)</title><rect x="769.2" y="801" width="4.7" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="772.19" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::getRequestURL (1 samples, 0.07%)</title><rect x="385.6" y="1329" width="0.8" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="388.63" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/handler/ContextHandler:::doScope (736 samples, 49.43%)</title><rect x="434.0" y="1281" width="583.2" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="436.98" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/server/handler/ContextHandler:::doScope</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeArrayKlass::allocate_common (1 samples, 0.07%)</title><rect x="501.3" y="769" width="0.8" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="504.34" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (3 samples, 0.20%)</title><rect x="624.2" y="801" width="2.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="627.17" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (2 samples, 0.13%)</title><rect x="708.2" y="321" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="67.1" y="1457" width="1.5" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/util/locale/provider/DateFormatSymbolsProviderImpl:::getInstance (9 samples, 0.60%)</title><rect x="239.0" y="1745" width="7.2" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Lists:::newLinkedList (4 samples, 0.27%)</title><rect x="673.3" y="785" width="3.2" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="676.30" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="247.0" y="1633" width="0.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="249.95" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (2 samples, 0.13%)</title><rect x="657.5" y="849" width="1.5" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" />
<text text-anchor="" x="660.45" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (25 samples, 1.68%)</title><rect x="873.8" y="513" width="19.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="876.80" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.07%)</title><rect x="1096.5" y="1281" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="204.2" y="1729" width="0.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (35 samples, 2.35%)</title><rect x="1132.9" y="1537" width="27.8" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="1135.94" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >U..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (9 samples, 0.60%)</title><rect x="879.3" y="449" width="7.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="882.35" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::createService (32 samples, 2.15%)</title><rect x="908.7" y="881" width="25.3" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="911.67" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::writev0 (1 samples, 0.07%)</title><rect x="727.2" y="497" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="730.19" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.07%)</title><rect x="37.7" y="1121" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (7 samples, 0.47%)</title><rect x="188.3" y="1361" width="5.6" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="191.31" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (9 samples, 0.60%)</title><rect x="865.1" y="545" width="7.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="868.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (5 samples, 0.34%)</title><rect x="56.0" y="1633" width="3.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (2 samples, 0.13%)</title><rect x="721.6" y="433" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="217.6" y="1649" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="220.63" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::createService (51 samples, 3.43%)</title><rect x="854.8" y="673" width="40.4" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="857.78" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 0.47%)</title><rect x="315.9" y="1457" width="5.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="253.3" y="1585" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/ConcurrentHashMapV8:::get (1 samples, 0.07%)</title><rect x="684.4" y="705" width="0.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="687.40" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ManagedSelector$SelectorProducer:::produce (15 samples, 1.01%)</title><rect x="352.4" y="1521" width="11.8" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="355.35" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.07%)</title><rect x="355.5" y="1217" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.20%)</title><rect x="1183.7" y="1681" width="2.3" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext$5:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="804.1" y="689" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="807.06" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (3 samples, 0.20%)</title><rect x="239.8" y="1633" width="2.4" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="105.9" y="1553" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="108.89" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="1161.5" y="1441" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.47" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.07%)</title><rect x="450.6" y="865" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="366.6" y="1201" width="1.6" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (1 samples, 0.07%)</title><rect x="357.1" y="1329" width="0.8" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (5 samples, 0.34%)</title><rect x="977.6" y="961" width="4.0" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="980.62" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="664.6" y="609" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="668.5" y="641" width="0.8" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="671.55" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (2 samples, 0.13%)</title><rect x="721.6" y="417" width="1.6" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.13%)</title><rect x="105.1" y="1681" width="1.6" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="108.10" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="74.2" y="1617" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundWriteTo (1 samples, 0.07%)</title><rect x="774.7" y="849" width="0.8" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="777.74" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker$Lock:::close (2 samples, 0.13%)</title><rect x="418.1" y="1377" width="1.6" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="421.13" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="636.9" y="545" width="0.7" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="639.85" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="1173.4" y="1601" width="1.5" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1176.36" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WatcherThread::sleep (13 samples, 0.87%)</title><rect x="1179.7" y="1713" width="10.3" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="1182.70" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (2 samples, 0.13%)</title><rect x="657.5" y="801" width="1.5" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="660.45" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/EnumMap:::get (2 samples, 0.13%)</title><rect x="734.3" y="513" width="1.6" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="737.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="768.4" y="705" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="771.40" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BnM:::optimize (2 samples, 0.13%)</title><rect x="761.3" y="689" width="1.6" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="764.27" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Curly:::match (3 samples, 0.20%)</title><rect x="534.6" y="785" width="2.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="537.62" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (44 samples, 2.96%)</title><rect x="314.3" y="1537" width="34.9" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text text-anchor="" x="317.31" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >In..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (3 samples, 0.20%)</title><rect x="239.8" y="1681" width="2.4" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (3 samples, 0.20%)</title><rect x="46.5" y="1665" width="2.3" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="49.45" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$3:::nextElement (1 samples, 0.07%)</title><rect x="1067.2" y="1505" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1070.17" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::createService (29 samples, 1.95%)</title><rect x="872.2" y="577" width="23.0" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="875.22" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Boolean:::equals (1 samples, 0.07%)</title><rect x="412.6" y="1377" width="0.8" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="415.58" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.07%)</title><rect x="1097.3" y="1073" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (2 samples, 0.13%)</title><rect x="17.9" y="1473" width="1.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="20.92" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="1023.6" y="1121" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (3 samples, 0.20%)</title><rect x="610.7" y="849" width="2.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="613.70" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="309.6" y="1489" width="0.7" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="312.56" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (2 samples, 0.13%)</title><rect x="404.7" y="1281" width="1.5" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="407.65" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryAcquireShared (1 samples, 0.07%)</title><rect x="426.8" y="1185" width="0.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="429.84" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="310.3" y="1649" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="313.35" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (1 samples, 0.07%)</title><rect x="357.1" y="1281" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/handler/HandlerWrapper:::handle (736 samples, 49.43%)</title><rect x="434.0" y="1313" width="583.2" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="436.98" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/server/handler/HandlerWrapper:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpGenerator:::generateResponse (7 samples, 0.47%)</title><rect x="716.1" y="577" width="5.5" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="719.10" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::copyAttributeMap (3 samples, 0.20%)</title><rect x="386.4" y="1313" width="2.4" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="389.43" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/base/ProviderBase:::_createGenerator (6 samples, 0.40%)</title><rect x="697.9" y="689" width="4.7" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="700.87" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/joran/spi/ConsoleTarget$1:::write (33 samples, 2.22%)</title><rect x="1086.2" y="1505" width="26.1" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1089.19" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.07%)</title><rect x="96.4" y="1201" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="99.38" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileDescriptor:::closeAll (4 samples, 0.27%)</title><rect x="24.3" y="1665" width="3.1" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::ILock (1 samples, 0.07%)</title><rect x="1171.0" y="1585" width="0.8" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="1173.98" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory:::createGenerator (6 samples, 0.40%)</title><rect x="697.9" y="673" width="4.7" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="700.87" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (13 samples, 0.87%)</title><rect x="599.6" y="801" width="10.3" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="602.60" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>loopback_xmit (1 samples, 0.07%)</title><rect x="193.9" y="1393" width="0.7" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="196.85" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::addAll (1 samples, 0.07%)</title><rect x="674.9" y="737" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="677.89" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="24.3" y="1425" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (7 samples, 0.47%)</title><rect x="971.3" y="929" width="5.5" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="974.28" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::getRequestURL (1 samples, 0.07%)</title><rect x="1079.8" y="1441" width="0.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1082.85" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/raw/ExecutableElement$MethodElement:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="800.1" y="737" width="0.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="803.10" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/MethodSelectingRouter$3:::apply (9 samples, 0.60%)</title><rect x="663.8" y="817" width="7.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="666.79" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.07%)</title><rect x="910.3" y="785" width="0.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="913.26" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection$1:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="594.8" y="689" width="1.6" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="597.85" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.27%)</title><rect x="278.7" y="1537" width="3.1" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.07%)</title><rect x="1122.6" y="1473" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.64" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (2 samples, 0.13%)</title><rect x="637.6" y="689" width="1.6" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="640.64" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::release (2 samples, 0.13%)</title><rect x="418.1" y="1345" width="1.6" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="421.13" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.13%)</title><rect x="49.6" y="1537" width="1.6" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::singleHeader (3 samples, 0.20%)</title><rect x="766.8" y="801" width="2.4" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="769.82" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/UriParser:::parseComponent (4 samples, 0.27%)</title><rect x="554.4" y="961" width="3.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="557.43" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (16 samples, 1.07%)</title><rect x="166.9" y="1713" width="12.7" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="169.91" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="1167.0" y="1473" width="1.6" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::signal (1 samples, 0.07%)</title><rect x="379.3" y="1313" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="382.29" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reschedule_interrupt (1 samples, 0.07%)</title><rect x="356.3" y="1425" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="359.31" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/internal/ResourceMethodInvocationHandlerFactory$1:::invoke (1 samples, 0.07%)</title><rect x="801.7" y="769" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="804.69" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.13%)</title><rect x="1167.0" y="1553" width="1.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OtherRegionsTable::add_reference (1 samples, 0.07%)</title><rect x="277.1" y="1569" width="0.8" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="280.07" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/net/InetAddresses:::isUriInetAddress (108 samples, 7.25%)</title><rect x="457.8" y="993" width="85.5" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jersey/rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::getNode (2 samples, 0.13%)</title><rect x="850.0" y="609" width="1.6" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="853.03" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Sets:::newIdentityHashSet (1 samples, 0.07%)</title><rect x="946.7" y="961" width="0.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="949.71" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::isProxiable (1 samples, 0.07%)</title><rect x="871.4" y="497" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="874.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::getFieldNames (5 samples, 0.34%)</title><rect x="395.9" y="1265" width="4.0" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="398.94" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="451.4" y="561" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/PatternLayout:::doLayout (16 samples, 1.07%)</title><rect x="1069.5" y="1489" width="12.7" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1072.54" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="40.1" y="1713" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="43.11" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (17 samples, 1.14%)</title><rect x="153.4" y="1633" width="13.5" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="156.44" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BranchConn:::match (1 samples, 0.07%)</title><rect x="320.7" y="1201" width="0.7" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="78.9" y="1217" width="1.6" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="81.95" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.54%)</title><rect x="239.8" y="1713" width="6.4" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="658.2" y="657" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_ExceptionOccurred (3 samples, 0.20%)</title><rect x="1105.2" y="1361" width="2.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="1108.20" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime:::process (484 samples, 32.51%)</title><rect x="563.9" y="1009" width="383.6" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="566.94" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/jersey/server/ServerRuntime:::process</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.07%)</title><rect x="865.1" y="417" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="868.08" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.13%)</title><rect x="1123.4" y="1489" width="1.6" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.43" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="894.4" y="449" width="0.8" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="897.41" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (5 samples, 0.34%)</title><rect x="804.9" y="689" width="3.9" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="807.86" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (3 samples, 0.20%)</title><rect x="450.6" y="977" width="2.4" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="1061.6" y="1473" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1064.62" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="48.8" y="1601" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="51.83" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="896.0" y="913" width="0.8" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="898.99" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="366.6" y="1169" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="1097.3" y="1297" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="204.9" y="1585" width="1.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="721.6" y="241" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MessageBodyFactory:::_getMessageBodyReader (6 samples, 0.40%)</title><rect x="811.2" y="609" width="4.8" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="814.20" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="976.0" y="641" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="979.03" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (4 samples, 0.27%)</title><rect x="113.8" y="1649" width="3.2" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="116.81" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/TracingLogger:::getInstance (1 samples, 0.07%)</title><rect x="617.8" y="833" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="620.83" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="1150.4" y="1425" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.38" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::create (29 samples, 1.95%)</title><rect x="909.5" y="833" width="22.9" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="912.46" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="211.3" y="1489" width="1.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::resolveContext (1 samples, 0.07%)</title><rect x="605.9" y="657" width="0.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="608.94" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::add (1 samples, 0.07%)</title><rect x="869.8" y="449" width="0.8" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="872.84" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/UriTemplate:::notEmpty (1 samples, 0.07%)</title><rect x="995.1" y="993" width="0.7" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="998.05" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.07%)</title><rect x="861.1" y="449" width="0.8" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="864.12" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dict::Insert (1 samples, 0.07%)</title><rect x="302.4" y="1617" width="0.8" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="305.42" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::create (2 samples, 0.13%)</title><rect x="858.0" y="625" width="1.5" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="860.95" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::keySet (1 samples, 0.07%)</title><rect x="399.9" y="1265" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="402.90" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (6 samples, 0.40%)</title><rect x="189.1" y="1281" width="4.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="192.10" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (1 samples, 0.07%)</title><rect x="132.0" y="1585" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="135.04" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.07%)</title><rect x="13.2" y="1713" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::getFieldNames (7 samples, 0.47%)</title><rect x="955.4" y="977" width="5.6" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="958.43" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="1161.5" y="1457" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.47" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (1 samples, 0.07%)</title><rect x="53.6" y="1457" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="56.59" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.07%)</title><rect x="203.4" y="1601" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/reflection/ReflectionHelper:::getNameFromAllQualifiers (1 samples, 0.07%)</title><rect x="848.4" y="657" width="0.8" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="851.44" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/WebComponent:::initContainerRequest (39 samples, 2.62%)</title><rect x="953.0" y="1025" width="31.0" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="956.05" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="37.7" y="1393" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.07%)</title><rect x="193.9" y="1409" width="0.7" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="196.85" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="369.8" y="1041" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpParser:::parseHeaders (20 samples, 1.34%)</title><rect x="1028.3" y="1425" width="15.9" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="1031.33" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerRequest:::getProperty (1 samples, 0.07%)</title><rect x="784.3" y="801" width="0.7" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="787.25" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/LockSupport:::park (40 samples, 2.69%)</title><rect x="1130.6" y="1569" width="31.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1133.56" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="932.4" y="817" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="935.44" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::containsKey (1 samples, 0.07%)</title><rect x="855.6" y="625" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="858.57" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.07%)</title><rect x="103.5" y="1281" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="25.1" y="1585" width="1.5" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="28.06" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.13%)</title><rect x="59.9" y="1713" width="1.6" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="62.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="575.8" y="913" width="0.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="578.83" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/EPollSelectorImpl:::updateSelectedKeys (1 samples, 0.07%)</title><rect x="362.7" y="1425" width="0.7" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="365.65" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (3 samples, 0.20%)</title><rect x="381.7" y="1297" width="2.3" height="15.0" fill="rgb(96,208,208)" rx="2" ry="2" />
<text text-anchor="" x="384.67" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractCollection:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="739.9" y="593" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="742.87" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.07%)</title><rect x="1102.0" y="1137" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="357.1" y="1313" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::g1_write_barrier_post (1 samples, 0.07%)</title><rect x="297.7" y="1537" width="0.8" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="300.67" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="235.9" y="1601" width="0.7" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="298.5" y="1473" width="1.5" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="301.46" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>writeBytes (13 samples, 0.87%)</title><rect x="1099.7" y="1377" width="10.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1102.66" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::runInScope (1 samples, 0.07%)</title><rect x="538.6" y="849" width="0.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="541.58" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/WebComponent:::service (2 samples, 0.13%)</title><rect x="103.5" y="1665" width="1.6" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="27.4" y="1553" width="1.6" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/general/Hk2ThreadLocal:::get (1 samples, 0.07%)</title><rect x="596.4" y="721" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="599.43" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.13%)</title><rect x="708.2" y="433" width="1.6" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Exception:::&lt;init&gt; (79 samples, 5.31%)</title><rect x="457.8" y="929" width="62.6" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.13%)</title><rect x="211.3" y="1601" width="1.6" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="1180.5" y="1569" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.49" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetServiceHandle (1 samples, 0.07%)</title><rect x="926.1" y="753" width="0.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="929.10" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableMap:::entrySet (1 samples, 0.07%)</title><rect x="742.2" y="593" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="745.25" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="308.8" y="1633" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="311.76" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.13%)</title><rect x="42.5" y="1713" width="1.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope$Instance:::remove (5 samples, 0.34%)</title><rect x="78.2" y="1505" width="3.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="27.4" y="1681" width="3.2" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="52.8" y="1665" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.07%)</title><rect x="713.7" y="33" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::constructParser (17 samples, 1.14%)</title><rect x="832.6" y="529" width="13.5" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="835.59" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::compute (1 samples, 0.07%)</title><rect x="862.7" y="481" width="0.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="865.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="237.4" y="1713" width="1.6" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="240.44" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (2 samples, 0.13%)</title><rect x="369.8" y="1233" width="1.6" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::toString (1 samples, 0.07%)</title><rect x="559.2" y="945" width="0.8" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="562.19" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/EWMA:::update (1 samples, 0.07%)</title><rect x="427.6" y="1249" width="0.8" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="430.64" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mod_timer (1 samples, 0.07%)</title><rect x="35.4" y="1153" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="38.36" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/base/ProviderBase:::isWriteable (4 samples, 0.27%)</title><rect x="689.2" y="641" width="3.1" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="692.15" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (3 samples, 0.20%)</title><rect x="95.6" y="1345" width="2.4" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/MetaData:::setHttpVersion (1 samples, 0.07%)</title><rect x="1048.9" y="1393" width="0.8" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1051.94" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="235.9" y="1713" width="0.7" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="1056.9" y="1441" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1059.86" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (1 samples, 0.07%)</title><rect x="110.6" y="1681" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::oops_interpreted_do (6 samples, 0.40%)</title><rect x="270.7" y="1633" width="4.8" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="273.73" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock$Sync:::tryRelease (2 samples, 0.13%)</title><rect x="418.1" y="1329" width="1.6" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="421.13" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::substring (2 samples, 0.13%)</title><rect x="528.3" y="833" width="1.6" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="531.28" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Matcher::xform (1 samples, 0.07%)</title><rect x="292.1" y="1601" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="295.12" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.07%)</title><rect x="355.5" y="1313" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.07%)</title><rect x="326.2" y="1169" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="329.20" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (5 samples, 0.34%)</title><rect x="189.1" y="1265" width="4.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="192.10" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (4 samples, 0.27%)</title><rect x="94.8" y="1377" width="3.2" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="97.80" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (3 samples, 0.20%)</title><rect x="635.3" y="657" width="2.3" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="638.27" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.07%)</title><rect x="203.4" y="1553" width="0.8" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/ArrayList:::ensureExplicitCapacity (1 samples, 0.07%)</title><rect x="671.7" y="753" width="0.8" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="674.72" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="49.6" y="1457" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>percpu_down_read_trylock (1 samples, 0.07%)</title><rect x="1089.4" y="1297" width="0.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1092.36" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Thread::set_thread_status (1 samples, 0.07%)</title><rect x="1160.7" y="1537" width="0.8" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="1163.68" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (3 samples, 0.20%)</title><rect x="239.8" y="1505" width="2.4" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="300.0" y="1265" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (13 samples, 0.87%)</title><rect x="184.3" y="1505" width="10.3" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="187.35" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="1023.6" y="1137" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantReadWriteLock$Sync:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="919.0" y="657" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="921.97" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="550.5" y="945" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="553.47" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory:::_createUTF8Generator (6 samples, 0.40%)</title><rect x="697.9" y="657" width="4.7" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="700.87" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_sample_event_took (1 samples, 0.07%)</title><rect x="49.6" y="1265" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="1023.6" y="1105" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Calendar:::setTime (1 samples, 0.07%)</title><rect x="1076.7" y="1345" width="0.8" height="15.0" fill="rgb(51,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1079.68" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/Refs:::threadSafe (1 samples, 0.07%)</title><rect x="945.9" y="977" width="0.8" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="948.92" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (8 samples, 0.54%)</title><rect x="225.6" y="1729" width="6.3" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="228.55" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.07%)</title><rect x="204.2" y="1697" width="0.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.07%)</title><rect x="457.0" y="753" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="459.96" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::charAt (1 samples, 0.07%)</title><rect x="520.4" y="833" width="0.7" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="523.36" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="77.4" y="1553" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="80.36" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.07%)</title><rect x="565.5" y="689" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::acquireShared (3 samples, 0.20%)</title><rect x="428.4" y="1185" width="2.4" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection$1:::&lt;init&gt; (3 samples, 0.20%)</title><rect x="594.1" y="721" width="2.3" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="597.06" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="300.0" y="1425" width="1.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="713.7" y="465" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (4 samples, 0.27%)</title><rect x="324.6" y="1201" width="3.2" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="327.61" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::containsKey (1 samples, 0.07%)</title><rect x="438.7" y="1153" width="0.8" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="441.73" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::toString (1 samples, 0.07%)</title><rect x="406.2" y="1297" width="0.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="409.24" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="74.2" y="1585" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.07%)</title><rect x="214.5" y="1537" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="1175.7" y="1633" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="52.8" y="1537" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="37.7" y="1441" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringCoding$StringEncoder:::encode (2 samples, 0.13%)</title><rect x="1083.0" y="1441" width="1.6" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1086.02" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="77.4" y="1489" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="80.36" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="457.0" y="817" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="459.96" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/PushMatchedMethodRouter:::apply (1 samples, 0.07%)</title><rect x="647.2" y="769" width="0.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="650.15" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.07%)</title><rect x="30.6" y="1665" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="33.60" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_slowpath (2 samples, 0.13%)</title><rect x="366.6" y="1265" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="78.9" y="1329" width="1.6" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="81.95" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="214.5" y="1633" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/CommittingOutputStream:::commit (58 samples, 3.90%)</title><rect x="707.4" y="785" width="45.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringCoding:::encode (3 samples, 0.20%)</title><rect x="1083.0" y="1473" width="2.4" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1086.02" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/Method:::getAnnotation (1 samples, 0.07%)</title><rect x="799.3" y="737" width="0.8" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="802.31" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::compareAndSetState (2 samples, 0.13%)</title><rect x="377.7" y="1265" width="1.6" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="380.71" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.07%)</title><rect x="860.3" y="497" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="863.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/UnsynchronizedAppenderBase:::getFilterChainDecision (1 samples, 0.07%)</title><rect x="411.8" y="1377" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="414.79" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="253.3" y="1649" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="214.5" y="1681" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Sets:::newSetFromMap (1 samples, 0.07%)</title><rect x="634.5" y="705" width="0.8" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="637.47" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_in_window (1 samples, 0.07%)</title><rect x="92.4" y="1393" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="95.42" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="434.8" y="1041" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpField:::contains (1 samples, 0.07%)</title><rect x="1037.1" y="1377" width="0.7" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text text-anchor="" x="1040.05" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_dst_check (1 samples, 0.07%)</title><rect x="183.6" y="1489" width="0.7" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="186.55" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="278.7" y="1425" width="0.7" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.07%)</title><rect x="70.2" y="1665" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.07%)</title><rect x="204.2" y="1633" width="0.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MethodLiveness::compute_liveness (1 samples, 0.07%)</title><rect x="301.6" y="1489" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="304.63" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI:::match (1 samples, 0.07%)</title><rect x="1001.4" y="897" width="0.8" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1004.39" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::getValueFromT (1 samples, 0.07%)</title><rect x="849.2" y="625" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="852.23" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="40.9" y="1713" width="1.6" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="43.91" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope$Instance:::put (2 samples, 0.13%)</title><rect x="854.8" y="641" width="1.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="857.78" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (5 samples, 0.34%)</title><rect x="926.9" y="737" width="4.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="929.90" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection:::toArray (1 samples, 0.07%)</title><rect x="879.3" y="433" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="882.35" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="253.3" y="1537" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/Finalizer:::runFinalizer (1 samples, 0.07%)</title><rect x="1059.2" y="1585" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1062.24" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::Initialize (2 samples, 0.13%)</title><rect x="302.4" y="1633" width="1.6" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="305.42" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="106.7" y="1697" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="109.68" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="1172.6" y="1585" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectWriter:::isEnabled (1 samples, 0.07%)</title><rect x="694.7" y="689" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="697.70" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Runtime1::monitorenter (1 samples, 0.07%)</title><rect x="355.5" y="1409" width="0.8" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (4 samples, 0.27%)</title><rect x="889.7" y="433" width="3.1" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="892.65" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (3 samples, 0.20%)</title><rect x="635.3" y="577" width="2.3" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="638.27" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::getMediaType (6 samples, 0.40%)</title><rect x="769.2" y="817" width="4.7" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="772.19" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (3 samples, 0.20%)</title><rect x="1148.8" y="1441" width="2.4" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1151.79" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.13%)</title><rect x="708.2" y="609" width="1.6" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (6 samples, 0.40%)</title><rect x="804.1" y="705" width="4.7" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="807.06" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (1 samples, 0.07%)</title><rect x="1176.5" y="1409" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="1179.53" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$Node:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="409.4" y="1169" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="412.41" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="27.4" y="1569" width="1.6" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="651.1" y="241" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannelOverHttp:::headerComplete (4 samples, 0.27%)</title><rect x="1035.5" y="1409" width="3.1" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="1038.47" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (1 samples, 0.07%)</title><rect x="348.4" y="1361" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="351.39" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (15 samples, 1.01%)</title><rect x="915.0" y="785" width="11.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="918.01" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="1180.5" y="1425" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.49" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (11 samples, 0.74%)</title><rect x="90.0" y="1521" width="8.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="93.04" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::create (6 samples, 0.40%)</title><rect x="586.1" y="737" width="4.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="589.13" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (19 samples, 1.28%)</title><rect x="117.0" y="1521" width="15.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.14 (1 samples, 0.07%)</title><rect x="1075.9" y="1185" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1078.88" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="24.3" y="1377" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (1,082 samples, 72.67%)</title><rect x="312.7" y="1697" width="857.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="315.73" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >thread_entry</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::createService (1 samples, 0.07%)</title><rect x="871.4" y="513" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="874.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="316.7" y="1105" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.07%)</title><rect x="709.8" y="625" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="712.76" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="204.9" y="1409" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="550.5" y="929" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="553.47" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_prequeue (2 samples, 0.13%)</title><rect x="95.6" y="1217" width="1.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit.part.0 (1 samples, 0.07%)</title><rect x="70.2" y="1473" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (3 samples, 0.20%)</title><rect x="791.4" y="753" width="2.4" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="794.38" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (2 samples, 0.13%)</title><rect x="434.8" y="1121" width="1.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="441.1" y="1057" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>oopDesc::size_given_klass (1 samples, 0.07%)</title><rect x="483.1" y="769" width="0.8" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="486.11" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="436.4" y="1249" width="1.5" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="439.35" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/AbstractEndPoint$1:::needsFillInterest (8 samples, 0.54%)</title><rect x="366.6" y="1409" width="6.4" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (4 samples, 0.27%)</title><rect x="324.6" y="1185" width="3.2" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="327.61" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerResponse:::setMediaType (1 samples, 0.07%)</title><rect x="777.9" y="833" width="0.8" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="780.91" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/ArrayList:::grow (1 samples, 0.07%)</title><rect x="671.7" y="737" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="674.72" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/log/JettyAwareLogger:::isDebugEnabled (1 samples, 0.07%)</title><rect x="723.2" y="497" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="726.23" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="235.9" y="1505" width="0.7" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/raw/ExecutableElement:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="800.1" y="721" width="0.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="803.10" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="1172.6" y="1425" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="707.4" y="657" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (21 samples, 1.41%)</title><rect x="85.3" y="1617" width="16.6" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="88.29" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/CommittingOutputStream:::commitStream (1 samples, 0.07%)</title><rect x="707.4" y="753" width="0.8" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="49.6" y="1361" width="1.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractSet:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="634.5" y="593" width="0.8" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="637.47" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/util/TextBuffer:::emptyAndGetCurrentSegment (1 samples, 0.07%)</title><rect x="820.7" y="481" width="0.8" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="823.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_String::as_utf8_string (2 samples, 0.13%)</title><rect x="444.3" y="1089" width="1.6" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="447.28" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (4 samples, 0.27%)</title><rect x="570.3" y="833" width="3.2" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="573.28" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="731.2" y="257" width="0.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (4 samples, 0.27%)</title><rect x="583.0" y="753" width="3.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="585.96" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MessageBodyFactory:::getMessageBodyWriter (12 samples, 0.81%)</title><rect x="684.4" y="721" width="9.5" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="687.40" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::narrow (2 samples, 0.13%)</title><rect x="853.2" y="641" width="1.6" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="856.20" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JNU_GetStringPlatformChars (1 samples, 0.07%)</title><rect x="319.9" y="1361" width="0.8" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="322.86" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_new_array_Java (3 samples, 0.20%)</title><rect x="830.2" y="449" width="2.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="833.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="14.8" y="1441" width="0.7" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="39.3" y="1649" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (1 samples, 0.07%)</title><rect x="82.1" y="1617" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="85.12" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (3 samples, 0.20%)</title><rect x="849.2" y="657" width="2.4" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text text-anchor="" x="852.23" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/TreeMap$EntryIterator:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="741.5" y="545" width="0.7" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="744.46" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/BeanMetaDataManager:::getOrCreateBeanMetaData (1 samples, 0.07%)</title><rect x="788.2" y="721" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="791.21" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::uncommon_trap (5 samples, 0.34%)</title><rect x="298.5" y="1537" width="3.9" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="301.46" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (2 samples, 0.13%)</title><rect x="721.6" y="513" width="1.6" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/UnixFileSystem:::getBooleanAttributes (1 samples, 0.07%)</title><rect x="319.9" y="1409" width="0.8" height="15.0" fill="rgb(99,209,209)" rx="2" ry="2" />
<text text-anchor="" x="322.86" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap:::get (1 samples, 0.07%)</title><rect x="799.3" y="705" width="0.8" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="802.31" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.07%)</title><rect x="320.7" y="1265" width="0.7" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerFilteringStage$ResponseFilterStage:::apply (6 samples, 0.40%)</title><rect x="671.7" y="817" width="4.8" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="674.72" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="211.3" y="1425" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/ServletPropertiesDelegate:::setProperty (4 samples, 0.27%)</title><rect x="939.6" y="945" width="3.1" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="942.58" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.07%)</title><rect x="105.9" y="1521" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="108.89" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (4 samples, 0.27%)</title><rect x="966.5" y="897" width="3.2" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="969.52" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="572.7" y="593" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::oops_do (2 samples, 0.13%)</title><rect x="269.1" y="1617" width="1.6" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="272.14" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (895 samples, 60.11%)</title><rect x="350.0" y="1569" width="709.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="352.97" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (2 samples, 0.13%)</title><rect x="434.8" y="1153" width="1.6" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="203.4" y="1697" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (4 samples, 0.27%)</title><rect x="278.7" y="1505" width="3.1" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/TransformedIterator:::next (2 samples, 0.13%)</title><rect x="944.3" y="977" width="1.6" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="947.33" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="71.0" y="1409" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (5 samples, 0.34%)</title><rect x="56.0" y="1665" width="3.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.14 (1 samples, 0.07%)</title><rect x="355.5" y="1233" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="78.9" y="1201" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="81.95" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.07%)</title><rect x="37.7" y="1313" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="572.7" y="449" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.07%)</title><rect x="1075.9" y="1201" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1078.88" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="1094.9" y="1169" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.90" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassLoaderDataGraph::roots_cld_do (1 samples, 0.07%)</title><rect x="268.3" y="1665" width="0.8" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="271.35" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>current_fs_time (1 samples, 0.07%)</title><rect x="66.3" y="1601" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="69.27" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>monitorenter_nofpu Runtime1 stub (1 samples, 0.07%)</title><rect x="355.5" y="1425" width="0.8" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.07%)</title><rect x="110.6" y="1377" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="370.6" y="1073" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="373.58" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="1161.5" y="1425" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.47" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::adjust_unextended_sp (1 samples, 0.07%)</title><rect x="508.5" y="801" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="511.47" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.20%)</title><rect x="239.8" y="1617" width="2.4" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="240.6" y="1473" width="1.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="243.61" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::oops_do (4 samples, 0.27%)</title><rect x="52.8" y="1729" width="3.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="256.5" y="1505" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="259.46" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (3 samples, 0.20%)</title><rect x="708.2" y="673" width="2.4" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.07%)</title><rect x="203.4" y="1665" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap$LinkedValues:::iterator (1 samples, 0.07%)</title><rect x="617.0" y="753" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="620.04" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (11 samples, 0.74%)</title><rect x="509.3" y="801" width="8.7" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="512.26" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext:::getQualifiedAcceptableMediaTypes (3 samples, 0.20%)</title><rect x="635.3" y="721" width="2.3" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="638.27" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::cache_jvmti_state (1 samples, 0.07%)</title><rect x="304.8" y="1665" width="0.8" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="307.80" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="42.5" y="1505" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.13%)</title><rect x="204.9" y="1633" width="1.6" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.07%)</title><rect x="722.4" y="193" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="725.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="1172.6" y="1489" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpParser:::parseLine (9 samples, 0.60%)</title><rect x="1044.2" y="1425" width="7.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1047.18" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.07%)</title><rect x="441.1" y="1121" width="0.8" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.27%)</title><rect x="278.7" y="1521" width="3.1" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="975.2" y="721" width="1.6" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (1 samples, 0.07%)</title><rect x="571.1" y="577" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (1 samples, 0.07%)</title><rect x="86.9" y="1569" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="89.87" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="1121.8" y="1537" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1124.85" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.07%)</title><rect x="13.2" y="1633" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (5 samples, 0.34%)</title><rect x="1179.7" y="1681" width="4.0" height="15.0" fill="rgb(183,183,52)" rx="2" ry="2" />
<text text-anchor="" x="1182.70" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (6 samples, 0.40%)</title><rect x="972.1" y="849" width="4.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="975.07" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.13%)</title><rect x="1123.4" y="1505" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.43" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="668.5" y="689" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="671.55" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="208.1" y="1585" width="1.6" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::equalsIgnoreCase (1 samples, 0.07%)</title><rect x="810.4" y="577" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="813.40" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.07%)</title><rect x="862.7" y="433" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="865.71" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser:::_parsePosNumber (3 samples, 0.20%)</title><rect x="819.1" y="497" width="2.4" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="822.12" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (13 samples, 0.87%)</title><rect x="324.6" y="1425" width="10.3" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="327.61" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (3 samples, 0.20%)</title><rect x="120.2" y="1489" width="2.3" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="123.15" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (1 samples, 0.07%)</title><rect x="315.9" y="1313" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="731.2" y="337" width="0.7" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.07%)</title><rect x="521.1" y="817" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="524.15" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Iterables:::addAll (1 samples, 0.07%)</title><rect x="674.9" y="769" width="0.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="677.89" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::appendReplacement (1 samples, 0.07%)</title><rect x="755.7" y="721" width="0.8" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="758.72" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::listIterator (1 samples, 0.07%)</title><rect x="912.6" y="769" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="915.63" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="27.4" y="1425" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_sample_event_took (1 samples, 0.07%)</title><rect x="975.2" y="561" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassLoaderData::oops_do (1 samples, 0.07%)</title><rect x="268.3" y="1649" width="0.8" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="271.35" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator:::writeFieldName (2 samples, 0.13%)</title><rect x="695.5" y="593" width="1.6" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="698.49" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::hashCode (2 samples, 0.13%)</title><rect x="939.6" y="881" width="1.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="942.58" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (6 samples, 0.40%)</title><rect x="154.2" y="1489" width="4.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="157.23" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="565.5" y="881" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.34%)</title><rect x="235.1" y="1761" width="3.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringKeyIgnoreCaseMultivaluedMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="785.0" y="689" width="0.8" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.07%)</title><rect x="1183.7" y="1393" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.13%)</title><rect x="1123.4" y="1521" width="1.6" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.43" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::setMediaType (6 samples, 0.40%)</title><rect x="665.4" y="769" width="4.7" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="668.38" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MethodLiveness::compute_liveness (1 samples, 0.07%)</title><rect x="304.0" y="1489" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="39.3" y="1489" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="556.8" y="945" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="559.81" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.07%)</title><rect x="782.7" y="801" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="785.67" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="14.8" y="1473" width="0.7" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="729.6" y="449" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="732.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CollectedHeap::accumulate_statistics_all_tlabs (1 samples, 0.07%)</title><rect x="14.0" y="1745" width="0.8" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="16.96" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="201.8" y="1713" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="204.78" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="1167.0" y="1601" width="1.6" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="524.3" y="881" width="0.8" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="527.32" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::new_instance_C (1 samples, 0.07%)</title><rect x="951.5" y="961" width="0.8" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="954.46" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.07%)</title><rect x="709.8" y="641" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="712.76" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.07%)</title><rect x="380.1" y="1313" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="383.09" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="74.2" y="1505" width="0.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.27%)</title><rect x="278.7" y="1585" width="3.1" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MessageBodyFactory:::getMessageBodyReader (7 samples, 0.47%)</title><rect x="810.4" y="625" width="5.6" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="813.40" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (3 samples, 0.20%)</title><rect x="185.9" y="1441" width="2.4" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="188.93" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::close (58 samples, 3.90%)</title><rect x="707.4" y="817" width="45.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/log/Slf4jLog:::isDebugEnabled (1 samples, 0.07%)</title><rect x="723.2" y="513" width="0.8" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="726.23" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (4 samples, 0.27%)</title><rect x="848.4" y="689" width="3.2" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="851.44" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.07%)</title><rect x="451.4" y="849" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/SelectChannelEndPoint$2:::run (874 samples, 58.70%)</title><rect x="365.0" y="1521" width="692.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="368.03" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/io/SelectChannelEndPoint$2:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::getChars (1 samples, 0.07%)</title><rect x="560.0" y="1025" width="0.8" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="562.98" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.07%)</title><rect x="110.6" y="1505" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (16 samples, 1.07%)</title><rect x="182.0" y="1585" width="12.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="184.97" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parseAuthority (6 samples, 0.40%)</title><rect x="1001.4" y="977" width="4.7" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1004.39" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="357.9" y="1377" width="1.6" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="200.2" y="1569" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="203.19" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="1102.0" y="1169" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpConnection:::fillAndParseForContent (12 samples, 0.81%)</title><rect x="835.8" y="401" width="9.5" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="838.76" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="1033.1" y="1361" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1036.09" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.07%)</title><rect x="83.7" y="1681" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="86.70" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ChannelEndPoint:::flush (16 samples, 1.07%)</title><rect x="721.6" y="529" width="12.7" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList$ListItr:::next (1 samples, 0.07%)</title><rect x="628.1" y="785" width="0.8" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="631.13" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="565.5" y="785" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (2 samples, 0.13%)</title><rect x="930.9" y="817" width="1.5" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="933.86" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="307.2" y="1633" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="310.18" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.07%)</title><rect x="1096.5" y="1249" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::usePreSelectedMediaType (1 samples, 0.07%)</title><rect x="670.1" y="753" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="673.13" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getParameterNames (5 samples, 0.34%)</title><rect x="399.9" y="1281" width="4.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="402.90" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.07%)</title><rect x="71.0" y="1377" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="52.8" y="1601" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arrayof_jint_fill (1 samples, 0.07%)</title><rect x="540.2" y="849" width="0.8" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="543.17" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="388.8" y="1265" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="391.80" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="37.7" y="1505" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parker::park (6 samples, 0.40%)</title><rect x="1136.1" y="1521" width="4.8" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="1139.11" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync:::tryAcquire (1 samples, 0.07%)</title><rect x="1129.0" y="1553" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1131.98" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ref/WeakReference:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="567.9" y="849" width="0.8" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="570.90" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$TimerRequestEventListener:::onEvent (3 samples, 0.20%)</title><rect x="780.3" y="785" width="2.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="783.29" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/CopyOnWriteArrayList$COWIterator:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="411.8" y="1329" width="0.8" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="414.79" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannelState:::handling (1 samples, 0.07%)</title><rect x="415.7" y="1441" width="0.8" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="418.75" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="565.5" y="865" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/AbstractTrie:::get (3 samples, 0.20%)</title><rect x="744.6" y="673" width="2.4" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="747.63" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::listIterator (1 samples, 0.07%)</title><rect x="590.1" y="673" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="593.09" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::length (1 samples, 0.07%)</title><rect x="553.6" y="913" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="556.64" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::acquireQueued (1 samples, 0.07%)</title><rect x="349.2" y="1521" width="0.8" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="352.18" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="1175.7" y="1617" width="1.6" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (2 samples, 0.13%)</title><rect x="764.4" y="753" width="1.6" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="767.44" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/Timer$Context:::close (1 samples, 0.07%)</title><rect x="780.3" y="769" width="0.8" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="783.29" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal$ThreadLocalMap:::cleanSomeSlots (1 samples, 0.07%)</title><rect x="568.7" y="865" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="571.70" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="1061.6" y="1393" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1064.62" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/log/Slf4jLog:::isDebugEnabled (2 samples, 0.13%)</title><rect x="1057.7" y="1521" width="1.5" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1060.66" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.07%)</title><rect x="780.3" y="689" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="783.29" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.27%)</title><rect x="56.0" y="1601" width="3.1" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.07%)</title><rect x="320.7" y="1297" width="0.7" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::get (6 samples, 0.40%)</title><rect x="769.2" y="785" width="4.7" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="772.19" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.13%)</title><rect x="334.9" y="1457" width="1.6" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="337.92" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="561.6" y="897" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.13%)</title><rect x="1175.7" y="1601" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Arrays:::copyOfRange (2 samples, 0.13%)</title><rect x="528.3" y="801" width="1.6" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="531.28" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_cleanup_rbuf (1 samples, 0.07%)</title><rect x="47.2" y="1585" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="50.25" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope$Instance:::put (1 samples, 0.07%)</title><rect x="602.0" y="737" width="0.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="604.98" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/servlet/ServletHandler:::doScope (731 samples, 49.09%)</title><rect x="437.9" y="1265" width="579.3" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="440.94" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/servlet/ServletHandler:::doScope</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannel$CommitCallback:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="711.3" y="625" width="1.6" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="714.34" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (3 samples, 0.20%)</title><rect x="219.2" y="1473" width="2.4" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="215.3" y="1681" width="0.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="218.25" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[vdso]] (1 samples, 0.07%)</title><rect x="197.8" y="1713" width="0.8" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="200.82" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannelOverHttp:::startRequest (4 samples, 0.27%)</title><rect x="1046.6" y="1409" width="3.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1049.56" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (3 samples, 0.20%)</title><rect x="890.4" y="401" width="2.4" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="893.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="1180.5" y="1633" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.49" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="1097.3" y="1329" width="0.8" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Unsafe:::park (39 samples, 2.62%)</title><rect x="1131.4" y="1553" width="30.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1134.36" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >su..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::toString (1 samples, 0.07%)</title><rect x="551.3" y="945" width="0.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="554.26" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.07%)</title><rect x="1150.4" y="1393" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.38" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="1023.6" y="1185" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (4 samples, 0.27%)</title><rect x="454.6" y="977" width="3.2" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.07%)</title><rect x="357.1" y="1249" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (17 samples, 1.14%)</title><rect x="153.4" y="1665" width="13.5" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="156.44" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PreserveExceptionMark::~PreserveExceptionMark (1 samples, 0.07%)</title><rect x="462.5" y="833" width="0.8" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="465.51" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.13%)</title><rect x="1167.0" y="1537" width="1.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (2 samples, 0.13%)</title><rect x="708.2" y="545" width="1.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (1 samples, 0.07%)</title><rect x="1159.9" y="1425" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1162.89" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="27.4" y="1665" width="1.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="300.0" y="1393" width="1.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (7 samples, 0.47%)</title><rect x="111.4" y="1681" width="5.6" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="114.44" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="713.7" y="49" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.13%)</title><rect x="721.6" y="289" width="1.6" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_packet (1 samples, 0.07%)</title><rect x="721.6" y="177" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="369.8" y="1121" width="1.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/WebComponent:::service (533 samples, 35.80%)</title><rect x="561.6" y="1057" width="422.4" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/jersey/servlet/WebComponent:::service</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="1023.6" y="1169" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap:::keySet (1 samples, 0.07%)</title><rect x="880.1" y="369" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="883.14" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="1175.7" y="1473" width="1.6" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (2 samples, 0.13%)</title><rect x="200.2" y="1729" width="1.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="203.19" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Arrays:::copyOf (2 samples, 0.13%)</title><rect x="987.9" y="945" width="1.6" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="990.92" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BlockListBuilder::BlockListBuilder (1 samples, 0.07%)</title><rect x="304.0" y="1537" width="0.8" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::get_deopt_original_pc (5 samples, 0.34%)</title><rect x="106.7" y="1729" width="3.9" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="109.68" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Long:::valueOf (1 samples, 0.07%)</title><rect x="920.6" y="689" width="0.7" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="923.56" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::appendTail (2 samples, 0.13%)</title><rect x="756.5" y="721" width="1.6" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="759.51" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (4 samples, 0.27%)</title><rect x="253.3" y="1681" width="3.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::possibly_sweep (1 samples, 0.07%)</title><rect x="308.0" y="1665" width="0.8" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="310.97" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="1121.1" y="1537" width="0.7" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1124.05" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::equalsIgnoreCase (1 samples, 0.07%)</title><rect x="644.0" y="673" width="0.8" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="646.98" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (3 samples, 0.20%)</title><rect x="450.6" y="1073" width="2.4" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="208.9" y="1489" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="211.91" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="32.2" y="1425" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="863.5" y="481" width="1.6" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="866.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getHeaderNames (5 samples, 0.34%)</title><rect x="395.9" y="1281" width="4.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="398.94" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::is_lock_owned (1 samples, 0.07%)</title><rect x="843.7" y="241" width="0.8" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="846.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="1030.7" y="1409" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1033.71" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractSequentialList:::iterator (2 samples, 0.13%)</title><rect x="911.8" y="801" width="1.6" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="914.84" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::replace (11 samples, 0.74%)</title><rect x="755.7" y="753" width="8.7" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="758.72" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/MetaData:::getFields (1 samples, 0.07%)</title><rect x="963.4" y="977" width="0.7" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="966.35" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putVal (4 samples, 0.27%)</title><rect x="957.0" y="913" width="3.2" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="960.01" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (7 samples, 0.47%)</title><rect x="971.3" y="913" width="5.5" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="974.28" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (5 samples, 0.34%)</title><rect x="33.0" y="1409" width="3.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="565.5" y="929" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::setMetaData (1 samples, 0.07%)</title><rect x="214.5" y="1729" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="1023.6" y="1329" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.07%)</title><rect x="1096.5" y="1377" width="0.8" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (7 samples, 0.47%)</title><rect x="31.4" y="1601" width="5.5" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="34.40" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.13%)</title><rect x="208.1" y="1665" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (2 samples, 0.13%)</title><rect x="708.2" y="625" width="1.6" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (7 samples, 0.47%)</title><rect x="1090.9" y="1313" width="5.6" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1093.94" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/Util:::getTemporaryDirectBuffer (2 samples, 0.13%)</title><rect x="1021.2" y="1393" width="1.6" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1024.20" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/general/internal/WeakHashClockImpl:::get (1 samples, 0.07%)</title><rect x="862.7" y="449" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="865.71" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::indexOf (1 samples, 0.07%)</title><rect x="1002.2" y="945" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1005.18" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="550.5" y="913" width="0.8" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="553.47" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="323.0" y="1457" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="326.03" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (2 samples, 0.13%)</title><rect x="657.5" y="785" width="1.5" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="660.45" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/ISO_8859_1:::newEncoder (1 samples, 0.07%)</title><rect x="720.9" y="481" width="0.7" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="723.85" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannelOverHttp:::content (5 samples, 0.34%)</title><rect x="840.5" y="337" width="4.0" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="843.52" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbyte_arraycopy (1 samples, 0.07%)</title><rect x="696.3" y="561" width="0.8" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="699.29" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_in_window (2 samples, 0.13%)</title><rect x="186.7" y="1393" width="1.6" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="189.72" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::createService (6 samples, 0.40%)</title><rect x="586.1" y="769" width="4.8" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="589.13" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::compiler_thread_loop (35 samples, 2.35%)</title><rect x="285.0" y="1697" width="27.7" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="287.99" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/OutputStreamAppender:::writeOut (55 samples, 3.69%)</title><rect x="1068.8" y="1537" width="43.5" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="1071.75" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ch/q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (7 samples, 0.47%)</title><rect x="1090.9" y="1361" width="5.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="1093.94" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>writeBytes (4 samples, 0.27%)</title><rect x="1157.5" y="1521" width="3.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1160.51" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="49.6" y="1569" width="1.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="215.3" y="1697" width="0.7" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="218.25" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Iterators$8:::transform (1 samples, 0.07%)</title><rect x="945.1" y="961" width="0.8" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="948.12" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="204.9" y="1489" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="216.0" y="1649" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_with_offset (1 samples, 0.07%)</title><rect x="722.4" y="113" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="725.44" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/UriParser:::parseHierarchicalUri (16 samples, 1.07%)</title><rect x="547.3" y="1009" width="12.7" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="550.30" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (3 samples, 0.20%)</title><rect x="450.6" y="945" width="2.4" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="235.9" y="1681" width="0.7" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="1180.5" y="1617" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.49" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/DefaultSerializerProvider:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="697.1" y="609" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="700.08" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileOutputStream$1:::close (4 samples, 0.27%)</title><rect x="24.3" y="1649" width="3.1" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (2 samples, 0.13%)</title><rect x="651.1" y="401" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::checkChars (3 samples, 0.20%)</title><rect x="998.2" y="977" width="2.4" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1001.22" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/AttributesMap:::clearAttributes (2 samples, 0.13%)</title><rect x="414.2" y="1361" width="1.5" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="417.16" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (129 samples, 8.66%)</title><rect x="457.8" y="1057" width="102.2" height="15.0" fill="rgb(59,174,174)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/io/IOContext:::allocWriteEncodingBuffer (1 samples, 0.07%)</title><rect x="701.8" y="625" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="704.83" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="200.2" y="1633" width="1.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="203.19" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="78.9" y="1265" width="1.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="81.95" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (34 samples, 2.28%)</title><rect x="583.0" y="833" width="26.9" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="585.96" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="721.6" y="225" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.07%)</title><rect x="451.4" y="673" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileOutputStream:::close (4 samples, 0.27%)</title><rect x="49.6" y="1665" width="3.2" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileQueue::get (9 samples, 0.60%)</title><rect x="305.6" y="1681" width="7.1" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="308.59" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Throwable:::fillInStackTrace (78 samples, 5.24%)</title><rect x="458.5" y="881" width="61.9" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="461.54" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (4 samples, 0.27%)</title><rect x="380.9" y="1345" width="3.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="383.88" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::putLongField (6 samples, 0.40%)</title><rect x="747.0" y="689" width="4.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="750.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList$ListItr:::next (2 samples, 0.13%)</title><rect x="632.9" y="721" width="1.6" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="635.89" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="1140.9" y="1489" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1143.87" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_bh (1 samples, 0.07%)</title><rect x="450.6" y="769" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (1 samples, 0.07%)</title><rect x="334.1" y="1393" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="337.12" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (17 samples, 1.14%)</title><rect x="153.4" y="1649" width="13.5" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="156.44" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="70.2" y="1569" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="77.4" y="1633" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="80.36" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.07%)</title><rect x="106.7" y="1681" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="109.68" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker$Lock:::close (4 samples, 0.27%)</title><rect x="211.3" y="1729" width="3.2" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="67.1" y="1681" width="3.1" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="731.2" y="417" width="0.7" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="235.9" y="1633" width="0.7" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_slowpath (2 samples, 0.13%)</title><rect x="369.8" y="1249" width="1.6" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.07%)</title><rect x="910.3" y="673" width="0.7" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="913.26" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/reflect/AnnotatedElement:::isAnnotationPresent (1 samples, 0.07%)</title><rect x="589.3" y="625" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="592.30" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/RuntimeException:::&lt;init&gt; (79 samples, 5.31%)</title><rect x="457.8" y="945" width="62.6" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/FileOutputStream:::access$000 (4 samples, 0.27%)</title><rect x="24.3" y="1633" width="3.1" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="565.5" y="705" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::dispose (1 samples, 0.07%)</title><rect x="103.5" y="1505" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/handler/RequestLogHandler:::handle (755 samples, 50.71%)</title><rect x="419.7" y="1393" width="598.3" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="422.71" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/server/handler/RequestLogHandler:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.07%)</title><rect x="37.7" y="1281" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Deoptimization::fetch_unroll_info_helper (1 samples, 0.07%)</title><rect x="315.9" y="1329" width="0.8" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::getService (29 samples, 1.95%)</title><rect x="872.2" y="609" width="23.0" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="875.22" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (3 samples, 0.20%)</title><rect x="1183.7" y="1489" width="2.3" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::update (4 samples, 0.27%)</title><rect x="428.4" y="1233" width="3.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (17 samples, 1.14%)</title><rect x="181.2" y="1729" width="13.4" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="184.18" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (4 samples, 0.27%)</title><rect x="369.8" y="1281" width="3.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="381.7" y="1265" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="384.67" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.07%)</title><rect x="537.8" y="849" width="0.8" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="540.79" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.07%)</title><rect x="1110.0" y="1201" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1112.96" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/net/InetAddresses:::forUriString (108 samples, 7.25%)</title><rect x="457.8" y="977" width="85.5" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jersey/rep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::format (21 samples, 1.41%)</title><rect x="524.3" y="929" width="16.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="527.32" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.13%)</title><rect x="708.2" y="449" width="1.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/CommonProperties:::getValue (17 samples, 1.14%)</title><rect x="753.3" y="801" width="13.5" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="756.34" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpOutput:::close (1 samples, 0.07%)</title><rect x="417.3" y="1425" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="420.33" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getRemoteUser (1 samples, 0.07%)</title><rect x="1068.0" y="1505" width="0.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1070.96" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.07%)</title><rect x="203.4" y="1585" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="713.7" y="353" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="215.3" y="1729" width="0.7" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text text-anchor="" x="218.25" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.27%)</title><rect x="24.3" y="1713" width="3.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (4 samples, 0.27%)</title><rect x="570.3" y="801" width="3.2" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="573.28" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iptable_filter_hook (1 samples, 0.07%)</title><rect x="90.8" y="1425" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="93.83" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.13%)</title><rect x="211.3" y="1617" width="1.6" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (5 samples, 0.34%)</title><rect x="977.6" y="945" width="4.0" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="980.62" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/process/RequestProcessingContext:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="945.9" y="993" width="1.6" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="948.92" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SpinPause (2 samples, 0.13%)</title><rect x="266.8" y="1681" width="1.5" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="269.76" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_prequeue (3 samples, 0.20%)</title><rect x="33.8" y="1185" width="2.4" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="36.77" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/descriptor/ElementDescriptorImpl:::hasConstraints (2 samples, 0.13%)</title><rect x="796.9" y="753" width="1.6" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="799.93" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HttpHeaderReader:::nextToken (2 samples, 0.13%)</title><rect x="807.2" y="577" width="1.6" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="810.23" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/CharacterIterator:::next (2 samples, 0.13%)</title><rect x="552.8" y="945" width="1.6" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="555.85" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (1 samples, 0.07%)</title><rect x="82.1" y="1649" width="0.8" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="85.12" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getContentType (1 samples, 0.07%)</title><rect x="403.1" y="1233" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="406.07" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::getLocation (2 samples, 0.13%)</title><rect x="738.3" y="705" width="1.6" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="741.29" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/validation/DropwizardConfiguredValidator:::getConstraintsForClass (1 samples, 0.07%)</title><rect x="788.2" y="769" width="0.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="791.21" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (3 samples, 0.20%)</title><rect x="1071.9" y="1441" width="2.4" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1074.92" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace (1 samples, 0.07%)</title><rect x="1164.6" y="1569" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="1167.64" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.07%)</title><rect x="714.5" y="289" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker$Lock:::close (1 samples, 0.07%)</title><rect x="416.5" y="1425" width="0.8" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="419.54" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="49.6" y="1409" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (2 samples, 0.13%)</title><rect x="398.3" y="1217" width="1.6" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="401.31" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (5 samples, 0.34%)</title><rect x="570.3" y="849" width="3.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="573.28" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/aggregated/BeanMetaDataImpl:::hasConstraints (1 samples, 0.07%)</title><rect x="793.0" y="721" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="795.97" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="1183.7" y="1425" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.07%)</title><rect x="78.2" y="1377" width="0.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::valueParameters (2 samples, 0.13%)</title><rect x="400.7" y="1233" width="1.6" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="403.69" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sk_dst_check (1 samples, 0.07%)</title><rect x="183.6" y="1505" width="0.7" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="186.55" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="10.0" y="1473" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::getValues (5 samples, 0.34%)</title><rect x="666.2" y="737" width="3.9" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="669.17" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HeaderUtils:::asString (2 samples, 0.13%)</title><rect x="741.5" y="641" width="1.5" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="744.46" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (2 samples, 0.13%)</title><rect x="714.5" y="401" width="1.6" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::equals (1 samples, 0.07%)</title><rect x="605.9" y="641" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="608.94" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.07%)</title><rect x="239.8" y="1457" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.27%)</title><rect x="278.7" y="1601" width="3.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/Timer:::update (4 samples, 0.27%)</title><rect x="428.4" y="1297" width="3.2" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>current_kernel_time64 (1 samples, 0.07%)</title><rect x="66.3" y="1585" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="69.27" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal:::remove (3 samples, 0.20%)</title><rect x="577.4" y="865" width="2.4" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="580.41" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock:::unlock (2 samples, 0.13%)</title><rect x="418.1" y="1361" width="1.6" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="421.13" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/FileDispatcherImpl:::writev0 (4 samples, 0.27%)</title><rect x="216.0" y="1681" width="3.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="713.7" y="81" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="10.0" y="1601" width="1.6" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock:::unlock (1 samples, 0.07%)</title><rect x="380.1" y="1329" width="0.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="383.09" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_io_FileOutputStream_writeBytes (25 samples, 1.68%)</title><rect x="1090.1" y="1393" width="19.9" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="1093.15" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::dispose (5 samples, 0.34%)</title><rect x="78.2" y="1489" width="3.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="200.2" y="1681" width="1.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="203.19" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/AbstractActiveDescriptor:::setName (1 samples, 0.07%)</title><rect x="882.5" y="417" width="0.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="885.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.13%)</title><rect x="1060.8" y="1553" width="1.6" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1063.83" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::evaluate_operation (11 samples, 0.74%)</title><rect x="1170.2" y="1697" width="8.7" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="1173.19" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="369.8" y="1057" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.07%)</title><rect x="13.2" y="1665" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.07%)</title><rect x="654.3" y="785" width="0.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="657.28" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.07%)</title><rect x="714.5" y="337" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::indexOf (1 samples, 0.07%)</title><rect x="1006.9" y="945" width="0.8" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1009.94" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getService (1 samples, 0.07%)</title><rect x="647.9" y="721" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="650.94" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::new_array_C (1 samples, 0.07%)</title><rect x="764.4" y="705" width="0.8" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="767.44" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="211.3" y="1441" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/ArrayList:::add (1 samples, 0.07%)</title><rect x="525.1" y="897" width="0.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="528.11" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/ServletContainer:::service (704 samples, 47.28%)</title><rect x="453.8" y="1089" width="557.9" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="456.79" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/jersey/servlet/ServletContainer:::service</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.07%)</title><rect x="201.8" y="1617" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="204.78" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_mss (3 samples, 0.20%)</title><rect x="98.8" y="1569" width="2.3" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="101.76" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannelState:::recycle (1 samples, 0.07%)</title><rect x="413.4" y="1361" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="416.37" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::checkChars (1 samples, 0.07%)</title><rect x="1001.4" y="945" width="0.8" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1004.39" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (4 samples, 0.27%)</title><rect x="33.0" y="1201" width="3.2" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/pattern/Converter:::write (3 samples, 0.20%)</title><rect x="1071.9" y="1457" width="2.4" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="1074.92" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="550.5" y="897" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="553.47" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HeapRegion::oops_on_card_seq_iterate_careful (2 samples, 0.13%)</title><rect x="276.3" y="1601" width="1.6" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="279.27" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HeaderUtils$1:::apply (2 samples, 0.13%)</title><rect x="741.5" y="673" width="1.5" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="744.46" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="13.2" y="1745" width="0.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.07%)</title><rect x="713.7" y="177" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="1172.6" y="1617" width="3.1" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (3 samples, 0.20%)</title><rect x="571.1" y="721" width="2.4" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (3 samples, 0.20%)</title><rect x="867.5" y="481" width="2.3" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="870.46" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/Buffer:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="839.7" y="273" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="842.72" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="107.5" y="1713" width="3.1" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (5 samples, 0.34%)</title><rect x="56.0" y="1681" width="3.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/UriParser:::parsePath (3 samples, 0.20%)</title><rect x="557.6" y="993" width="2.4" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="560.60" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="52.8" y="1569" width="1.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/Errors$1:::call (1 samples, 0.07%)</title><rect x="566.3" y="945" width="0.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="569.32" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::interrupted (3 samples, 0.20%)</title><rect x="1125.0" y="1569" width="2.4" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1128.02" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractSequentialList:::iterator (1 samples, 0.07%)</title><rect x="590.1" y="705" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="593.09" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (1 samples, 0.07%)</title><rect x="536.2" y="673" width="0.8" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="539.21" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="713.7" y="545" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="71.0" y="1457" width="1.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MessageBodyFactory:::_getMessageBodyWriter (1 samples, 0.07%)</title><rect x="683.6" y="737" width="0.8" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="686.61" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (6 samples, 0.40%)</title><rect x="32.2" y="1521" width="4.7" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="1167.0" y="1457" width="1.6" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ArrayBlockingQueue:::put (3 samples, 0.20%)</title><rect x="376.9" y="1345" width="2.4" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="379.92" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="97.2" y="1281" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="100.17" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (949 samples, 63.73%)</title><rect x="312.7" y="1617" width="752.1" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text text-anchor="" x="315.73" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="49.6" y="1345" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.07%)</title><rect x="457.0" y="769" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="459.96" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.07%)</title><rect x="721.6" y="209" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/ServletContainer:::service (4 samples, 0.27%)</title><rect x="103.5" y="1713" width="3.2" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection$1:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="576.6" y="913" width="0.8" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="579.62" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (6 samples, 0.40%)</title><rect x="769.2" y="721" width="4.7" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="772.19" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/Response:::ok (1 samples, 0.07%)</title><rect x="785.0" y="801" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpConnection:::parseRequestBuffer (12 samples, 0.81%)</title><rect x="835.8" y="385" width="9.5" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="838.76" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="731.2" y="273" width="0.7" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.13%)</title><rect x="52.8" y="1617" width="1.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (4 samples, 0.27%)</title><rect x="1092.5" y="1233" width="3.2" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1095.53" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (2 samples, 0.13%)</title><rect x="1102.0" y="1281" width="1.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::hash (1 samples, 0.07%)</title><rect x="855.6" y="609" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="858.57" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putVal (1 samples, 0.07%)</title><rect x="409.4" y="1201" width="0.8" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="412.41" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.07%)</title><rect x="320.7" y="1249" width="0.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>file_update_time (1 samples, 0.07%)</title><rect x="1110.8" y="1281" width="0.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1113.75" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/FactoryCreator:::getFactoryHandle (2 samples, 0.13%)</title><rect x="903.1" y="913" width="1.6" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="906.12" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (4 samples, 0.27%)</title><rect x="211.3" y="1681" width="3.2" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.07%)</title><rect x="103.5" y="1345" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (8 samples, 0.54%)</title><rect x="593.3" y="769" width="6.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="596.26" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="1122.6" y="1521" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.64" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter$FixedString:::print (1 samples, 0.07%)</title><rect x="524.3" y="913" width="0.8" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="527.32" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (4 samples, 0.27%)</title><rect x="543.3" y="993" width="3.2" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="546.34" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (1 samples, 0.07%)</title><rect x="537.0" y="833" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="540.00" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerResponse:::getLocation (2 samples, 0.13%)</title><rect x="738.3" y="721" width="1.6" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="741.29" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (4 samples, 0.27%)</title><rect x="805.6" y="673" width="3.2" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="808.65" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/ServletContainer:::service (533 samples, 35.80%)</title><rect x="561.6" y="1073" width="422.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/jersey/servlet/ServletContainer:::service</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections:::newSetFromMap (1 samples, 0.07%)</title><rect x="946.7" y="913" width="0.8" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="949.71" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.07%)</title><rect x="709.8" y="593" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="712.76" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (4 samples, 0.27%)</title><rect x="253.3" y="1697" width="3.2" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (7 samples, 0.47%)</title><rect x="188.3" y="1345" width="5.6" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="191.31" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/TracingLogger:::getInstance (1 samples, 0.07%)</title><rect x="628.9" y="785" width="0.8" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="631.93" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (7 samples, 0.47%)</title><rect x="976.8" y="993" width="5.6" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="979.82" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.13%)</title><rect x="37.7" y="1713" width="1.6" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::createMe (1 samples, 0.07%)</title><rect x="911.0" y="817" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="914.05" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock:::lock (1 samples, 0.07%)</title><rect x="413.4" y="1313" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="416.37" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (1 samples, 0.07%)</title><rect x="561.6" y="881" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime$Responder:::release (3 samples, 0.20%)</title><rect x="775.5" y="865" width="2.4" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="778.53" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Long:::toString (1 samples, 0.07%)</title><rect x="1097.3" y="1345" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.07%)</title><rect x="1094.1" y="1185" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.11" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/util/BufferRecycler:::allocByteBuffer (4 samples, 0.27%)</title><rect x="829.4" y="497" width="3.2" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="832.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/servlets/ThreadNameFilter:::doFilter (1 samples, 0.07%)</title><rect x="110.6" y="1617" width="0.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethodBlocks::ciMethodBlocks (1 samples, 0.07%)</title><rect x="304.0" y="1441" width="0.8" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (6 samples, 0.40%)</title><rect x="189.1" y="1297" width="4.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="192.10" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MethodLiveness::BasicBlock::compute_gen_kill_single (4 samples, 0.27%)</title><rect x="298.5" y="1489" width="3.1" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="301.46" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_clone (1 samples, 0.07%)</title><rect x="452.2" y="881" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="455.20" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="78.9" y="1409" width="1.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="81.95" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (4 samples, 0.27%)</title><rect x="984.0" y="1025" width="3.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="986.96" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpOutput:::write (34 samples, 2.28%)</title><rect x="711.3" y="705" width="27.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="714.34" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (2 samples, 0.13%)</title><rect x="1088.6" y="1377" width="1.5" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (3 samples, 0.20%)</title><rect x="1183.7" y="1537" width="2.3" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="357.9" y="1217" width="1.6" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbyte_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="701.0" y="609" width="0.8" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="704.04" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.20%)</title><rect x="1183.7" y="1601" width="2.3" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.20%)</title><rect x="239.8" y="1697" width="2.4" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (2 samples, 0.13%)</title><rect x="714.5" y="561" width="1.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/general/GeneralUtilities:::safeEquals (1 samples, 0.07%)</title><rect x="862.7" y="385" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="865.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.27%)</title><rect x="49.6" y="1617" width="3.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/base/ProviderBase:::isReadable (3 samples, 0.20%)</title><rect x="813.6" y="545" width="2.4" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="816.57" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (21 samples, 1.41%)</title><rect x="85.3" y="1633" width="16.6" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="88.29" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="361.9" y="1345" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="364.86" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HeaderUtils:::createOutbound (2 samples, 0.13%)</title><rect x="785.8" y="769" width="1.6" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="788.84" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="759.7" y="705" width="0.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="762.68" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="39.3" y="1537" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (3 samples, 0.20%)</title><rect x="1183.7" y="1585" width="2.3" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.07%)</title><rect x="95.6" y="1089" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.07%)</title><rect x="239.0" y="1521" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandle (2 samples, 0.13%)</title><rect x="903.1" y="881" width="1.6" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="906.12" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.07%)</title><rect x="14.0" y="1713" width="0.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="16.96" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (75 samples, 5.04%)</title><rect x="460.1" y="849" width="59.5" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="463.13" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JVM_Fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.07%)</title><rect x="572.7" y="625" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="49.6" y="1393" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="902.3" y="929" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="905.33" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (1 samples, 0.07%)</title><rect x="91.6" y="1393" width="0.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="94.63" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (2 samples, 0.13%)</title><rect x="708.2" y="561" width="1.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::clear (2 samples, 0.13%)</title><rect x="414.2" y="1345" width="1.5" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="417.16" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (6 samples, 0.40%)</title><rect x="14.8" y="1521" width="4.7" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/util/locale/provider/DecimalFormatSymbolsProviderImpl:::getInstance (2 samples, 0.13%)</title><rect x="520.4" y="881" width="1.5" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="523.36" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="215.3" y="1617" width="0.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="218.25" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal$ThreadLocalMap:::access$100 (1 samples, 0.07%)</title><rect x="936.4" y="945" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="939.41" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (3 samples, 0.20%)</title><rect x="651.1" y="513" width="2.4" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$3:::nextElement (1 samples, 0.07%)</title><rect x="388.8" y="1281" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="391.80" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="216.0" y="1441" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/SharedBlockingCallback:::acquire (2 samples, 0.13%)</title><rect x="736.7" y="689" width="1.6" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="739.70" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::regionMatches (1 samples, 0.07%)</title><rect x="644.0" y="657" width="0.8" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="646.98" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/HeapByteBufferR:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="839.7" y="321" width="0.8" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="842.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.20%)</title><rect x="534.6" y="833" width="2.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="537.62" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (2 samples, 0.13%)</title><rect x="33.8" y="1073" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="36.77" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (1 samples, 0.07%)</title><rect x="914.2" y="785" width="0.8" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="917.22" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryReleaseShared (1 samples, 0.07%)</title><rect x="884.1" y="353" width="0.8" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="887.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="713.7" y="577" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.07%)</title><rect x="103.5" y="1425" width="0.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/monitoring/CompositeApplicationEventListener:::onRequest (4 samples, 0.27%)</title><rect x="942.7" y="993" width="3.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="945.75" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="54.4" y="1681" width="1.6" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="57.38" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::liveness_at_bci (5 samples, 0.34%)</title><rect x="298.5" y="1505" width="3.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="301.46" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/pattern/RequestHeaderConverter:::convert (1 samples, 0.07%)</title><rect x="1078.3" y="1425" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1081.26" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/MethodSelectingRouter$4:::apply (19 samples, 1.28%)</title><rect x="630.5" y="769" width="15.1" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="633.51" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerRequest:::setProperty (4 samples, 0.27%)</title><rect x="939.6" y="977" width="3.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="942.58" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::find_pc_desc_internal (1 samples, 0.07%)</title><rect x="518.0" y="801" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="520.98" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BranchConn:::match (3 samples, 0.20%)</title><rect x="534.6" y="737" width="2.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="537.62" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::iterator (1 samples, 0.07%)</title><rect x="913.4" y="801" width="0.8" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="916.43" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (6 samples, 0.40%)</title><rect x="32.2" y="1473" width="4.7" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (6 samples, 0.40%)</title><rect x="1091.7" y="1281" width="4.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1094.73" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="316.7" y="1217" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal$ThreadLocalMap:::set (3 samples, 0.20%)</title><rect x="567.1" y="881" width="2.4" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="570.11" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.07%)</title><rect x="1088.6" y="1169" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_gettimeofday (1 samples, 0.07%)</title><rect x="418.9" y="1297" width="0.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="421.92" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (118 samples, 7.92%)</title><rect x="802.5" y="801" width="93.5" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="805.48" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::get (5 samples, 0.34%)</title><rect x="926.9" y="769" width="4.0" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="929.90" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="434.8" y="1105" width="1.6" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="713.7" y="513" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="635.3" y="529" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="638.27" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="975.2" y="689" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="82.1" y="1553" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="85.12" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.40 (1 samples, 0.07%)</title><rect x="239.0" y="1505" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="366.6" y="1089" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="231.9" y="1713" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="253.3" y="1473" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantReadWriteLock$NonfairSync:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="919.0" y="673" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="921.97" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerResponse:::setMediaType (6 samples, 0.40%)</title><rect x="665.4" y="785" width="4.7" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="668.38" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/jetty/JettyServerAdapter:::buildResponseHeaderMap (4 samples, 0.27%)</title><rect x="407.0" y="1281" width="3.2" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="410.03" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (2 samples, 0.13%)</title><rect x="975.2" y="817" width="1.6" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (2 samples, 0.13%)</title><rect x="599.6" y="769" width="1.6" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="602.60" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::put (2 samples, 0.13%)</title><rect x="602.8" y="705" width="1.6" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="605.77" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="231.9" y="1553" width="1.6" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (8 samples, 0.54%)</title><rect x="188.3" y="1473" width="6.3" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="191.31" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::runInScope (470 samples, 31.56%)</title><rect x="564.7" y="993" width="372.5" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="567.73" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/jersey/process/internal/RequestScope..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="1122.6" y="1537" width="0.8" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="1125.64" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_sun_nio_ch_NativeThread_current (1 samples, 0.07%)</title><rect x="724.0" y="497" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="727.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/AttributesMap:::getAttribute (1 samples, 0.07%)</title><rect x="952.3" y="913" width="0.7" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="955.26" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/TreeMap$Entry:::&lt;init&gt; (3 samples, 0.20%)</title><rect x="391.2" y="1265" width="2.4" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="394.18" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="664.6" y="657" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentLinkedQueue:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="938.8" y="929" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="941.78" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toString (2 samples, 0.13%)</title><rect x="557.6" y="913" width="1.6" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="560.60" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.07%)</title><rect x="669.3" y="705" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="672.34" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (5 samples, 0.34%)</title><rect x="770.0" y="673" width="3.9" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="772.99" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.07%)</title><rect x="70.2" y="1521" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener:::onRequest (2 samples, 0.13%)</title><rect x="942.7" y="977" width="1.6" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="945.75" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (2 samples, 0.13%)</title><rect x="33.8" y="1089" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="36.77" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="110.6" y="1553" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::add (1 samples, 0.07%)</title><rect x="751.0" y="641" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="753.97" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpParser:::takeString (3 samples, 0.20%)</title><rect x="1033.1" y="1409" width="2.4" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1036.09" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/monitoring/RequestEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="775.5" y="849" width="0.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="778.53" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="42.5" y="1617" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime:::process (1 samples, 0.07%)</title><rect x="103.5" y="1617" width="0.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getUserPrincipal (1 samples, 0.07%)</title><rect x="1068.0" y="1489" width="0.8" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="1070.96" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_current_mss (3 samples, 0.20%)</title><rect x="98.8" y="1553" width="2.3" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="101.76" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.07%)</title><rect x="204.2" y="1601" width="0.7" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Split (1 samples, 0.07%)</title><rect x="294.5" y="1601" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="297.50" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/JsonWithPaddingInterceptor:::aroundWriteTo (30 samples, 2.01%)</title><rect x="683.6" y="769" width="23.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="686.61" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="37.7" y="1585" width="0.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="1060.8" y="1505" width="1.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1063.83" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompressedReadStream::read_int_mb (1 samples, 0.07%)</title><rect x="464.9" y="817" width="0.8" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="467.88" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParScanThreadState::trim_queue (1 samples, 0.07%)</title><rect x="266.0" y="1681" width="0.8" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="268.97" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="357.9" y="1153" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="39.3" y="1713" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="204.9" y="1457" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (3 samples, 0.20%)</title><rect x="1183.7" y="1473" width="2.3" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (3 samples, 0.20%)</title><rect x="450.6" y="913" width="2.4" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerRequest:::&lt;init&gt; (7 samples, 0.47%)</title><rect x="947.5" y="1025" width="5.5" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="950.50" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (4 samples, 0.27%)</title><rect x="94.8" y="1393" width="3.2" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="97.80" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (3 samples, 0.20%)</title><rect x="407.0" y="1265" width="2.4" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="410.03" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::checkChar (3 samples, 0.20%)</title><rect x="998.2" y="993" width="2.4" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1001.22" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::isProvidable (1 samples, 0.07%)</title><rect x="692.3" y="641" width="0.8" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="695.32" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannelState:::isSuspended (2 samples, 0.13%)</title><rect x="432.4" y="1313" width="1.6" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="435.39" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (2 samples, 0.13%)</title><rect x="571.1" y="657" width="1.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$TreeBin:::find (5 samples, 0.34%)</title><rect x="926.9" y="753" width="4.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="929.90" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::add (1 samples, 0.07%)</title><rect x="598.0" y="705" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="601.02" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="232.7" y="1505" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="235.69" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/DateFormatSymbols:::&lt;init&gt; (9 samples, 0.60%)</title><rect x="239.0" y="1729" width="7.2" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.07%)</title><rect x="357.1" y="1201" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::getService (3 samples, 0.20%)</title><rect x="604.4" y="705" width="2.3" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="607.36" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/CharacterData:::of (1 samples, 0.07%)</title><rect x="972.9" y="817" width="0.8" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="975.86" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.07%)</title><rect x="713.7" y="161" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.27%)</title><rect x="278.7" y="1473" width="3.1" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="528.3" y="817" width="1.6" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="531.28" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/Timer:::update (5 samples, 0.34%)</title><rect x="424.5" y="1297" width="3.9" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="427.47" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::fill_buffer (8 samples, 0.54%)</title><rect x="285.8" y="1617" width="6.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.07%)</title><rect x="13.2" y="1601" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.07%)</title><rect x="13.2" y="1649" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterOopMap::iterate_oop (1 samples, 0.07%)</title><rect x="273.1" y="1617" width="0.8" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="276.10" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (3 samples, 0.20%)</title><rect x="651.1" y="465" width="2.4" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (2 samples, 0.13%)</title><rect x="714.5" y="417" width="1.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::charAt (4 samples, 0.27%)</title><rect x="1003.0" y="929" width="3.1" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1005.98" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (1 samples, 0.07%)</title><rect x="110.6" y="1409" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (4 samples, 0.27%)</title><rect x="454.6" y="1073" width="3.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern:::&lt;init&gt; (4 samples, 0.27%)</title><rect x="760.5" y="721" width="3.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="763.48" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.07%)</title><rect x="239.0" y="1585" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="43.3" y="1505" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="46.28" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (2 samples, 0.13%)</title><rect x="639.2" y="625" width="1.6" height="15.0" fill="rgb(59,174,174)" rx="2" ry="2" />
<text text-anchor="" x="642.23" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::addFirst (2 samples, 0.13%)</title><rect x="645.6" y="753" width="1.6" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="648.57" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="1175.7" y="1457" width="1.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::is_zombie (1 samples, 0.07%)</title><rect x="507.7" y="785" width="0.8" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="510.68" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/inject/Providers:::mergeAndSortRankedProviders (4 samples, 0.27%)</title><rect x="614.7" y="833" width="3.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="617.66" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/AbstractActiveDescriptor:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="919.0" y="721" width="1.6" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text text-anchor="" x="921.97" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannelState:::isInitial (1 samples, 0.07%)</title><rect x="431.6" y="1313" width="0.8" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="434.60" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="37.7" y="1217" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::createEntry (2 samples, 0.13%)</title><rect x="969.7" y="913" width="1.6" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="972.69" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectorPolicy::predict_region_elapsed_time_ms (1 samples, 0.07%)</title><rect x="250.9" y="1649" width="0.8" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="253.91" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="253.3" y="1553" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpConnection:::send (29 samples, 1.95%)</title><rect x="713.7" y="641" width="23.0" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker:::lock (1 samples, 0.07%)</title><rect x="433.2" y="1297" width="0.8" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="436.18" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/process/RequestProcessingContext:::initAsyncContext (2 samples, 0.13%)</title><rect x="562.4" y="1041" width="1.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="565.36" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.13%)</title><rect x="1060.8" y="1537" width="1.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="1063.83" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.13%)</title><rect x="450.6" y="881" width="1.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Runtime1::monitorexit (4 samples, 0.27%)</title><rect x="369.8" y="1297" width="3.2" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.07%)</title><rect x="1083.0" y="1425" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1086.02" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.13%)</title><rect x="42.5" y="1665" width="1.6" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RootProcessor::process_java_roots (9 samples, 0.60%)</title><rect x="268.3" y="1681" width="7.2" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="271.35" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (3 samples, 0.20%)</title><rect x="450.6" y="1025" width="2.4" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$TypeOutInvoker:::doDispatch (140 samples, 9.40%)</title><rect x="785.0" y="817" width="111.0" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.27%)</title><rect x="56.0" y="1569" width="3.1" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields$1:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="961.8" y="961" width="1.6" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="964.77" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (3 samples, 0.20%)</title><rect x="450.6" y="1089" width="2.4" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="215.3" y="1633" width="0.7" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="218.25" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="74.2" y="1681" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putVal (1 samples, 0.07%)</title><rect x="564.7" y="977" width="0.8" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="567.73" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8 samples, 0.54%)</title><rect x="71.0" y="1713" width="6.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (2 samples, 0.13%)</title><rect x="91.6" y="1425" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="94.63" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="24.3" y="1393" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.07%)</title><rect x="320.7" y="1281" width="0.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/SimpleDateFormat:::format (1 samples, 0.07%)</title><rect x="204.2" y="1745" width="0.7" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.07%)</title><rect x="668.5" y="705" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="671.55" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="1162.3" y="1409" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (2 samples, 0.13%)</title><rect x="1080.6" y="1425" width="1.6" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1083.64" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::sweep_code_cache (1 samples, 0.07%)</title><rect x="308.0" y="1649" width="0.8" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="310.97" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::iterator (2 samples, 0.13%)</title><rect x="874.6" y="497" width="1.6" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="877.59" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.07%)</title><rect x="715.3" y="257" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.07%)</title><rect x="366.6" y="1057" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::access$000 (19 samples, 1.28%)</title><rect x="630.5" y="753" width="15.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="633.51" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/TreeMap:::put (2 samples, 0.13%)</title><rect x="382.5" y="1281" width="1.5" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="385.46" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.07%)</title><rect x="355.5" y="1265" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="67.1" y="1569" width="1.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::process_nmethod (1 samples, 0.07%)</title><rect x="308.0" y="1633" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="310.97" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="214.5" y="1617" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (3 samples, 0.20%)</title><rect x="967.3" y="881" width="2.4" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="970.31" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.07%)</title><rect x="859.5" y="593" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="862.54" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="39.3" y="1729" width="3.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="1121.1" y="1553" width="1.5" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1124.05" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="651.1" y="257" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::isWriteable (5 samples, 0.34%)</title><rect x="689.2" y="657" width="3.9" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="692.15" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.07%)</title><rect x="350.8" y="1505" width="0.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="353.77" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="664.6" y="737" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="565.5" y="833" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (7 samples, 0.47%)</title><rect x="865.9" y="513" width="5.5" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="868.88" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::put (4 samples, 0.27%)</title><rect x="748.6" y="673" width="3.2" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="751.59" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (7 samples, 0.47%)</title><rect x="649.5" y="833" width="5.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="652.53" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="208.1" y="1729" width="3.2" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.07%)</title><rect x="70.2" y="1553" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::collect_statistics (4 samples, 0.27%)</title><rect x="10.0" y="1761" width="3.2" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (4 samples, 0.27%)</title><rect x="324.6" y="1217" width="3.2" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="327.61" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::put (3 samples, 0.20%)</title><rect x="749.4" y="657" width="2.4" height="15.0" fill="rgb(51,165,165)" rx="2" ry="2" />
<text text-anchor="" x="752.38" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="1183.7" y="1441" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="651.1" y="305" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (49 samples, 3.29%)</title><rect x="808.8" y="657" width="38.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="811.82" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.27%)</title><rect x="49.6" y="1697" width="3.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope$Instance:::release (1 samples, 0.07%)</title><rect x="103.5" y="1537" width="0.8" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryAcquireShared (3 samples, 0.20%)</title><rect x="428.4" y="1169" width="2.4" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HeapRegion::block_is_obj (1 samples, 0.07%)</title><rect x="276.3" y="1569" width="0.8" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="279.27" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="796.1" y="641" width="0.8" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="799.14" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="215.3" y="1585" width="0.7" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="218.25" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/JsonFactory$Feature:::enabledIn (1 samples, 0.07%)</title><rect x="845.3" y="497" width="0.8" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="848.27" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::getService (29 samples, 1.95%)</title><rect x="872.2" y="593" width="23.0" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="875.22" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="208.1" y="1473" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::methodMe (1 samples, 0.07%)</title><rect x="908.7" y="865" width="0.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="911.67" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (9 samples, 0.60%)</title><rect x="1144.0" y="1521" width="7.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1147.04" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (1 samples, 0.07%)</title><rect x="13.2" y="1585" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="16.17" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::doSignal (1 samples, 0.07%)</title><rect x="379.3" y="1297" width="0.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="382.29" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="309.6" y="1633" width="0.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="312.56" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractOwnableSynchronizer:::setExclusiveOwnerThread (1 samples, 0.07%)</title><rect x="350.8" y="1489" width="0.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="353.77" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="78.9" y="1425" width="1.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="81.95" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (2 samples, 0.13%)</title><rect x="853.2" y="657" width="1.6" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text text-anchor="" x="856.20" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="27.4" y="1585" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.13%)</title><rect x="1175.7" y="1585" width="1.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::get (2 samples, 0.13%)</title><rect x="767.6" y="769" width="1.6" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="770.61" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="67.1" y="1489" width="1.5" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="216.0" y="1617" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MediaTypes:::typeEqual (2 samples, 0.13%)</title><rect x="982.4" y="993" width="1.6" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="985.37" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/AbstractActiveDescriptor:::setName (1 samples, 0.07%)</title><rect x="880.9" y="401" width="0.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="883.93" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender_for_compiled_frame (9 samples, 0.60%)</title><rect x="510.1" y="785" width="7.1" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="513.05" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="66.3" y="1713" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="69.27" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="715.3" y="273" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (2 samples, 0.13%)</title><rect x="95.6" y="1233" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime$Responder:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="938.8" y="993" width="0.8" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="941.78" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (8 samples, 0.54%)</title><rect x="31.4" y="1697" width="6.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="34.40" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (1 samples, 0.07%)</title><rect x="602.0" y="721" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="604.98" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="651.1" y="337" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.40%)</title><rect x="14.8" y="1681" width="4.7" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="357.9" y="1281" width="1.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="235.1" y="1537" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="44.1" y="1729" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="47.08" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/sun/proxy/$Proxy55:::hashCode (1 samples, 0.07%)</title><rect x="704.2" y="657" width="0.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="707.21" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (1 samples, 0.07%)</title><rect x="603.6" y="689" width="0.8" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="606.57" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Server:::getDateField (1 samples, 0.07%)</title><rect x="1037.8" y="1377" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1040.84" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="451.4" y="641" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (3 samples, 0.20%)</title><rect x="651.1" y="497" width="2.4" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (16 samples, 1.07%)</title><rect x="182.0" y="1569" width="12.6" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="184.97" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock:::lockInterruptibly (2 samples, 0.13%)</title><rect x="377.7" y="1329" width="1.6" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="380.71" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="551.3" y="929" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="554.26" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::iterator (1 samples, 0.07%)</title><rect x="872.2" y="513" width="0.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="875.22" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="300.0" y="1313" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="731.2" y="289" width="0.7" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (1 samples, 0.07%)</title><rect x="110.6" y="1665" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Response:::isCommitted (2 samples, 0.13%)</title><rect x="751.8" y="689" width="1.5" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="754.76" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/ConcurrentArrayQueue$Block:::remove (2 samples, 0.13%)</title><rect x="1025.2" y="1377" width="1.5" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1028.16" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parse (16 samples, 1.07%)</title><rect x="998.2" y="1009" width="12.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="1001.22" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/AsyncAppenderBase:::put (2 samples, 0.13%)</title><rect x="379.3" y="1361" width="1.6" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="382.29" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.07%)</title><rect x="110.6" y="1473" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (4 samples, 0.27%)</title><rect x="278.7" y="1457" width="3.1" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/handler/HandlerWrapper:::handle (757 samples, 50.84%)</title><rect x="418.1" y="1425" width="599.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="421.13" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/server/handler/HandlerWrapper:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runChange (1 samples, 0.07%)</title><rect x="353.9" y="1489" width="0.8" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="356.94" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap:::newNode (1 samples, 0.07%)</title><rect x="877.8" y="465" width="0.8" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="880.76" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap$Entry:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="970.5" y="897" width="0.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="973.48" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/reflection/ReflectionHelper:::getNameFromAllQualifiers (4 samples, 0.27%)</title><rect x="593.3" y="753" width="3.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="596.26" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="48.8" y="1553" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="51.83" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (1 samples, 0.07%)</title><rect x="110.6" y="1649" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="27.4" y="1473" width="1.6" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::invoke (19 samples, 1.28%)</title><rect x="787.4" y="801" width="15.1" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="790.42" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::valueOf (1 samples, 0.07%)</title><rect x="556.8" y="929" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="559.81" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/type/TypeFactory:::_fromClass (1 samples, 0.07%)</title><rect x="823.9" y="545" width="0.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="826.88" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/atomic/AtomicReferenceArray:::compareAndSet (1 samples, 0.07%)</title><rect x="1026.0" y="1361" width="0.7" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1028.96" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getAnnotation (1 samples, 0.07%)</title><rect x="589.3" y="609" width="0.8" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="592.30" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (6 samples, 0.40%)</title><rect x="297.7" y="1601" width="4.7" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="300.67" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="721.6" y="497" width="1.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="203.4" y="1729" width="0.8" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::format (1 samples, 0.07%)</title><rect x="320.7" y="1409" width="0.7" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="1157.5" y="1505" width="3.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="1160.51" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::executeProduceConsume (893 samples, 59.97%)</title><rect x="351.6" y="1537" width="707.6" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="354.56" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::executeProduceConsume</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/general/internal/WeakHashClockImpl:::get (2 samples, 0.13%)</title><rect x="865.9" y="449" width="1.6" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="868.88" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="27.4" y="1441" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="233.5" y="1729" width="1.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="236.48" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::process (1 samples, 0.07%)</title><rect x="979.2" y="817" width="0.8" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="982.20" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putVal (1 samples, 0.07%)</title><rect x="78.2" y="1441" width="0.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/base/ProviderBase:::_createParser (27 samples, 1.81%)</title><rect x="824.7" y="577" width="21.4" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="827.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_String::as_utf8_string (2 samples, 0.13%)</title><rect x="447.4" y="1105" width="1.6" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="450.45" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="1172.6" y="1601" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::create (29 samples, 1.95%)</title><rect x="872.2" y="545" width="23.0" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="875.22" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.07%)</title><rect x="713.7" y="113" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="1180.5" y="1489" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.49" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MessageBodyFactory:::writeTo (38 samples, 2.55%)</title><rect x="677.3" y="833" width="30.1" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="680.27" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (4 samples, 0.27%)</title><rect x="454.6" y="1009" width="3.2" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::match (1 samples, 0.07%)</title><rect x="627.3" y="801" width="0.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="630.34" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime$2:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="937.2" y="993" width="0.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="940.20" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.07%)</title><rect x="1065.6" y="1489" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="1068.58" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::resolve (16 samples, 1.07%)</title><rect x="914.2" y="801" width="12.7" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="917.22" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.07%)</title><rect x="780.3" y="673" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="783.29" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.07%)</title><rect x="713.7" y="273" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (3 samples, 0.20%)</title><rect x="1158.3" y="1457" width="2.4" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1161.30" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::checkText (1 samples, 0.07%)</title><rect x="529.9" y="897" width="0.8" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="532.87" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="524.3" y="817" width="0.8" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="527.32" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="1121.8" y="1521" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1124.85" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="652.7" y="401" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="655.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (20 samples, 1.34%)</title><rect x="117.0" y="1633" width="15.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal:::set (2 samples, 0.13%)</title><rect x="934.8" y="961" width="1.6" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="937.82" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/CombinedMediaType:::create (2 samples, 0.13%)</title><rect x="644.0" y="705" width="1.6" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="646.98" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="211.3" y="1537" width="1.6" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.07%)</title><rect x="573.5" y="801" width="0.7" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="576.45" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1,082 samples, 72.67%)</title><rect x="312.7" y="1681" width="857.5" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="315.73" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_virtual</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MediaTypeProvider:::toString (2 samples, 0.13%)</title><rect x="741.5" y="625" width="1.5" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="744.46" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (6 samples, 0.40%)</title><rect x="32.2" y="1569" width="4.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/PushMethodHandlerRouter:::apply (1 samples, 0.07%)</title><rect x="647.9" y="769" width="0.8" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="650.94" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbyte_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="718.5" y="561" width="0.8" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="721.48" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.13%)</title><rect x="708.2" y="481" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_clone (1 samples, 0.07%)</title><rect x="452.2" y="897" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="455.20" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::getValues (3 samples, 0.20%)</title><rect x="961.0" y="977" width="2.4" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="963.97" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::charAt (1 samples, 0.07%)</title><rect x="1037.1" y="1361" width="0.7" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1040.05" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="208.1" y="1553" width="1.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="858.0" y="609" width="1.5" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="860.95" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="67.1" y="1553" width="1.5" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.27%)</title><rect x="281.8" y="1665" width="3.2" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="284.82" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="42.5" y="1601" width="1.6" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.07%)</title><rect x="48.0" y="1601" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="51.04" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="27.4" y="1489" width="1.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::enter (35 samples, 2.35%)</title><rect x="321.4" y="1505" width="27.8" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="324.44" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >O..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (3 samples, 0.20%)</title><rect x="239.8" y="1553" width="2.4" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::getState (1 samples, 0.07%)</title><rect x="1129.0" y="1521" width="0.8" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1131.98" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="42.5" y="1649" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.27%)</title><rect x="278.7" y="1553" width="3.1" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="211.3" y="1505" width="1.6" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::get (2 samples, 0.13%)</title><rect x="639.2" y="657" width="1.6" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="642.23" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="77.4" y="1505" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="80.36" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="211.3" y="1665" width="1.6" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractCollection:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="634.5" y="577" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="637.47" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.07%)</title><rect x="572.7" y="577" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hash_futex (1 samples, 0.07%)</title><rect x="1140.9" y="1457" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1143.87" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.07%)</title><rect x="709.8" y="609" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="712.76" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap$LinkedHashIterator:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="674.9" y="673" width="0.8" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="677.89" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/util/BufferRecycler:::allocByteBuffer (4 samples, 0.27%)</title><rect x="829.4" y="481" width="3.2" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="832.42" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="27.4" y="1521" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/internal/ResponseWriter:::writeResponseStatusAndHeaders (17 samples, 1.14%)</title><rect x="739.9" y="721" width="13.4" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="742.87" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="316.7" y="1169" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.07%)</title><rect x="451.4" y="753" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (7 samples, 0.47%)</title><rect x="791.4" y="769" width="5.5" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="794.38" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::regionMatches (1 samples, 0.07%)</title><rect x="812.8" y="529" width="0.8" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="815.78" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/CommittingOutputStream:::close (58 samples, 3.90%)</title><rect x="707.4" y="801" width="45.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.07%)</title><rect x="30.6" y="1585" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="33.60" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (8 samples, 0.54%)</title><rect x="159.0" y="1489" width="6.3" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="161.99" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (4 samples, 0.27%)</title><rect x="56.0" y="1553" width="3.1" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/QueuedThreadPool:::idleJobPoll (1 samples, 0.07%)</title><rect x="349.2" y="1569" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="352.18" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Klass::is_klass (13 samples, 0.87%)</title><rect x="27.4" y="1745" width="10.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="1162.3" y="1457" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::getLocation (3 samples, 0.20%)</title><rect x="766.8" y="817" width="2.4" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="769.82" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::getRequestHeaderMap (3 samples, 0.20%)</title><rect x="381.7" y="1313" width="2.3" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="384.67" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (2 samples, 0.13%)</title><rect x="714.5" y="545" width="1.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="404.7" y="1265" width="0.7" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="407.65" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/annotation/AnnotationInvocationHandler:::memberValueHashCode (1 samples, 0.07%)</title><rect x="704.2" y="609" width="0.8" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="707.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="235.1" y="1665" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.07%)</title><rect x="451.4" y="721" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::unlock (1 samples, 0.07%)</title><rect x="1137.7" y="1489" width="0.8" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="1140.70" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="366.6" y="1217" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="107.5" y="1569" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="77.4" y="1521" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="80.36" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::isProxiable (1 samples, 0.07%)</title><rect x="589.3" y="657" width="0.8" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="592.30" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (3 samples, 0.20%)</title><rect x="928.5" y="705" width="2.4" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="931.48" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="71.0" y="1553" width="1.6" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::substring (4 samples, 0.27%)</title><rect x="543.3" y="1009" width="3.2" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="546.34" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/pattern/RequestURLConverter:::convert (1 samples, 0.07%)</title><rect x="1079.1" y="1441" width="0.7" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1082.05" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="757.3" y="689" width="0.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="760.31" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (3 samples, 0.20%)</title><rect x="239.8" y="1585" width="2.4" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.07%)</title><rect x="105.9" y="1601" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="108.89" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::group (3 samples, 0.20%)</title><rect x="527.5" y="881" width="2.4" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="530.49" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_nat_ipv4_local_fn (1 samples, 0.07%)</title><rect x="565.5" y="625" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.13%)</title><rect x="204.9" y="1617" width="1.6" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal$ThreadLocalMap:::access$000 (1 samples, 0.07%)</title><rect x="430.8" y="1185" width="0.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="433.81" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.07%)</title><rect x="1094.9" y="1137" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.90" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (4 samples, 0.27%)</title><rect x="33.0" y="1361" width="3.2" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="309.6" y="1441" width="0.7" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="312.56" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.07%)</title><rect x="658.2" y="465" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/atomic/AtomicReferenceArray:::compareAndSetRaw (1 samples, 0.07%)</title><rect x="1026.0" y="1345" width="0.7" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1028.96" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="348.4" y="1457" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="351.39" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/Utf8StringBuilder:::toString (2 samples, 0.13%)</title><rect x="1049.7" y="1409" width="1.6" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1052.73" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (3 samples, 0.20%)</title><rect x="1183.7" y="1633" width="2.3" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::toString (1 samples, 0.07%)</title><rect x="441.9" y="1121" width="0.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="444.90" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::search (1 samples, 0.07%)</title><rect x="320.7" y="1345" width="0.7" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.07%)</title><rect x="1075.9" y="1265" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1078.88" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="647.9" y="689" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="650.94" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandle (1 samples, 0.07%)</title><rect x="894.4" y="497" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="897.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toLowerCase (2 samples, 0.13%)</title><rect x="635.3" y="545" width="1.6" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="638.27" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="357.1" y="1233" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.07%)</title><rect x="82.1" y="1521" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="85.12" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.34%)</title><rect x="570.3" y="897" width="3.9" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="573.28" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (4 samples, 0.27%)</title><rect x="185.1" y="1473" width="3.2" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="188.14" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandle (1 samples, 0.07%)</title><rect x="894.4" y="481" width="0.8" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="897.41" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (17 samples, 1.14%)</title><rect x="181.2" y="1601" width="13.4" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="184.18" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/servlet/ServletHandler:::doScope (1 samples, 0.07%)</title><rect x="110.6" y="1729" width="0.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::kill_dead_locals (5 samples, 0.34%)</title><rect x="298.5" y="1521" width="3.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="301.46" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ManagedSelector:::submit (8 samples, 0.54%)</title><rect x="366.6" y="1361" width="6.4" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::handle_special_suspend_equivalent_condition (1 samples, 0.07%)</title><rect x="1135.3" y="1521" width="0.8" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="1138.32" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="1102.0" y="1345" width="1.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="211.3" y="1569" width="1.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.07%)</title><rect x="323.0" y="1473" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="326.03" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="231.9" y="1569" width="1.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="1175.7" y="1441" width="1.6" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.07%)</title><rect x="180.4" y="1729" width="0.8" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="183.38" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runChange (4 samples, 0.27%)</title><rect x="211.3" y="1697" width="3.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/CommittingOutputStream:::commitStream (1 samples, 0.07%)</title><rect x="707.4" y="769" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="713.7" y="433" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/OutputStreamAppender:::writeOut (1 samples, 0.07%)</title><rect x="1064.8" y="1601" width="0.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1067.79" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::ensureWriteOpen (3 samples, 0.20%)</title><rect x="731.9" y="497" width="2.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="734.95" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="1102.0" y="1153" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="216.0" y="1553" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$HashIterator:::nextNode (1 samples, 0.07%)</title><rect x="900.0" y="897" width="0.7" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="902.95" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="1056.9" y="1457" width="0.8" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text text-anchor="" x="1059.86" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.07%)</title><rect x="256.5" y="1633" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="259.46" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::createService (10 samples, 0.67%)</title><rect x="602.0" y="769" width="7.9" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="604.98" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (2 samples, 0.13%)</title><rect x="95.6" y="1265" width="1.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/Stage$Continuation:::of (1 samples, 0.07%)</title><rect x="582.2" y="849" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="585.17" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_sample_event_took (1 samples, 0.07%)</title><rect x="369.8" y="993" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (2 samples, 0.13%)</title><rect x="657.5" y="817" width="1.5" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="660.45" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="722.4" y="257" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="725.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_filter_trim_cap (1 samples, 0.07%)</title><rect x="190.7" y="1217" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="193.69" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::create (28 samples, 1.88%)</title><rect x="872.2" y="529" width="22.2" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="875.22" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.07%)</title><rect x="380.1" y="1249" width="0.8" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="383.09" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::extractParameters (4 samples, 0.27%)</title><rect x="400.7" y="1265" width="3.2" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="403.69" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (1 samples, 0.07%)</title><rect x="86.9" y="1521" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="89.87" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (3 samples, 0.20%)</title><rect x="239.8" y="1489" width="2.4" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="441.1" y="1105" width="0.8" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SocketChannelImpl:::read (5 samples, 0.34%)</title><rect x="1018.8" y="1425" width="4.0" height="15.0" fill="rgb(63,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1021.82" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/inject/ReferenceTransformingFactory:::provide (15 samples, 1.01%)</title><rect x="860.3" y="577" width="11.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="863.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpConnection$SendCallback:::process (4 samples, 0.27%)</title><rect x="216.0" y="1745" width="3.2" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_del (1 samples, 0.07%)</title><rect x="132.8" y="1601" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="135.83" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>loopback_xmit (1 samples, 0.07%)</title><rect x="98.0" y="1377" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="100.97" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="713.7" y="385" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (2 samples, 0.13%)</title><rect x="47.2" y="1633" width="1.6" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="50.25" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/RoutingStage:::apply (37 samples, 2.48%)</title><rect x="619.4" y="849" width="29.3" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="622.42" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (7 samples, 0.47%)</title><rect x="1090.9" y="1297" width="5.6" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1093.94" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (1 samples, 0.07%)</title><rect x="878.6" y="465" width="0.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="881.56" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="565.5" y="945" width="0.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (148 samples, 9.94%)</title><rect x="778.7" y="865" width="117.3" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="781.70" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="954.6" y="977" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="957.63" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::isReadable (3 samples, 0.20%)</title><rect x="813.6" y="561" width="2.4" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="816.57" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RootProcessor::scan_remembered_sets (3 samples, 0.20%)</title><rect x="276.3" y="1697" width="2.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="279.27" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compiler::compile_method (1 samples, 0.07%)</title><rect x="304.0" y="1665" width="0.8" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.07%)</title><rect x="39.3" y="1665" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpConnection$SendCallback:::process (25 samples, 1.68%)</title><rect x="716.1" y="593" width="19.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="719.10" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putVal (1 samples, 0.07%)</title><rect x="602.0" y="705" width="0.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="604.98" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (2 samples, 0.13%)</title><rect x="95.6" y="1249" width="1.6" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="975.2" y="769" width="1.6" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.47%)</title><rect x="219.2" y="1649" width="5.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections:::newSetFromMap (1 samples, 0.07%)</title><rect x="634.5" y="673" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="637.47" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (12 samples, 0.81%)</title><rect x="324.6" y="1329" width="9.5" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="327.61" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="253.3" y="1665" width="3.2" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (6 samples, 0.40%)</title><rect x="976.8" y="977" width="4.8" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="979.82" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (2 samples, 0.13%)</title><rect x="219.2" y="1457" width="1.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="1097.3" y="1105" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/PerLookupContext:::findOrCreate (29 samples, 1.95%)</title><rect x="872.2" y="561" width="23.0" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="875.22" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (4 samples, 0.27%)</title><rect x="33.0" y="1265" width="3.2" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope$Instance:::release (5 samples, 0.34%)</title><rect x="78.2" y="1521" width="3.9" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.07%)</title><rect x="32.2" y="1393" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.07%)</title><rect x="709.0" y="273" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="711.97" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="714.5" y="577" width="1.6" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.07%)</title><rect x="355.5" y="1249" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="1167.0" y="1345" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="216.0" y="1585" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/handler/ContextHandler:::doHandle (731 samples, 49.09%)</title><rect x="437.9" y="1249" width="579.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="440.94" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/server/handler/ContextHandler:::doHandle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/SimpleDateFormat:::format (4 samples, 0.27%)</title><rect x="1075.1" y="1377" width="3.2" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1078.09" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::create (49 samples, 3.29%)</title><rect x="856.4" y="641" width="38.8" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="859.37" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.07%)</title><rect x="709.0" y="257" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="711.97" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection$1:::hasNext (1 samples, 0.07%)</title><rect x="593.3" y="721" width="0.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="596.26" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="75.0" y="1681" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="77.98" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="200.2" y="1649" width="1.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="203.19" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::createService (1 samples, 0.07%)</title><rect x="605.9" y="673" width="0.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="608.94" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="300.0" y="1345" width="1.6" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_trylock@plt (4 samples, 0.27%)</title><rect x="1152.0" y="1521" width="3.1" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1154.96" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/IllegalArgumentException:::&lt;init&gt; (79 samples, 5.31%)</title><rect x="457.8" y="961" width="62.6" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/FillInterest:::register (8 samples, 0.54%)</title><rect x="366.6" y="1425" width="6.4" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::final_graph_reshaping_walk (1 samples, 0.07%)</title><rect x="296.9" y="1601" width="0.8" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="299.88" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::get (3 samples, 0.20%)</title><rect x="635.3" y="689" width="2.3" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="638.27" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::equalsIgnoreCase (2 samples, 0.13%)</title><rect x="982.4" y="977" width="1.6" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="985.37" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/io/PrintStream:::write (33 samples, 2.22%)</title><rect x="1086.2" y="1473" width="26.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1089.19" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::ensureCapacityInternal (3 samples, 0.20%)</title><rect x="990.3" y="945" width="2.4" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="993.30" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.07%)</title><rect x="910.3" y="769" width="0.7" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="913.26" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="804.1" y="673" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="807.06" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryReleaseShared (1 samples, 0.07%)</title><rect x="780.3" y="609" width="0.8" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="783.29" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.07%)</title><rect x="103.5" y="1313" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/servlets/ThreadNameFilter:::doFilter (727 samples, 48.82%)</title><rect x="439.5" y="1153" width="576.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="442.52" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io/dropwizard/servlets/ThreadNameFilter:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_commit_txn (2 samples, 0.13%)</title><rect x="434.8" y="1137" width="1.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (2 samples, 0.13%)</title><rect x="91.6" y="1409" width="1.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="94.63" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.07%)</title><rect x="572.7" y="529" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::put (1 samples, 0.07%)</title><rect x="900.7" y="897" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="903.75" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (2 samples, 0.13%)</title><rect x="1102.0" y="1297" width="1.6" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.07%)</title><rect x="722.4" y="209" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="725.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::isClosed (1 samples, 0.07%)</title><rect x="907.9" y="881" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="910.88" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::prepareForDeferredProcessing (2 samples, 0.13%)</title><rect x="1067.2" y="1537" width="1.6" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1070.17" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (3 samples, 0.20%)</title><rect x="890.4" y="385" width="2.4" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="893.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DirtyCardQueueSet::clear (2 samples, 0.13%)</title><rect x="1170.2" y="1601" width="1.6" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="1173.19" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/monitoring/RequestEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="782.7" y="769" width="0.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="785.67" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="216.0" y="1665" width="3.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::hashCode (1 samples, 0.07%)</title><rect x="956.2" y="897" width="0.8" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="959.22" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="358.7" y="1153" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="361.69" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::setMediaType (1 samples, 0.07%)</title><rect x="777.9" y="817" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="780.91" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="204.9" y="1553" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IRScope::IRScope (1 samples, 0.07%)</title><rect x="304.0" y="1569" width="0.8" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="316.7" y="1233" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="713.7" y="305" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="37.7" y="1457" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StatSamplerTask::task (1 samples, 0.07%)</title><rect x="1178.9" y="1697" width="0.8" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="1181.91" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/Errors:::process (420 samples, 28.21%)</title><rect x="567.1" y="945" width="332.9" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="570.11" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/jersey/internal/Errors:::process</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/jetty/RequestLogImpl:::log (50 samples, 3.36%)</title><rect x="373.7" y="1425" width="39.7" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="376.75" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ch/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="316.7" y="1265" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="208.1" y="1569" width="1.6" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="664.6" y="593" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/reflectiveObjects/ParameterizedTypeImpl:::getActualTypeArguments (1 samples, 0.07%)</title><rect x="866.7" y="353" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="869.67" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/SimpleDateFormat:::subFormat (1 samples, 0.07%)</title><rect x="1075.9" y="1345" width="0.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="1078.88" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="24.3" y="1457" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.07%)</title><rect x="1097.3" y="1249" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.13%)</title><rect x="357.9" y="1345" width="1.6" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/IteratingCallback:::processing (27 samples, 1.81%)</title><rect x="714.5" y="609" width="21.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal:::set (1 samples, 0.07%)</title><rect x="1122.6" y="1569" width="0.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="1125.64" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Lists:::newLinkedList (4 samples, 0.27%)</title><rect x="614.7" y="817" width="3.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="617.66" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[vdso]] (1 samples, 0.07%)</title><rect x="418.9" y="1281" width="0.8" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="421.92" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (2 samples, 0.13%)</title><rect x="300.0" y="1473" width="1.6" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="235.9" y="1569" width="0.7" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="238.86" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (5 samples, 0.34%)</title><rect x="1060.8" y="1601" width="4.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1063.83" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.07%)</title><rect x="37.7" y="1425" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.07%)</title><rect x="433.2" y="1281" width="0.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="436.18" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (3 samples, 0.20%)</title><rect x="967.3" y="849" width="2.4" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="970.31" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="524.3" y="801" width="0.8" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="527.32" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.33 (1 samples, 0.07%)</title><rect x="561.6" y="849" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>file_update_time (1 samples, 0.07%)</title><rect x="66.3" y="1617" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="69.27" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.07%)</title><rect x="37.7" y="1409" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="256.5" y="1457" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="259.46" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="975.2" y="753" width="1.6" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (7 samples, 0.47%)</title><rect x="915.8" y="753" width="5.5" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="918.80" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/MimeTypes:::getCharsetFromContentType (1 samples, 0.07%)</title><rect x="743.8" y="673" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="746.83" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.07%)</title><rect x="1096.5" y="1217" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Hashing:::smear (1 samples, 0.07%)</title><rect x="781.9" y="753" width="0.8" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="784.87" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runActions (1 samples, 0.07%)</title><rect x="353.9" y="1505" width="0.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="356.94" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="975.2" y="705" width="1.6" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="357.9" y="1169" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (3 samples, 0.20%)</title><rect x="285.8" y="1473" width="2.4" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (1 samples, 0.07%)</title><rect x="1060.8" y="1473" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1063.83" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.07%)</title><rect x="451.4" y="625" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::oops_interpreted_do (4 samples, 0.27%)</title><rect x="52.8" y="1713" width="3.2" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_ct_get_tuple (1 samples, 0.07%)</title><rect x="650.3" y="545" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="653.32" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::scan (2 samples, 0.13%)</title><rect x="1006.1" y="977" width="1.6" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1009.15" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="74.2" y="1521" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MediaTypeProvider:::valueOf (3 samples, 0.20%)</title><rect x="979.2" y="881" width="2.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="982.20" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="926.1" y="721" width="0.8" height="15.0" fill="rgb(96,243,96)" rx="2" ry="2" />
<text text-anchor="" x="929.10" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.07%)</title><rect x="451.4" y="769" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_rx (1 samples, 0.07%)</title><rect x="98.0" y="1361" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="100.97" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="49.6" y="1553" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::unlockForRegularUsage (1 samples, 0.07%)</title><rect x="780.3" y="657" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="783.29" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractSequentialList:::iterator (2 samples, 0.13%)</title><rect x="607.5" y="705" width="1.6" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="610.53" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractCollection:::toArray (2 samples, 0.13%)</title><rect x="615.5" y="753" width="1.5" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="618.45" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (3 samples, 0.20%)</title><rect x="1183.7" y="1665" width="2.3" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.27%)</title><rect x="1157.5" y="1473" width="3.2" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1160.51" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HeaderUtils:::createOutbound (1 samples, 0.07%)</title><rect x="785.0" y="705" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="214.5" y="1649" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="10.0" y="1649" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::setHead (1 samples, 0.07%)</title><rect x="349.2" y="1505" width="0.8" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="352.18" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.13%)</title><rect x="231.9" y="1697" width="1.6" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (1 samples, 0.07%)</title><rect x="67.9" y="1441" width="0.7" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="70.85" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.07%)</title><rect x="910.3" y="737" width="0.7" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="913.26" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (4 samples, 0.27%)</title><rect x="380.9" y="1361" width="3.1" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="383.88" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="71.0" y="1441" width="1.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::charAt (1 samples, 0.07%)</title><rect x="999.0" y="929" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1002.01" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (15 samples, 1.01%)</title><rect x="154.2" y="1505" width="11.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="157.23" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpInput:::get (1 samples, 0.07%)</title><rect x="832.6" y="433" width="0.8" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="835.59" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (942 samples, 63.26%)</title><rect x="312.7" y="1601" width="746.5" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="315.73" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.07%)</title><rect x="602.8" y="689" width="0.8" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="605.77" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="216.0" y="1505" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/PropertiesHelper:::getPropertyNameForRuntime (14 samples, 0.94%)</title><rect x="755.7" y="769" width="11.1" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="758.72" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/servlet/WebComponent:::filterFormParameters (9 samples, 0.60%)</title><rect x="976.8" y="1009" width="7.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="979.82" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="236.6" y="1713" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="239.65" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Runtime1::monitorexit (4 samples, 0.27%)</title><rect x="366.6" y="1313" width="3.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::blockedOn (1 samples, 0.07%)</title><rect x="1018.8" y="1361" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1021.82" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (2 samples, 0.13%)</title><rect x="571.1" y="593" width="1.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (17 samples, 1.14%)</title><rect x="181.2" y="1649" width="13.4" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="184.18" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::substring (1 samples, 0.07%)</title><rect x="1007.7" y="961" width="0.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1010.73" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.07%)</title><rect x="78.2" y="1329" width="0.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="316.7" y="1185" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getInjectionResolverForInjectee (5 samples, 0.34%)</title><rect x="926.9" y="801" width="4.0" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="929.90" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="24.3" y="1361" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (15 samples, 1.01%)</title><rect x="154.2" y="1601" width="11.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="157.23" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_GetObjectField (3 samples, 0.20%)</title><rect x="1107.6" y="1361" width="2.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1110.58" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (14 samples, 0.94%)</title><rect x="388.8" y="1297" width="11.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="391.80" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ObjectWriter:::_serializerProvider (1 samples, 0.07%)</title><rect x="697.1" y="673" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="700.08" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::tabAt (1 samples, 0.07%)</title><rect x="415.0" y="1329" width="0.7" height="15.0" fill="rgb(71,185,185)" rx="2" ry="2" />
<text text-anchor="" x="417.96" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="39.3" y="1697" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::setNativeName (1 samples, 0.07%)</title><rect x="110.6" y="1585" width="0.8" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="311.1" y="1649" width="1.6" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="314.14" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="785.8" y="737" width="1.6" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="788.84" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="975.2" y="785" width="1.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putVal (2 samples, 0.13%)</title><rect x="398.3" y="1201" width="1.6" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="401.31" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.07%)</title><rect x="570.3" y="785" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="573.28" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.07%)</title><rect x="107.5" y="1649" width="0.8" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_packet (1 samples, 0.07%)</title><rect x="571.9" y="577" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="574.87" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.27%)</title><rect x="24.3" y="1729" width="3.1" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/encoder/LayoutWrappingEncoder:::convertToBytes (4 samples, 0.27%)</title><rect x="1082.2" y="1505" width="3.2" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1085.22" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (7 samples, 0.47%)</title><rect x="188.3" y="1441" width="5.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="191.31" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/WriterInterceptorExecutor$TerminalWriterInterceptor:::aroundWriteTo (26 samples, 1.75%)</title><rect x="684.4" y="737" width="20.6" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="687.40" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="1172.6" y="1441" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannel:::isCommitted (2 samples, 0.13%)</title><rect x="751.8" y="673" width="1.5" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="754.76" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::TrySpin_VaryDuration (1 samples, 0.07%)</title><rect x="355.5" y="1361" width="0.8" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern:::compile (4 samples, 0.27%)</title><rect x="760.5" y="737" width="3.1" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="763.48" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_from_iter (1 samples, 0.07%)</title><rect x="1095.7" y="1265" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1098.70" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::compute (2 samples, 0.13%)</title><rect x="583.8" y="737" width="1.5" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="586.75" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.07%)</title><rect x="979.2" y="833" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="982.20" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="74.2" y="1537" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.07%)</title><rect x="848.4" y="625" width="0.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="851.44" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="585.3" y="737" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="588.34" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (2 samples, 0.13%)</title><rect x="708.2" y="641" width="1.6" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.07%)</title><rect x="231.9" y="1473" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>loopback_xmit (1 samples, 0.07%)</title><rect x="457.0" y="721" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="459.96" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ArrayBlockingQueue:::take (56 samples, 3.76%)</title><rect x="1121.1" y="1601" width="44.3" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1124.05" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="235.1" y="1617" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AdvancedThresholdPolicy::method_invocation_event (4 samples, 0.27%)</title><rect x="204.9" y="1729" width="3.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="451.4" y="593" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="1162.3" y="1393" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/CharacterDataLatin1:::toUpperCase (1 samples, 0.07%)</title><rect x="383.3" y="1201" width="0.7" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="386.26" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerResponse:::getMediaType (6 samples, 0.40%)</title><rect x="769.2" y="833" width="4.7" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="772.19" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="1167.0" y="1617" width="3.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="768.4" y="689" width="0.8" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="771.40" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="348.4" y="1489" width="0.8" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="351.39" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpParser:::quickStart (2 samples, 0.13%)</title><rect x="1052.1" y="1425" width="1.6" height="15.0" fill="rgb(52,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1055.11" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.07%)</title><rect x="350.8" y="1537" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="353.77" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.07%)</title><rect x="48.8" y="1649" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="51.83" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_cancel (1 samples, 0.07%)</title><rect x="132.8" y="1649" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="135.83" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="37.7" y="1697" width="0.8" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$Node:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="859.5" y="577" width="0.8" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="862.54" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (5 samples, 0.34%)</title><rect x="90.0" y="1441" width="4.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="93.04" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="629.7" y="753" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="632.72" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpInput:::pollContent (3 samples, 0.20%)</title><rect x="833.4" y="417" width="2.4" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="836.38" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerResponse:::getLocation (3 samples, 0.20%)</title><rect x="766.8" y="833" width="2.4" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="769.82" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Long:::getChars (1 samples, 0.07%)</title><rect x="1074.3" y="1393" width="0.8" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="1077.30" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="78.9" y="1313" width="1.6" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="81.95" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpConnection:::releaseRequestBuffer (1 samples, 0.07%)</title><rect x="1056.1" y="1441" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1059.07" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (7 samples, 0.47%)</title><rect x="219.2" y="1569" width="5.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipt_do_table (1 samples, 0.07%)</title><rect x="185.1" y="1425" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="188.14" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/ArrayTrie:::getBest (7 samples, 0.47%)</title><rect x="1038.6" y="1409" width="5.6" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1041.64" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.13%)</title><rect x="714.5" y="369" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/SimpleDateFormat:::format (3 samples, 0.20%)</title><rect x="1075.1" y="1361" width="2.4" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1078.09" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::resumeCurrent (3 samples, 0.20%)</title><rect x="934.0" y="977" width="2.4" height="15.0" fill="rgb(59,174,174)" rx="2" ry="2" />
<text text-anchor="" x="937.03" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="308.8" y="1649" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="311.76" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::&lt;init&gt; (3 samples, 0.20%)</title><rect x="373.7" y="1409" width="2.4" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="376.75" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::get_method_blocks (1 samples, 0.07%)</title><rect x="304.0" y="1457" width="0.8" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/URIUtil:::appendSchemeHostPort (1 samples, 0.07%)</title><rect x="560.8" y="1057" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="563.77" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="67.1" y="1649" width="1.5" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::iterator (1 samples, 0.07%)</title><rect x="880.1" y="385" width="0.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="883.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="1097.3" y="1121" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.07%)</title><rect x="441.1" y="977" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="1175.7" y="1489" width="1.6" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::&lt;init&gt; (2 samples, 0.13%)</title><rect x="1049.7" y="1377" width="1.6" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="1052.73" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="765.2" y="705" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="768.23" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal:::set (1 samples, 0.07%)</title><rect x="936.4" y="961" width="0.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="939.41" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/pattern/RequestHeaderConverter:::convert (1 samples, 0.07%)</title><rect x="1078.3" y="1441" width="0.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1081.26" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="10.0" y="1505" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/WriteFlusher:::flush (16 samples, 1.07%)</title><rect x="721.6" y="545" width="12.7" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (6 samples, 0.40%)</title><rect x="14.8" y="1505" width="4.7" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$Curly:::match0 (3 samples, 0.20%)</title><rect x="534.6" y="769" width="2.4" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="537.62" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/Utilities:::translatePrimitiveType (2 samples, 0.13%)</title><rect x="850.0" y="641" width="1.6" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="853.03" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="1122.6" y="1457" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.64" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RemSet::scanRS (1 samples, 0.07%)</title><rect x="277.9" y="1665" width="0.8" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="280.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannel:::sendResponse (32 samples, 2.15%)</title><rect x="711.3" y="657" width="25.4" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="714.34" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (9 samples, 0.60%)</title><rect x="865.1" y="529" width="7.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="868.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.07%)</title><rect x="653.5" y="737" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="656.49" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned (2 samples, 0.13%)</title><rect x="1103.6" y="1361" width="1.6" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" />
<text text-anchor="" x="1106.62" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.34%)</title><rect x="315.9" y="1409" width="4.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MessageBodyFactory:::readFrom (49 samples, 3.29%)</title><rect x="808.8" y="705" width="38.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="811.82" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_lock_wait (1 samples, 0.07%)</title><rect x="361.9" y="1393" width="0.8" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="364.86" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="1177.3" y="1633" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1180.32" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (2 samples, 0.13%)</title><rect x="647.2" y="785" width="1.5" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="650.15" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/Reflection:::quickCheckMemberAccess (1 samples, 0.07%)</title><rect x="899.2" y="913" width="0.8" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="902.16" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_new_instance_Java (1 samples, 0.07%)</title><rect x="951.5" y="977" width="0.8" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text text-anchor="" x="954.46" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ApplicationHandler:::handle (5 samples, 0.34%)</title><rect x="78.2" y="1617" width="3.9" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (4 samples, 0.27%)</title><rect x="454.6" y="945" width="3.2" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="457.58" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (1 samples, 0.07%)</title><rect x="561.6" y="865" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::get (1 samples, 0.07%)</title><rect x="632.1" y="721" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="635.10" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="1023.6" y="1217" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpMethod:::lookAheadGet (2 samples, 0.13%)</title><rect x="1052.1" y="1393" width="1.6" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="1055.11" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (36 samples, 2.42%)</title><rect x="582.2" y="865" width="28.5" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="585.17" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/util/calendar/ZoneInfo:::getLastRawOffset (1 samples, 0.07%)</title><rect x="1076.7" y="1249" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1079.68" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/JerseyUriBuilder:::host (108 samples, 7.25%)</title><rect x="457.8" y="1009" width="85.5" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="204.9" y="1569" width="1.6" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="216.0" y="1425" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="1023.6" y="1313" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.58" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.07%)</title><rect x="355.5" y="1329" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::addAll (3 samples, 0.20%)</title><rect x="615.5" y="785" width="2.3" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="618.45" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.07%)</title><rect x="731.2" y="321" width="0.7" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="734.16" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (1 samples, 0.07%)</title><rect x="82.1" y="1537" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="85.12" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="235.1" y="1569" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime$AbstractCallbackRunner:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="938.8" y="945" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="941.78" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (46 samples, 3.09%)</title><rect x="117.0" y="1729" width="36.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pth..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractList:::listIterator (1 samples, 0.07%)</title><rect x="873.8" y="481" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="876.80" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::handle_special_suspend_equivalent_condition (1 samples, 0.07%)</title><rect x="1096.5" y="1361" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/json/JacksonJsonProvider:::hasMatchingMediaType (1 samples, 0.07%)</title><rect x="691.5" y="625" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="694.53" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/jetty9/InstrumentedHandler:::updateResponses (4 samples, 0.27%)</title><rect x="428.4" y="1313" width="3.2" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__unqueue_futex (1 samples, 0.07%)</title><rect x="105.1" y="1585" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="108.10" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$3:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="396.7" y="1233" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="399.73" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="231.9" y="1601" width="1.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resource_allocate_bytes (2 samples, 0.13%)</title><rect x="445.9" y="1089" width="1.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="448.86" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.07%)</title><rect x="416.5" y="1393" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="419.54" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="208.1" y="1697" width="1.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="785.0" y="721" width="0.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::runInScope (1 samples, 0.07%)</title><rect x="103.5" y="1601" width="0.8" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="1175.7" y="1425" width="1.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (4 samples, 0.27%)</title><rect x="1092.5" y="1217" width="3.2" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1095.53" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.07%)</title><rect x="860.3" y="433" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="863.33" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="231.9" y="1633" width="1.6" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/spi/internal/ParamValueFactoryWithSource:::provide (116 samples, 7.79%)</title><rect x="804.1" y="769" width="91.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="807.06" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getHeaders (4 samples, 0.27%)</title><rect x="961.0" y="993" width="3.1" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="963.97" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="107.5" y="1617" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::setAttribute (4 samples, 0.27%)</title><rect x="939.6" y="929" width="3.1" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="942.58" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="1180.5" y="1505" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.49" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="10.0" y="1729" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="658.2" y="609" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundMessageContext:::getLocation (1 samples, 0.07%)</title><rect x="707.4" y="705" width="0.8" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="710.38" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="56.0" y="1489" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runActions (4 samples, 0.27%)</title><rect x="211.3" y="1745" width="3.2" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="652.7" y="417" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="655.70" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::format (29 samples, 1.95%)</title><rect x="520.4" y="961" width="22.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="523.36" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::toString (1 samples, 0.07%)</title><rect x="542.5" y="945" width="0.8" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="545.55" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (2 samples, 0.13%)</title><rect x="1088.6" y="1409" width="1.5" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParPreserveCMReferentsTask::work (7 samples, 0.47%)</title><rect x="260.4" y="1713" width="5.6" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="263.42" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Long:::valueOf (1 samples, 0.07%)</title><rect x="596.4" y="705" width="0.8" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="599.43" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="216.0" y="1457" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="369.8" y="1153" width="1.6" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="316.7" y="1137" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::at (1 samples, 0.07%)</title><rect x="1000.6" y="977" width="0.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1003.60" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (4 samples, 0.27%)</title><rect x="33.0" y="1345" width="3.2" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.34%)</title><rect x="235.1" y="1745" width="3.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.27%)</title><rect x="289.0" y="1537" width="3.1" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="291.95" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::reset (1 samples, 0.07%)</title><rect x="540.2" y="865" width="0.8" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="543.17" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.23.so] (4 samples, 0.27%)</title><rect x="42.5" y="1745" width="3.2" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpField:::contains (2 samples, 0.13%)</title><rect x="1035.5" y="1393" width="1.6" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="1038.47" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$TreeBin:::find (1 samples, 0.07%)</title><rect x="521.1" y="801" width="0.8" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="524.15" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannel:::handle (814 samples, 54.67%)</title><rect x="373.0" y="1457" width="645.0" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="375.96" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/server/HttpChannel:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.07%)</title><rect x="36.9" y="1617" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="39.94" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.07%)</title><rect x="220.8" y="1457" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="223.80" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="713.7" y="609" width="0.8" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/module/afterburner/ser/LongMethodPropertyWriter:::serializeAsField (2 samples, 0.13%)</title><rect x="695.5" y="609" width="1.6" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="698.49" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.07%)</title><rect x="37.7" y="1153" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpFields:::contains (1 samples, 0.07%)</title><rect x="1037.1" y="1393" width="0.7" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1040.05" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (148 samples, 9.94%)</title><rect x="778.7" y="881" width="117.3" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="781.70" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassfish/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="572.7" y="657" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="107.5" y="1633" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="1175.7" y="1649" width="3.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.07%)</title><rect x="941.2" y="881" width="0.8" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="944.16" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (5 samples, 0.34%)</title><rect x="90.0" y="1457" width="4.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="93.04" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::isAnnotation (1 samples, 0.07%)</title><rect x="870.6" y="465" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="873.63" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::process (1 samples, 0.07%)</title><rect x="808.0" y="529" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="811.03" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.13%)</title><rect x="67.1" y="1617" width="1.5" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.07%)</title><rect x="722.4" y="241" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="725.44" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (1 samples, 0.07%)</title><rect x="82.1" y="1633" width="0.8" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="85.12" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedList:::listIterator (1 samples, 0.07%)</title><rect x="873.8" y="465" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="876.80" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>objArrayOopDesc::obj_at_put (1 samples, 0.07%)</title><rect x="486.3" y="785" width="0.8" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="489.28" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="70.2" y="1601" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="73.23" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="212.9" y="1665" width="1.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="215.87" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.07%)</title><rect x="572.7" y="561" width="0.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="1110.0" y="1377" width="1.5" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1112.96" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="1162.3" y="1425" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Response:::closeOutput (1 samples, 0.07%)</title><rect x="417.3" y="1441" width="0.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="420.33" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>loopback_xmit (1 samples, 0.07%)</title><rect x="722.4" y="161" width="0.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="725.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (7 samples, 0.47%)</title><rect x="649.5" y="849" width="5.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="652.53" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="309.6" y="1425" width="0.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="312.56" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/Response$ResponseBuilder:::newInstance (1 samples, 0.07%)</title><rect x="785.0" y="753" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="788.04" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (3 samples, 0.20%)</title><rect x="450.6" y="993" width="2.4" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/DescriptorImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="881.7" y="401" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="884.73" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="565.5" y="753" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerFilteringStage:::apply (8 samples, 0.54%)</title><rect x="613.1" y="849" width="6.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="616.08" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/OutboundJaxrsResponse$Builder:::clearBaseUri (3 samples, 0.20%)</title><rect x="577.4" y="881" width="2.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="580.41" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/process/DefaultRespondingContext:::push (1 samples, 0.07%)</title><rect x="779.5" y="817" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="782.50" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.07%)</title><rect x="95.6" y="1137" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="804.9" y="593" width="0.7" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="807.86" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (4 samples, 0.27%)</title><rect x="650.3" y="641" width="3.2" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="653.32" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.13%)</title><rect x="708.2" y="593" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (19 samples, 1.28%)</title><rect x="117.0" y="1553" width="15.0" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::valueOf (2 samples, 0.13%)</title><rect x="557.6" y="929" width="1.6" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="560.60" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (13 samples, 0.87%)</title><rect x="27.4" y="1713" width="10.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (5 samples, 0.34%)</title><rect x="1179.7" y="1665" width="4.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1182.70" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/UriTemplate:::createURIWithStringValues (10 samples, 0.67%)</title><rect x="987.9" y="1009" width="7.9" height="15.0" fill="rgb(51,200,51)" rx="2" ry="2" />
<text text-anchor="" x="990.92" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jackson/FuzzyEnumModule$PermissiveEnumDeserializer:::deserialize (1 samples, 0.07%)</title><rect x="823.1" y="481" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="826.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_nat_ipv4_local_fn (1 samples, 0.07%)</title><rect x="93.2" y="1425" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="96.21" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/spi/AppenderAttachableImpl:::appendLoopOnAppenders (5 samples, 0.34%)</title><rect x="1121.1" y="1585" width="3.9" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="1124.05" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_prequeue (1 samples, 0.07%)</title><rect x="715.3" y="81" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/PatternWithGroups:::match (1 samples, 0.07%)</title><rect x="629.7" y="785" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="632.72" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (2 samples, 0.13%)</title><rect x="571.1" y="641" width="1.6" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RootProcessor::evacuate_roots (10 samples, 0.67%)</title><rect x="268.3" y="1697" width="8.0" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="271.35" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/raw/ExecutableElement:::&lt;init&gt; (4 samples, 0.27%)</title><rect x="793.8" y="721" width="3.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="796.76" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="231.9" y="1649" width="1.6" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.07%)</title><rect x="451.4" y="545" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="369.8" y="1137" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/process/RequestProcessingContext:::triggerEvent (2 samples, 0.13%)</title><rect x="776.3" y="849" width="1.6" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="779.33" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="201.8" y="1649" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="204.78" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::notify (5 samples, 0.34%)</title><rect x="840.5" y="289" width="4.0" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="843.52" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.07%)</title><rect x="78.2" y="1393" width="0.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="357.1" y="1217" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JNIHandleBlock::oops_do (1 samples, 0.07%)</title><rect x="268.3" y="1633" width="0.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="271.35" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>monitorexit_nofpu Runtime1 stub (4 samples, 0.27%)</title><rect x="369.8" y="1313" width="3.2" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="441.1" y="961" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="214.5" y="1601" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="975.2" y="657" width="1.6" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="224.8" y="1729" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="227.76" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/engine/ValidationContext$ValidationContextBuilder:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="791.4" y="737" width="0.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="794.38" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/ArrayTernaryTrie:::getBest (2 samples, 0.13%)</title><rect x="1053.7" y="1425" width="1.6" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="1056.69" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (3 samples, 0.20%)</title><rect x="285.8" y="1521" width="2.4" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (3 samples, 0.20%)</title><rect x="450.6" y="1041" width="2.4" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="1162.3" y="1361" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="369.8" y="1169" width="1.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (40 samples, 2.69%)</title><rect x="816.0" y="625" width="31.6" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="818.95" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::scan (1 samples, 0.07%)</title><rect x="1001.4" y="929" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="1004.39" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="1162.3" y="1585" width="3.1" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::putVal (2 samples, 0.13%)</title><rect x="407.8" y="1249" width="1.6" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="410.82" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.20%)</title><rect x="285.8" y="1457" width="2.4" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="67.1" y="1441" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/InjecteeImpl:::getParent (1 samples, 0.07%)</title><rect x="860.3" y="513" width="0.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="863.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="316.7" y="1297" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="1175.7" y="1521" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="24.3" y="1585" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal:::set (1 samples, 0.07%)</title><rect x="103.5" y="1569" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::oop_oop_iterate_nv (1 samples, 0.07%)</title><rect x="277.1" y="1585" width="0.8" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="280.07" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="231.9" y="1521" width="1.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="256.5" y="1665" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="259.46" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jetty/BiDiGzipHandler:::handle (755 samples, 50.71%)</title><rect x="419.7" y="1377" width="598.3" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="422.71" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io/dropwizard/jetty/BiDiGzipHandler:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::unparkSuccessor (1 samples, 0.07%)</title><rect x="432.4" y="1249" width="0.8" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="435.39" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="24.3" y="1473" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="27.26" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_clock_gettime (1 samples, 0.07%)</title><rect x="202.6" y="1745" width="0.8" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="205.57" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (8 samples, 0.54%)</title><rect x="315.1" y="1521" width="6.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="318.10" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::resize (1 samples, 0.07%)</title><rect x="399.1" y="1185" width="0.8" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="402.11" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (1 samples, 0.07%)</title><rect x="1122.6" y="1409" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.64" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (4 samples, 0.27%)</title><rect x="966.5" y="913" width="3.2" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="969.52" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="71.0" y="1649" width="1.6" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/DescriptorImpl:::isProxiable (1 samples, 0.07%)</title><rect x="871.4" y="465" width="0.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="874.42" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.07%)</title><rect x="1110.0" y="1217" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1112.96" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.07%)</title><rect x="713.7" y="145" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="67.1" y="1537" width="1.5" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/engine/ValidationContext$ValidationContextBuilder:::forValidateParameters (1 samples, 0.07%)</title><rect x="792.2" y="737" width="0.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="795.18" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.07%)</title><rect x="37.7" y="1361" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="253.3" y="1457" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="256.29" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="285.8" y="1313" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (3 samples, 0.20%)</title><rect x="1183.7" y="1649" width="2.3" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.66" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="37.7" y="1089" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="67.1" y="1505" width="1.5" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.07%)</title><rect x="48.8" y="1537" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="51.83" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.07%)</title><rect x="1093.3" y="1185" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1096.32" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.07%)</title><rect x="722.4" y="177" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="725.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="434.8" y="1057" width="1.6" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="560.0" y="1041" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="562.98" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RefineRecordRefsIntoCSCardTableEntryClosure::do_card_ptr (2 samples, 0.13%)</title><rect x="276.3" y="1633" width="1.6" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="279.27" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.07%)</title><rect x="37.7" y="1265" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/cfg/AnnotationBundleKey:::&lt;init&gt; (3 samples, 0.20%)</title><rect x="702.6" y="689" width="2.4" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="705.63" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_from_jni_environment (1 samples, 0.07%)</title><rect x="519.6" y="849" width="0.8" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="522.56" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (3 samples, 0.20%)</title><rect x="450.6" y="1121" width="2.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="103.5" y="1377" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="348.4" y="1473" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="351.39" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern$BnM:::optimize (1 samples, 0.07%)</title><rect x="760.5" y="705" width="0.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="763.48" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (1 samples, 0.07%)</title><rect x="457.0" y="737" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="459.96" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MediaTypeProvider:::toString (2 samples, 0.13%)</title><rect x="741.5" y="609" width="1.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="744.46" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (3 samples, 0.20%)</title><rect x="15.5" y="1473" width="2.4" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="18.55" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerRequest:::getProperty (1 samples, 0.07%)</title><rect x="952.3" y="977" width="0.7" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="955.26" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getService (3 samples, 0.20%)</title><rect x="886.5" y="465" width="2.4" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="889.48" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/LinkedHashMap:::get (1 samples, 0.07%)</title><rect x="846.9" y="577" width="0.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="849.86" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>g1_post_barrier_slow Runtime1 stub (1 samples, 0.07%)</title><rect x="735.9" y="545" width="0.8" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="738.91" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.54%)</title><rect x="285.8" y="1553" width="6.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (3 samples, 0.20%)</title><rect x="95.6" y="1297" width="2.4" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="108.3" y="1697" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="111.27" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="37.7" y="1553" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_rx_internal (1 samples, 0.07%)</title><rect x="193.9" y="1361" width="0.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="196.85" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.07%)</title><rect x="235.1" y="1601" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.07%)</title><rect x="658.2" y="449" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Request:::getHeaderNames (7 samples, 0.47%)</title><rect x="955.4" y="993" width="5.6" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="958.43" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (2 samples, 0.13%)</title><rect x="987.9" y="993" width="1.6" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="990.92" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::getService (37 samples, 2.48%)</title><rect x="904.7" y="913" width="29.3" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="907.71" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_rx (1 samples, 0.07%)</title><rect x="193.9" y="1377" width="0.7" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="196.85" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="37.7" y="1073" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.07%)</title><rect x="192.3" y="1089" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="195.27" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/general/internal/WeakHashClockImpl:::get (1 samples, 0.07%)</title><rect x="849.2" y="609" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="852.23" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::NotRunnable (1 samples, 0.07%)</title><rect x="355.5" y="1345" width="0.8" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.13%)</title><rect x="133.6" y="1713" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="136.63" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::oops_do_marking_epilogue (1 samples, 0.07%)</title><rect x="1171.8" y="1617" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1174.77" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::copyAttributeMap (1 samples, 0.07%)</title><rect x="1067.2" y="1521" width="0.8" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text text-anchor="" x="1070.17" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.07%)</title><rect x="433.2" y="1249" width="0.8" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="436.18" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundWriteTo (30 samples, 2.01%)</title><rect x="683.6" y="801" width="23.8" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text text-anchor="" x="686.61" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.33 (1 samples, 0.07%)</title><rect x="86.9" y="1537" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="89.87" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (3 samples, 0.20%)</title><rect x="239.8" y="1665" width="2.4" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (27 samples, 1.81%)</title><rect x="683.6" y="753" width="21.4" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="686.61" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/JerseyUriBuilder:::schemeSpecificPart (108 samples, 7.25%)</title><rect x="457.8" y="1025" width="85.5" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="460.75" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/glassf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::iterator (2 samples, 0.13%)</title><rect x="410.2" y="1329" width="1.6" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="413.20" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/util/CachingDateFormatter:::format (4 samples, 0.27%)</title><rect x="1075.1" y="1409" width="3.2" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text text-anchor="" x="1078.09" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.07%)</title><rect x="1172.6" y="1553" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (1 samples, 0.07%)</title><rect x="319.9" y="1233" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="322.86" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::substring (1 samples, 0.07%)</title><rect x="1007.7" y="977" width="0.8" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="1010.73" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (4 samples, 0.27%)</title><rect x="650.3" y="625" width="3.2" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="653.32" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::enter (1 samples, 0.07%)</title><rect x="355.5" y="1393" width="0.8" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="204.2" y="1713" width="0.7" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_q_add (2 samples, 0.13%)</title><rect x="112.2" y="1633" width="1.6" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="115.23" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal$ThreadLocalMap:::access$100 (5 samples, 0.34%)</title><rect x="78.2" y="1537" width="3.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="74.2" y="1457" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.20%)</title><rect x="285.8" y="1537" width="2.4" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/UriParser:::parseComponent (3 samples, 0.20%)</title><rect x="557.6" y="961" width="2.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="560.60" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ServerRuntime$ConnectionCallbackRunner:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="938.8" y="961" width="0.8" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="941.78" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="42.5" y="1633" width="1.6" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::contains (2 samples, 0.13%)</title><rect x="689.9" y="609" width="1.6" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="692.95" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/RequestScope:::resumeCurrent (1 samples, 0.07%)</title><rect x="538.6" y="833" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="541.58" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (6 samples, 0.40%)</title><rect x="14.8" y="1537" width="4.7" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="201.8" y="1633" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="204.78" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (1 samples, 0.07%)</title><rect x="860.3" y="401" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="863.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (6 samples, 0.40%)</title><rect x="32.2" y="1553" width="4.7" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::determineResponseMediaType (1 samples, 0.07%)</title><rect x="670.1" y="769" width="0.8" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="673.13" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toString (1 samples, 0.07%)</title><rect x="556.8" y="913" width="0.8" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="559.81" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.07%)</title><rect x="975.2" y="577" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/base/ProviderBase:::isReadable (1 samples, 0.07%)</title><rect x="810.4" y="609" width="0.8" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="813.40" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/pattern/DateConverter:::convert (4 samples, 0.27%)</title><rect x="1075.1" y="1441" width="3.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="1078.09" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Thread:::setName (1 samples, 0.07%)</title><rect x="110.6" y="1601" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MediaTypes:::mostSpecific (1 samples, 0.07%)</title><rect x="644.8" y="689" width="0.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="647.78" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (2 samples, 0.13%)</title><rect x="764.4" y="737" width="1.6" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="767.44" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/ConcurrentHashMapV8:::spread (1 samples, 0.07%)</title><rect x="686.8" y="673" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="689.78" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MediaTypeProvider:::fromString (4 samples, 0.27%)</title><rect x="978.4" y="913" width="3.2" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="981.41" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/CharacterDataLatin1:::toLowerCase (1 samples, 0.07%)</title><rect x="804.9" y="513" width="0.7" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="807.86" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.07%)</title><rect x="1121.8" y="1505" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="1124.85" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (2 samples, 0.13%)</title><rect x="366.6" y="1249" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/pattern/PatternLayoutBase:::writeLoopOnConverters (16 samples, 1.07%)</title><rect x="1069.5" y="1473" width="12.7" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1072.54" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.07%)</title><rect x="369.8" y="1009" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (3 samples, 0.20%)</title><rect x="450.6" y="961" width="2.4" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (31 samples, 2.08%)</title><rect x="323.8" y="1473" width="24.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="326.82" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/engine/ValidatorImpl:::getConstraintsForClass (1 samples, 0.07%)</title><rect x="788.2" y="753" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="791.21" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="657.5" y="833" width="1.5" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="660.45" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/MediaType:::valueOf (1 samples, 0.07%)</title><rect x="640.8" y="641" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="643.81" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpField:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="748.6" y="641" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="751.59" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjArrayKlass::oop_oop_iterate_nv_m (4 samples, 0.27%)</title><rect x="67.1" y="1697" width="3.1" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::getChars (1 samples, 0.07%)</title><rect x="405.4" y="1265" width="0.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="408.45" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_local_deliver (1 samples, 0.07%)</title><rect x="709.0" y="241" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="711.97" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::Optimize (1 samples, 0.07%)</title><rect x="296.9" y="1633" width="0.8" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="299.88" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/AbstractEntityProviderModel:::provider (1 samples, 0.07%)</title><rect x="688.4" y="673" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="691.36" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="309.6" y="1457" width="0.7" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="312.56" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="1079.1" y="1361" width="0.7" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1082.05" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannel:::onRequest (1 samples, 0.07%)</title><rect x="214.5" y="1745" width="0.8" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="217.46" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run (1,117 samples, 75.02%)</title><rect x="285.0" y="1729" width="885.2" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="287.99" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.07%)</title><rect x="285.8" y="1249" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.07%)</title><rect x="451.4" y="481" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="454.41" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.07%)</title><rect x="48.8" y="1617" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="51.83" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (6 samples, 0.40%)</title><rect x="14.8" y="1569" width="4.7" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::getService (3 samples, 0.20%)</title><rect x="604.4" y="689" width="2.3" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="607.36" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/util/BufferRecycler:::allocCharBuffer (1 samples, 0.07%)</title><rect x="821.5" y="529" width="0.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="824.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetServiceHandle (1 samples, 0.07%)</title><rect x="888.1" y="449" width="0.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="891.07" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/FactoryCreator:::dispose (5 samples, 0.34%)</title><rect x="78.2" y="1473" width="3.9" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (35 samples, 2.35%)</title><rect x="384.0" y="1361" width="27.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="387.05" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/cfg/AnnotationBundleKey:::calcHash (3 samples, 0.20%)</title><rect x="702.6" y="673" width="2.4" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="705.63" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.07%)</title><rect x="561.6" y="913" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="564.56" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/PerLocatorUtilities:::getAutoAnalyzerName (2 samples, 0.13%)</title><rect x="883.3" y="417" width="1.6" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="886.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="52.8" y="1505" width="1.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Object:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="779.5" y="785" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="782.50" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.54%)</title><rect x="278.7" y="1681" width="6.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (20 samples, 1.34%)</title><rect x="117.0" y="1617" width="15.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="422.1" y="1345" width="0.8" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::indexOf (1 samples, 0.07%)</title><rect x="556.0" y="945" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="559.02" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="713.7" y="401" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1,186 samples, 79.65%)</title><rect x="250.1" y="1761" width="939.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="253.12" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="52.8" y="1521" width="1.6" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (14 samples, 0.94%)</title><rect x="183.6" y="1521" width="11.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="186.55" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (6 samples, 0.40%)</title><rect x="860.3" y="529" width="4.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="863.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.07%)</title><rect x="886.5" y="449" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="889.48" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_sun_nio_ch_FileDispatcherImpl_writev0 (1 samples, 0.07%)</title><rect x="730.4" y="465" width="0.8" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="733.36" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="1060.8" y="1489" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1063.83" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.07%)</title><rect x="651.1" y="321" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Runtime1::monitorexit (1 samples, 0.07%)</title><rect x="357.1" y="1345" width="0.8" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="360.11" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="786.6" y="721" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="789.63" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (2 samples, 0.13%)</title><rect x="1102.0" y="1313" width="1.6" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_start_range_ns (1 samples, 0.07%)</title><rect x="348.4" y="1393" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="351.39" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (14 samples, 0.94%)</title><rect x="87.7" y="1553" width="11.1" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="90.66" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.13%)</title><rect x="357.9" y="1313" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="360.90" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="664.6" y="721" width="0.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="52.8" y="1489" width="1.6" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/ArrayList$Itr:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="686.0" y="673" width="0.8" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="688.98" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jackson/FuzzyEnumModule$PermissiveEnumDeserializer:::deserialize (1 samples, 0.07%)</title><rect x="823.1" y="497" width="0.8" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="826.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.07%)</title><rect x="204.9" y="1393" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (3 samples, 0.20%)</title><rect x="285.8" y="1393" width="2.4" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.13%)</title><rect x="721.6" y="401" width="1.6" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock:::lock (1 samples, 0.07%)</title><rect x="737.5" y="673" width="0.8" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="740.49" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Class:::getAnnotation (1 samples, 0.07%)</title><rect x="923.7" y="737" width="0.8" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="926.73" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$EmptyIterator:::hasNext (1 samples, 0.07%)</title><rect x="593.3" y="705" width="0.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="596.26" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI:::access$300 (1 samples, 0.07%)</title><rect x="999.8" y="945" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1002.81" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectorPolicy::update_incremental_cset_info (1 samples, 0.07%)</title><rect x="250.9" y="1665" width="0.8" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="253.91" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (7 samples, 0.47%)</title><rect x="219.2" y="1537" width="5.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="95.6" y="1201" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="98.59" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="208.1" y="1521" width="1.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (17 samples, 1.14%)</title><rect x="181.2" y="1697" width="13.4" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="184.18" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (8 samples, 0.54%)</title><rect x="31.4" y="1633" width="6.3" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="34.40" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/ContainerRequest:::encodedRelativePath (1 samples, 0.07%)</title><rect x="622.6" y="785" width="0.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="625.59" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (12 samples, 0.81%)</title><rect x="14.8" y="1713" width="9.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/IterableProviderImpl:::justInTime (6 samples, 0.40%)</title><rect x="860.3" y="545" width="4.8" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="863.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.34%)</title><rect x="315.9" y="1441" width="4.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="932.4" y="833" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="935.44" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpConnection:::parseRequestBuffer (38 samples, 2.55%)</title><rect x="1026.7" y="1457" width="30.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1029.75" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpURI:::parse (2 samples, 0.13%)</title><rect x="1047.4" y="1377" width="1.5" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="1050.35" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Calendar:::setTimeInMillis (1 samples, 0.07%)</title><rect x="1076.7" y="1329" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1079.68" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="713.7" y="369" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>int_ret_from_sys_call (2 samples, 0.13%)</title><rect x="369.8" y="1265" width="1.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.07%)</title><rect x="979.2" y="849" width="0.8" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="982.20" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/CacheKey:::equals (1 samples, 0.07%)</title><rect x="849.2" y="561" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="852.23" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_self@plt (1 samples, 0.07%)</title><rect x="1019.6" y="1409" width="0.8" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1022.62" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::postConstructMe (1 samples, 0.07%)</title><rect x="873.0" y="513" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="876.01" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="235.1" y="1713" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="238.06" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="258.0" y="1681" width="1.6" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="261.05" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (21 samples, 1.41%)</title><rect x="117.0" y="1697" width="16.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/SelectorImpl:::select (10 samples, 0.67%)</title><rect x="355.5" y="1489" width="7.9" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="358.52" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::put (1 samples, 0.07%)</title><rect x="859.5" y="609" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="862.54" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.13%)</title><rect x="366.6" y="1153" width="1.6" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/process/ServerProcessingBinder$ContainerRequestFactory:::provide (15 samples, 1.01%)</title><rect x="860.3" y="609" width="11.9" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="863.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/FactoryCreator:::create (1 samples, 0.07%)</title><rect x="894.4" y="529" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="897.41" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (3 samples, 0.20%)</title><rect x="285.8" y="1345" width="2.4" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/MediaType:::isWildcardSubtype (1 samples, 0.07%)</title><rect x="644.8" y="673" width="0.8" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="647.78" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (2 samples, 0.13%)</title><rect x="1065.6" y="1505" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="1068.58" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.07%)</title><rect x="669.3" y="689" width="0.8" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="672.34" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/MediaTypeProvider:::fromString (4 samples, 0.27%)</title><rect x="805.6" y="609" width="3.2" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="808.65" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.07%)</title><rect x="166.1" y="1601" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="169.12" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (3 samples, 0.20%)</title><rect x="285.8" y="1505" width="2.4" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.27%)</title><rect x="56.0" y="1537" width="3.1" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="58.96" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="107.5" y="1489" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Formatter:::format (26 samples, 1.75%)</title><rect x="521.9" y="945" width="20.6" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="524.94" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="1172.6" y="1409" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.57" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (32 samples, 2.15%)</title><rect x="682.0" y="817" width="25.4" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="685.02" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::isNull (1 samples, 0.07%)</title><rect x="669.3" y="673" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="672.34" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/StringUtil:::getBytes (2 samples, 0.13%)</title><rect x="720.1" y="529" width="1.5" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="723.06" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpParser:::parsedHeader (1 samples, 0.07%)</title><rect x="1051.3" y="1425" width="0.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="1054.32" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/Stage$Continuation:::of (1 samples, 0.07%)</title><rect x="898.4" y="881" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="901.37" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (2 samples, 0.13%)</title><rect x="191.5" y="1153" width="1.6" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="194.48" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/text/DecimalFormatSymbols:::getInstance (2 samples, 0.13%)</title><rect x="520.4" y="897" width="1.5" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="523.36" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::oops_do (8 samples, 0.54%)</title><rect x="269.1" y="1649" width="6.4" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="272.14" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/pattern/ContentLengthConverter:::convert (1 samples, 0.07%)</title><rect x="1074.3" y="1441" width="0.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="1077.30" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="256.5" y="1697" width="3.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="259.46" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="38.5" y="1681" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="41.53" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/UriParser:::parseComponent (8 samples, 0.54%)</title><rect x="548.1" y="961" width="6.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="551.09" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="39.3" y="1633" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="247.0" y="1585" width="0.7" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="249.95" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (15 samples, 1.01%)</title><rect x="154.2" y="1585" width="11.9" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="157.23" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl$IgdCacheKey:::equals (1 samples, 0.07%)</title><rect x="862.7" y="417" width="0.8" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="865.71" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::doSignal (1 samples, 0.07%)</title><rect x="376.9" y="1297" width="0.8" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="379.92" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer:::isOnSyncQueue (1 samples, 0.07%)</title><rect x="1129.8" y="1569" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1132.77" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="300.0" y="1281" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.07%)</title><rect x="1096.5" y="1185" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="300.0" y="1297" width="1.6" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/core/OutputStreamAppender:::append (70 samples, 4.70%)</title><rect x="1065.6" y="1569" width="55.5" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1068.58" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ch/qo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/descriptor/BeanDescriptorImpl:::isBeanConstrained (2 samples, 0.13%)</title><rect x="796.9" y="769" width="1.6" height="15.0" fill="rgb(52,166,166)" rx="2" ry="2" />
<text text-anchor="" x="799.93" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/ThreadLocal$ThreadLocalMap:::getEntry (1 samples, 0.07%)</title><rect x="430.8" y="1169" width="0.8" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="433.81" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::unlock (1 samples, 0.07%)</title><rect x="884.1" y="385" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="887.10" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.27%)</title><rect x="1186.8" y="1681" width="3.2" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1189.83" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="369.8" y="1185" width="1.6" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="372.79" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (17 samples, 1.14%)</title><rect x="153.4" y="1713" width="13.5" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="156.44" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/AttributesMap:::setAttribute (4 samples, 0.27%)</title><rect x="939.6" y="913" width="3.1" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="942.58" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IR::IR (1 samples, 0.07%)</title><rect x="304.0" y="1585" width="0.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (1 samples, 0.07%)</title><rect x="116.2" y="1569" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="119.19" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::build_hir (1 samples, 0.07%)</title><rect x="304.0" y="1601" width="0.8" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="51.2" y="1569" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="54.21" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.07%)</title><rect x="37.7" y="1345" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.07%)</title><rect x="456.2" y="753" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="459.17" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.07%)</title><rect x="132.0" y="1601" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="135.04" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpInputOverHTTP:::produceContent (12 samples, 0.81%)</title><rect x="835.8" y="417" width="9.5" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="838.76" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RemSet::oops_into_collection_set_do (3 samples, 0.20%)</title><rect x="276.3" y="1681" width="2.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="279.27" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/ISO_8859_1$Encoder:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="720.9" y="449" width="0.7" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="723.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (7 samples, 0.47%)</title><rect x="219.2" y="1713" width="5.6" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="222.21" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="651.9" y="385" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="654.91" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection$1:::hasNext (1 samples, 0.07%)</title><rect x="861.1" y="481" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="864.12" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="1102.0" y="1249" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="206.5" y="1665" width="1.6" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="209.53" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 0.54%)</title><rect x="31.4" y="1681" width="6.3" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="34.40" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="39.3" y="1569" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/HttpChannel:::recycle (3 samples, 0.20%)</title><rect x="413.4" y="1393" width="2.3" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="416.37" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="1088.6" y="1201" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="49.6" y="1329" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpGenerator:::generateResponseLine (2 samples, 0.13%)</title><rect x="720.1" y="561" width="1.5" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="723.06" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (3 samples, 0.20%)</title><rect x="890.4" y="417" width="2.4" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="893.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (10 samples, 0.67%)</title><rect x="1113.1" y="1537" width="8.0" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1116.13" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="201.8" y="1729" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="204.78" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (3 samples, 0.20%)</title><rect x="285.8" y="1329" width="2.4" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.13%)</title><rect x="1167.0" y="1489" width="1.6" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.13%)</title><rect x="211.3" y="1633" width="1.6" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="214.29" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="278.7" y="1409" width="0.7" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (3 samples, 0.20%)</title><rect x="46.5" y="1681" width="2.3" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="49.45" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.07%)</title><rect x="413.4" y="1329" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="416.37" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jetty/NonblockingServletHolder:::handle (4 samples, 0.27%)</title><rect x="103.5" y="1729" width="3.2" height="15.0" fill="rgb(84,232,84)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.13%)</title><rect x="10.0" y="1697" width="1.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::getResponseHeaderMap (4 samples, 0.27%)</title><rect x="407.0" y="1313" width="3.2" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="410.03" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (6 samples, 0.40%)</title><rect x="14.8" y="1553" width="4.7" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (25 samples, 1.68%)</title><rect x="83.7" y="1713" width="19.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="86.70" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="1140.9" y="1473" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1143.87" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (3 samples, 0.20%)</title><rect x="239.8" y="1569" width="2.4" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="242.82" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (55 samples, 3.69%)</title><rect x="804.1" y="721" width="43.5" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="807.06" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="204.9" y="1425" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OopMapCache::lookup (1 samples, 0.07%)</title><rect x="274.7" y="1585" width="0.8" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="277.69" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (17 samples, 1.14%)</title><rect x="181.2" y="1633" width="13.4" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="184.18" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/util/ExecutableHelper:::getSignature (3 samples, 0.20%)</title><rect x="794.6" y="689" width="2.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="797.55" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="441.1" y="993" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (2 samples, 0.13%)</title><rect x="714.5" y="385" width="1.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/internal/process/RequestProcessingContext:::push (2 samples, 0.13%)</title><rect x="778.7" y="833" width="1.6" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="781.70" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (2 samples, 0.13%)</title><rect x="1080.6" y="1393" width="1.6" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="1083.64" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="10.8" y="1505" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="13.79" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="975.2" y="641" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="978.24" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="231.9" y="1537" width="1.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="234.89" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::parseHierarchical (10 samples, 0.67%)</title><rect x="1000.6" y="993" width="7.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1003.60" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/ser/DefaultSerializerProvider$Impl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="697.1" y="625" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="700.08" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (3 samples, 0.20%)</title><rect x="639.2" y="689" width="2.4" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="642.23" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.13%)</title><rect x="434.8" y="1089" width="1.6" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="437.77" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (727 samples, 48.82%)</title><rect x="439.5" y="1169" width="576.2" height="15.0" fill="rgb(84,197,197)" rx="2" ry="2" />
<text text-anchor="" x="442.52" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/http/HttpParser:::parseContent (1 samples, 0.07%)</title><rect x="835.8" y="369" width="0.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="838.76" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Matcher:::reset (2 samples, 0.13%)</title><rect x="758.9" y="721" width="1.6" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="761.89" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::aroundReadFrom (47 samples, 3.16%)</title><rect x="810.4" y="641" width="37.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="813.40" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Metadata::is_klass (2 samples, 0.13%)</title><rect x="37.7" y="1745" width="1.6" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="74.2" y="1601" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/locks/ReentrantLock:::unlock (1 samples, 0.07%)</title><rect x="1112.3" y="1537" width="0.8" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="1115.34" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="107.5" y="1473" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="110.47" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap$KeySet:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="399.9" y="1249" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="402.90" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HeapRegion::oops_on_card_seq_iterate_careful (4 samples, 0.27%)</title><rect x="67.1" y="1713" width="3.1" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.07%)</title><rect x="1106.8" y="1345" width="0.8" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="1109.79" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="317.5" y="1297" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="320.48" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (7 samples, 0.47%)</title><rect x="111.4" y="1729" width="5.6" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="114.44" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/Stages$LinkedStage:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="779.5" y="801" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="782.50" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="441.1" y="1041" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/util/calendar/ZoneInfo:::getOffsets (1 samples, 0.07%)</title><rect x="1076.7" y="1281" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1079.68" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/util/IteratingCallback:::iterate (29 samples, 1.95%)</title><rect x="713.7" y="625" width="23.0" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/regex/Pattern:::matcher (1 samples, 0.07%)</title><rect x="629.7" y="769" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="632.72" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::detectEncoding (16 samples, 1.07%)</title><rect x="832.6" y="513" width="12.7" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="835.59" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (6 samples, 0.40%)</title><rect x="32.2" y="1585" width="4.7" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="35.19" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.07%)</title><rect x="204.2" y="1537" width="0.7" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="207.16" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/general/Hk2ThreadLocal:::get (2 samples, 0.13%)</title><rect x="883.3" y="401" width="1.6" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="886.31" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractSet:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="739.9" y="609" width="0.8" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="742.87" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.07%)</title><rect x="200.2" y="1553" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="203.19" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="565.5" y="673" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="71.0" y="1425" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.07%)</title><rect x="48.8" y="1665" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="51.83" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.13%)</title><rect x="10.0" y="1713" width="1.6" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="348.4" y="1441" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="351.39" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (2 samples, 0.13%)</title><rect x="714.5" y="353" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="1162.3" y="1489" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1165.26" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/AbstractActiveDescriptor:::&lt;init&gt; (3 samples, 0.20%)</title><rect x="880.1" y="417" width="2.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="883.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (11 samples, 0.74%)</title><rect x="663.0" y="833" width="8.7" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="666.00" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="713.7" y="417" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="716.72" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="285.8" y="1281" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::active (1 samples, 0.07%)</title><rect x="465.7" y="817" width="0.8" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="468.67" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (2 samples, 0.13%)</title><rect x="639.2" y="545" width="1.6" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="642.23" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ClazzCreator:::resolve (16 samples, 1.07%)</title><rect x="876.2" y="497" width="12.7" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="879.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (4 samples, 0.27%)</title><rect x="198.6" y="1745" width="3.2" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="201.61" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::format (1 samples, 0.07%)</title><rect x="320.7" y="1425" width="0.7" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="323.65" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.13%)</title><rect x="708.2" y="497" width="1.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="711.17" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/io/IOContext:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="828.6" y="529" width="0.8" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="831.63" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.07%)</title><rect x="669.3" y="721" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="672.34" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (2 samples, 0.13%)</title><rect x="191.5" y="1169" width="1.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="194.48" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ch/qos/logback/access/spi/AccessEvent:::getRequestHeader (1 samples, 0.07%)</title><rect x="1078.3" y="1409" width="0.8" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1081.26" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/AbstractCollection:::toArray (1 samples, 0.07%)</title><rect x="674.9" y="721" width="0.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="677.89" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="254.9" y="1649" width="1.6" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="257.88" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="203.4" y="1713" width="0.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="206.36" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jetty/NonblockingServletHolder:::handle (5 samples, 0.34%)</title><rect x="78.2" y="1713" width="3.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>io/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (39 samples, 2.62%)</title><rect x="816.7" y="609" width="30.9" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="819.74" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (1 samples, 0.07%)</title><rect x="36.2" y="1393" width="0.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="39.15" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::getService (5 samples, 0.34%)</title><rect x="78.2" y="1457" width="3.9" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="81.15" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="647.9" y="673" width="0.8" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="650.94" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::hash (1 samples, 0.07%)</title><rect x="846.9" y="561" width="0.7" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="849.86" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="208.1" y="1489" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="211.12" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="1088.6" y="1393" width="1.5" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.56" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/MediaType:::valueOf (5 samples, 0.34%)</title><rect x="977.6" y="929" width="4.0" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="980.62" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="650.3" y="593" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="653.32" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.07%)</title><rect x="1075.9" y="1233" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="1078.88" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (4 samples, 0.27%)</title><rect x="33.0" y="1281" width="3.2" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="74.2" y="1569" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (3 samples, 0.20%)</title><rect x="651.1" y="449" width="2.4" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="654.11" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::size (1 samples, 0.07%)</title><rect x="797.7" y="737" width="0.8" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="800.72" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (6 samples, 0.40%)</title><rect x="649.5" y="785" width="4.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="652.53" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="390.4" y="1233" width="0.8" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="393.39" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.07%)</title><rect x="422.9" y="1345" width="0.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="425.88" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher$1:::run (1 samples, 0.07%)</title><rect x="801.7" y="785" width="0.8" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="804.69" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.07%)</title><rect x="715.3" y="241" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="718.31" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.40%)</title><rect x="14.8" y="1601" width="4.7" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="17.75" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (2 samples, 0.13%)</title><rect x="1110.0" y="1393" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1112.96" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (7 samples, 0.47%)</title><rect x="865.9" y="497" width="5.5" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="868.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="1060.8" y="1585" width="1.6" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="1063.83" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::create (8 samples, 0.54%)</title><rect x="602.8" y="737" width="6.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="605.77" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="668.5" y="657" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="671.55" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.07%)</title><rect x="1140.9" y="1521" width="0.8" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1143.87" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InterceptorExecutor:::traceBefore (1 samples, 0.07%)</title><rect x="682.8" y="801" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="685.81" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.07%)</title><rect x="709.0" y="289" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="711.97" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/jaxrs/base/ProviderBase:::readFrom (39 samples, 2.62%)</title><rect x="816.7" y="593" width="30.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="819.74" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/generics/reflectiveObjects/ParameterizedTypeImpl:::equals (1 samples, 0.07%)</title><rect x="866.7" y="369" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="869.67" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (2 samples, 0.13%)</title><rect x="1004.6" y="913" width="1.5" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="1007.56" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jersey/repackaged/com/google/common/collect/Sets:::newSetFromMap (1 samples, 0.07%)</title><rect x="946.7" y="945" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="949.71" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="714.5" y="305" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOUtil:::read (3 samples, 0.20%)</title><rect x="1020.4" y="1409" width="2.4" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1023.41" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="1161.5" y="1489" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.47" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.13%)</title><rect x="204.9" y="1665" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="207.95" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/core/util/BufferRecycler:::balloc (3 samples, 0.20%)</title><rect x="830.2" y="465" width="2.4" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="833.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Arrays:::copyOf (1 samples, 0.07%)</title><rect x="1079.1" y="1345" width="0.7" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1082.05" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="42.5" y="1537" width="1.6" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.13%)</title><rect x="1175.7" y="1569" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.74" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext:::header (16 samples, 1.07%)</title><rect x="964.1" y="993" width="12.7" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="967.14" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.07%)</title><rect x="664.6" y="705" width="0.8" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (3 samples, 0.20%)</title><rect x="285.8" y="1425" width="2.4" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashSet:::add (5 samples, 0.34%)</title><rect x="956.2" y="945" width="4.0" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="959.22" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::put (4 samples, 0.27%)</title><rect x="939.6" y="897" width="3.1" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="942.58" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::putSingle (1 samples, 0.07%)</title><rect x="777.9" y="801" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="780.91" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.07%)</title><rect x="1097.3" y="1153" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceHandleImpl:::addSubHandle (1 samples, 0.07%)</title><rect x="922.9" y="753" width="0.8" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="925.93" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (2 samples, 0.13%)</title><rect x="1123.4" y="1569" width="1.6" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="1126.43" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_with_offset (1 samples, 0.07%)</title><rect x="193.9" y="1345" width="0.7" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="196.85" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (3 samples, 0.20%)</title><rect x="285.8" y="1489" width="2.4" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="288.78" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.13%)</title><rect x="52.8" y="1553" width="1.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="55.79" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (3 samples, 0.20%)</title><rect x="56.8" y="1489" width="2.3" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="59.76" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_reset_timer (1 samples, 0.07%)</title><rect x="35.4" y="1169" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="38.36" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="39.3" y="1553" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (15 samples, 1.01%)</title><rect x="154.2" y="1553" width="11.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="157.23" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder:::encode (1 samples, 0.07%)</title><rect x="1083.8" y="1425" width="0.8" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text text-anchor="" x="1086.81" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="1186.0" y="1681" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1189.04" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (2 samples, 0.13%)</title><rect x="822.3" y="529" width="1.6" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="825.29" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.07%)</title><rect x="191.5" y="1137" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="194.48" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="216.0" y="1569" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.07%)</title><rect x="721.6" y="193" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="724.65" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (3 samples, 0.20%)</title><rect x="46.5" y="1697" width="2.3" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="49.45" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="714.5" y="321" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="717.51" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::hash (1 samples, 0.07%)</title><rect x="956.2" y="913" width="0.8" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="959.22" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/ch/IOStatus:::normalize (1 samples, 0.07%)</title><rect x="728.0" y="497" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="730.99" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="200.2" y="1617" width="1.6" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="203.19" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/Meter:::mark (1 samples, 0.07%)</title><rect x="427.6" y="1265" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="430.64" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/Timer:::update (4 samples, 0.27%)</title><rect x="428.4" y="1281" width="3.2" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="37.7" y="1489" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="40.74" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/ServiceLocatorImpl:::narrow (1 samples, 0.07%)</title><rect x="869.8" y="481" width="0.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="872.84" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="308.8" y="1617" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="311.76" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="42.5" y="1585" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="45.49" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/io/AbstractEndPoint:::fillInterested (8 samples, 0.54%)</title><rect x="366.6" y="1441" width="6.4" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.13%)</title><rect x="49.6" y="1505" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.13%)</title><rect x="300.0" y="1409" width="1.6" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (13 samples, 0.87%)</title><rect x="324.6" y="1409" width="10.3" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="327.61" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/servlet/ServletHandler:::getFilterChain (2 samples, 0.13%)</title><rect x="1015.7" y="1233" width="1.5" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1018.65" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.07%)</title><rect x="658.2" y="577" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="661.25" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/jvnet/hk2/internal/SystemDescriptor:::invokeInstanceListeners (3 samples, 0.20%)</title><rect x="606.7" y="721" width="2.4" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="609.74" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (7 samples, 0.47%)</title><rect x="511.6" y="769" width="5.6" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="514.64" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace (1 samples, 0.07%)</title><rect x="152.6" y="1713" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="155.65" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.13%)</title><rect x="456.2" y="849" width="1.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="459.17" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="804.9" y="577" width="0.7" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="807.86" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.07%)</title><rect x="796.9" y="737" width="0.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="799.93" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/codahale/metrics/ExponentiallyDecayingReservoir:::update (4 samples, 0.27%)</title><rect x="428.4" y="1249" width="3.2" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="431.43" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.07%)</title><rect x="110.6" y="1425" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="113.64" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/concurrent/ConcurrentHashMap:::get (2 samples, 0.13%)</title><rect x="865.9" y="433" width="1.6" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="868.88" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="664.6" y="625" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="667.59" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (8 samples, 0.54%)</title><rect x="188.3" y="1457" width="6.3" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="191.31" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/Collections$UnmodifiableCollection:::iterator (2 samples, 0.13%)</title><rect x="594.8" y="705" width="1.6" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="597.85" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::toString (1 samples, 0.07%)</title><rect x="542.5" y="929" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="545.55" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/nio/channels/spi/AbstractInterruptibleChannel:::begin (2 samples, 0.13%)</title><rect x="724.8" y="497" width="1.6" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="727.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.07%)</title><rect x="1097.3" y="1217" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1100.28" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/hibernate/validator/internal/metadata/BeanMetaDataManager:::isConstrained (1 samples, 0.07%)</title><rect x="793.0" y="737" width="0.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="795.97" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="67.1" y="1473" width="1.5" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="70.06" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="441.1" y="1073" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="444.11" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.13%)</title><rect x="1167.0" y="1409" width="1.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1170.02" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="361.9" y="1361" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="364.86" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (2 samples, 0.13%)</title><rect x="905.5" y="881" width="1.6" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="908.50" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="804.9" y="561" width="0.7" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="807.86" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (2 samples, 0.13%)</title><rect x="1102.0" y="1329" width="1.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.27%)</title><rect x="278.7" y="1649" width="3.1" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="281.65" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="39.3" y="1521" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.13%)</title><rect x="49.6" y="1489" width="1.6" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="52.62" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/server/Server:::handle (757 samples, 50.84%)</title><rect x="418.1" y="1441" width="599.9" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="421.13" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/server/Server:::handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="1161.5" y="1537" width="0.8" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="1164.47" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/AbstractStringBuilder:::setLength (1 samples, 0.07%)</title><rect x="1033.1" y="1377" width="0.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1036.09" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/uri/internal/UriParser:::parseComponentWithIP (8 samples, 0.54%)</title><rect x="548.1" y="977" width="6.3" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="551.09" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (1 samples, 0.07%)</title><rect x="640.8" y="673" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="643.81" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (2 samples, 0.13%)</title><rect x="1102.0" y="1361" width="1.6" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="1105.03" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/TreeMap:::get (2 samples, 0.13%)</title><rect x="642.4" y="705" width="1.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="645.40" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RemSet::refine_card (2 samples, 0.13%)</title><rect x="276.3" y="1617" width="1.6" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="279.27" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (3 samples, 0.20%)</title><rect x="571.1" y="785" width="2.4" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="574.07" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="524.3" y="833" width="0.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="527.32" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::merge_multidefs (1 samples, 0.07%)</title><rect x="296.1" y="1601" width="0.8" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="299.08" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.13%)</title><rect x="300.0" y="1361" width="1.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="303.05" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="39.3" y="1585" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="42.32" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (1 samples, 0.07%)</title><rect x="437.9" y="1233" width="0.8" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="440.94" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/MediaType:::isCompatible (1 samples, 0.07%)</title><rect x="644.0" y="689" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="646.98" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.07%)</title><rect x="239.0" y="1553" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="242.03" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (4 samples, 0.27%)</title><rect x="570.3" y="817" width="3.2" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="573.28" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (714 samples, 47.95%)</title><rect x="449.8" y="1137" width="565.9" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="452.83" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (2 samples, 0.13%)</title><rect x="115.4" y="1617" width="1.6" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="118.40" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>javax/ws/rs/core/AbstractMultivaluedMap:::putSingle (6 samples, 0.40%)</title><rect x="665.4" y="753" width="4.7" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="668.38" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="316.7" y="1313" width="3.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="565.5" y="657" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="568.53" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vtable stub (1 samples, 0.07%)</title><rect x="942.0" y="881" width="0.7" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="944.95" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/glassfish/hk2/utilities/InjecteeImpl:::setRequiredType (1 samples, 0.07%)</title><rect x="847.6" y="689" width="0.8" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="850.65" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (2 samples, 0.13%)</title><rect x="191.5" y="1185" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="194.48" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.13%)</title><rect x="286.6" y="1313" width="1.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="289.57" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (66 samples, 4.43%)</title><rect x="467.3" y="817" width="52.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="470.26" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/util/HashMap:::newNode (1 samples, 0.07%)</title><rect x="407.8" y="1233" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="410.82" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.34%)</title><rect x="315.9" y="1425" width="4.0" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="318.90" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.07%)</title><rect x="101.1" y="1601" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="104.13" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::get_deopt_original_pc (1 samples, 0.07%)</title><rect x="517.2" y="785" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="520.19" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::bci_block_start (1 samples, 0.07%)</title><rect x="304.0" y="1505" width="0.8" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="307.01" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/CharacterDataLatin1:::toLowerCase (1 samples, 0.07%)</title><rect x="765.2" y="689" width="0.8" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="768.23" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JNIHandleBlock::allocate_handle (1 samples, 0.07%)</title><rect x="1109.2" y="1345" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1112.17" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (1 samples, 0.07%)</title><rect x="456.2" y="737" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="459.17" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/net/URI$Parser:::scan (2 samples, 0.13%)</title><rect x="999.0" y="961" width="1.6" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1002.01" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (3 samples, 0.20%)</title><rect x="1158.3" y="1441" width="2.4" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1161.30" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (4 samples, 0.27%)</title><rect x="33.0" y="1393" width="3.2" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="35.98" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="117.0" y="1425" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="119.98" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.27%)</title><rect x="71.0" y="1665" width="3.2" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="74.02" y="1675.5" font-size="12" fon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment